@infisale-client/api 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 +269 -744
- package/dist/api/api.js +73 -120
- package/dist/api/api.mjs +69 -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
|
|
@@ -5703,16 +5593,16 @@ export interface IOrderResponse {
|
|
|
5703
5593
|
'user'?: string;
|
|
5704
5594
|
/**
|
|
5705
5595
|
*
|
|
5706
|
-
* @type {
|
|
5596
|
+
* @type {CurrencyEnum}
|
|
5707
5597
|
* @memberof IOrderResponse
|
|
5708
5598
|
*/
|
|
5709
|
-
'
|
|
5599
|
+
'currency': CurrencyEnum;
|
|
5710
5600
|
/**
|
|
5711
5601
|
*
|
|
5712
|
-
* @type {
|
|
5602
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
5713
5603
|
* @memberof IOrderResponse
|
|
5714
5604
|
*/
|
|
5715
|
-
'
|
|
5605
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
5716
5606
|
/**
|
|
5717
5607
|
*
|
|
5718
5608
|
* @type {IAddress}
|
|
@@ -7360,10 +7250,10 @@ export interface IProductResponse {
|
|
|
7360
7250
|
'reviewCount': number;
|
|
7361
7251
|
/**
|
|
7362
7252
|
*
|
|
7363
|
-
* @type {
|
|
7253
|
+
* @type {IProductResponseReviewCounts}
|
|
7364
7254
|
* @memberof IProductResponse
|
|
7365
7255
|
*/
|
|
7366
|
-
'reviewCounts':
|
|
7256
|
+
'reviewCounts': IProductResponseReviewCounts;
|
|
7367
7257
|
/**
|
|
7368
7258
|
*
|
|
7369
7259
|
* @type {IBrandResponse}
|
|
@@ -7383,6 +7273,43 @@ export interface IProductResponse {
|
|
|
7383
7273
|
*/
|
|
7384
7274
|
'template': ITemplateResponse;
|
|
7385
7275
|
}
|
|
7276
|
+
/**
|
|
7277
|
+
*
|
|
7278
|
+
* @export
|
|
7279
|
+
* @interface IProductResponseReviewCounts
|
|
7280
|
+
*/
|
|
7281
|
+
export interface IProductResponseReviewCounts {
|
|
7282
|
+
/**
|
|
7283
|
+
*
|
|
7284
|
+
* @type {number}
|
|
7285
|
+
* @memberof IProductResponseReviewCounts
|
|
7286
|
+
*/
|
|
7287
|
+
'1': number;
|
|
7288
|
+
/**
|
|
7289
|
+
*
|
|
7290
|
+
* @type {number}
|
|
7291
|
+
* @memberof IProductResponseReviewCounts
|
|
7292
|
+
*/
|
|
7293
|
+
'2': number;
|
|
7294
|
+
/**
|
|
7295
|
+
*
|
|
7296
|
+
* @type {number}
|
|
7297
|
+
* @memberof IProductResponseReviewCounts
|
|
7298
|
+
*/
|
|
7299
|
+
'3': number;
|
|
7300
|
+
/**
|
|
7301
|
+
*
|
|
7302
|
+
* @type {number}
|
|
7303
|
+
* @memberof IProductResponseReviewCounts
|
|
7304
|
+
*/
|
|
7305
|
+
'4': number;
|
|
7306
|
+
/**
|
|
7307
|
+
*
|
|
7308
|
+
* @type {number}
|
|
7309
|
+
* @memberof IProductResponseReviewCounts
|
|
7310
|
+
*/
|
|
7311
|
+
'5': number;
|
|
7312
|
+
}
|
|
7386
7313
|
/**
|
|
7387
7314
|
*
|
|
7388
7315
|
* @export
|
|
@@ -8033,16 +7960,18 @@ export interface IState {
|
|
|
8033
7960
|
export interface ITemplateComponentContentResponse {
|
|
8034
7961
|
/**
|
|
8035
7962
|
*
|
|
8036
|
-
* @type {
|
|
7963
|
+
* @type {string}
|
|
8037
7964
|
* @memberof ITemplateComponentContentResponse
|
|
8038
7965
|
*/
|
|
8039
|
-
'contentType':
|
|
7966
|
+
'contentType': string;
|
|
8040
7967
|
/**
|
|
8041
|
-
*
|
|
8042
|
-
* @type {
|
|
7968
|
+
* Construct a type with a set of properties K of type T
|
|
7969
|
+
* @type {{ [key: string]: any; }}
|
|
8043
7970
|
* @memberof ITemplateComponentContentResponse
|
|
8044
7971
|
*/
|
|
8045
|
-
'config':
|
|
7972
|
+
'config': {
|
|
7973
|
+
[key: string]: any;
|
|
7974
|
+
};
|
|
8046
7975
|
/**
|
|
8047
7976
|
*
|
|
8048
7977
|
* @type {string}
|
|
@@ -8053,202 +7982,139 @@ export interface ITemplateComponentContentResponse {
|
|
|
8053
7982
|
/**
|
|
8054
7983
|
*
|
|
8055
7984
|
* @export
|
|
8056
|
-
* @interface
|
|
7985
|
+
* @interface ITemplateComponentResponse
|
|
8057
7986
|
*/
|
|
8058
|
-
export interface
|
|
8059
|
-
/**
|
|
8060
|
-
*
|
|
8061
|
-
* @type {string}
|
|
8062
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8063
|
-
*/
|
|
8064
|
-
'desktopVariant'?: string;
|
|
8065
|
-
/**
|
|
8066
|
-
*
|
|
8067
|
-
* @type {string}
|
|
8068
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8069
|
-
*/
|
|
8070
|
-
'mobileVariant'?: string;
|
|
8071
|
-
/**
|
|
8072
|
-
*
|
|
8073
|
-
* @type {string}
|
|
8074
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8075
|
-
*/
|
|
8076
|
-
'url'?: string;
|
|
8077
|
-
/**
|
|
8078
|
-
*
|
|
8079
|
-
* @type {ButtonVariantEnum}
|
|
8080
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8081
|
-
*/
|
|
8082
|
-
'buttonTwoVariant'?: ButtonVariantEnum;
|
|
8083
|
-
/**
|
|
8084
|
-
*
|
|
8085
|
-
* @type {string}
|
|
8086
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8087
|
-
*/
|
|
8088
|
-
'buttonTwoUrl'?: string;
|
|
8089
|
-
/**
|
|
8090
|
-
*
|
|
8091
|
-
* @type {string}
|
|
8092
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8093
|
-
*/
|
|
8094
|
-
'buttonTwoText'?: string;
|
|
8095
|
-
/**
|
|
8096
|
-
*
|
|
8097
|
-
* @type {ButtonVariantEnum}
|
|
8098
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8099
|
-
*/
|
|
8100
|
-
'buttonOneVariant'?: ButtonVariantEnum;
|
|
8101
|
-
/**
|
|
8102
|
-
*
|
|
8103
|
-
* @type {string}
|
|
8104
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8105
|
-
*/
|
|
8106
|
-
'buttonOneUrl'?: string;
|
|
7987
|
+
export interface ITemplateComponentResponse {
|
|
8107
7988
|
/**
|
|
8108
7989
|
*
|
|
8109
7990
|
* @type {string}
|
|
8110
|
-
* @memberof
|
|
8111
|
-
*/
|
|
8112
|
-
'buttonOneText'?: string;
|
|
8113
|
-
/**
|
|
8114
|
-
*
|
|
8115
|
-
* @type {IImage}
|
|
8116
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
8117
|
-
*/
|
|
8118
|
-
'imageMobile'?: IImage;
|
|
8119
|
-
/**
|
|
8120
|
-
*
|
|
8121
|
-
* @type {IImage}
|
|
8122
|
-
* @memberof ITemplateComponentContentResponseConfig
|
|
7991
|
+
* @memberof ITemplateComponentResponse
|
|
8123
7992
|
*/
|
|
8124
|
-
'
|
|
7993
|
+
'type': string;
|
|
8125
7994
|
/**
|
|
8126
|
-
*
|
|
8127
|
-
* @type {string}
|
|
8128
|
-
* @memberof
|
|
7995
|
+
* Construct a type with a set of properties K of type T
|
|
7996
|
+
* @type {{ [key: string]: any; }}
|
|
7997
|
+
* @memberof ITemplateComponentResponse
|
|
8129
7998
|
*/
|
|
8130
|
-
'
|
|
7999
|
+
'config': {
|
|
8000
|
+
[key: string]: any;
|
|
8001
|
+
};
|
|
8131
8002
|
/**
|
|
8132
8003
|
*
|
|
8133
8004
|
* @type {string}
|
|
8134
|
-
* @memberof
|
|
8005
|
+
* @memberof ITemplateComponentResponse
|
|
8135
8006
|
*/
|
|
8136
|
-
'
|
|
8007
|
+
'_id': string;
|
|
8137
8008
|
/**
|
|
8138
8009
|
*
|
|
8139
|
-
* @type {
|
|
8140
|
-
* @memberof
|
|
8010
|
+
* @type {Array<ITemplateComponentContentResponse>}
|
|
8011
|
+
* @memberof ITemplateComponentResponse
|
|
8141
8012
|
*/
|
|
8142
|
-
'
|
|
8013
|
+
'contents': Array<ITemplateComponentContentResponse>;
|
|
8143
8014
|
/**
|
|
8144
8015
|
*
|
|
8145
|
-
* @type {
|
|
8146
|
-
* @memberof
|
|
8016
|
+
* @type {ITemplateComponentResponseProducts}
|
|
8017
|
+
* @memberof ITemplateComponentResponse
|
|
8147
8018
|
*/
|
|
8148
|
-
'
|
|
8019
|
+
'products'?: ITemplateComponentResponseProducts;
|
|
8149
8020
|
/**
|
|
8150
8021
|
*
|
|
8151
|
-
* @type {
|
|
8152
|
-
* @memberof
|
|
8022
|
+
* @type {Array<ICategoryResponse>}
|
|
8023
|
+
* @memberof ITemplateComponentResponse
|
|
8153
8024
|
*/
|
|
8154
|
-
'
|
|
8025
|
+
'categories'?: Array<ICategoryResponse>;
|
|
8155
8026
|
/**
|
|
8156
8027
|
*
|
|
8157
|
-
* @type {
|
|
8158
|
-
* @memberof
|
|
8028
|
+
* @type {Array<IBrandResponse>}
|
|
8029
|
+
* @memberof ITemplateComponentResponse
|
|
8159
8030
|
*/
|
|
8160
|
-
'
|
|
8031
|
+
'brands'?: Array<IBrandResponse>;
|
|
8161
8032
|
/**
|
|
8162
8033
|
*
|
|
8163
|
-
* @type {
|
|
8164
|
-
* @memberof
|
|
8034
|
+
* @type {Array<ICollectionResponse>}
|
|
8035
|
+
* @memberof ITemplateComponentResponse
|
|
8165
8036
|
*/
|
|
8166
|
-
'
|
|
8037
|
+
'collections'?: Array<ICollectionResponse>;
|
|
8167
8038
|
/**
|
|
8168
8039
|
*
|
|
8169
|
-
* @type {
|
|
8170
|
-
* @memberof
|
|
8040
|
+
* @type {ITemplateComponentResponsePages}
|
|
8041
|
+
* @memberof ITemplateComponentResponse
|
|
8171
8042
|
*/
|
|
8172
|
-
'
|
|
8043
|
+
'pages'?: ITemplateComponentResponsePages;
|
|
8044
|
+
}
|
|
8045
|
+
/**
|
|
8046
|
+
*
|
|
8047
|
+
* @export
|
|
8048
|
+
* @interface ITemplateComponentResponsePages
|
|
8049
|
+
*/
|
|
8050
|
+
export interface ITemplateComponentResponsePages {
|
|
8173
8051
|
/**
|
|
8174
8052
|
*
|
|
8175
|
-
* @type {
|
|
8176
|
-
* @memberof
|
|
8053
|
+
* @type {number}
|
|
8054
|
+
* @memberof ITemplateComponentResponsePages
|
|
8177
8055
|
*/
|
|
8178
|
-
'
|
|
8056
|
+
'limit'?: number;
|
|
8179
8057
|
/**
|
|
8180
8058
|
*
|
|
8181
|
-
* @type {
|
|
8182
|
-
* @memberof
|
|
8059
|
+
* @type {Array<IPageResponse>}
|
|
8060
|
+
* @memberof ITemplateComponentResponsePages
|
|
8183
8061
|
*/
|
|
8184
|
-
'
|
|
8062
|
+
'list'?: Array<IPageResponse>;
|
|
8185
8063
|
/**
|
|
8186
8064
|
*
|
|
8187
|
-
* @type {
|
|
8188
|
-
* @memberof
|
|
8065
|
+
* @type {Array<IPageResponse>}
|
|
8066
|
+
* @memberof ITemplateComponentResponsePages
|
|
8189
8067
|
*/
|
|
8190
|
-
'
|
|
8068
|
+
'items'?: Array<IPageResponse>;
|
|
8191
8069
|
}
|
|
8192
8070
|
/**
|
|
8193
8071
|
*
|
|
8194
8072
|
* @export
|
|
8195
|
-
* @interface
|
|
8073
|
+
* @interface ITemplateComponentResponseProducts
|
|
8196
8074
|
*/
|
|
8197
|
-
export interface
|
|
8198
|
-
/**
|
|
8199
|
-
*
|
|
8200
|
-
* @type {Array<string>}
|
|
8201
|
-
* @memberof ITemplateComponentResponse
|
|
8202
|
-
*/
|
|
8203
|
-
'collections'?: Array<string>;
|
|
8204
|
-
/**
|
|
8205
|
-
*
|
|
8206
|
-
* @type {ComponentTypeEnum}
|
|
8207
|
-
* @memberof ITemplateComponentResponse
|
|
8208
|
-
*/
|
|
8209
|
-
'type': ComponentTypeEnum;
|
|
8075
|
+
export interface ITemplateComponentResponseProducts {
|
|
8210
8076
|
/**
|
|
8211
8077
|
*
|
|
8212
|
-
* @type {
|
|
8213
|
-
* @memberof
|
|
8078
|
+
* @type {Array<IProductResponse>}
|
|
8079
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8214
8080
|
*/
|
|
8215
|
-
'
|
|
8081
|
+
'list'?: Array<IProductResponse>;
|
|
8216
8082
|
/**
|
|
8217
8083
|
*
|
|
8218
|
-
* @type {
|
|
8219
|
-
* @memberof
|
|
8084
|
+
* @type {number}
|
|
8085
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8220
8086
|
*/
|
|
8221
|
-
'
|
|
8087
|
+
'limit'?: number;
|
|
8222
8088
|
/**
|
|
8223
8089
|
*
|
|
8224
|
-
* @type {
|
|
8225
|
-
* @memberof
|
|
8090
|
+
* @type {ComponentProductListTypeEnum}
|
|
8091
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8226
8092
|
*/
|
|
8227
|
-
'
|
|
8093
|
+
'listType': ComponentProductListTypeEnum;
|
|
8228
8094
|
/**
|
|
8229
8095
|
*
|
|
8230
|
-
* @type {
|
|
8231
|
-
* @memberof
|
|
8096
|
+
* @type {ComponentProductOrderEnum}
|
|
8097
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8232
8098
|
*/
|
|
8233
|
-
'
|
|
8099
|
+
'order'?: ComponentProductOrderEnum;
|
|
8234
8100
|
/**
|
|
8235
8101
|
*
|
|
8236
|
-
* @type {
|
|
8237
|
-
* @memberof
|
|
8102
|
+
* @type {ComponentProductTypeEnum}
|
|
8103
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8238
8104
|
*/
|
|
8239
|
-
'
|
|
8105
|
+
'relType'?: ComponentProductTypeEnum;
|
|
8240
8106
|
/**
|
|
8241
8107
|
*
|
|
8242
8108
|
* @type {string}
|
|
8243
|
-
* @memberof
|
|
8109
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8244
8110
|
*/
|
|
8245
|
-
'
|
|
8111
|
+
'relation'?: string;
|
|
8246
8112
|
/**
|
|
8247
8113
|
*
|
|
8248
|
-
* @type {Array<
|
|
8249
|
-
* @memberof
|
|
8114
|
+
* @type {Array<IProductResponse>}
|
|
8115
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8250
8116
|
*/
|
|
8251
|
-
'
|
|
8117
|
+
'items'?: Array<IProductResponse>;
|
|
8252
8118
|
}
|
|
8253
8119
|
/**
|
|
8254
8120
|
*
|
|
@@ -8264,10 +8130,10 @@ export interface ITemplatePatchRequest {
|
|
|
8264
8130
|
'title'?: string;
|
|
8265
8131
|
/**
|
|
8266
8132
|
*
|
|
8267
|
-
* @type {
|
|
8133
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8268
8134
|
* @memberof ITemplatePatchRequest
|
|
8269
8135
|
*/
|
|
8270
|
-
'components'?:
|
|
8136
|
+
'components'?: PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8271
8137
|
/**
|
|
8272
8138
|
*
|
|
8273
8139
|
* @type {TemplateTypeEnum}
|
|
@@ -8295,10 +8161,10 @@ export interface ITemplatePostRequest {
|
|
|
8295
8161
|
'title': string;
|
|
8296
8162
|
/**
|
|
8297
8163
|
*
|
|
8298
|
-
* @type {
|
|
8164
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8299
8165
|
* @memberof ITemplatePostRequest
|
|
8300
8166
|
*/
|
|
8301
|
-
'components':
|
|
8167
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8302
8168
|
/**
|
|
8303
8169
|
*
|
|
8304
8170
|
* @type {string}
|
|
@@ -8368,10 +8234,10 @@ export interface ITemplateResponse {
|
|
|
8368
8234
|
'type': TemplateTypeEnum;
|
|
8369
8235
|
/**
|
|
8370
8236
|
*
|
|
8371
|
-
* @type {
|
|
8237
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8372
8238
|
* @memberof ITemplateResponse
|
|
8373
8239
|
*/
|
|
8374
|
-
'components':
|
|
8240
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8375
8241
|
}
|
|
8376
8242
|
/**
|
|
8377
8243
|
*
|
|
@@ -8447,6 +8313,14 @@ export interface IThemePatchRequest {
|
|
|
8447
8313
|
* @memberof IThemePatchRequest
|
|
8448
8314
|
*/
|
|
8449
8315
|
'demoUrl'?: string;
|
|
8316
|
+
/**
|
|
8317
|
+
* Construct a type with a set of properties K of type T
|
|
8318
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
8319
|
+
* @memberof IThemePatchRequest
|
|
8320
|
+
*/
|
|
8321
|
+
'files'?: {
|
|
8322
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
8323
|
+
};
|
|
8450
8324
|
}
|
|
8451
8325
|
/**
|
|
8452
8326
|
*
|
|
@@ -8478,6 +8352,14 @@ export interface IThemePostRequest {
|
|
|
8478
8352
|
* @memberof IThemePostRequest
|
|
8479
8353
|
*/
|
|
8480
8354
|
'demoUrl'?: string;
|
|
8355
|
+
/**
|
|
8356
|
+
* Construct a type with a set of properties K of type T
|
|
8357
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
8358
|
+
* @memberof IThemePostRequest
|
|
8359
|
+
*/
|
|
8360
|
+
'files'?: {
|
|
8361
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
8362
|
+
};
|
|
8481
8363
|
/**
|
|
8482
8364
|
*
|
|
8483
8365
|
* @type {IThemeResponseTemplate}
|
|
@@ -8557,6 +8439,14 @@ export interface IThemeResponse {
|
|
|
8557
8439
|
* @memberof IThemeResponse
|
|
8558
8440
|
*/
|
|
8559
8441
|
'creator'?: string;
|
|
8442
|
+
/**
|
|
8443
|
+
* Construct a type with a set of properties K of type T
|
|
8444
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
8445
|
+
* @memberof IThemeResponse
|
|
8446
|
+
*/
|
|
8447
|
+
'files'?: {
|
|
8448
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
8449
|
+
};
|
|
8560
8450
|
/**
|
|
8561
8451
|
*
|
|
8562
8452
|
* @type {IThemeResponseTemplate}
|
|
@@ -8572,16 +8462,16 @@ export interface IThemeResponse {
|
|
|
8572
8462
|
export interface IThemeResponseTemplate {
|
|
8573
8463
|
/**
|
|
8574
8464
|
*
|
|
8575
|
-
* @type {
|
|
8465
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8576
8466
|
* @memberof IThemeResponseTemplate
|
|
8577
8467
|
*/
|
|
8578
|
-
'footer':
|
|
8468
|
+
'footer': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8579
8469
|
/**
|
|
8580
8470
|
*
|
|
8581
|
-
* @type {
|
|
8471
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8582
8472
|
* @memberof IThemeResponseTemplate
|
|
8583
8473
|
*/
|
|
8584
|
-
'header':
|
|
8474
|
+
'header': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8585
8475
|
}
|
|
8586
8476
|
/**
|
|
8587
8477
|
*
|
|
@@ -9100,6 +8990,31 @@ export interface PartialRecordLanguageEnumIContentsValue {
|
|
|
9100
8990
|
*/
|
|
9101
8991
|
'de'?: IContentsValue;
|
|
9102
8992
|
}
|
|
8993
|
+
/**
|
|
8994
|
+
* Make all properties in T optional
|
|
8995
|
+
* @export
|
|
8996
|
+
* @interface PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
8997
|
+
*/
|
|
8998
|
+
export interface PartialRecordLanguageEnumITemplateComponentResponseArray {
|
|
8999
|
+
/**
|
|
9000
|
+
*
|
|
9001
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
9002
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9003
|
+
*/
|
|
9004
|
+
'tr'?: Array<ITemplateComponentResponse>;
|
|
9005
|
+
/**
|
|
9006
|
+
*
|
|
9007
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
9008
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9009
|
+
*/
|
|
9010
|
+
'en'?: Array<ITemplateComponentResponse>;
|
|
9011
|
+
/**
|
|
9012
|
+
*
|
|
9013
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
9014
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9015
|
+
*/
|
|
9016
|
+
'de'?: Array<ITemplateComponentResponse>;
|
|
9017
|
+
}
|
|
9103
9018
|
/**
|
|
9104
9019
|
* Make all properties in T optional
|
|
9105
9020
|
* @export
|
|
@@ -10099,16 +10014,16 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
10099
10014
|
'user'?: string;
|
|
10100
10015
|
/**
|
|
10101
10016
|
*
|
|
10102
|
-
* @type {
|
|
10017
|
+
* @type {CurrencyEnum}
|
|
10103
10018
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10104
10019
|
*/
|
|
10105
|
-
'
|
|
10020
|
+
'currency': CurrencyEnum;
|
|
10106
10021
|
/**
|
|
10107
10022
|
*
|
|
10108
|
-
* @type {
|
|
10023
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
10109
10024
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10110
10025
|
*/
|
|
10111
|
-
'
|
|
10026
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
10112
10027
|
/**
|
|
10113
10028
|
*
|
|
10114
10029
|
* @type {IAddress}
|
|
@@ -10674,70 +10589,33 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
10674
10589
|
'reviewCount': number;
|
|
10675
10590
|
/**
|
|
10676
10591
|
*
|
|
10677
|
-
* @type {
|
|
10592
|
+
* @type {IProductResponseReviewCounts}
|
|
10678
10593
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10679
10594
|
*/
|
|
10680
|
-
'reviewCounts':
|
|
10595
|
+
'reviewCounts': IProductResponseReviewCounts;
|
|
10681
10596
|
}
|
|
10682
10597
|
/**
|
|
10683
|
-
*
|
|
10598
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10684
10599
|
* @export
|
|
10685
|
-
* @interface
|
|
10600
|
+
* @interface PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10686
10601
|
*/
|
|
10687
|
-
export interface
|
|
10602
|
+
export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
10688
10603
|
/**
|
|
10689
10604
|
*
|
|
10690
|
-
* @type {
|
|
10691
|
-
* @memberof
|
|
10605
|
+
* @type {string}
|
|
10606
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10692
10607
|
*/
|
|
10693
|
-
'
|
|
10608
|
+
'_id': string;
|
|
10694
10609
|
/**
|
|
10695
10610
|
*
|
|
10696
|
-
* @type {
|
|
10697
|
-
* @memberof
|
|
10611
|
+
* @type {string}
|
|
10612
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10698
10613
|
*/
|
|
10699
|
-
'
|
|
10614
|
+
'category'?: string;
|
|
10700
10615
|
/**
|
|
10701
10616
|
*
|
|
10702
|
-
* @type {
|
|
10703
|
-
* @memberof
|
|
10704
|
-
*/
|
|
10705
|
-
'3': number;
|
|
10706
|
-
/**
|
|
10707
|
-
*
|
|
10708
|
-
* @type {number}
|
|
10709
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10710
|
-
*/
|
|
10711
|
-
'4': number;
|
|
10712
|
-
/**
|
|
10713
|
-
*
|
|
10714
|
-
* @type {number}
|
|
10715
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10716
|
-
*/
|
|
10717
|
-
'5': number;
|
|
10718
|
-
}
|
|
10719
|
-
/**
|
|
10720
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10721
|
-
* @export
|
|
10722
|
-
* @interface PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10723
|
-
*/
|
|
10724
|
-
export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
10725
|
-
/**
|
|
10726
|
-
*
|
|
10727
|
-
* @type {string}
|
|
10728
|
-
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10729
|
-
*/
|
|
10730
|
-
'_id': string;
|
|
10731
|
-
/**
|
|
10732
|
-
*
|
|
10733
|
-
* @type {string}
|
|
10734
|
-
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10735
|
-
*/
|
|
10736
|
-
'category'?: string;
|
|
10737
|
-
/**
|
|
10738
|
-
*
|
|
10739
|
-
* @type {Array<string>}
|
|
10740
|
-
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10617
|
+
* @type {Array<string>}
|
|
10618
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
10741
10619
|
*/
|
|
10742
10620
|
'collections': Array<string>;
|
|
10743
10621
|
/**
|
|
@@ -10966,394 +10844,6 @@ export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
|
10966
10844
|
*/
|
|
10967
10845
|
'comment': string;
|
|
10968
10846
|
}
|
|
10969
|
-
/**
|
|
10970
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10971
|
-
* @export
|
|
10972
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10973
|
-
*/
|
|
10974
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContents {
|
|
10975
|
-
/**
|
|
10976
|
-
*
|
|
10977
|
-
* @type {Array<string>}
|
|
10978
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10979
|
-
*/
|
|
10980
|
-
'collections'?: Array<string>;
|
|
10981
|
-
/**
|
|
10982
|
-
*
|
|
10983
|
-
* @type {ComponentTypeEnum}
|
|
10984
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10985
|
-
*/
|
|
10986
|
-
'type': ComponentTypeEnum;
|
|
10987
|
-
/**
|
|
10988
|
-
*
|
|
10989
|
-
* @type {PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig}
|
|
10990
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10991
|
-
*/
|
|
10992
|
-
'config': PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig;
|
|
10993
|
-
/**
|
|
10994
|
-
*
|
|
10995
|
-
* @type {PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts}
|
|
10996
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
10997
|
-
*/
|
|
10998
|
-
'products'?: PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts;
|
|
10999
|
-
/**
|
|
11000
|
-
*
|
|
11001
|
-
* @type {Array<string>}
|
|
11002
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
11003
|
-
*/
|
|
11004
|
-
'categories'?: Array<string>;
|
|
11005
|
-
/**
|
|
11006
|
-
*
|
|
11007
|
-
* @type {Array<string>}
|
|
11008
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
11009
|
-
*/
|
|
11010
|
-
'brands'?: Array<string>;
|
|
11011
|
-
/**
|
|
11012
|
-
*
|
|
11013
|
-
* @type {PickITemplateComponentExcludeKeyofITemplateComponentContentsPages}
|
|
11014
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContents
|
|
11015
|
-
*/
|
|
11016
|
-
'pages'?: PickITemplateComponentExcludeKeyofITemplateComponentContentsPages;
|
|
11017
|
-
}
|
|
11018
|
-
/**
|
|
11019
|
-
*
|
|
11020
|
-
* @export
|
|
11021
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11022
|
-
*/
|
|
11023
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig {
|
|
11024
|
-
/**
|
|
11025
|
-
*
|
|
11026
|
-
* @type {string}
|
|
11027
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11028
|
-
*/
|
|
11029
|
-
'buttonTwoUrl'?: string;
|
|
11030
|
-
/**
|
|
11031
|
-
*
|
|
11032
|
-
* @type {string}
|
|
11033
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11034
|
-
*/
|
|
11035
|
-
'buttonTwoText'?: string;
|
|
11036
|
-
/**
|
|
11037
|
-
*
|
|
11038
|
-
* @type {string}
|
|
11039
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11040
|
-
*/
|
|
11041
|
-
'buttonOneUrl'?: string;
|
|
11042
|
-
/**
|
|
11043
|
-
*
|
|
11044
|
-
* @type {string}
|
|
11045
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11046
|
-
*/
|
|
11047
|
-
'buttonOneText'?: string;
|
|
11048
|
-
/**
|
|
11049
|
-
*
|
|
11050
|
-
* @type {string}
|
|
11051
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11052
|
-
*/
|
|
11053
|
-
'url'?: string;
|
|
11054
|
-
/**
|
|
11055
|
-
*
|
|
11056
|
-
* @type {IImage}
|
|
11057
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11058
|
-
*/
|
|
11059
|
-
'imageMobile'?: IImage;
|
|
11060
|
-
/**
|
|
11061
|
-
*
|
|
11062
|
-
* @type {IImage}
|
|
11063
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11064
|
-
*/
|
|
11065
|
-
'image'?: IImage;
|
|
11066
|
-
/**
|
|
11067
|
-
*
|
|
11068
|
-
* @type {string}
|
|
11069
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11070
|
-
*/
|
|
11071
|
-
'description'?: string;
|
|
11072
|
-
/**
|
|
11073
|
-
*
|
|
11074
|
-
* @type {string}
|
|
11075
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11076
|
-
*/
|
|
11077
|
-
'title'?: string;
|
|
11078
|
-
/**
|
|
11079
|
-
*
|
|
11080
|
-
* @type {boolean}
|
|
11081
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11082
|
-
*/
|
|
11083
|
-
'legalDocuments'?: boolean;
|
|
11084
|
-
/**
|
|
11085
|
-
*
|
|
11086
|
-
* @type {boolean}
|
|
11087
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11088
|
-
*/
|
|
11089
|
-
'policyLinks'?: boolean;
|
|
11090
|
-
/**
|
|
11091
|
-
*
|
|
11092
|
-
* @type {boolean}
|
|
11093
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11094
|
-
*/
|
|
11095
|
-
'paymentGatewayPictures'?: boolean;
|
|
11096
|
-
/**
|
|
11097
|
-
*
|
|
11098
|
-
* @type {boolean}
|
|
11099
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11100
|
-
*/
|
|
11101
|
-
'languageSwitcher'?: boolean;
|
|
11102
|
-
/**
|
|
11103
|
-
*
|
|
11104
|
-
* @type {boolean}
|
|
11105
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11106
|
-
*/
|
|
11107
|
-
'socialButtons'?: boolean;
|
|
11108
|
-
/**
|
|
11109
|
-
*
|
|
11110
|
-
* @type {boolean}
|
|
11111
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11112
|
-
*/
|
|
11113
|
-
'isInnerContainer'?: boolean;
|
|
11114
|
-
/**
|
|
11115
|
-
*
|
|
11116
|
-
* @type {number}
|
|
11117
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11118
|
-
*/
|
|
11119
|
-
'contentMobileMaxWidth'?: number;
|
|
11120
|
-
/**
|
|
11121
|
-
*
|
|
11122
|
-
* @type {number}
|
|
11123
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11124
|
-
*/
|
|
11125
|
-
'contentMaxWidth'?: number;
|
|
11126
|
-
/**
|
|
11127
|
-
*
|
|
11128
|
-
* @type {number}
|
|
11129
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11130
|
-
*/
|
|
11131
|
-
'contentMobileHeight'?: number;
|
|
11132
|
-
/**
|
|
11133
|
-
*
|
|
11134
|
-
* @type {number}
|
|
11135
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11136
|
-
*/
|
|
11137
|
-
'contentHeight'?: number;
|
|
11138
|
-
/**
|
|
11139
|
-
*
|
|
11140
|
-
* @type {number}
|
|
11141
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11142
|
-
*/
|
|
11143
|
-
'containerMobileHeight'?: number;
|
|
11144
|
-
/**
|
|
11145
|
-
*
|
|
11146
|
-
* @type {number}
|
|
11147
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11148
|
-
*/
|
|
11149
|
-
'containerHeight'?: number;
|
|
11150
|
-
/**
|
|
11151
|
-
*
|
|
11152
|
-
* @type {number}
|
|
11153
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11154
|
-
*/
|
|
11155
|
-
'containerWidth'?: number;
|
|
11156
|
-
/**
|
|
11157
|
-
*
|
|
11158
|
-
* @type {ContentPositionYEnum}
|
|
11159
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11160
|
-
*/
|
|
11161
|
-
'contentMobilePositionY'?: ContentPositionYEnum;
|
|
11162
|
-
/**
|
|
11163
|
-
*
|
|
11164
|
-
* @type {ContentPositionYEnum}
|
|
11165
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11166
|
-
*/
|
|
11167
|
-
'contentPositionY'?: ContentPositionYEnum;
|
|
11168
|
-
/**
|
|
11169
|
-
*
|
|
11170
|
-
* @type {ContentPositionXEnum}
|
|
11171
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11172
|
-
*/
|
|
11173
|
-
'contentMobilePositionX'?: ContentPositionXEnum;
|
|
11174
|
-
/**
|
|
11175
|
-
*
|
|
11176
|
-
* @type {ContentPositionXEnum}
|
|
11177
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11178
|
-
*/
|
|
11179
|
-
'contentPositionX'?: ContentPositionXEnum;
|
|
11180
|
-
/**
|
|
11181
|
-
*
|
|
11182
|
-
* @type {number}
|
|
11183
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11184
|
-
*/
|
|
11185
|
-
'imageAspectRatio'?: number;
|
|
11186
|
-
/**
|
|
11187
|
-
*
|
|
11188
|
-
* @type {ProductDetailImageZoomTypeEnum}
|
|
11189
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11190
|
-
*/
|
|
11191
|
-
'productDetailImageZoomType'?: ProductDetailImageZoomTypeEnum;
|
|
11192
|
-
/**
|
|
11193
|
-
*
|
|
11194
|
-
* @type {FontSizeEnum}
|
|
11195
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11196
|
-
*/
|
|
11197
|
-
'contentDescriptionFontSize'?: FontSizeEnum;
|
|
11198
|
-
/**
|
|
11199
|
-
*
|
|
11200
|
-
* @type {FontSizeEnum}
|
|
11201
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11202
|
-
*/
|
|
11203
|
-
'contentTitleFontSize'?: FontSizeEnum;
|
|
11204
|
-
/**
|
|
11205
|
-
*
|
|
11206
|
-
* @type {FontSizeEnum}
|
|
11207
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11208
|
-
*/
|
|
11209
|
-
'descriptionFontSize'?: FontSizeEnum;
|
|
11210
|
-
/**
|
|
11211
|
-
*
|
|
11212
|
-
* @type {FontSizeEnum}
|
|
11213
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11214
|
-
*/
|
|
11215
|
-
'titleFontSize'?: FontSizeEnum;
|
|
11216
|
-
/**
|
|
11217
|
-
*
|
|
11218
|
-
* @type {string}
|
|
11219
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11220
|
-
*/
|
|
11221
|
-
'textColor'?: string;
|
|
11222
|
-
/**
|
|
11223
|
-
*
|
|
11224
|
-
* @type {string}
|
|
11225
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11226
|
-
*/
|
|
11227
|
-
'customStyles'?: string;
|
|
11228
|
-
/**
|
|
11229
|
-
*
|
|
11230
|
-
* @type {Array<string>}
|
|
11231
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11232
|
-
*/
|
|
11233
|
-
'customClasses'?: Array<string>;
|
|
11234
|
-
/**
|
|
11235
|
-
*
|
|
11236
|
-
* @type {string}
|
|
11237
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11238
|
-
*/
|
|
11239
|
-
'backgroundColor'?: string;
|
|
11240
|
-
/**
|
|
11241
|
-
*
|
|
11242
|
-
* @type {boolean}
|
|
11243
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11244
|
-
*/
|
|
11245
|
-
'slide'?: boolean;
|
|
11246
|
-
/**
|
|
11247
|
-
*
|
|
11248
|
-
* @type {boolean}
|
|
11249
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11250
|
-
*/
|
|
11251
|
-
'cardContainer'?: boolean;
|
|
11252
|
-
/**
|
|
11253
|
-
*
|
|
11254
|
-
* @type {boolean}
|
|
11255
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11256
|
-
*/
|
|
11257
|
-
'grid'?: boolean;
|
|
11258
|
-
/**
|
|
11259
|
-
*
|
|
11260
|
-
* @type {boolean}
|
|
11261
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11262
|
-
*/
|
|
11263
|
-
'display': boolean;
|
|
11264
|
-
/**
|
|
11265
|
-
*
|
|
11266
|
-
* @type {number}
|
|
11267
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11268
|
-
*/
|
|
11269
|
-
'interval'?: number;
|
|
11270
|
-
/**
|
|
11271
|
-
*
|
|
11272
|
-
* @type {number}
|
|
11273
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11274
|
-
*/
|
|
11275
|
-
'mobilePerViewCount'?: number;
|
|
11276
|
-
/**
|
|
11277
|
-
*
|
|
11278
|
-
* @type {number}
|
|
11279
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11280
|
-
*/
|
|
11281
|
-
'perViewCount'?: number;
|
|
11282
|
-
/**
|
|
11283
|
-
*
|
|
11284
|
-
* @type {boolean}
|
|
11285
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11286
|
-
*/
|
|
11287
|
-
'autoPlay'?: boolean;
|
|
11288
|
-
/**
|
|
11289
|
-
*
|
|
11290
|
-
* @type {boolean}
|
|
11291
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11292
|
-
*/
|
|
11293
|
-
'addName'?: boolean;
|
|
11294
|
-
}
|
|
11295
|
-
/**
|
|
11296
|
-
*
|
|
11297
|
-
* @export
|
|
11298
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsPages
|
|
11299
|
-
*/
|
|
11300
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsPages {
|
|
11301
|
-
/**
|
|
11302
|
-
*
|
|
11303
|
-
* @type {number}
|
|
11304
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsPages
|
|
11305
|
-
*/
|
|
11306
|
-
'limit'?: number;
|
|
11307
|
-
/**
|
|
11308
|
-
*
|
|
11309
|
-
* @type {Array<string>}
|
|
11310
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsPages
|
|
11311
|
-
*/
|
|
11312
|
-
'items'?: Array<string>;
|
|
11313
|
-
}
|
|
11314
|
-
/**
|
|
11315
|
-
*
|
|
11316
|
-
* @export
|
|
11317
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11318
|
-
*/
|
|
11319
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts {
|
|
11320
|
-
/**
|
|
11321
|
-
*
|
|
11322
|
-
* @type {number}
|
|
11323
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11324
|
-
*/
|
|
11325
|
-
'limit'?: number;
|
|
11326
|
-
/**
|
|
11327
|
-
*
|
|
11328
|
-
* @type {ComponentProductListTypeEnum}
|
|
11329
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11330
|
-
*/
|
|
11331
|
-
'listType': ComponentProductListTypeEnum;
|
|
11332
|
-
/**
|
|
11333
|
-
*
|
|
11334
|
-
* @type {ComponentProductOrderEnum}
|
|
11335
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11336
|
-
*/
|
|
11337
|
-
'order'?: ComponentProductOrderEnum;
|
|
11338
|
-
/**
|
|
11339
|
-
*
|
|
11340
|
-
* @type {ComponentProductTypeEnum}
|
|
11341
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11342
|
-
*/
|
|
11343
|
-
'relType'?: ComponentProductTypeEnum;
|
|
11344
|
-
/**
|
|
11345
|
-
*
|
|
11346
|
-
* @type {string}
|
|
11347
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11348
|
-
*/
|
|
11349
|
-
'relation'?: string;
|
|
11350
|
-
/**
|
|
11351
|
-
*
|
|
11352
|
-
* @type {Array<string>}
|
|
11353
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11354
|
-
*/
|
|
11355
|
-
'items'?: Array<string>;
|
|
11356
|
-
}
|
|
11357
10847
|
/**
|
|
11358
10848
|
* From T, pick a set of properties whose keys are in the union K
|
|
11359
10849
|
* @export
|
|
@@ -11429,10 +10919,10 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
11429
10919
|
'title': string;
|
|
11430
10920
|
/**
|
|
11431
10921
|
*
|
|
11432
|
-
* @type {
|
|
10922
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
11433
10923
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
11434
10924
|
*/
|
|
11435
|
-
'components':
|
|
10925
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
11436
10926
|
/**
|
|
11437
10927
|
*
|
|
11438
10928
|
* @type {string}
|
|
@@ -11518,6 +11008,14 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
11518
11008
|
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
11519
11009
|
*/
|
|
11520
11010
|
'creator'?: string;
|
|
11011
|
+
/**
|
|
11012
|
+
* Construct a type with a set of properties K of type T
|
|
11013
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
11014
|
+
* @memberof PickIThemeExcludeKeyofIThemeTemplate
|
|
11015
|
+
*/
|
|
11016
|
+
'files'?: {
|
|
11017
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
11018
|
+
};
|
|
11521
11019
|
}
|
|
11522
11020
|
/**
|
|
11523
11021
|
*
|
|
@@ -11804,6 +11302,14 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
|
|
|
11804
11302
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
|
|
11805
11303
|
*/
|
|
11806
11304
|
'demoUrl'?: string;
|
|
11305
|
+
/**
|
|
11306
|
+
* Construct a type with a set of properties K of type T
|
|
11307
|
+
* @type {{ [key: string]: RecordStringStringOrAnyValue; }}
|
|
11308
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreator
|
|
11309
|
+
*/
|
|
11310
|
+
'files'?: {
|
|
11311
|
+
[key: string]: RecordStringStringOrAnyValue;
|
|
11312
|
+
};
|
|
11807
11313
|
}
|
|
11808
11314
|
/**
|
|
11809
11315
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12054,19 +11560,6 @@ export interface PriceType {
|
|
|
12054
11560
|
*/
|
|
12055
11561
|
'price': number;
|
|
12056
11562
|
}
|
|
12057
|
-
/**
|
|
12058
|
-
*
|
|
12059
|
-
* @export
|
|
12060
|
-
* @enum {string}
|
|
12061
|
-
*/
|
|
12062
|
-
export declare const ProductDetailImageZoomTypeEnum: {
|
|
12063
|
-
readonly MOVE: "move";
|
|
12064
|
-
readonly CLICK: "click";
|
|
12065
|
-
readonly HOVER: "hover";
|
|
12066
|
-
readonly DIALOG: "dialog";
|
|
12067
|
-
readonly NONE: "none";
|
|
12068
|
-
};
|
|
12069
|
-
export type ProductDetailImageZoomTypeEnum = typeof ProductDetailImageZoomTypeEnum[keyof typeof ProductDetailImageZoomTypeEnum];
|
|
12070
11563
|
/**
|
|
12071
11564
|
* Construct a type with a set of properties K of type T
|
|
12072
11565
|
* @export
|
|
@@ -12178,31 +11671,6 @@ export interface RecordCurrencyEnumNumber {
|
|
|
12178
11671
|
*/
|
|
12179
11672
|
'jpy': number;
|
|
12180
11673
|
}
|
|
12181
|
-
/**
|
|
12182
|
-
* Construct a type with a set of properties K of type T
|
|
12183
|
-
* @export
|
|
12184
|
-
* @interface RecordLanguageEnumITemplateComponentResponseArray
|
|
12185
|
-
*/
|
|
12186
|
-
export interface RecordLanguageEnumITemplateComponentResponseArray {
|
|
12187
|
-
/**
|
|
12188
|
-
*
|
|
12189
|
-
* @type {Array<ITemplateComponentResponse>}
|
|
12190
|
-
* @memberof RecordLanguageEnumITemplateComponentResponseArray
|
|
12191
|
-
*/
|
|
12192
|
-
'tr': Array<ITemplateComponentResponse>;
|
|
12193
|
-
/**
|
|
12194
|
-
*
|
|
12195
|
-
* @type {Array<ITemplateComponentResponse>}
|
|
12196
|
-
* @memberof RecordLanguageEnumITemplateComponentResponseArray
|
|
12197
|
-
*/
|
|
12198
|
-
'en': Array<ITemplateComponentResponse>;
|
|
12199
|
-
/**
|
|
12200
|
-
*
|
|
12201
|
-
* @type {Array<ITemplateComponentResponse>}
|
|
12202
|
-
* @memberof RecordLanguageEnumITemplateComponentResponseArray
|
|
12203
|
-
*/
|
|
12204
|
-
'de': Array<ITemplateComponentResponse>;
|
|
12205
|
-
}
|
|
12206
11674
|
/**
|
|
12207
11675
|
* Construct a type with a set of properties K of type T
|
|
12208
11676
|
* @export
|
|
@@ -12241,6 +11709,13 @@ export interface RecordLanguageEnumTitleStringTr {
|
|
|
12241
11709
|
*/
|
|
12242
11710
|
'title': string;
|
|
12243
11711
|
}
|
|
11712
|
+
/**
|
|
11713
|
+
*
|
|
11714
|
+
* @export
|
|
11715
|
+
* @interface RecordStringStringOrAnyValue
|
|
11716
|
+
*/
|
|
11717
|
+
export interface RecordStringStringOrAnyValue {
|
|
11718
|
+
}
|
|
12244
11719
|
/**
|
|
12245
11720
|
*
|
|
12246
11721
|
* @export
|
|
@@ -21117,6 +20592,14 @@ export declare const ThemeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
21117
20592
|
* @throws {RequiredError}
|
|
21118
20593
|
*/
|
|
21119
20594
|
updateTheme: (id: string, iThemePatchRequest: IThemePatchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20595
|
+
/**
|
|
20596
|
+
*
|
|
20597
|
+
* @param {string} id
|
|
20598
|
+
* @param {File} file
|
|
20599
|
+
* @param {*} [options] Override http request option.
|
|
20600
|
+
* @throws {RequiredError}
|
|
20601
|
+
*/
|
|
20602
|
+
updateThemeFiles: (id: string, file: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21120
20603
|
};
|
|
21121
20604
|
/**
|
|
21122
20605
|
* ThemeApi - functional programming interface
|
|
@@ -21172,6 +20655,14 @@ export declare const ThemeApiFp: (configuration?: Configuration) => {
|
|
|
21172
20655
|
* @throws {RequiredError}
|
|
21173
20656
|
*/
|
|
21174
20657
|
updateTheme(id: string, iThemePatchRequest: IThemePatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemeResponse>>;
|
|
20658
|
+
/**
|
|
20659
|
+
*
|
|
20660
|
+
* @param {string} id
|
|
20661
|
+
* @param {File} file
|
|
20662
|
+
* @param {*} [options] Override http request option.
|
|
20663
|
+
* @throws {RequiredError}
|
|
20664
|
+
*/
|
|
20665
|
+
updateThemeFiles(id: string, file: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21175
20666
|
};
|
|
21176
20667
|
/**
|
|
21177
20668
|
* ThemeApi - factory interface
|
|
@@ -21226,6 +20717,13 @@ export declare const ThemeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
21226
20717
|
* @throws {RequiredError}
|
|
21227
20718
|
*/
|
|
21228
20719
|
updateTheme(requestParameters: ThemeApiUpdateThemeRequest, options?: RawAxiosRequestConfig): AxiosPromise<IThemeResponse>;
|
|
20720
|
+
/**
|
|
20721
|
+
*
|
|
20722
|
+
* @param {ThemeApiUpdateThemeFilesRequest} requestParameters Request parameters.
|
|
20723
|
+
* @param {*} [options] Override http request option.
|
|
20724
|
+
* @throws {RequiredError}
|
|
20725
|
+
*/
|
|
20726
|
+
updateThemeFiles(requestParameters: ThemeApiUpdateThemeFilesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
21229
20727
|
};
|
|
21230
20728
|
/**
|
|
21231
20729
|
* Request parameters for cloneTheme operation in ThemeApi.
|
|
@@ -21311,6 +20809,25 @@ export interface ThemeApiUpdateThemeRequest {
|
|
|
21311
20809
|
*/
|
|
21312
20810
|
readonly iThemePatchRequest: IThemePatchRequest;
|
|
21313
20811
|
}
|
|
20812
|
+
/**
|
|
20813
|
+
* Request parameters for updateThemeFiles operation in ThemeApi.
|
|
20814
|
+
* @export
|
|
20815
|
+
* @interface ThemeApiUpdateThemeFilesRequest
|
|
20816
|
+
*/
|
|
20817
|
+
export interface ThemeApiUpdateThemeFilesRequest {
|
|
20818
|
+
/**
|
|
20819
|
+
*
|
|
20820
|
+
* @type {string}
|
|
20821
|
+
* @memberof ThemeApiUpdateThemeFiles
|
|
20822
|
+
*/
|
|
20823
|
+
readonly id: string;
|
|
20824
|
+
/**
|
|
20825
|
+
*
|
|
20826
|
+
* @type {File}
|
|
20827
|
+
* @memberof ThemeApiUpdateThemeFiles
|
|
20828
|
+
*/
|
|
20829
|
+
readonly file: File;
|
|
20830
|
+
}
|
|
21314
20831
|
/**
|
|
21315
20832
|
* ThemeApi - object-oriented interface
|
|
21316
20833
|
* @export
|
|
@@ -21373,6 +20890,14 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
21373
20890
|
* @memberof ThemeApi
|
|
21374
20891
|
*/
|
|
21375
20892
|
updateTheme(requestParameters: ThemeApiUpdateThemeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemeResponse, any>>;
|
|
20893
|
+
/**
|
|
20894
|
+
*
|
|
20895
|
+
* @param {ThemeApiUpdateThemeFilesRequest} requestParameters Request parameters.
|
|
20896
|
+
* @param {*} [options] Override http request option.
|
|
20897
|
+
* @throws {RequiredError}
|
|
20898
|
+
* @memberof ThemeApi
|
|
20899
|
+
*/
|
|
20900
|
+
updateThemeFiles(requestParameters: ThemeApiUpdateThemeFilesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
21376
20901
|
}
|
|
21377
20902
|
/**
|
|
21378
20903
|
* UserApi - axios parameter creator
|