@kiriminaja/types 0.1.31 → 0.1.32
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/dist/oms.d.ts +7 -5
- package/package.json +1 -1
package/dist/oms.d.ts
CHANGED
|
@@ -151,6 +151,11 @@ export type OmsProductEventTrackingT = {
|
|
|
151
151
|
};
|
|
152
152
|
gtm_ids?: string[];
|
|
153
153
|
};
|
|
154
|
+
export type OmsProductCheckoutFormT = {
|
|
155
|
+
id?: number;
|
|
156
|
+
link?: string;
|
|
157
|
+
config_document_id?: string;
|
|
158
|
+
};
|
|
154
159
|
export type OmsProductCatalogDetailT = OmsProductInformationT & OmsProductWarehouseT & {
|
|
155
160
|
id?: number;
|
|
156
161
|
weight?: number;
|
|
@@ -173,11 +178,8 @@ export type OmsProductCatalogDetailT = OmsProductInformationT & OmsProductWareho
|
|
|
173
178
|
variants?: OmsProductVariantCombinationT[];
|
|
174
179
|
member_product_id?: number;
|
|
175
180
|
can_connect_to_template?: boolean;
|
|
176
|
-
checkout_form?:
|
|
177
|
-
|
|
178
|
-
link?: string;
|
|
179
|
-
config_document_id?: string;
|
|
180
|
-
};
|
|
181
|
+
checkout_form?: OmsProductCheckoutFormT;
|
|
182
|
+
checkout_forms?: OmsProductCheckoutFormT[];
|
|
181
183
|
event_trackers?: OmsProductEventTrackingT;
|
|
182
184
|
};
|
|
183
185
|
export type OmsGuaranteeBadgeT = {
|