zakeke-configurator-react 0.0.113 → 0.0.114
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.
|
@@ -296,6 +296,26 @@ export interface SellerSettings {
|
|
|
296
296
|
hidePrice: boolean;
|
|
297
297
|
hotjarSiteID: string | null;
|
|
298
298
|
googleTagManagerID: string | null;
|
|
299
|
+
canSaveDraftComposition: boolean;
|
|
300
|
+
canUndoRedo: boolean;
|
|
301
|
+
shareType: number | null;
|
|
302
|
+
}
|
|
303
|
+
export declare class CompositionItem {
|
|
304
|
+
attributeID: number;
|
|
305
|
+
attributeName: string;
|
|
306
|
+
attributeCode: string;
|
|
307
|
+
selectedOptionName: string;
|
|
308
|
+
selectedOptionCode: string;
|
|
309
|
+
}
|
|
310
|
+
export declare class Composition {
|
|
311
|
+
name: string;
|
|
312
|
+
docID: string;
|
|
313
|
+
compositionID: number;
|
|
314
|
+
compositionItems: CompositionItem[];
|
|
315
|
+
previewImageUrl: string;
|
|
316
|
+
designID: number | null;
|
|
317
|
+
tags: string[];
|
|
318
|
+
static fromJSON(json: any): Composition;
|
|
299
319
|
}
|
|
300
320
|
export interface OnBeforeSendDataToParent {
|
|
301
321
|
composition: number;
|
|
@@ -314,4 +334,19 @@ export interface TemplateUploadRestrictictions {
|
|
|
314
334
|
isEpsAllowed: boolean;
|
|
315
335
|
isPdfWithRasterAllowed: boolean;
|
|
316
336
|
}
|
|
337
|
+
export declare class SelectedOption {
|
|
338
|
+
attributeID: number;
|
|
339
|
+
optionID: number;
|
|
340
|
+
}
|
|
341
|
+
export declare enum ExtensionFieldDataType {
|
|
342
|
+
Money = 1,
|
|
343
|
+
Integer = 2,
|
|
344
|
+
Decimal = 3
|
|
345
|
+
}
|
|
346
|
+
export interface ExtensionFields {
|
|
347
|
+
name: string;
|
|
348
|
+
value: number;
|
|
349
|
+
label: string;
|
|
350
|
+
formatString: string;
|
|
351
|
+
}
|
|
317
352
|
export {};
|