@infisale-client/api-client 1.3.0 → 1.3.2

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/api/api.d.ts CHANGED
@@ -13,20 +13,6 @@ import type { Configuration } from './configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
- /**
17
- *
18
- * @export
19
- * @enum {string}
20
- */
21
- export declare const ButtonVariantEnum: {
22
- readonly LINK: "link";
23
- readonly DEFAULT: "default";
24
- readonly OUTLINE: "outline";
25
- readonly DESTRUCTIVE: "destructive";
26
- readonly SECONDARY: "secondary";
27
- readonly GHOST: "ghost";
28
- };
29
- export type ButtonVariantEnum = typeof ButtonVariantEnum[keyof typeof ButtonVariantEnum];
30
16
  /**
31
17
  *
32
18
  * @export
@@ -61,32 +47,6 @@ export declare const CompanyUserStatusEnum: {
61
47
  readonly DELETED: "deleted";
62
48
  };
63
49
  export type CompanyUserStatusEnum = typeof CompanyUserStatusEnum[keyof typeof CompanyUserStatusEnum];
64
- /**
65
- *
66
- * @export
67
- * @enum {string}
68
- */
69
- export declare const ComponentContentTypeEnum: {
70
- readonly HEADING: "heading";
71
- readonly TEXT: "text";
72
- readonly CAPTION: "caption";
73
- readonly BUTTONS: "buttons";
74
- readonly PRICE: "price";
75
- readonly VARIANT_PICKER: "variant-picker";
76
- readonly BUY_BUTTON: "buy-button";
77
- readonly SHARE: "share";
78
- readonly PRODUCT_RATING: "product-rating";
79
- readonly CAROUSEL_ITEM: "carousel-item";
80
- readonly GRID_ITEM: "grid-item";
81
- readonly ANNOUNCEMENT_ITEM: "announcement-item";
82
- readonly ACCORDION_ITEM: "accordion-item";
83
- readonly PRODUCT_DESCRIPTION: "product-description";
84
- readonly PRODUCT_REVIEWS: "product-reviews";
85
- readonly PRODUCT_ATTRIBUTES: "product-attributes";
86
- readonly IMAGE: "image";
87
- readonly CONTENT: "content";
88
- };
89
- export type ComponentContentTypeEnum = typeof ComponentContentTypeEnum[keyof typeof ComponentContentTypeEnum];
90
50
  /**
91
51
  *
92
52
  * @export
@@ -118,60 +78,6 @@ export declare const ComponentProductTypeEnum: {
118
78
  readonly BRAND: "brand";
119
79
  };
120
80
  export type ComponentProductTypeEnum = typeof ComponentProductTypeEnum[keyof typeof ComponentProductTypeEnum];
121
- /**
122
- *
123
- * @export
124
- * @enum {string}
125
- */
126
- export declare const ComponentTypeEnum: {
127
- readonly CAROUSEL: "carousel";
128
- readonly BANNER: "banner";
129
- readonly GRID: "grid";
130
- readonly PRODUCT_LIST: "product-list";
131
- readonly PAGE_DETAIL: "page-detail";
132
- readonly PRODUCT_DETAIL: "product-detail";
133
- readonly PRODUCT_MORE_DETAIL: "product-more-detail";
134
- readonly COLLECTION_LIST: "collection-list";
135
- readonly CATEGORY_LIST: "category-list";
136
- readonly BRAND_LIST: "brand-list";
137
- readonly BLOG_LIST: "blog-list";
138
- readonly RICH_TEXT: "rich-text";
139
- readonly BANNER_WITH_TEXT: "banner-with-text";
140
- readonly ACCORDION: "accordion";
141
- readonly HEADER: "header";
142
- readonly ANNOUNCEMENT: "announcement";
143
- readonly FOOTER: "footer";
144
- readonly CONTACT_FORM: "contact-form";
145
- readonly CART_DETAIL: "cart-detail";
146
- readonly CHECKOUT_DETAIL: "checkout-detail";
147
- readonly NOT_FOUND_DETAIL: "not-found-detail";
148
- readonly SEARCH_DETAIL: "search-detail";
149
- readonly BLOG_LIST_DETAIL: "blog-list-detail";
150
- readonly COLLECTION_LIST_DETAIL: "collection-list-detail";
151
- };
152
- export type ComponentTypeEnum = typeof ComponentTypeEnum[keyof typeof ComponentTypeEnum];
153
- /**
154
- *
155
- * @export
156
- * @enum {string}
157
- */
158
- export declare const ContentPositionXEnum: {
159
- readonly CENTER: "center";
160
- readonly LEFT: "left";
161
- readonly RIGHT: "right";
162
- };
163
- export type ContentPositionXEnum = typeof ContentPositionXEnum[keyof typeof ContentPositionXEnum];
164
- /**
165
- *
166
- * @export
167
- * @enum {string}
168
- */
169
- export declare const ContentPositionYEnum: {
170
- readonly CENTER: "center";
171
- readonly TOP: "top";
172
- readonly BOTTOM: "bottom";
173
- };
174
- export type ContentPositionYEnum = typeof ContentPositionYEnum[keyof typeof ContentPositionYEnum];
175
81
  /**
176
82
  *
177
83
  * @export
@@ -553,22 +459,6 @@ export declare const FileTypeEnum: {
553
459
  readonly OTHER: "other";
554
460
  };
555
461
  export type FileTypeEnum = typeof FileTypeEnum[keyof typeof FileTypeEnum];
556
- /**
557
- *
558
- * @export
559
- * @enum {string}
560
- */
561
- export declare const FontSizeEnum: {
562
- readonly XS: "text-xs";
563
- readonly SM: "text-sm";
564
- readonly BASE: "text-base";
565
- readonly LG: "text-lg";
566
- readonly XL: "text-xl";
567
- readonly _2XL: "text-2xl";
568
- readonly _4XL: "text-4xl";
569
- readonly _6XL: "text-6xl";
570
- };
571
- export type FontSizeEnum = typeof FontSizeEnum[keyof typeof FontSizeEnum];
572
462
  /**
573
463
  *
574
464
  * @export
@@ -8057,16 +7947,18 @@ export interface IState {
8057
7947
  export interface ITemplateComponentContentResponse {
8058
7948
  /**
8059
7949
  *
8060
- * @type {ComponentContentTypeEnum}
7950
+ * @type {string}
8061
7951
  * @memberof ITemplateComponentContentResponse
8062
7952
  */
