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