@infisale-client/api-client 1.2.110 → 1.3.1
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 +219 -744
- package/dist/api/api.js +3 -119
- package/dist/api/api.mjs +0 -116
- package/package.json +2 -2
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
|
|
@@ -5690,16 +5580,16 @@ export interface IOrderResponse {
|
|
|
5690
5580
|
'user'?: string;
|
|
5691
5581
|
/**
|
|
5692
5582
|
*
|
|
5693
|
-
* @type {
|
|
5583
|
+
* @type {CurrencyEnum}
|
|
5694
5584
|
* @memberof IOrderResponse
|
|
5695
5585
|
*/
|
|
5696
|
-
'
|
|
5586
|
+
'currency': CurrencyEnum;
|
|
5697
5587
|
/**
|
|
5698
5588
|
*
|
|
5699
|
-
* @type {
|
|
5589
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
5700
5590
|
* @memberof IOrderResponse
|
|
5701
5591
|
*/
|
|
5702
|
-
'
|
|
5592
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
5703
5593
|
/**
|
|
5704
5594
|
*
|
|
5705
5595
|
* @type {IAddress}
|
|
@@ -7347,10 +7237,10 @@ export interface IProductResponse {
|
|
|
7347
7237
|
'reviewCount': number;
|
|
7348
7238
|
/**
|
|
7349
7239
|
*
|
|
7350
|
-
* @type {
|
|
7240
|
+
* @type {IProductResponseReviewCounts}
|
|
7351
7241
|
* @memberof IProductResponse
|
|
7352
7242
|
*/
|
|
7353
|
-
'reviewCounts':
|
|
7243
|
+
'reviewCounts': IProductResponseReviewCounts;
|
|
7354
7244
|
/**
|
|
7355
7245
|
*
|
|
7356
7246
|
* @type {IBrandResponse}
|
|
@@ -7370,6 +7260,43 @@ export interface IProductResponse {
|
|
|
7370
7260
|
*/
|
|
7371
7261
|
'template': ITemplateResponse;
|
|
7372
7262
|
}
|
|
7263
|
+
/**
|
|
7264
|
+
*
|
|
7265
|
+
* @export
|
|
7266
|
+
* @interface IProductResponseReviewCounts
|
|
7267
|
+
*/
|
|
7268
|
+
export interface IProductResponseReviewCounts {
|
|
7269
|
+
/**
|
|
7270
|
+
*
|
|
7271
|
+
* @type {number}
|
|
7272
|
+
* @memberof IProductResponseReviewCounts
|
|
7273
|
+
*/
|
|
7274
|
+
'1': number;
|
|
7275
|
+
/**
|
|
7276
|
+
*
|
|
7277
|
+
* @type {number}
|
|
7278
|
+
* @memberof IProductResponseReviewCounts
|
|
7279
|
+
*/
|
|
7280
|
+
'2': number;
|
|
7281
|
+
/**
|
|
7282
|
+
*
|
|
7283
|
+
* @type {number}
|
|
7284
|
+
* @memberof IProductResponseReviewCounts
|
|
7285
|
+
*/
|
|
7286
|
+
'3': number;
|
|
7287
|
+
/**
|
|
7288
|
+
*
|
|
7289
|
+
* @type {number}
|
|
7290
|
+
* @memberof IProductResponseReviewCounts
|
|
7291
|
+
*/
|
|
7292
|
+
'4': number;
|
|
7293
|
+
/**
|
|
7294
|
+
*
|
|
7295
|
+
* @type {number}
|
|
7296
|
+
* @memberof IProductResponseReviewCounts
|
|
7297
|
+
*/
|
|
7298
|
+
'5': number;
|
|
7299
|
+
}
|
|
7373
7300
|
/**
|
|
7374
7301
|
*
|
|
7375
7302
|
* @export
|
|
@@ -8020,16 +7947,18 @@ export interface IState {
|
|
|
8020
7947
|
export interface ITemplateComponentContentResponse {
|
|
8021
7948
|
/**
|
|
8022
7949
|
*
|
|
8023
|
-
* @type {
|
|
7950
|
+
* @type {string}
|
|
8024
7951
|
* @memberof ITemplateComponentContentResponse
|
|
8025
7952
|
*/
|
|
8026
|
-
'contentType':
|
|
7953
|
+
'contentType': string;
|
|
8027
7954
|
/**
|
|
8028
|
-
*
|
|
8029
|
-
* @type {
|
|
7955
|
+
* Construct a type with a set of properties K of type T
|
|
7956
|
+
* @type {{ [key: string]: any; }}
|
|
8030
7957
|
* @memberof ITemplateComponentContentResponse
|
|
8031
7958
|
*/
|
|
8032
|
-
'config':
|
|
7959
|
+
'config': {
|
|
7960
|
+
[key: string]: any;
|
|
7961
|
+
};
|
|
8033
7962
|
/**
|
|
8034
7963
|
*
|
|
8035
7964
|
* @type {string}
|
|
@@ -8040,202 +7969,139 @@ export interface ITemplateComponentContentResponse {
|
|
|
8040
7969
|
/**
|
|
8041
7970
|
*
|
|
8042
7971
|
* @export
|
|
8043
|
-
* @interface
|
|
7972
|
+
* @interface ITemplateComponentResponse
|
|
8044
7973
|
*/
|
|
8045
|
-
export interface
|
|
8046
|
-
/**
|
|
8047
|
-
*
|
|
8048
|
-
* @type {string}
|
|
8049
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8050
|
-
*/
|
|
8051
|
-
'desktopVariant'?: string;
|
|
8052
|
-
/**
|
|
8053
|
-
*
|
|
8054
|
-
* @type {string}
|
|
8055
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8056
|
-
*/
|
|
8057
|
-
'mobileVariant'?: string;
|
|
8058
|
-
/**
|
|
8059
|
-
*
|
|
8060
|
-
* @type {string}
|
|
8061
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8062
|
-
*/
|
|
8063
|
-
'url'?: string;
|
|
8064
|
-
/**
|
|
8065
|
-
*
|
|
8066
|
-
* @type {ButtonVariantEnum}
|
|
8067
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8068
|
-
*/
|
|
8069
|
-
'buttonTwoVariant'?: ButtonVariantEnum;
|
|
8070
|
-
/**
|
|
8071
|
-
*
|
|
8072
|
-
* @type {string}
|
|
8073
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8074
|
-
*/
|
|
8075
|
-
'buttonTwoUrl'?: string;
|
|
8076
|
-
/**
|
|
8077
|
-
*
|
|
8078
|
-
* @type {string}
|
|
8079
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8080
|
-
*/
|
|
8081
|
-
'buttonTwoText'?: string;
|
|
8082
|
-
/**
|
|
8083
|
-
*
|
|
8084
|
-
* @type {ButtonVariantEnum}
|
|
8085
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8086
|
-
*/
|
|
8087
|
-
'buttonOneVariant'?: ButtonVariantEnum;
|
|
8088
|
-
/**
|
|
8089
|
-
*
|
|
8090
|
-
* @type {string}
|
|
8091
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8092
|
-
*/
|
|
8093
|
-
'buttonOneUrl'?: string;
|
|
7974
|
+
export interface ITemplateComponentResponse {
|
|
8094
7975
|
/**
|
|
8095
7976
|
*
|
|
8096
7977
|
* @type {string}
|
|
8097
|
-
* @memberof
|
|
8098
|
-
*/
|
|
8099
|
-
'buttonOneText'?: string;
|
|
8100
|
-
/**
|
|
8101
|
-
*
|
|
8102
|
-
* @type {IImage}
|
|
8103
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8104
|
-
*/
|
|
8105
|
-
'imageMobile'?: IImage;
|
|
8106
|
-
/**
|
|
8107
|
-
*
|
|
8108
|
-
* @type {IImage}
|
|
8109
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
7978
|
+
* @memberof ITemplateComponentResponse
|
|
8110
7979
|
*/
|
|
8111
|
-
'
|
|
7980
|
+
'type': string;
|
|
8112
7981
|
/**
|
|
8113
|
-
*
|
|
8114
|
-
* @type {string}
|
|
8115
|
-
* @memberof
|
|
7982
|
+
* Construct a type with a set of properties K of type T
|
|
7983
|
+
* @type {{ [key: string]: any; }}
|
|
7984
|
+
* @memberof ITemplateComponentResponse
|
|
8116
7985
|
*/
|
|
8117
|
-
'
|
|
7986
|
+
'config': {
|
|
7987
|
+
[key: string]: any;
|
|
7988
|
+
};
|
|
8118
7989
|
/**
|
|
8119
7990
|
*
|
|
8120
7991
|
* @type {string}
|
|
8121
|
-
* @memberof
|
|
7992
|
+
* @memberof ITemplateComponentResponse
|
|
8122
7993
|
*/
|
|
8123
|
-
'
|
|
7994
|
+
'_id': string;
|
|
8124
7995
|
/**
|
|
8125
7996
|
*
|
|
8126
|
-
* @type {
|
|
8127
|
-
* @memberof
|
|
7997
|
+
* @type {Array<ITemplateComponentContentResponse>}
|
|
7998
|
+
* @memberof ITemplateComponentResponse
|
|
8128
7999
|
*/
|
|
8129
|
-
'
|
|
8000
|
+
'contents': Array<ITemplateComponentContentResponse>;
|
|
8130
8001
|
/**
|
|
8131
8002
|
*
|
|
8132
|
-
* @type {
|
|
8133
|
-
* @memberof
|
|
8003
|
+
* @type {ITemplateComponentResponseProducts}
|
|
8004
|
+
* @memberof ITemplateComponentResponse
|
|
8134
8005
|
*/
|
|
8135
|
-
'
|
|
8006
|
+
'products'?: ITemplateComponentResponseProducts;
|
|
8136
8007
|
/**
|
|
8137
8008
|
*
|
|
8138
|
-
* @type {
|
|
8139
|
-
* @memberof
|
|
8009
|
+
* @type {Array<ICategoryResponse>}
|
|
8010
|
+
* @memberof ITemplateComponentResponse
|
|
8140
8011
|
*/
|
|
8141
|
-
'
|
|
8012
|
+
'categories'?: Array<ICategoryResponse>;
|
|
8142
8013
|
/**
|
|
8143
8014
|
*
|
|
8144
|
-
* @type {
|
|
8145
|
-
* @memberof
|
|
8015
|
+
* @type {Array<IBrandResponse>}
|
|
8016
|
+
* @memberof ITemplateComponentResponse
|
|
8146
8017
|
*/
|
|
8147
|
-
'
|
|
8018
|
+
'brands'?: Array<IBrandResponse>;
|
|
8148
8019
|
/**
|
|
8149
8020
|
*
|
|
8150
|
-
* @type {
|
|
8151
|
-
* @memberof
|
|
8021
|
+
* @type {Array<ICollectionResponse>}
|
|
8022
|
+
* @memberof ITemplateComponentResponse
|
|
8152
8023
|
*/
|
|
8153
|
-
'
|
|
8024
|
+
'collections'?: Array<ICollectionResponse>;
|
|
8154
8025
|
/**
|
|
8155
8026
|
*
|
|
8156
|
-
* @type {
|
|
8157
|
-
* @memberof
|
|
8027
|
+
* @type {ITemplateComponentResponsePages}
|
|
8028
|
+
* @memberof ITemplateComponentResponse
|
|
8158
8029
|
*/
|
|
8159
|
-
'
|
|
8030
|
+
'pages'?: ITemplateComponentResponsePages;
|
|
8031
|
+
}
|
|
8032
|
+
/**
|
|
8033
|
+
*
|
|
8034
|
+
* @export
|
|
8035
|
+
* @interface ITemplateComponentResponsePages
|
|
8036
|
+
*/
|
|
8037
|
+
export interface ITemplateComponentResponsePages {
|
|
8160
8038
|
/**
|
|
8161
8039
|
*
|
|
8162
|
-
* @type {
|
|
8163
|
-
* @memberof
|
|
8040
|
+
* @type {number}
|
|
8041
|
+
* @memberof ITemplateComponentResponsePages
|
|
8164
8042
|
*/
|
|
8165
|
-
'
|
|
8043
|
+
'limit'?: number;
|
|
8166
8044
|
/**
|
|
8167
8045
|
*
|
|
8168
|
-
* @type {
|
|
8169
|
-
* @memberof
|
|
8046
|
+
* @type {Array<IPageResponse>}
|
|
8047
|
+
* @memberof ITemplateComponentResponsePages
|
|
8170
8048
|
*/
|
|
8171
|
-
'
|
|
8049
|
+
'list'?: Array<IPageResponse>;
|
|
8172
8050
|
/**
|
|
8173
8051
|
*
|
|
8174
|
-
* @type {
|
|
8175
|
-
* @memberof
|
|
8052
|
+
* @type {Array<IPageResponse>}
|
|
8053
|
+
* @memberof ITemplateComponentResponsePages
|
|
8176
8054
|
*/
|
|
8177
|
-
'
|
|
8055
|
+
'items'?: Array<IPageResponse>;
|
|
8178
8056
|
}
|
|
8179
8057
|
/**
|
|
8180
8058
|
*
|
|
8181
8059
|
* @export
|
|
8182
|
-
* @interface
|
|
8060
|
+
* @interface ITemplateComponentResponseProducts
|
|
8183
8061
|
*/
|
|
8184
|
-
export interface
|
|
8185
|
-
/**
|
|
8186
|
-
*
|
|
8187
|
-
* @type {Array<string>}
|
|
8188
|
-
* @memberof ITemplateComponentResponse
|
|
8189
|
-
*/
|
|
8190
|
-
'collections'?: Array<string>;
|
|
8191
|
-
/**
|
|
8192
|
-
*
|
|
8193
|
-
* @type {ComponentTypeEnum}
|
|
8194
|
-
* @memberof ITemplateComponentResponse
|
|
8195
|
-
*/
|
|
8196
|
-
'type': ComponentTypeEnum;
|
|
8062
|
+
export interface ITemplateComponentResponseProducts {
|
|
8197
8063
|
/**
|
|
8198
8064
|
*
|
|
8199
|
-
* @type {
|
|
8200
|
-
* @memberof
|
|
8065
|
+
* @type {Array<IProductResponse>}
|
|
8066
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8201
8067
|
*/
|
|
8202
|
-
'
|
|
8068
|
+
'list'?: Array<IProductResponse>;
|
|
8203
8069
|
/**
|
|
8204
8070
|
*
|
|
8205
|
-
* @type {
|
|
8206
|
-
* @memberof
|
|
8071
|
+
* @type {number}
|
|
8072
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8207
8073
|
*/
|
|
8208
|
-
'
|
|
8074
|
+
'limit'?: number;
|
|
8209
8075
|
/**
|
|
8210
8076
|
*
|
|
8211
|
-
* @type {
|
|
8212
|
-
* @memberof
|
|
8077
|
+
* @type {ComponentProductListTypeEnum}
|
|
8078
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8213
8079
|
*/
|
|
8214
|
-
'
|
|
8080
|
+
'listType': ComponentProductListTypeEnum;
|
|
8215
8081
|
/**
|
|
8216
8082
|
*
|
|
8217
|
-
* @type {
|
|
8218
|
-
* @memberof
|
|
8083
|
+
* @type {ComponentProductOrderEnum}
|
|
8084
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8219
8085
|
*/
|
|
8220
|
-
'
|
|
8086
|
+
'order'?: ComponentProductOrderEnum;
|
|
8221
8087
|
/**
|
|
8222
8088
|
*
|
|
8223
|
-
* @type {
|
|
8224
|
-
* @memberof
|
|
8089
|
+
* @type {ComponentProductTypeEnum}
|
|
8090
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8225
8091
|
*/
|
|
8226
|
-
'
|
|
8092
|
+
'relType'?: ComponentProductTypeEnum;
|
|
8227
8093
|
/**
|
|
8228
8094
|
*
|
|
8229
8095
|
* @type {string}
|
|
8230
|
-
* @memberof
|
|
8096
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8231
8097
|
*/
|
|
8232
|
-
'
|
|
8098
|
+
'relation'?: string;
|
|
8233
8099
|
/**
|
|
8234
8100
|
*
|
|
8235
|
-
* @type {Array<
|
|
8236
|
-
* @memberof
|
|
8101
|
+
* @type {Array<IProductResponse>}
|
|
8102
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8237
8103
|
*/
|
|
8238
|
-
'
|
|
8104
|
+
'items'?: Array<IProductResponse>;
|
|
8239
8105
|
}
|
|
8240
8106
|
/**
|
|
8241
8107
|
*
|
|
@@ -8251,10 +8117,10 @@ export interface ITemplatePatchRequest {
|
|
|
8251
8117
|
'title'?: string;
|
|
8252
8118
|
/**
|
|
8253
8119
|
*
|
|
8254
|
-
* @type {
|
|
8120
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8255
8121
|
* @memberof ITemplatePatchRequest
|
|
8256
8122
|
*/
|
|
8257
|
-
'components'?:
|
|
8123
|
+
'components'?: PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8258
8124
|
/**
|
|
8259
8125
|
*
|
|
8260
8126
|
* @type {TemplateTypeEnum}
|
|
@@ -8282,10 +8148,10 @@ export interface ITemplatePostRequest {
|
|
|
8282
8148
|
'title': string;
|
|
8283
8149
|
/**
|
|
8284
8150
|
*
|
|
8285
|
-
* @type {
|
|
8151
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8286
8152
|
* @memberof ITemplatePostRequest
|
|
8287
8153
|
*/
|
|
8288
|
-
'components':
|
|
8154
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8289
8155
|
/**
|
|
8290
8156
|
*
|
|
8291
8157
|
* @type {string}
|
|
@@ -8355,10 +8221,10 @@ export interface ITemplateResponse {
|
|
|
8355
8221
|
'type': TemplateTypeEnum;
|
|
8356
8222
|
/**
|
|
8357
8223
|
*
|
|
8358
|
-
* @type {
|
|
8224
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8359
8225
|
* @memberof ITemplateResponse
|
|
8360
8226
|
*/
|
|
8361
|
-
'components':
|
|
8227
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8362
8228
|
}
|
|
8363
8229
|
/**
|
|
8364
8230
|
*
|
|
@@ -8434,6 +8300,14 @@ export interface IThemePatchRequest {
|
|
|
8434
8300
|
* @memberof IThemePatchRequest
|
|
8435
8301
|
*/
|
|
8436
8302
|
'demoUrl'?: string;
|
|
8303
|
+
/**
|
|
8304
|
+
* Construct a type with a set of properties K of type T
|
|
8305
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
8306
|
+
* @memberof IThemePatchRequest
|
|
8307
|
+
*/
|
|
8308
|
+
'files'?: {
|
|
8309
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
8310
|
+
};
|
|
8437
8311
|
}
|
|
8438
8312
|
/**
|
|
8439
8313
|
*
|
|
@@ -8465,6 +8339,14 @@ export interface IThemePostRequest {
|
|
|
8465
8339
|
* @memberof IThemePostRequest
|
|
8466
8340
|
*/
|
|
8467
8341
|
'demoUrl'?: string;
|
|
8342
|
+
/**
|
|
8343
|
+
* Construct a type with a set of properties K of type T
|
|
8344
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
8345
|
+
* @memberof IThemePostRequest
|
|
8346
|
+
*/
|
|
8347
|
+
'files'?: {
|
|
8348
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
8349
|
+
};
|
|
8468
8350
|
/**
|
|
8469
8351
|
*
|
|
8470
8352
|
* @type {IThemeResponseTemplate}
|
|
@@ -8544,6 +8426,14 @@ export interface IThemeResponse {
|
|
|
8544
8426
|
* @memberof IThemeResponse
|
|
8545
8427
|
*/
|
|
8546
8428
|
'creator'?: string;
|
|
8429
|
+
/**
|
|
8430
|
+
* Construct a type with a set of properties K of type T
|
|
8431
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
8432
|
+
* @memberof IThemeResponse
|
|
8433
|
+
*/
|
|
8434
|
+
'files'?: {
|
|
8435
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
8436
|
+
};
|
|
8547
8437
|
/**
|
|
8548
8438
|
*
|
|
8549
8439
|
* @type {IThemeResponseTemplate}
|
|
@@ -8559,16 +8449,16 @@ export interface IThemeResponse {
|
|
|
8559
8449
|
export interface IThemeResponseTemplate {
|
|
8560
8450
|
/**
|
|
8561
8451
|
*
|
|
8562
|
-
* @type {
|
|
8452
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8563
8453
|
* @memberof IThemeResponseTemplate
|
|
8564
8454
|
*/
|
|
8565
|
-
'footer':
|
|
8455
|
+
'footer': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8566
8456
|
/**
|
|
8567
8457
|
*
|
|
8568
|
-
* @type {
|
|
8458
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8569
8459
|
* @memberof IThemeResponseTemplate
|
|
8570
8460
|
*/
|
|
8571
|
-
'header':
|
|
8461
|
+
'header': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8572
8462
|
}
|
|
8573
8463
|
/**
|
|
8574
8464
|
*
|
|
@@ -9087,6 +8977,31 @@ export interface PartialRecordLanguageEnumIContentsValue {
|
|
|
9087
8977
|
*/
|
|
9088
8978
|
'de'?: IContentsValue;
|
|
9089
8979
|
}
|
|
8980
|
+
/**
|
|
8981
|
+
* Make all properties in T optional
|
|
8982
|
+
* @export
|
|
8983
|
+
* @interface PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
8984
|
+
*/
|
|
8985
|
+
export interface PartialRecordLanguageEnumITemplateComponentResponseArray {
|
|
8986
|
+
/**
|
|
8987
|
+
*
|
|
8988
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
8989
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
8990
|
+
*/
|
|
8991
|
+
'tr'?: Array<ITemplateComponentResponse>;
|
|
8992
|
+
/**
|
|
8993
|
+
*
|
|
8994
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
8995
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
8996
|
+
*/
|
|
8997
|
+
'en'?: Array<ITemplateComponentResponse>;
|
|
8998
|
+
/**
|
|
8999
|
+
*
|
|
9000
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
9001
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9002
|
+
*/
|
|
9003
|
+
'de'?: Array<ITemplateComponentResponse>;
|
|
9004
|
+
}
|
|
9090
9005
|
/**
|
|
9091
9006
|
* Make all properties in T optional
|
|
9092
9007
|
* @export
|
|
@@ -10086,16 +10001,16 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
10086
10001
|
'user'?: string;
|
|
10087
10002
|
/**
|
|
10088
10003
|
*
|
|
10089
|
-
* @type {
|
|
10004
|
+
* @type {CurrencyEnum}
|
|
10090
10005
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10091
10006
|
*/
|
|
10092
|
-
'
|
|
10007
|
+
'currency': CurrencyEnum;
|
|
10093
10008
|
/**
|
|
10094
10009
|
*
|
|
10095
|
-
* @type {
|
|
10010
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
10096
10011
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10097
10012
|
*/
|
|
10098
|
-
'
|
|
10013
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
10099
10014
|
/**
|
|
10100
10015
|
*
|
|
10101
10016
|
* @type {IAddress}
|
|
@@ -10661,70 +10576,33 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
10661
10576
|
'reviewCount': number;
|
|
10662
10577
|
/**
|
|
10663
10578
|
*
|
|
10664
|
-
* @type {
|
|
10579
|
+
* @type {IProductResponseReviewCounts}
|
|
10665
10580
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10666
10581
|
*/
|
|
10667
|
-
'reviewCounts':
|
|
10582
|
+
'reviewCounts': IProductResponseReviewCounts;
|
|
10668
10583
|
}
|
|
10669
10584
|
/**
|
|
10670
|
-
*
|
|
10585
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10671
10586
|
* @export
|
|
10672
|
-
* @interface
|
|
10587
|
+
* @interface PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10673
10588
|
*/
|
|
10674
|
-
export interface
|
|
10589
|
+
export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
10675
10590
|
/**
|
|
10676
10591
|
*
|
|
10677
|
-
* @type {
|
|
10678
|
-
* @memberof
|
|
10592
|
+
* @type {string}
|
|
10593
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10679
10594
|
*/
|
|
10680
|
-
'
|
|
10595
|
+
'_id': string;
|
|
10681
10596
|
/**
|
|
10682
10597
|
*
|
|
10683
|
-
* @type {
|
|
10684
|
-
* @memberof
|
|
10598
|
+
* @type {string}
|
|
10599
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10685
10600
|
*/
|
|
10686
|
-
'
|
|
10601
|
+
'category'?: string;
|
|
10687
10602
|
/**
|
|
10688
10603
|
*
|
|
10689
|
-
* @type {
|
|
10690
|
-
* @memberof
|
|
10691
|
-
*/
|
|
10692
|
-
'3': number;
|
|
10693
|
-
/**
|
|
10694
|
-
*
|
|
10695
|
-
* @type {number}
|
|
10696
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10697
|
-
*/
|
|
10698
|
-
'4': number;
|
|
10699
|
-
/**
|
|
10700
|
-
*
|
|
10701
|
-
* @type {number}
|
|
10702
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10703
|
-
*/
|
|
10704
|
-
'5': number;
|
|
10705
|
-
}
|
|
10706
|
-
/**
|
|
10707
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10708
|
-
* @export
|
|
10709
|
-
* @interface PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10710
|
-
*/
|
|
10711
|
-
export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
10712
|
-
/**
|
|
10713
|
-
*
|
|
10714
|
-
* @type {string}
|
|
10715
|
-
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10716
|
-
*/
|
|
10717
|
-
'_id': string;
|
|
10718
|
-
/**
|
|
10719
|
-
*
|
|
10720
|
-
* @type {string}
|
|
10721
|
-
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10722
|
-
*/
|
|
10723
|
-
'category'?: string;
|
|
10724
|
-
/**
|
|
10725
|
-
*
|
|
10726
|
-
* @type {Array<string>}
|
|
10727
|
-
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10604
|
+
* @type {Array<string>}
|
|
10605
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10728
10606
|
*/
|
|
10729
10607
|
'collections': Array<string>;
|
|
10730
10608
|
/**
|
|
@@ -10953,394 +10831,6 @@ export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
|
10953
10831
|
*/
|
|
10954
10832
|
'comment': string;
|
|
10955
10833
|
}
|
|
10956
|
-
/**
|
|
10957
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10958
|
-
* @export
|
|
10959
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10960
|
-
*/
|
|
10961
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContents {
|
|
10962
|
-
/**
|
|
10963
|
-
*
|
|
10964
|
-
* @type {Array<string>}
|
|
10965
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10966
|
-
*/
|
|
10967
|
-
'collections'?: Array<string>;
|
|
10968
|
-
/**
|
|
10969
|
-
*
|
|
10970
|
-
* @type {ComponentTypeEnum}
|
|
10971
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10972
|
-
*/
|
|
10973
|
-
'type': ComponentTypeEnum;
|
|
10974
|
-
/**
|
|
10975
|
-
*
|
|
10976
|
-
* @type {PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig}
|
|
10977
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10978
|
-
*/
|
|
10979
|
-
'config': PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig;
|
|
10980
|
-
/**
|
|
10981
|
-
*
|
|
10982
|
-
* @type {PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts}
|
|
10983
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10984
|
-
*/
|
|
10985
|
-
'products'?: PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts;
|
|
10986
|
-
/**
|
|
10987
|
-
*
|
|
10988
|
-
* @type {Array<string>}
|
|
10989
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10990
|
-
*/
|
|
10991
|
-
'categories'?: Array<string>;
|
|
10992
|
-
/**
|
|
10993
|
-
*
|
|
10994
|
-
* @type {Array<string>}
|
|
10995
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10996
|
-
*/
|
|
10997
|
-
'brands'?: Array<string>;
|
|
10998
|
-
/**
|
|
10999
|
-
*
|
|
11000
|
-
* @type {PickITemplateComponentExcludeKeyofITemplateComponentContentsPages}
|
|
11001
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
11002
|
-
*/
|
|
11003
|
-
'pages'?: PickITemplateComponentExcludeKeyofITemplateComponentContentsPages;
|
|
11004
|
-
}
|
|
11005
|
-
/**
|
|
11006
|
-
*
|
|
11007
|
-
* @export
|
|
11008
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11009
|
-
*/
|
|
11010
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig {
|
|
11011
|
-
/**
|
|
11012
|
-
*
|
|
11013
|
-
* @type {string}
|
|
11014
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11015
|
-
*/
|
|
11016
|
-
'buttonTwoUrl'?: string;
|
|
11017
|
-
/**
|
|
11018
|
-
*
|
|
11019
|
-
* @type {string}
|
|
11020
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11021
|
-
*/
|
|
11022
|
-
'buttonTwoText'?: string;
|
|
11023
|
-
/**
|
|
11024
|
-
*
|
|
11025
|
-
* @type {string}
|
|
11026
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11027
|
-
*/
|
|
11028
|
-
'buttonOneUrl'?: string;
|
|
11029
|
-
/**
|
|
11030
|
-
*
|
|
11031
|
-
* @type {string}
|
|
11032
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11033
|
-
*/
|
|
11034
|
-
'buttonOneText'?: string;
|
|
11035
|
-
/**
|
|
11036
|
-
*
|
|
11037
|
-
* @type {string}
|
|
11038
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11039
|
-
*/
|
|
11040
|
-
'url'?: string;
|
|
11041
|
-
/**
|
|
11042
|
-
*
|
|
11043
|
-
* @type {IImage}
|
|
11044
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11045
|
-
*/
|
|
11046
|
-
'imageMobile'?: IImage;
|
|
11047
|
-
/**
|
|
11048
|
-
*
|
|
11049
|
-
* @type {IImage}
|
|
11050
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11051
|
-
*/
|
|
11052
|
-
'image'?: IImage;
|
|
11053
|
-
/**
|
|
11054
|
-
*
|
|
11055
|
-
* @type {string}
|
|
11056
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11057
|
-
*/
|
|
11058
|
-
'description'?: string;
|
|
11059
|
-
/**
|
|
11060
|
-
*
|
|
11061
|
-
* @type {string}
|
|
11062
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11063
|
-
*/
|
|
11064
|
-
'title'?: string;
|
|
11065
|
-
/**
|
|
11066
|
-
*
|
|
11067
|
-
* @type {boolean}
|
|
11068
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11069
|
-
*/
|
|
11070
|
-
'legalDocuments'?: boolean;
|
|
11071
|
-
/**
|
|
11072
|
-
*
|
|
11073
|
-
* @type {boolean}
|
|
11074
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11075
|
-
*/
|
|
11076
|
-
'policyLinks'?: boolean;
|
|
11077
|
-
/**
|
|
11078
|
-
*
|
|
11079
|
-
* @type {boolean}
|
|
11080
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11081
|
-
*/
|
|
11082
|
-
'paymentGatewayPictures'?: boolean;
|
|
11083
|
-
/**
|
|
11084
|
-
*
|
|
11085
|
-
* @type {boolean}
|
|
11086
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11087
|
-
*/
|
|
11088
|
-
'languageSwitcher'?: boolean;
|
|
11089
|
-
/**
|
|
11090
|
-
*
|
|
11091
|
-
* @type {boolean}
|
|
11092
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11093
|
-
*/
|
|
11094
|
-
'socialButtons'?: boolean;
|
|
11095
|
-
/**
|
|
11096
|
-
*
|
|
11097
|
-
* @type {boolean}
|
|
11098
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11099
|
-
*/
|
|
11100
|
-
'isInnerContainer'?: boolean;
|
|
11101
|
-
/**
|
|
11102
|
-
*
|
|
11103
|
-
* @type {number}
|
|
11104
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11105
|
-
*/
|
|
11106
|
-
'contentMobileMaxWidth'?: number;
|
|
11107
|
-
/**
|
|
11108
|
-
*
|
|
11109
|
-
* @type {number}
|
|
11110
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11111
|
-
*/
|
|
11112
|
-
'contentMaxWidth'?: number;
|
|
11113
|
-
/**
|
|
11114
|
-
*
|
|
11115
|
-
* @type {number}
|
|
11116
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11117
|
-
*/
|
|
11118
|
-
'contentMobileHeight'?: number;
|
|
11119
|
-
/**
|
|
11120
|
-
*
|
|
11121
|
-
* @type {number}
|
|
11122
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11123
|
-
*/
|
|
11124
|
-
'contentHeight'?: number;
|
|
11125
|
-
/**
|
|
11126
|
-
*
|
|
11127
|
-
* @type {number}
|
|
11128
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11129
|
-
*/
|
|
11130
|
-
'containerMobileHeight'?: number;
|
|
11131
|
-
/**
|
|
11132
|
-
*
|
|
11133
|
-
* @type {number}
|
|
11134
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11135
|
-
*/
|
|
11136
|
-
'containerHeight'?: number;
|
|
11137
|
-
/**
|
|
11138
|
-
*
|
|
11139
|
-
* @type {number}
|
|
11140
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11141
|
-
*/
|
|
11142
|
-
'containerWidth'?: number;
|
|
11143
|
-
/**
|
|
11144
|
-
*
|
|
11145
|
-
* @type {ContentPositionYEnum}
|
|
11146
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11147
|
-
*/
|
|
11148
|
-
'contentMobilePositionY'?: ContentPositionYEnum;
|
|
11149
|
-
/**
|
|
11150
|
-
*
|
|
11151
|
-
* @type {ContentPositionYEnum}
|
|
11152
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11153
|
-
*/
|
|
11154
|
-
'contentPositionY'?: ContentPositionYEnum;
|
|
11155
|
-
/**
|
|
11156
|
-
*
|
|
11157
|
-
* @type {ContentPositionXEnum}
|
|
11158
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11159
|
-
*/
|
|
11160
|
-
'contentMobilePositionX'?: ContentPositionXEnum;
|
|
11161
|
-
/**
|
|
11162
|
-
*
|
|
11163
|
-
* @type {ContentPositionXEnum}
|
|
11164
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11165
|
-
*/
|
|
11166
|
-
'contentPositionX'?: ContentPositionXEnum;
|
|
11167
|
-
/**
|
|
11168
|
-
*
|
|
11169
|
-
* @type {number}
|
|
11170
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11171
|
-
*/
|
|
11172
|
-
'imageAspectRatio'?: number;
|
|
11173
|
-
/**
|
|
11174
|
-
*
|
|
11175
|
-
* @type {ProductDetailImageZoomTypeEnum}
|
|
11176
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11177
|
-
*/
|
|
11178
|
-
'productDetailImageZoomType'?: ProductDetailImageZoomTypeEnum;
|
|
11179
|
-
/**
|
|
11180
|
-
*
|
|
11181
|
-
* @type {FontSizeEnum}
|
|
11182
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11183
|
-
*/
|
|
11184
|
-
'contentDescriptionFontSize'?: FontSizeEnum;
|
|
11185
|
-
/**
|
|
11186
|
-
*
|
|
11187
|
-
* @type {FontSizeEnum}
|
|
11188
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11189
|
-
*/
|
|
11190
|
-
'contentTitleFontSize'?: FontSizeEnum;
|
|
11191
|
-
/**
|
|
11192
|
-
*
|
|
11193
|
-
* @type {FontSizeEnum}
|
|
11194
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11195
|
-
*/
|
|
11196
|
-
'descriptionFontSize'?: FontSizeEnum;
|
|
11197
|
-
/**
|
|
11198
|
-
*
|
|
11199
|
-
* @type {FontSizeEnum}
|
|
11200
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11201
|
-
*/
|
|
11202
|
-
'titleFontSize'?: FontSizeEnum;
|
|
11203
|
-
/**
|
|
11204
|
-
*
|
|
11205
|
-
* @type {string}
|
|
11206
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11207
|
-
*/
|
|
11208
|
-
'textColor'?: string;
|
|
11209
|
-
/**
|
|
11210
|
-
*
|
|
11211
|
-
* @type {string}
|
|
11212
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11213
|
-
*/
|
|
11214
|
-
'customStyles'?: string;
|
|
11215
|
-
/**
|
|
11216
|
-
*
|
|
11217
|
-
* @type {Array<string>}
|
|
11218
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11219
|
-
*/
|
|
11220
|
-
'customClasses'?: Array<string>;
|
|
11221
|
-
/**
|
|
11222
|
-
*
|
|
11223
|
-
* @type {string}
|
|
11224
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11225
|
-
*/
|
|
11226
|
-
'backgroundColor'?: string;
|
|
11227
|
-
/**
|
|
11228
|
-
*
|
|
11229
|
-
* @type {boolean}
|
|
11230
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11231
|
-
*/
|
|
11232
|
-
'slide'?: boolean;
|
|
11233
|
-
/**
|
|
11234
|
-
*
|
|
11235
|
-
* @type {boolean}
|
|
11236
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11237
|
-
*/
|
|
11238
|
-
'cardContainer'?: boolean;
|
|
11239
|
-
/**
|
|
11240
|
-
*
|
|
11241
|
-
* @type {boolean}
|
|
11242
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11243
|
-
*/
|
|
11244
|
-
'grid'?: boolean;
|
|
11245
|
-
/**
|
|
11246
|
-
*
|
|
11247
|
-
* @type {boolean}
|
|
11248
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11249
|
-
*/
|
|
11250
|
-
'display': boolean;
|
|
11251
|
-
/**
|
|
11252
|
-
*
|
|
11253
|
-
* @type {number}
|
|
11254
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11255
|
-
*/
|
|
11256
|
-
'interval'?: number;
|
|
11257
|
-
/**
|
|
11258
|
-
*
|
|
11259
|
-
* @type {number}
|
|
11260
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11261
|
-
*/
|
|
11262
|
-
'mobilePerViewCount'?: number;
|
|
11263
|
-
/**
|
|
11264
|
-
*
|
|
11265
|
-
* @type {number}
|
|
11266
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11267
|
-
*/
|
|
11268
|
-
'perViewCount'?: number;
|
|
11269
|
-
/**
|
|
11270
|
-
*
|
|
11271
|
-
* @type {boolean}
|
|
11272
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11273
|
-
*/
|
|
11274
|
-
'autoPlay'?: boolean;
|
|
11275
|
-
/**
|
|
11276
|
-
*
|
|
11277
|
-
* @type {boolean}
|
|
11278
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11279
|
-
*/
|
|
11280
|
-
'addName'?: boolean;
|
|
11281
|
-
}
|
|
11282
|
-
/**
|
|
11283
|
-
*
|
|
11284
|
-
* @export
|
|
11285
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsPages
|
|
11286
|
-
*/
|
|
11287
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsPages {
|
|
11288
|
-
/**
|
|
11289
|
-
*
|
|
11290
|
-
* @type {number}
|
|
11291
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsPages
|
|
11292
|
-
*/
|
|
11293
|
-
'limit'?: number;
|
|
11294
|
-
/**
|
|
11295
|
-
*
|
|
11296
|
-
* @type {Array<string>}
|
|
11297
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsPages
|
|
11298
|
-
*/
|
|
11299
|
-
'items'?: Array<string>;
|
|
11300
|
-
}
|
|
11301
|
-
/**
|
|
11302
|
-
*
|
|
11303
|
-
* @export
|
|
11304
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11305
|
-
*/
|
|
11306
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts {
|
|
11307
|
-
/**
|
|
11308
|
-
*
|
|
11309
|
-
* @type {number}
|
|
11310
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11311
|
-
*/
|
|
11312
|
-
'limit'?: number;
|
|
11313
|
-
/**
|
|
11314
|
-
*
|
|
11315
|
-
* @type {ComponentProductListTypeEnum}
|
|
11316
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11317
|
-
*/
|
|
11318
|
-
'listType': ComponentProductListTypeEnum;
|
|
11319
|
-
/**
|
|
11320
|
-
*
|
|
11321
|
-
* @type {ComponentProductOrderEnum}
|
|
11322
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11323
|
-
*/
|
|
11324
|
-
'order'?: ComponentProductOrderEnum;
|
|
11325
|
-
/**
|
|
11326
|
-
*
|
|
11327
|
-
* @type {ComponentProductTypeEnum}
|
|
11328
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11329
|
-
*/
|
|
11330
|
-
'relType'?: ComponentProductTypeEnum;
|
|
11331
|
-
/**
|
|
11332
|
-
*
|
|
11333
|
-
* @type {string}
|
|
11334
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11335
|
-
*/
|
|
11336
|
-
'relation'?: string;
|
|
11337
|
-
/**
|
|
11338
|
-
*
|
|
11339
|
-
* @type {Array<string>}
|
|
11340
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11341
|
-
*/
|
|
11342
|
-
'items'?: Array<string>;
|
|
11343
|
-
}
|
|
11344
10834
|
/**
|
|
11345
10835
|
* From T, pick a set of properties whose keys are in the union K
|
|
11346
10836
|
* @export
|
|
@@ -11416,10 +10906,10 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
11416
10906
|
'title': string;
|
|
11417
10907
|
/**
|
|
11418
10908
|
*
|
|
11419
|
-
* @type {
|
|
10909
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
11420
10910
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
11421
10911
|
*/
|
|
11422
|
-
'components':
|
|
10912
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
11423
10913
|
/**
|
|
11424
10914
|
*
|
|
11425
10915
|
* @type {string}
|
|
@@ -11505,6 +10995,14 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
11505
10995
|
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
11506
10996
|
*/
|
|
11507
10997
|
'creator'?: string;
|
|
10998
|
+
/**
|
|
10999
|
+
* Construct a type with a set of properties K of type T
|
|
11000
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
11001
|
+
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
11002
|
+
*/
|
|
11003
|
+
'files'?: {
|
|
11004
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
11005
|
+
};
|
|
11508
11006
|
}
|
|
11509
11007
|
/**
|
|
11510
11008
|
*
|
|
@@ -11791,6 +11289,14 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
|
|
|
11791
11289
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
|
|
11792
11290
|
*/
|
|
11793
11291
|
'demoUrl'?: string;
|
|
11292
|
+
/**
|
|
11293
|
+
* Construct a type with a set of properties K of type T
|
|
11294
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
11295
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
|
|
11296
|
+
*/
|
|
11297
|
+
'files'?: {
|
|
11298
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
11299
|
+
};
|
|
11794
11300
|
}
|
|
11795
11301
|
/**
|
|
11796
11302
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12041,19 +11547,6 @@ export interface PriceType {
|
|
|
12041
11547
|
*/
|
|
12042
11548
|
'price': number;
|
|
12043
11549
|
}
|
|
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
11550
|
/**
|
|
12058
11551
|
* Construct a type with a set of properties K of type T
|
|
12059
11552
|
* @export
|
|
@@ -12165,31 +11658,6 @@ export interface RecordCurrencyEnumNumber {
|
|
|
12165
11658
|
*/
|
|
12166
11659
|
'jpy': number;
|
|
12167
11660
|
}
|
|
12168
|
-
/**
|
|
12169
|
-
* Construct a type with a set of properties K of type T
|
|
12170
|
-
* @export
|
|
12171
|
-
* @interface RecordLanguageEnumITemplateComponentResponseArray
|
|
12172
|
-
*/
|
|
12173
|
-
export interface RecordLanguageEnumITemplateComponentResponseArray {
|
|
12174
|
-
/**
|
|
12175
|
-
*
|
|
12176
|
-
* @type {Array<ITemplateComponentResponse>}
|
|
12177
|
-
* @memberof RecordLanguageEnumITemplateComponentResponseArray
|
|
12178
|
-
*/
|
|
12179
|
-
'tr': Array<ITemplateComponentResponse>;
|
|
12180
|
-
/**
|
|
12181
|
-
*
|
|
12182
|
-
* @type {Array<ITemplateComponentResponse>}
|
|
12183
|
-
* @memberof RecordLanguageEnumITemplateComponentResponseArray
|
|
12184
|
-
*/
|
|
12185
|
-
'en': Array<ITemplateComponentResponse>;
|
|
12186
|
-
/**
|
|
12187
|
-
*
|
|
12188
|
-
* @type {Array<ITemplateComponentResponse>}
|
|
12189
|
-
* @memberof RecordLanguageEnumITemplateComponentResponseArray
|
|
12190
|
-
*/
|
|
12191
|
-
'de': Array<ITemplateComponentResponse>;
|
|
12192
|
-
}
|
|
12193
11661
|
/**
|
|
12194
11662
|
* Construct a type with a set of properties K of type T
|
|
12195
11663
|
* @export
|
|
@@ -12228,6 +11696,13 @@ export interface RecordLanguageEnumTitleStringTr {
|
|
|
12228
11696
|
*/
|
|
12229
11697
|
'title': string;
|
|
12230
11698
|
}
|
|
11699
|
+
/**
|
|
11700
|
+
*
|
|
11701
|
+
* @export
|
|
11702
|
+
* @interface RecordStringStringOrAnyValue
|
|
11703
|
+
*/
|
|
11704
|
+
export interface RecordStringStringOrAnyValue {
|
|
11705
|
+
}
|
|
12231
11706
|
/**
|
|
12232
11707
|
*
|
|
12233
11708
|
* @export
|