8063
- 'contentType': ComponentContentTypeEnum;
7953
+ 'contentType': string;
8064
7954
  /**
8065
- *
8066
- * @type {ITemplateComponentContentResponseConfig}
7955
+ * Construct a type with a set of properties K of type T
7956
+ * @type {{ [key: string]: any; }}
8067
7957
  * @memberof ITemplateComponentContentResponse
8068
7958
  */
8069
- 'config': ITemplateComponentContentResponseConfig;
7959
+ 'config': {
7960
+ [key: string]: any;
7961
+ };
8070
7962
  /**
8071
7963
  *
8072
7964
  * @type {string}
@@ -8077,724 +7969,298 @@ export interface ITemplateComponentContentResponse {
8077
7969
  /**
8078
7970
  *
8079
7971
  * @export
8080
- * @interface ITemplateComponentContentResponseConfig
7972
+ * @interface ITemplateComponentResponse
8081
7973
  */
8082
- export interface ITemplateComponentContentResponseConfig {
7974
+ export interface ITemplateComponentResponse {
8083
7975
  /**
8084
7976
  *
8085
7977
  * @type {string}
8086
- * @memberof ITemplateComponentContentResponseConfig
7978
+ * @memberof ITemplateComponentResponse
8087
7979
  */
8088
- 'desktopVariant'?: string;
7980
+ 'type': string;
8089
7981
  /**
8090
- *
8091
- * @type {string}
8092
- * @memberof ITemplateComponentContentResponseConfig
7982
+ * Construct a type with a set of properties K of type T
7983
+ * @type {{ [key: string]: any; }}
7984
+ * @memberof ITemplateComponentResponse
8093
7985
  */
8094
- 'mobileVariant'?: string;
7986
+ 'config': {
7987
+ [key: string]: any;
7988
+ };
8095
7989
  /**
8096
7990
  *
8097
7991
  * @type {string}
8098
- * @memberof ITemplateComponentContentResponseConfig
7992
+ * @memberof ITemplateComponentResponse
8099
7993
  */
8100
- 'url'?: string;
7994
+ '_id': string;
8101
7995
  /**
8102
7996
  *
8103
- * @type {ButtonVariantEnum}
8104
- * @memberof ITemplateComponentContentResponseConfig
7997
+ * @type {Array<ITemplateComponentContentResponse>}
7998
+ * @memberof ITemplateComponentResponse
8105
7999
  */
8106
- 'buttonTwoVariant'?: ButtonVariantEnum;
8000
+ 'contents': Array<ITemplateComponentContentResponse>;
8107
8001
  /**
8108
8002
  *
8109
- * @type {string}
8110
- * @memberof ITemplateComponentContentResponseConfig
8003
+ * @type {ITemplateComponentResponseProducts}
8004
+ * @memberof ITemplateComponentResponse
8111
8005
  */
8112
- 'buttonTwoUrl'?: string;
8006
+ 'products'?: ITemplateComponentResponseProducts;
8113
8007
  /**
8114
8008
  *
8115
- * @type {string}
8116
- * @memberof ITemplateComponentContentResponseConfig
8009
+ * @type {Array<ICategoryResponse>}
8010
+ * @memberof ITemplateComponentResponse
8117
8011
  */
8118
- 'buttonTwoText'?: string;
8012
+ 'categories'?: Array<ICategoryResponse>;
8119
8013
  /**
8120
8014
  *
8121
- * @type {ButtonVariantEnum}
8122
- * @memberof ITemplateComponentContentResponseConfig
8015
+ * @type {Array<IBrandResponse>}
8016
+ * @memberof ITemplateComponentResponse
8123
8017
  */
8124
- 'buttonOneVariant'?: ButtonVariantEnum;
8018
+ 'brands'?: Array<IBrandResponse>;
8125
8019
  /**
8126
8020
  *
8127
- * @type {string}
8128
- * @memberof ITemplateComponentContentResponseConfig
8021
+ * @type {Array<ICollectionResponse>}
8022
+ * @memberof ITemplateComponentResponse
8129
8023
  */
8130
- 'buttonOneUrl'?: string;
8024
+ 'collections'?: Array<ICollectionResponse>;
8131
8025
  /**
8132
8026
  *
8133
- * @type {string}
8134
- * @memberof ITemplateComponentContentResponseConfig
8027
+ * @type {ITemplateComponentResponsePages}
8028
+ * @memberof ITemplateComponentResponse
8135
8029
  */
8136
- 'buttonOneText'?: string;
8030
+ 'pages'?: ITemplateComponentResponsePages;
8031
+ }
8032
+ /**
8033
+ *
8034
+ * @export
8035
+ * @interface ITemplateComponentResponsePages
8036
+ */
8037
+ export interface ITemplateComponentResponsePages {
8137
8038
  /**
8138
8039
  *
8139
- * @type {IImage}
8140
- * @memberof ITemplateComponentContentResponseConfig
8040
+ * @type {number}
8041
+ * @memberof ITemplateComponentResponsePages
8141
8042
  */
8142
- 'imageMobile'?: IImage;
8043
+ 'limit'?: number;
8143
8044
  /**
8144
8045
  *
8145
- * @type {IImage}
8146
- * @memberof ITemplateComponentContentResponseConfig
8046
+ * @type {Array<IPageResponse>}
8047
+ * @memberof ITemplateComponentResponsePages
8147
8048
  */
8148
- 'image'?: IImage;
8049
+ 'list'?: Array<IPageResponse>;
8149
8050
  /**
8150
8051
  *
8151
- * @type {string}
8152
- * @memberof ITemplateComponentContentResponseConfig
8052
+ * @type {Array<IPageResponse>}
8053
+ * @memberof ITemplateComponentResponsePages
8153
8054
  */
8154
- 'description'?: string;
8055
+ 'items'?: Array<IPageResponse>;
8056
+ }
8057
+ /**
8058
+ *
8059
+ * @export
8060
+ * @interface ITemplateComponentResponseProducts
8061
+ */
8062
+ export interface ITemplateComponentResponseProducts {
8155
8063
  /**
8156
8064
  *
8157
- * @type {string}
8158
- * @memberof ITemplateComponentContentResponseConfig
8065
+ * @type {Array<IProductResponse>}
8066
+ * @memberof ITemplateComponentResponseProducts
8159
8067
  */
8160
- 'title'?: string;
8068
+ 'list'?: Array<IProductResponse>;
8161
8069
  /**
8162
8070
  *
8163
- * @type {ContentPositionYEnum}
8164
- * @memberof ITemplateComponentContentResponseConfig
8071
+ * @type {number}
8072
+ * @memberof ITemplateComponentResponseProducts
8165
8073
  */
8166
- 'contentMobilePositionY'?: ContentPositionYEnum;
8074
+ 'limit'?: number;
8167
8075
  /**
8168
8076
  *
8169
- * @type {ContentPositionYEnum}
8170
- * @memberof ITemplateComponentContentResponseConfig
8077
+ * @type {ComponentProductListTypeEnum}
8078
+ * @memberof ITemplateComponentResponseProducts
8171
8079
  */
8172
- 'contentPositionY'?: ContentPositionYEnum;
8080
+ 'listType': ComponentProductListTypeEnum;
8173
8081
  /**
8174
8082
  *
8175
- * @type {ContentPositionXEnum}
8176
- * @memberof ITemplateComponentContentResponseConfig
8083
+ * @type {ComponentProductOrderEnum}
8084
+ * @memberof ITemplateComponentResponseProducts
8177
8085
  */
8178
- 'contentMobilePositionX'?: ContentPositionXEnum;
8086
+ 'order'?: ComponentProductOrderEnum;
8179
8087
  /**
8180
8088
  *
8181
- * @type {ContentPositionXEnum}
8182
- * @memberof ITemplateComponentContentResponseConfig
8089
+ * @type {ComponentProductTypeEnum}
8090
+ * @memberof ITemplateComponentResponseProducts
8183
8091
  */
8184
- 'contentPositionX'?: ContentPositionXEnum;
8092
+ 'relType'?: ComponentProductTypeEnum;
8185
8093
  /**
8186
8094
  *
8187
8095
  * @type {string}
8188
- * @memberof ITemplateComponentContentResponseConfig
8096
+ * @memberof ITemplateComponentResponseProducts
8189
8097
  */
8190
- 'customStyles'?: string;
8098
+ 'relation'?: string;
8191
8099
  /**
8192
8100
  *
8193
- * @type {Array<string>}
8194
- * @memberof ITemplateComponentContentResponseConfig
8101
+ * @type {Array<IProductResponse>}
8102
+ * @memberof ITemplateComponentResponseProducts
8195
8103
  */
8196
- 'customClasses'?: Array<string>;
8104
+ 'items'?: Array<IProductResponse>;
8105
+ }
8106
+ /**
8107
+ *
8108
+ * @export
8109
+ * @interface ITemplatePatchRequest
8110
+ */
8111
+ export interface ITemplatePatchRequest {
8197
8112
  /**
8198
8113
  *
8199
8114
  * @type {string}
8200
- * @memberof ITemplateComponentContentResponseConfig
8115
+ * @memberof ITemplatePatchRequest
8201
8116
  */
8202
- 'backgroundColor'?: string;
8117
+ 'title'?: string;
8203
8118
  /**
8204
8119
  *
8205
- * @type {string}
8206
- * @memberof ITemplateComponentContentResponseConfig
8120
+ * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8121
+ * @memberof ITemplatePatchRequest
8207
8122
  */
8208
- 'textColor'?: string;
8123
+ 'components'?: PartialRecordLanguageEnumITemplateComponentResponseArray;
8209
8124
  /**
8210
8125
  *
8211
- * @type {boolean}
8212
- * @memberof ITemplateComponentContentResponseConfig
8126
+ * @type {TemplateTypeEnum}
8127
+ * @memberof ITemplatePatchRequest
8213
8128
  */
8214
- 'display': boolean;
8129
+ 'type'?: TemplateTypeEnum;
8215
8130
  }
8216
8131
  /**
8217
8132
  *
8218
8133
  * @export
8219
- * @interface ITemplateComponentResponse
8134
+ * @interface ITemplatePostRequest
8220
8135
  */
8221
- export interface ITemplateComponentResponse {
8222
- /**
8223
- *
8224
- * @type {ComponentTypeEnum}
8225
- * @memberof ITemplateComponentResponse
8226
- */
8227
- 'type': ComponentTypeEnum;
8228
- /**
8229
- *
8230
- * @type {ITemplateComponentResponseConfig}
8231
- * @memberof ITemplateComponentResponse
8232
- */
8233
- 'config': ITemplateComponentResponseConfig;
8136
+ export interface ITemplatePostRequest {
8234
8137
  /**
8235
8138
  *
8236
8139
  * @type {string}
8237
- * @memberof ITemplateComponentResponse
8238
- */
8239
- '_id': string;
8240
- /**
8241
- *
8242
- * @type {Array<ITemplateComponentContentResponse>}
8243
- * @memberof ITemplateComponentResponse
8244
- */
8245
- 'contents': Array<ITemplateComponentContentResponse>;
8246
- /**
8247
- *
8248
- * @type {ITemplateComponentResponseProducts}
8249
- * @memberof ITemplateComponentResponse
8140
+ * @memberof ITemplatePostRequest
8250
8141
  */
8251
- 'products'?: ITemplateComponentResponseProducts;
8142
+ 'company': string;
8252
8143
  /**
8253
8144
  *
8254
- * @type {Array<ICategoryResponse>}
8255
- * @memberof ITemplateComponentResponse
8145
+ * @type {string}
8146
+ * @memberof ITemplatePostRequest
8256
8147
  */
8257
- 'categories'?: Array<ICategoryResponse>;
8148
+ 'title': string;
8258
8149
  /**
8259
8150
  *
8260
- * @type {Array<IBrandResponse>}
8261
- * @memberof ITemplateComponentResponse
8151
+ * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8152
+ * @memberof ITemplatePostRequest
8262
8153
  */
8263
- 'brands'?: Array<IBrandResponse>;
8154
+ 'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
8264
8155
  /**
8265
8156
  *
8266
- * @type {Array<ICollectionResponse>}
8267
- * @memberof ITemplateComponentResponse
8157
+ * @type {string}
8158
+ * @memberof ITemplatePostRequest
8268
8159
  */
8269
- 'collections'?: Array<ICollectionResponse>;
8160
+ 'theme': string;
8270
8161
  /**
8271
8162
  *
8272
- * @type {ITemplateComponentResponsePages}
8273
- * @memberof ITemplateComponentResponse
8163
+ * @type {TemplateTypeEnum}
8164
+ * @memberof ITemplatePostRequest
8274
8165
  */
8275
- 'pages'?: ITemplateComponentResponsePages;
8166
+ 'type': TemplateTypeEnum;
8276
8167
  }
8277
8168
  /**
8278
8169
  *
8279
8170
  * @export
8280
- * @interface ITemplateComponentResponseConfig
8171
+ * @interface ITemplateResponse
8281
8172
  */
8282
- export interface ITemplateComponentResponseConfig {
8173
+ export interface ITemplateResponse {
8283
8174
  /**
8284
8175
  *
8285
8176
  * @type {string}
8286
- * @memberof ITemplateComponentResponseConfig
8177
+ * @memberof ITemplateResponse
8287
8178
  */
8288
- 'desktopVariant'?: string;
8179
+ 'company': string;
8289
8180
  /**
8290
8181
  *
8291
8182
  * @type {string}
8292
- * @memberof ITemplateComponentResponseConfig
8183
+ * @memberof ITemplateResponse
8293
8184
  */
8294
- 'mobileVariant'?: string;
8185
+ '_id': string;
8295
8186
  /**
8296
8187
  *
8297
- * @type {string}
8298
- * @memberof ITemplateComponentResponseConfig
8188
+ * @type {number}
8189
+ * @memberof ITemplateResponse
8299
8190
  */
8300
- 'buttonTwoUrl'?: string;
8191
+ '__v': number;
8301
8192
  /**
8302
8193
  *
8303
8194
  * @type {string}
8304
- * @memberof ITemplateComponentResponseConfig
8195
+ * @memberof ITemplateResponse
8305
8196
  */
8306
- 'buttonTwoText'?: string;
8197
+ 'createdAt': string;
8307
8198
  /**
8308
8199
  *
8309
8200
  * @type {string}
8310
- * @memberof ITemplateComponentResponseConfig
8201
+ * @memberof ITemplateResponse
8311
8202
  */
8312
- 'buttonOneUrl'?: string;
8203
+ 'updatedAt': string;
8313
8204
  /**
8314
8205
  *
8315
8206
  * @type {string}
8316
- * @memberof ITemplateComponentResponseConfig
8207
+ * @memberof ITemplateResponse
8317
8208
  */
8318
- 'buttonOneText'?: string;
8209
+ 'title': string;
8319
8210
  /**
8320
8211
  *
8321
8212
  * @type {string}
8322
- * @memberof ITemplateComponentResponseConfig
8213
+ * @memberof ITemplateResponse
8323
8214
  */
8324
- 'url'?: string;
8215
+ 'theme': string;
8325
8216
  /**
8326
8217
  *
8327
- * @type {IImage}
8328
- * @memberof ITemplateComponentResponseConfig
8218
+ * @type {TemplateTypeEnum}
8219
+ * @memberof ITemplateResponse
8329
8220
  */
8330
- 'imageMobile'?: IImage;
8221
+ 'type': TemplateTypeEnum;
8331
8222
  /**
8332
8223
  *
8333
- * @type {IImage}
8334
- * @memberof ITemplateComponentResponseConfig
8224
+ * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8225
+ * @memberof ITemplateResponse
8335
8226
  */
8336
- 'image'?: IImage;
8227
+ 'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
8228
+ }
8229
+ /**
8230
+ *
8231
+ * @export
8232
+ * @interface ITemplatesResponse
8233
+ */
8234
+ export interface ITemplatesResponse {
8337
8235
  /**
8338
8236
  *
8339
- * @type {string}
8340
- * @memberof ITemplateComponentResponseConfig
8237
+ * @type {Array<ITemplateResponse>}
8238
+ * @memberof ITemplatesResponse
8341
8239
  */
8342
- 'description'?: string;
8240
+ 'data': Array<ITemplateResponse>;
8241
+ }
8242
+ /**
8243
+ *
8244
+ * @export
8245
+ * @interface IThemeCloneRequest
8246
+ */
8247
+ export interface IThemeCloneRequest {
8343
8248
  /**
8344
8249
  *
8345
8250
  * @type {string}
8346
- * @memberof ITemplateComponentResponseConfig
8251
+ * @memberof IThemeCloneRequest
8347
8252
  */
8348
- 'title'?: string;
8253
+ 'main': string;
8349
8254
  /**
8350
8255
  *
8351
- * @type {boolean}
8352
- * @memberof ITemplateComponentResponseConfig
8256
+ * @type {string}
8257
+ * @memberof IThemeCloneRequest
8353
8258
  */
8354
- 'legalDocuments'?: boolean;
8259
+ 'name'?: string;
8355
8260
  /**
8356
8261
  *
8357
- * @type {boolean}
8358
- * @memberof ITemplateComponentResponseConfig
8359
- */
8360
- 'policyLinks'?: boolean;
8361
- /**
8362
- *
8363
- * @type {boolean}
8364
- * @memberof ITemplateComponentResponseConfig
8365
- */
8366
- 'paymentGatewayPictures'?: boolean;
8367
- /**
8368
- *
8369
- * @type {boolean}
8370
- * @memberof ITemplateComponentResponseConfig
8371
- */
8372
- 'languageSwitcher'?: boolean;
8373
- /**
8374
- *
8375
- * @type {boolean}
8376
- * @memberof ITemplateComponentResponseConfig
8377
- */
8378
- 'socialButtons'?: boolean;
8379
- /**
8380
- *
8381
- * @type {boolean}
8382
- * @memberof ITemplateComponentResponseConfig
8383
- */
8384
- 'isInnerContainer'?: boolean;
8385
- /**
8386
- *
8387
- * @type {number}
8388
- * @memberof ITemplateComponentResponseConfig
8389
- */
8390
- 'contentMobileMaxWidth'?: number;
8391
- /**
8392
- *
8393
- * @type {number}
8394
- * @memberof ITemplateComponentResponseConfig
8395
- */
8396
- 'contentMaxWidth'?: number;
8397
- /**
8398
- *
8399
- * @type {number}
8400
- * @memberof ITemplateComponentResponseConfig
8401
- */
8402
- 'contentMobileHeight'?: number;
8403
- /**
8404
- *
8405
- * @type {number}
8406
- * @memberof ITemplateComponentResponseConfig
8407
- */
8408
- 'contentHeight'?: number;
8409
- /**
8410
- *
8411
- * @type {number}
8412
- * @memberof ITemplateComponentResponseConfig
8413
- */
8414
- 'containerMobileHeight'?: number;
8415
- /**
8416
- *
8417
- * @type {number}
8418
- * @memberof ITemplateComponentResponseConfig
8419
- */
8420
- 'containerHeight'?: number;
8421
- /**
8422
- *
8423
- * @type {number}
8424
- * @memberof ITemplateComponentResponseConfig
8425
- */
8426
- 'containerWidth'?: number;
8427
- /**
8428
- *
8429
- * @type {ContentPositionYEnum}
8430
- * @memberof ITemplateComponentResponseConfig
8431
- */
8432
- 'contentMobilePositionY'?: ContentPositionYEnum;
8433
- /**
8434
- *
8435
- * @type {ContentPositionYEnum}
8436
- * @memberof ITemplateComponentResponseConfig
8437
- */
8438
- 'contentPositionY'?: ContentPositionYEnum;
8439
- /**
8440
- *
8441
- * @type {ContentPositionXEnum}
8442
- * @memberof ITemplateComponentResponseConfig
8443
- */
8444
- 'contentMobilePositionX'?: ContentPositionXEnum;
8445
- /**
8446
- *
8447
- * @type {ContentPositionXEnum}
8448
- * @memberof ITemplateComponentResponseConfig
8449
- */
8450
- 'contentPositionX'?: ContentPositionXEnum;
8451
- /**
8452
- *
8453
- * @type {number}
8454
- * @memberof ITemplateComponentResponseConfig
8455
- */
8456
- 'imageAspectRatio'?: number;
8457
- /**
8458
- *
8459
- * @type {ProductDetailImageZoomTypeEnum}
8460
- * @memberof ITemplateComponentResponseConfig
8461
- */
8462
- 'productDetailImageZoomType'?: ProductDetailImageZoomTypeEnum;
8463
- /**
8464
- *
8465
- * @type {FontSizeEnum}
8466
- * @memberof ITemplateComponentResponseConfig
8467
- */
8468
- 'contentDescriptionFontSize'?: FontSizeEnum;
8469
- /**
8470
- *
8471
- * @type {FontSizeEnum}
8472
- * @memberof ITemplateComponentResponseConfig
8473
- */
8474
- 'contentTitleFontSize'?: FontSizeEnum;
8475
- /**
8476
- *
8477
- * @type {FontSizeEnum}
8478
- * @memberof ITemplateComponentResponseConfig
8479
- */
8480
- 'descriptionFontSize'?: FontSizeEnum;
8481
- /**
8482
- *
8483
- * @type {FontSizeEnum}
8484
- * @memberof ITemplateComponentResponseConfig
8485
- */
8486
- 'titleFontSize'?: FontSizeEnum;
8487
- /**
8488
- *
8489
- * @type {string}
8490
- * @memberof ITemplateComponentResponseConfig
8491
- */
8492
- 'textColor'?: string;
8493
- /**
8494
- *
8495
- * @type {string}
8496
- * @memberof ITemplateComponentResponseConfig
8497
- */
8498
- 'customStyles'?: string;
8499
- /**
8500
- *
8501
- * @type {Array<string>}
8502
- * @memberof ITemplateComponentResponseConfig
8503
- */
8504
- 'customClasses'?: Array<string>;
8505
- /**
8506
- *
8507
- * @type {string}
8508
- * @memberof ITemplateComponentResponseConfig
8509
- */
8510
- 'backgroundColor'?: string;
8511
- /**
8512
- *
8513
- * @type {boolean}
8514
- * @memberof ITemplateComponentResponseConfig
8515
- */
8516
- 'slide'?: boolean;
8517
- /**
8518
- *
8519
- * @type {boolean}
8520
- * @memberof ITemplateComponentResponseConfig
8521
- */
8522
- 'cardContainer'?: boolean;
8523
- /**
8524
- *
8525
- * @type {boolean}
8526
- * @memberof ITemplateComponentResponseConfig
8527
- */
8528
- 'grid'?: boolean;
8529
- /**
8530
- *
8531
- * @type {boolean}
8532
- * @memberof ITemplateComponentResponseConfig
8533
- */
8534
- 'display': boolean;
8535
- /**
8536
- *
8537
- * @type {number}
8538
- * @memberof ITemplateComponentResponseConfig
8539
- */
8540
- 'interval'?: number;
8541
- /**
8542
- *
8543
- * @type {number}
8544
- * @memberof ITemplateComponentResponseConfig
8545
- */
8546
- 'mobilePerViewCount'?: number;
8547
- /**
8548
- *
8549
- * @type {number}
8550
- * @memberof ITemplateComponentResponseConfig
8551
- */
8552
- 'perViewCount'?: number;
8553
- /**
8554
- *
8555
- * @type {boolean}
8556
- * @memberof ITemplateComponentResponseConfig
8557
- */
8558
- 'autoPlay'?: boolean;
8559
- /**
8560
- *
8561
- * @type {boolean}
8562
- * @memberof ITemplateComponentResponseConfig
8563
- */
8564
- 'addName'?: boolean;
8565
- }
8566
- /**
8567
- *
8568
- * @export
8569
- * @interface ITemplateComponentResponsePages
8570
- */
8571
- export interface ITemplateComponentResponsePages {
8572
- /**
8573
- *
8574
- * @type {number}
8575
- * @memberof ITemplateComponentResponsePages
8576
- */
8577
- 'limit'?: number;
8578
- /**
8579
- *
8580
- * @type {Array<IPageResponse>}
8581
- * @memberof ITemplateComponentResponsePages
8582
- */
8583
- 'list'?: Array<IPageResponse>;
8584
- /**
8585
- *
8586
- * @type {Array<IPageResponse>}
8587
- * @memberof ITemplateComponentResponsePages
8588
- */
8589
- 'items'?: Array<IPageResponse>;
8590
- }
8591
- /**
8592
- *
8593
- * @export
8594
- * @interface ITemplateComponentResponseProducts
8595
- */
8596
- export interface ITemplateComponentResponseProducts {
8597
- /**
8598
- *
8599
- * @type {Array<IProductResponse>}
8600
- * @memberof ITemplateComponentResponseProducts
8601
- */
8602
- 'list'?: Array<IProductResponse>;
8603
- /**
8604
- *
8605
- * @type {number}
8606
- * @memberof ITemplateComponentResponseProducts
8607
- */
8608
- 'limit'?: number;
8609
- /**
8610
- *
8611
- * @type {ComponentProductListTypeEnum}
8612
- * @memberof ITemplateComponentResponseProducts
8613
- */
8614
- 'listType': ComponentProductListTypeEnum;
8615
- /**
8616
- *
8617
- * @type {ComponentProductOrderEnum}
8618
- * @memberof ITemplateComponentResponseProducts
8619
- */
8620
- 'order'?: ComponentProductOrderEnum;
8621
- /**
8622
- *
8623
- * @type {ComponentProductTypeEnum}
8624
- * @memberof ITemplateComponentResponseProducts
8625
- */
8626
- 'relType'?: ComponentProductTypeEnum;
8627
- /**
8628
- *
8629
- * @type {string}
8630
- * @memberof ITemplateComponentResponseProducts
8631
- */
8632
- 'relation'?: string;
8633
- /**
8634
- *
8635
- * @type {Array<IProductResponse>}
8636
- * @memberof ITemplateComponentResponseProducts
8637
- */
8638
- 'items'?: Array<IProductResponse>;
8639
- }
8640
- /**
8641
- *
8642
- * @export
8643
- * @interface ITemplatePatchRequest
8644
- */
8645
- export interface ITemplatePatchRequest {
8646
- /**
8647
- *
8648
- * @type {string}
8649
- * @memberof ITemplatePatchRequest
8650
- */
8651
- 'title'?: string;
8652
- /**
8653
- *
8654
- * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8655
- * @memberof ITemplatePatchRequest
8656
- */
8657
- 'components'?: PartialRecordLanguageEnumITemplateComponentResponseArray;
8658
- /**
8659
- *
8660
- * @type {TemplateTypeEnum}
8661
- * @memberof ITemplatePatchRequest
8662
- */
8663
- 'type'?: TemplateTypeEnum;
8664
- }
8665
- /**
8666
- *
8667
- * @export
8668
- * @interface ITemplatePostRequest
8669
- */
8670
- export interface ITemplatePostRequest {
8671
- /**
8672
- *
8673
- * @type {string}
8674
- * @memberof ITemplatePostRequest
8675
- */
8676
- 'company': string;
8677
- /**
8678
- *
8679
- * @type {string}
8680
- * @memberof ITemplatePostRequest
8681
- */
8682
- 'title': string;
8683
- /**
8684
- *
8685
- * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8686
- * @memberof ITemplatePostRequest
8687
- */
8688
- 'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
8689
- /**
8690
- *
8691
- * @type {string}
8692
- * @memberof ITemplatePostRequest
8693
- */
8694
- 'theme': string;
8695
- /**
8696
- *
8697
- * @type {TemplateTypeEnum}
8698
- * @memberof ITemplatePostRequest
8699
- */
8700
- 'type': TemplateTypeEnum;
8701
- }
8702
- /**
8703
- *
8704
- * @export
8705
- * @interface ITemplateResponse
8706
- */
8707
- export interface ITemplateResponse {
8708
- /**
8709
- *
8710
- * @type {string}
8711
- * @memberof ITemplateResponse
8712
- */
8713
- 'company': string;
8714
- /**
8715
- *
8716
- * @type {string}
8717
- * @memberof ITemplateResponse
8718
- */
8719
- '_id': string;
8720
- /**
8721
- *
8722
- * @type {number}
8723
- * @memberof ITemplateResponse
8724
- */
8725
- '__v': number;
8726
- /**
8727
- *
8728
- * @type {string}
8729
- * @memberof ITemplateResponse
8730
- */
8731
- 'createdAt': string;
8732
- /**
8733
- *
8734
- * @type {string}
8735
- * @memberof ITemplateResponse
8736
- */
8737
- 'updatedAt': string;
8738
- /**
8739
- *
8740
- * @type {string}
8741
- * @memberof ITemplateResponse
8742
- */
8743
- 'title': string;
8744
- /**
8745
- *
8746
- * @type {string}
8747
- * @memberof ITemplateResponse
8748
- */
8749
- 'theme': string;
8750
- /**
8751
- *
8752
- * @type {TemplateTypeEnum}
8753
- * @memberof ITemplateResponse
8754
- */
8755
- 'type': TemplateTypeEnum;
8756
- /**
8757
- *
8758
- * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8759
- * @memberof ITemplateResponse
8760
- */
8761
- 'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
8762
- }
8763
- /**
8764
- *
8765
- * @export
8766
- * @interface ITemplatesResponse
8767
- */
8768
- export interface ITemplatesResponse {
8769
- /**
8770
- *
8771
- * @type {Array<ITemplateResponse>}
8772
- * @memberof ITemplatesResponse
8773
- */
8774
- 'data': Array<ITemplateResponse>;
8775
- }
8776
- /**
8777
- *
8778
- * @export
8779
- * @interface IThemeCloneRequest
8780
- */
8781
- export interface IThemeCloneRequest {
8782
- /**
8783
- *
8784
- * @type {string}
8785
- * @memberof IThemeCloneRequest
8786
- */
8787
- 'main': string;
8788
- /**
8789
- *
8790
- * @type {string}
8791
- * @memberof IThemeCloneRequest
8792
- */
8793
- 'name'?: string;
8794
- /**
8795
- *
8796
- * @type {string}
8797
- * @memberof IThemeCloneRequest
8262
+ * @type {string}
8263
+ * @memberof IThemeCloneRequest
8798
8264
  */
8799
8265
  'company': string;
8800
8266
  }
@@ -8823,17 +8289,27 @@ export interface IThemePatchRequest {
8823
8289
  */
8824
8290
  'thumbnail'?: IImage;
8825
8291
  /**
8826
- *
8827
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
8292
+ * Construct a type with a set of properties K of type T
8293
+ * @type {{ [key: string]: any; }}
8828
8294
  * @memberof IThemePatchRequest
8829
8295
  */
8830
- 'config'?: PickIThemeExcludeKeyofIThemeTemplateConfig;
8296
+ 'config'?: {
8297
+ [key: string]: any;
8298
+ };
8831
8299
  /**
8832
8300
  *
8833
8301
  * @type {string}
8834
8302
  * @memberof IThemePatchRequest
8835
8303
  */
8836
8304
  'demoUrl'?: string;
8305
+ /**
8306
+ * Construct a type with a set of properties K of type T
8307
+ * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
8308
+ * @memberof IThemePatchRequest
8309
+ */
8310
+ 'files'?: {
8311
+ [key: string]: RecordStringStringOrAnyValue;
8312
+ };
8837
8313
  }
8838
8314
  /**
8839
8315
  *
@@ -8854,17 +8330,27 @@ export interface IThemePostRequest {
8854
8330
  */
8855
8331
  'thumbnail'?: IImage;
8856
8332
  /**
8857
- *
8858
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
8333
+ * Construct a type with a set of properties K of type T
8334
+ * @type {{ [key: string]: any; }}
8859
8335
  * @memberof IThemePostRequest
8860
8336
  */
8861
- 'config': PickIThemeExcludeKeyofIThemeTemplateConfig;
8337
+ 'config': {
8338
+ [key: string]: any;
8339
+ };
8862
8340
  /**
8863
8341
  *
8864
8342
  * @type {string}
8865
8343
  * @memberof IThemePostRequest
8866
8344
  */
8867
8345
  'demoUrl'?: string;
8346
+ /**
8347
+ * Construct a type with a set of properties K of type T
8348
+ * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
8349
+ * @memberof IThemePostRequest
8350
+ */
8351
+ 'files'?: {
8352
+ [key: string]: RecordStringStringOrAnyValue;
8353
+ };
8868
8354
  /**
8869
8355
  *
8870
8356
  * @type {IThemeResponseTemplate}
@@ -8927,11 +8413,13 @@ export interface IThemeResponse {
8927
8413
  */
8928
8414
  'main'?: string;
8929
8415
  /**
8930
- *
8931
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
8416
+ * Construct a type with a set of properties K of type T
8417
+ * @type {{ [key: string]: any; }}
8932
8418
  * @memberof IThemeResponse
8933
8419
  */
8934
- 'config': PickIThemeExcludeKeyofIThemeTemplateConfig;
8420
+ 'config': {
8421
+ [key: string]: any;
8422
+ };
8935
8423
  /**
8936
8424
  *
8937
8425
  * @type {string}
@@ -8944,6 +8432,14 @@ export interface IThemeResponse {
8944
8432
  * @memberof IThemeResponse
8945
8433
  */
8946
8434
  'creator'?: string;
8435
+ /**
8436
+ * Construct a type with a set of properties K of type T
8437
+ * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
8438
+ * @memberof IThemeResponse
8439
+ */
8440
+ 'files'?: {
8441
+ [key: string]: RecordStringStringOrAnyValue;
8442
+ };
8947
8443
  /**
8948
8444
  *
8949
8445
  * @type {IThemeResponseTemplate}
@@ -11488,11 +10984,13 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
11488
10984
  */
11489
10985
  'main'?: string;
11490
10986
  /**
11491
- *
11492
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
10987
+ * Construct a type with a set of properties K of type T
10988
+ * @type {{ [key: string]: any; }}
11493
10989
  * @memberof PickIThemeExcludeKeyofIThemeTemplate
11494
10990
  */
11495
- 'config': PickIThemeExcludeKeyofIThemeTemplateConfig;
10991
+ 'config': {
10992
+ [key: string]: any;
10993
+ };
11496
10994
  /**
11497
10995
  *
11498
10996
  * @type {string}
@@ -11505,262 +11003,15 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
11505
11003
  * @memberof PickIThemeExcludeKeyofIThemeTemplate
11506
11004
  */
11507
11005
  'creator'?: string;
11508
- }
11509
- /**
11510
- *
11511
- * @export
11512
- * @interface PickIThemeExcludeKeyofIThemeTemplateConfig
11513
- */
11514
- export interface PickIThemeExcludeKeyofIThemeTemplateConfig {
11515
- /**
11516
- *
11517
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigTypography}
11518
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11519
- */
11520
- 'typography': PickIThemeExcludeKeyofIThemeTemplateConfigTypography;
11521
- /**
11522
- *
11523
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard}
11524
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11525
- */
11526
- 'blogCard': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard;
11527
- /**
11528
- *
11529
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard}
11530
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11531
- */
11532
- 'collectionCard': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard;
11533
- /**
11534
- *
11535
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard}
11536
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11537
- */
11538
- 'productCard': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard;
11539
- /**
11540
- *
11541
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigLayout}
11542
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11543
- */
11544
- 'layout': PickIThemeExcludeKeyofIThemeTemplateConfigLayout;
11545
- /**
11546
- *
11547
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigButtons}
11548
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11549
- */
11550
- 'buttons': PickIThemeExcludeKeyofIThemeTemplateConfigButtons;
11551
- /**
11552
- *
11553
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigCss}
11554
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11555
- */
11556
- 'css': PickIThemeExcludeKeyofIThemeTemplateConfigCss;
11557
- /**
11558
- *
11559
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfigInject}
11560
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
11561
- */
11562
- 'inject': PickIThemeExcludeKeyofIThemeTemplateConfigInject;
11563
- }
11564
- /**
11565
- *
11566
- * @export
11567
- * @interface PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11568
- */
11569
- export interface PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard {
11570
- /**
11571
- *
11572
- * @type {number}
11573
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11574
- */
11575
- 'shadowBlurRadius': number;
11576
- /**
11577
- *
11578
- * @type {number}
11579
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11580
- */
11581
- 'shadowVerticalOffset': number;
11582
- /**
11583
- *
11584
- * @type {number}
11585
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11586
- */
11587
- 'shadowHorizontalOffset': number;
11588
- /**
11589
- *
11590
- * @type {number}
11591
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11592
- */
11593
- 'shadowOpacity': number;
11594
- /**
11595
- *
11596
- * @type {number}
11597
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11598
- */
11599
- 'borderRadius': number;
11600
- /**
11601
- *
11602
- * @type {number}
11603
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11604
- */
11605
- 'opacity': number;
11606
- /**
11607
- *
11608
- * @type {number}
11609
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11610
- */
11611
- 'borderWidth': number;
11612
- /**
11613
- *
11614
- * @type {string}
11615
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11616
- */
11617
- 'textAlign': PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum;
11618
- /**
11619
- *
11620
- * @type {number}
11621
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11622
- */
11623
- 'padding': number;
11624
- /**
11625
- *
11626
- * @type {string}
11627
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard
11628
- */
11629
- 'variant': string;
11630
- }
11631
- export declare const PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum: {
11632
- readonly LEFT: "left";
11633
- readonly CENTER: "center";
11634
- readonly RIGHT: "right";
11635
- };
11636
- export type PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum = typeof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum[keyof typeof PickIThemeExcludeKeyofIThemeTemplateConfigBlogCardTextAlignEnum];
11637
- /**
11638
- *
11639
- * @export
11640
- * @interface PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11641
- */
11642
- export interface PickIThemeExcludeKeyofIThemeTemplateConfigButtons {
11643
- /**
11644
- *
11645
- * @type {number}
11646
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11647
- */
11648
- 'shadowBlurRadius': number;
11649
11006
  /**
11650
- *
11651
- * @type {number}
11652
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11653
- */
11654
- 'shadowVerticalOffset': number;
11655
- /**
11656
- *
11657
- * @type {number}
11658
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11659
- */
11660
- 'shadowHorizontalOffset': number;
11661
- /**
11662
- *
11663
- * @type {number}
11664
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11665
- */
11666
- 'shadowOpacity': number;
11667
- /**
11668
- *
11669
- * @type {number}
11670
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11671
- */
11672
- 'borderRadius': number;
11673
- /**
11674
- *
11675
- * @type {number}
11676
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11677
- */
11678
- 'opacity': number;
11679
- /**
11680
- *
11681
- * @type {number}
11682
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigButtons
11683
- */
11684
- 'borderWidth': number;
11685
- }
11686
- /**
11687
- *
11688
- * @export
11689
- * @interface PickIThemeExcludeKeyofIThemeTemplateConfigCss
11690
- */
11691
- export interface PickIThemeExcludeKeyofIThemeTemplateConfigCss {
11692
- /**
11693
- *
11694
- * @type {{ [key: string]: string; }}
11695
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigCss
11007
+ * Construct a type with a set of properties K of type T
11008
+ * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
11009
+ * @memberof PickIThemeExcludeKeyofIThemeTemplate
11696
11010
  */
11697
- 'variables': {
11698
- [key: string]: string;
11011
+ 'files'?: {
11012
+ [key: string]: RecordStringStringOrAnyValue;
11699
11013
  };
11700
11014
  }
11701
- /**
11702
- *
11703
- * @export
11704
- * @interface PickIThemeExcludeKeyofIThemeTemplateConfigInject
11705
- */
11706
- export interface PickIThemeExcludeKeyofIThemeTemplateConfigInject {
11707
- /**
11708
- *
11709
- * @type {string}
11710
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigInject
11711
- */
11712
- 'js': string;
11713
- /**
11714
- *
11715
- * @type {string}
11716
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigInject
11717
- */
11718
- 'css': string;
11719
- }
11720
- /**
11721
- *
11722
- * @export
11723
- * @interface PickIThemeExcludeKeyofIThemeTemplateConfigLayout
11724
- */
11725
- export interface PickIThemeExcludeKeyofIThemeTemplateConfigLayout {
11726
- /**
11727
- *
11728
- * @type {number}
11729
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
11730
- */
11731
- 'gridXGap': number;
11732
- /**
11733
- *
11734
- * @type {number}
11735
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
11736
- */
11737
- 'gridYGap': number;
11738
- /**
11739
- *
11740
- * @type {number}
11741
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
11742
- */
11743
- 'sectionYGap': number;
11744
- /**
11745
- *
11746
- * @type {number}
11747
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigLayout
11748
- */
11749
- 'containerWidth': number;
11750
- }
11751
- /**
11752
- *
11753
- * @export
11754
- * @interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography
11755
- */
11756
- export interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography {
11757
- /**
11758
- *
11759
- * @type {string}
11760
- * @memberof PickIThemeExcludeKeyofIThemeTemplateConfigTypography
11761
- */
11762
- 'fontFamily': string;
11763
- }
11764
11015
  /**
11765
11016
  * From T, pick a set of properties whose keys are in the union K
11766
11017
  * @export
@@ -11780,17 +11031,27 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
11780
11031
  */
11781
11032
  'thumbnail'?: IImage;
11782
11033
  /**
11783
- *
11784
- * @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
11034
+ * Construct a type with a set of properties K of type T
11035
+ * @type {{ [key: string]: any; }}
11785
11036
  * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
11786
11037
  */
11787
- 'config': PickIThemeExcludeKeyofIThemeTemplateConfig;
11038
+ 'config': {
11039
+ [key: string]: any;
11040
+ };
11788
11041
  /**
11789
11042
  *
11790
11043
  * @type {string}
11791
11044
  * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
11792
11045
  */
11793
11046
  'demoUrl'?: string;
11047
+ /**
11048
+ * Construct a type with a set of properties K of type T
11049
+ * @type {{ [key: string]: RecordStringStringOrAnyValue; }}
11050
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
11051
+ */
11052
+ 'files'?: {
11053
+ [key: string]: RecordStringStringOrAnyValue;
11054
+ };
11794
11055
  }
11795
11056
  /**
11796
11057
  * From T, pick a set of properties whose keys are in the union K
@@ -12041,19 +11302,6 @@ export interface PriceType {
12041
11302
  */
12042
11303
  'price': number;
12043
11304
  }
12044
- /**
12045
- *
12046
- * @export
12047
- * @enum {string}
12048
- */
12049
- export declare const ProductDetailImageZoomTypeEnum: {
12050
- readonly MOVE: "move";
12051
- readonly CLICK: "click";
12052
- readonly HOVER: "hover";
12053
- readonly DIALOG: "dialog";
12054
- readonly NONE: "none";
12055
- };
12056
- export type ProductDetailImageZoomTypeEnum = typeof ProductDetailImageZoomTypeEnum[keyof typeof ProductDetailImageZoomTypeEnum];
12057
11305
  /**
12058
11306
  * Construct a type with a set of properties K of type T
12059
11307
  * @export
@@ -12203,6 +11451,13 @@ export interface RecordLanguageEnumTitleStringTr {
12203
11451
  */
12204
11452
  'title': string;
12205
11453
  }
11454
+ /**
11455
+ *
11456
+ * @export
11457
+ * @interface RecordStringStringOrAnyValue
11458
+ */
11459
+ export interface RecordStringStringOrAnyValue {
11460
+ }
12206
11461
  /**
12207
11462
  *
12208
11463
  * @export