@kiriminaja/types 0.1.18 → 0.1.20
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 -2
- package/package.json +1 -1
package/dist/oms.d.ts
CHANGED
|
@@ -171,7 +171,7 @@ export type OmsBuilderTemplateInputOptionT = {
|
|
|
171
171
|
is_default?: boolean;
|
|
172
172
|
required?: boolean;
|
|
173
173
|
is_active?: boolean;
|
|
174
|
-
|
|
174
|
+
configurations?: OmsInputOptionConfigurationT[];
|
|
175
175
|
};
|
|
176
176
|
export type OmsCourierGroupServiceT = {
|
|
177
177
|
label?: string;
|
|
@@ -272,11 +272,12 @@ export type OmsBuilderTemplateSuccessConfigurationT = {
|
|
|
272
272
|
};
|
|
273
273
|
};
|
|
274
274
|
export type OmsBuilderTemplateT = {
|
|
275
|
+
id?: number;
|
|
275
276
|
name?: string;
|
|
276
277
|
header?: OmsBuilderTemplateHeaderT;
|
|
277
278
|
testimonial?: OmsBuilderTemplateTestimonialT;
|
|
278
279
|
display_mode?: OmsBuilderTemplateDisplayModeT;
|
|
279
|
-
|
|
280
|
+
guarantee_badge?: OmsBuilderTemplateGuaranteeBadgeT;
|
|
280
281
|
product_display?: OmsBuilderTemplateProductDisplayT;
|
|
281
282
|
product_variation?: OmsBuilderTemplateProductVariationT;
|
|
282
283
|
input_fields?: OmsBuilderTemplateInputOptionT[];
|
|
@@ -284,4 +285,9 @@ export type OmsBuilderTemplateT = {
|
|
|
284
285
|
couriers?: OmsCourierGroupT[];
|
|
285
286
|
voucher?: boolean;
|
|
286
287
|
success_configuration?: OmsBuilderTemplateSuccessConfigurationT;
|
|
288
|
+
created_at?: string;
|
|
289
|
+
};
|
|
290
|
+
export type OmsDataT = {
|
|
291
|
+
product?: OmsProductCatalogDetailT;
|
|
292
|
+
configuration?: OmsBuilderTemplateT;
|
|
287
293
|
};
|