@ikas/storefront-models 6.1.0-beta.6 → 6.1.0-beta.60
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/build/index.d.ts +2 -0
- package/build/models/checkout-settings/index.d.ts +1 -0
- package/build/models/order/gift-card-line/index.d.ts +6 -0
- package/build/models/order/index.d.ts +2 -0
- package/build/models/order/line-item/bundle-product-settings/index.d.ts +5 -0
- package/build/models/order/line-item/index.d.ts +2 -0
- package/build-cjs/index.d.ts +2 -0
- package/build-cjs/models/checkout-settings/index.d.ts +1 -0
- package/build-cjs/models/order/gift-card-line/index.d.ts +6 -0
- package/build-cjs/models/order/index.d.ts +2 -0
- package/build-cjs/models/order/line-item/bundle-product-settings/index.d.ts +5 -0
- package/build-cjs/models/order/line-item/index.d.ts +2 -0
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -82,10 +82,12 @@ export * from "./models/order/address";
|
|
|
82
82
|
export * from "./models/order/adjustment/applied-order-line";
|
|
83
83
|
export * from "./models/order/adjustment";
|
|
84
84
|
export * from "./models/order/customer";
|
|
85
|
+
export * from "./models/order/gift-card-line";
|
|
85
86
|
export * from "./models/order/gift-line";
|
|
86
87
|
export * from "./models/order/invoice";
|
|
87
88
|
export * from "./models/order/line-item/base-unit/unit-type";
|
|
88
89
|
export * from "./models/order/line-item/base-unit";
|
|
90
|
+
export * from "./models/order/line-item/bundle-product-settings";
|
|
89
91
|
export * from "./models/order/line-item/discount";
|
|
90
92
|
export * from "./models/order/line-item/option/value";
|
|
91
93
|
export * from "./models/order/line-item/option";
|
|
@@ -16,6 +16,7 @@ export declare type IkasCheckoutSettings = {
|
|
|
16
16
|
couponCodeRequirement: IkasCouponCodeRequirement | null;
|
|
17
17
|
showCheckoutNote: boolean | null;
|
|
18
18
|
showCompanyInfoInShippingAddress: boolean | null;
|
|
19
|
+
showBillingAddressOnShippingStep: boolean | null;
|
|
19
20
|
showTermsAndConditionsCheckbox: boolean;
|
|
20
21
|
storefrontId: string;
|
|
21
22
|
} & IkasBaseModel;
|
|
@@ -9,6 +9,7 @@ import { IkasOrderAdjustment } from "./adjustment";
|
|
|
9
9
|
import { IkasOrderPackage } from "./package";
|
|
10
10
|
import { IkasOrderTaxLine } from "./tax-line";
|
|
11
11
|
import { IkasBaseModel } from "../base";
|
|
12
|
+
import { IkasOrderGiftCardLine } from "./gift-card-line";
|
|
12
13
|
export declare type IkasOrder = {
|
|
13
14
|
billingAddress: IkasOrderAddress | null;
|
|
14
15
|
cancelReason: IkasOrderCancelReason | null;
|
|
@@ -17,6 +18,7 @@ export declare type IkasOrder = {
|
|
|
17
18
|
currencySymbol: string | null;
|
|
18
19
|
customer: IkasOrderCustomer | null;
|
|
19
20
|
customerId: string | null;
|
|
21
|
+
giftCardLines: IkasOrderGiftCardLine[] | null;
|
|
20
22
|
giftPackageLines: IkasOrderGiftPackageLine[] | null;
|
|
21
23
|
giftPackageNote: string | null;
|
|
22
24
|
invoices: IkasInvoice[] | null;
|
|
@@ -2,7 +2,9 @@ import { IkasOrderLineDiscount } from "./discount";
|
|
|
2
2
|
import { IkasOrderLineVariant } from "./variant";
|
|
3
3
|
import { IkasOrderLineItemOption } from "./option";
|
|
4
4
|
import { IkasBaseModel } from "../../base";
|
|
5
|
+
import { IkasOrderLineBundleProductSettings } from "./bundle-product-settings";
|
|
5
6
|
export declare type IkasOrderLineItem = {
|
|
7
|
+
bundleProductSettings: IkasOrderLineBundleProductSettings | null;
|
|
6
8
|
currencyCode: string | null;
|
|
7
9
|
currencySymbol: string | null;
|
|
8
10
|
discount: IkasOrderLineDiscount | null;
|
package/build-cjs/index.d.ts
CHANGED
|
@@ -82,10 +82,12 @@ export * from "./models/order/address";
|
|
|
82
82
|
export * from "./models/order/adjustment/applied-order-line";
|
|
83
83
|
export * from "./models/order/adjustment";
|
|
84
84
|
export * from "./models/order/customer";
|
|
85
|
+
export * from "./models/order/gift-card-line";
|
|
85
86
|
export * from "./models/order/gift-line";
|
|
86
87
|
export * from "./models/order/invoice";
|
|
87
88
|
export * from "./models/order/line-item/base-unit/unit-type";
|
|
88
89
|
export * from "./models/order/line-item/base-unit";
|
|
90
|
+
export * from "./models/order/line-item/bundle-product-settings";
|
|
89
91
|
export * from "./models/order/line-item/discount";
|
|
90
92
|
export * from "./models/order/line-item/option/value";
|
|
91
93
|
export * from "./models/order/line-item/option";
|
|
@@ -16,6 +16,7 @@ export declare type IkasCheckoutSettings = {
|
|
|
16
16
|
couponCodeRequirement: IkasCouponCodeRequirement | null;
|
|
17
17
|
showCheckoutNote: boolean | null;
|
|
18
18
|
showCompanyInfoInShippingAddress: boolean | null;
|
|
19
|
+
showBillingAddressOnShippingStep: boolean | null;
|
|
19
20
|
showTermsAndConditionsCheckbox: boolean;
|
|
20
21
|
storefrontId: string;
|
|
21
22
|
} & IkasBaseModel;
|
|
@@ -9,6 +9,7 @@ import { IkasOrderAdjustment } from "./adjustment";
|
|
|
9
9
|
import { IkasOrderPackage } from "./package";
|
|
10
10
|
import { IkasOrderTaxLine } from "./tax-line";
|
|
11
11
|
import { IkasBaseModel } from "../base";
|
|
12
|
+
import { IkasOrderGiftCardLine } from "./gift-card-line";
|
|
12
13
|
export declare type IkasOrder = {
|
|
13
14
|
billingAddress: IkasOrderAddress | null;
|
|
14
15
|
cancelReason: IkasOrderCancelReason | null;
|
|
@@ -17,6 +18,7 @@ export declare type IkasOrder = {
|
|
|
17
18
|
currencySymbol: string | null;
|
|
18
19
|
customer: IkasOrderCustomer | null;
|
|
19
20
|
customerId: string | null;
|
|
21
|
+
giftCardLines: IkasOrderGiftCardLine[] | null;
|
|
20
22
|
giftPackageLines: IkasOrderGiftPackageLine[] | null;
|
|
21
23
|
giftPackageNote: string | null;
|
|
22
24
|
invoices: IkasInvoice[] | null;
|
|
@@ -2,7 +2,9 @@ import { IkasOrderLineDiscount } from "./discount";
|
|
|
2
2
|
import { IkasOrderLineVariant } from "./variant";
|
|
3
3
|
import { IkasOrderLineItemOption } from "./option";
|
|
4
4
|
import { IkasBaseModel } from "../../base";
|
|
5
|
+
import { IkasOrderLineBundleProductSettings } from "./bundle-product-settings";
|
|
5
6
|
export declare type IkasOrderLineItem = {
|
|
7
|
+
bundleProductSettings: IkasOrderLineBundleProductSettings | null;
|
|
6
8
|
currencyCode: string | null;
|
|
7
9
|
currencySymbol: string | null;
|
|
8
10
|
discount: IkasOrderLineDiscount | null;
|