@infisale-client/api-client 1.2.110 → 1.3.0
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 +1727 -1752
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -5690,16 +5690,16 @@ export interface IOrderResponse {
|
|
|
5690
5690
|
'user'?: string;
|
|
5691
5691
|
/**
|
|
5692
5692
|
*
|
|
5693
|
-
* @type {
|
|
5693
|
+
* @type {CurrencyEnum}
|
|
5694
5694
|
* @memberof IOrderResponse
|
|
5695
5695
|
*/
|
|
5696
|
-
'
|
|
5696
|
+
'currency': CurrencyEnum;
|
|
5697
5697
|
/**
|
|
5698
5698
|
*
|
|
5699
|
-
* @type {
|
|
5699
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
5700
5700
|
* @memberof IOrderResponse
|
|
5701
5701
|
*/
|
|
5702
|
-
'
|
|
5702
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
5703
5703
|
/**
|
|
5704
5704
|
*
|
|
5705
5705
|
* @type {IAddress}
|
|
@@ -7347,10 +7347,10 @@ export interface IProductResponse {
|
|
|
7347
7347
|
'reviewCount': number;
|
|
7348
7348
|
/**
|
|
7349
7349
|
*
|
|
7350
|
-
* @type {
|
|
7350
|
+
* @type {IProductResponseReviewCounts}
|
|
7351
7351
|
* @memberof IProductResponse
|
|
7352
7352
|
*/
|
|
7353
|
-
'reviewCounts':
|
|
7353
|
+
'reviewCounts': IProductResponseReviewCounts;
|
|
7354
7354
|
/**
|
|
7355
7355
|
*
|
|
7356
7356
|
* @type {IBrandResponse}
|
|
@@ -7370,6 +7370,43 @@ export interface IProductResponse {
|
|
|
7370
7370
|
*/
|
|
7371
7371
|
'template': ITemplateResponse;
|
|
7372
7372
|
}
|
|
7373
|
+
/**
|
|
7374
|
+
*
|
|
7375
|
+
* @export
|
|
7376
|
+
* @interface IProductResponseReviewCounts
|
|
7377
|
+
*/
|
|
7378
|
+
export interface IProductResponseReviewCounts {
|
|
7379
|
+
/**
|
|
7380
|
+
*
|
|
7381
|
+
* @type {number}
|
|
7382
|
+
* @memberof IProductResponseReviewCounts
|
|
7383
|
+
*/
|
|
7384
|
+
'1': number;
|
|
7385
|
+
/**
|
|
7386
|
+
*
|
|
7387
|
+
* @type {number}
|
|
7388
|
+
* @memberof IProductResponseReviewCounts
|
|
7389
|
+
*/
|
|
7390
|
+
'2': number;
|
|
7391
|
+
/**
|
|
7392
|
+
*
|
|
7393
|
+
* @type {number}
|
|
7394
|
+
* @memberof IProductResponseReviewCounts
|
|
7395
|
+
*/
|
|
7396
|
+
'3': number;
|
|
7397
|
+
/**
|
|
7398
|
+
*
|
|
7399
|
+
* @type {number}
|
|
7400
|
+
* @memberof IProductResponseReviewCounts
|
|
7401
|
+
*/
|
|
7402
|
+
'4': number;
|
|
7403
|
+
/**
|
|
7404
|
+
*
|
|
7405
|
+
* @type {number}
|
|
7406
|
+
* @memberof IProductResponseReviewCounts
|
|
7407
|
+
*/
|
|
7408
|
+
'5': number;
|
|
7409
|
+
}
|
|
7373
7410
|
/**
|
|
7374
7411
|
*
|
|
7375
7412
|
* @export
|
|
@@ -8184,3162 +8221,3125 @@ export interface ITemplateComponentContentResponseConfig {
|
|
|
8184
8221
|
export interface ITemplateComponentResponse {
|
|
8185
8222
|
/**
|
|
8186
8223
|
*
|
|
8187
|
-
* @type {
|
|
8224
|
+
* @type {ComponentTypeEnum}
|
|
8188
8225
|
* @memberof ITemplateComponentResponse
|
|
8189
8226
|
*/
|
|
8190
|
-
'
|
|
8227
|
+
'type': ComponentTypeEnum;
|
|
8191
8228
|
/**
|
|
8192
8229
|
*
|
|
8193
|
-
* @type {
|
|
8230
|
+
* @type {ITemplateComponentResponseConfig}
|
|
8194
8231
|
* @memberof ITemplateComponentResponse
|
|
8195
8232
|
*/
|
|
8196
|
-
'
|
|
8233
|
+
'config': ITemplateComponentResponseConfig;
|
|
8197
8234
|
/**
|
|
8198
8235
|
*
|
|
8199
|
-
* @type {
|
|
8236
|
+
* @type {string}
|
|
8200
8237
|
* @memberof ITemplateComponentResponse
|
|
8201
8238
|
*/
|
|
8202
|
-
'
|
|
8239
|
+
'_id': string;
|
|
8203
8240
|
/**
|
|
8204
8241
|
*
|
|
8205
|
-
* @type {
|
|
8242
|
+
* @type {Array<ITemplateComponentContentResponse>}
|
|
8206
8243
|
* @memberof ITemplateComponentResponse
|
|
8207
8244
|
*/
|
|
8208
|
-
'
|
|
8245
|
+
'contents': Array<ITemplateComponentContentResponse>;
|
|
8209
8246
|
/**
|
|
8210
8247
|
*
|
|
8211
|
-
* @type {
|
|
8248
|
+
* @type {ITemplateComponentResponseProducts}
|
|
8212
8249
|
* @memberof ITemplateComponentResponse
|
|
8213
8250
|
*/
|
|
8214
|
-
'
|
|
8251
|
+
'products'?: ITemplateComponentResponseProducts;
|
|
8215
8252
|
/**
|
|
8216
8253
|
*
|
|
8217
|
-
* @type {Array<
|
|
8254
|
+
* @type {Array<ICategoryResponse>}
|
|
8218
8255
|
* @memberof ITemplateComponentResponse
|
|
8219
8256
|
*/
|
|
8220
|
-
'
|
|
8257
|
+
'categories'?: Array<ICategoryResponse>;
|
|
8221
8258
|
/**
|
|
8222
8259
|
*
|
|
8223
|
-
* @type {
|
|
8260
|
+
* @type {Array<IBrandResponse>}
|
|
8224
8261
|
* @memberof ITemplateComponentResponse
|
|
8225
8262
|
*/
|
|
8226
|
-
'
|
|
8263
|
+
'brands'?: Array<IBrandResponse>;
|
|
8227
8264
|
/**
|
|
8228
8265
|
*
|
|
8229
|
-
* @type {
|
|
8266
|
+
* @type {Array<ICollectionResponse>}
|
|
8230
8267
|
* @memberof ITemplateComponentResponse
|
|
8231
8268
|
*/
|
|
8232
|
-
'
|
|
8269
|
+
'collections'?: Array<ICollectionResponse>;
|
|
8233
8270
|
/**
|
|
8234
8271
|
*
|
|
8235
|
-
* @type {
|
|
8272
|
+
* @type {ITemplateComponentResponsePages}
|
|
8236
8273
|
* @memberof ITemplateComponentResponse
|
|
8237
8274
|
*/
|
|
8238
|
-
'
|
|
8275
|
+
'pages'?: ITemplateComponentResponsePages;
|
|
8239
8276
|
}
|
|
8240
8277
|
/**
|
|
8241
8278
|
*
|
|
8242
8279
|
* @export
|
|
8243
|
-
* @interface
|
|
8280
|
+
* @interface ITemplateComponentResponseConfig
|
|
8244
8281
|
*/
|
|
8245
|
-
export interface
|
|
8282
|
+
export interface ITemplateComponentResponseConfig {
|
|
8246
8283
|
/**
|
|
8247
8284
|
*
|
|
8248
8285
|
* @type {string}
|
|
8249
|
-
* @memberof
|
|
8286
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8250
8287
|
*/
|
|
8251
|
-
'
|
|
8288
|
+
'desktopVariant'?: string;
|
|
8252
8289
|
/**
|
|
8253
8290
|
*
|
|
8254
|
-
* @type {
|
|
8255
|
-
* @memberof
|
|
8291
|
+
* @type {string}
|
|
8292
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8256
8293
|
*/
|
|
8257
|
-
'
|
|
8294
|
+
'mobileVariant'?: string;
|
|
8258
8295
|
/**
|
|
8259
8296
|
*
|
|
8260
|
-
* @type {
|
|
8261
|
-
* @memberof
|
|
8297
|
+
* @type {string}
|
|
8298
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8262
8299
|
*/
|
|
8263
|
-
'
|
|
8264
|
-
}
|
|
8265
|
-
/**
|
|
8266
|
-
*
|
|
8267
|
-
* @export
|
|
8268
|
-
* @interface ITemplatePostRequest
|
|
8269
|
-
*/
|
|
8270
|
-
export interface ITemplatePostRequest {
|
|
8300
|
+
'buttonTwoUrl'?: string;
|
|
8271
8301
|
/**
|
|
8272
8302
|
*
|
|
8273
8303
|
* @type {string}
|
|
8274
|
-
* @memberof
|
|
8304
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8275
8305
|
*/
|
|
8276
|
-
'
|
|
8306
|
+
'buttonTwoText'?: string;
|
|
8277
8307
|
/**
|
|
8278
8308
|
*
|
|
8279
8309
|
* @type {string}
|
|
8280
|
-
* @memberof
|
|
8310
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8281
8311
|
*/
|
|
8282
|
-
'
|
|
8312
|
+
'buttonOneUrl'?: string;
|
|
8283
8313
|
/**
|
|
8284
8314
|
*
|
|
8285
|
-
* @type {
|
|
8286
|
-
* @memberof
|
|
8315
|
+
* @type {string}
|
|
8316
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8287
8317
|
*/
|
|
8288
|
-
'
|
|
8318
|
+
'buttonOneText'?: string;
|
|
8289
8319
|
/**
|
|
8290
8320
|
*
|
|
8291
8321
|
* @type {string}
|
|
8292
|
-
* @memberof
|
|
8322
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8293
8323
|
*/
|
|
8294
|
-
'
|
|
8324
|
+
'url'?: string;
|
|
8295
8325
|
/**
|
|
8296
8326
|
*
|
|
8297
|
-
* @type {
|
|
8298
|
-
* @memberof
|
|
8327
|
+
* @type {IImage}
|
|
8328
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8299
8329
|
*/
|
|
8300
|
-
'
|
|
8301
|
-
}
|
|
8302
|
-
/**
|
|
8303
|
-
*
|
|
8304
|
-
* @export
|
|
8305
|
-
* @interface ITemplateResponse
|
|
8306
|
-
*/
|
|
8307
|
-
export interface ITemplateResponse {
|
|
8330
|
+
'imageMobile'?: IImage;
|
|
8308
8331
|
/**
|
|
8309
8332
|
*
|
|
8310
|
-
* @type {
|
|
8311
|
-
* @memberof
|
|
8333
|
+
* @type {IImage}
|
|
8334
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8312
8335
|
*/
|
|
8313
|
-
'
|
|
8336
|
+
'image'?: IImage;
|
|
8314
8337
|
/**
|
|
8315
8338
|
*
|
|
8316
8339
|
* @type {string}
|
|
8317
|
-
* @memberof
|
|
8318
|
-
*/
|
|
8319
|
-
'_id': string;
|
|
8320
|
-
/**
|
|
8321
|
-
*
|
|
8322
|
-
* @type {number}
|
|
8323
|
-
* @memberof ITemplateResponse
|
|
8340
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8324
8341
|
*/
|
|
8325
|
-
'
|
|
8342
|
+
'description'?: string;
|
|
8326
8343
|
/**
|
|
8327
8344
|
*
|
|
8328
8345
|
* @type {string}
|
|
8329
|
-
* @memberof
|
|
8346
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8330
8347
|
*/
|
|
8331
|
-
'
|
|
8348
|
+
'title'?: string;
|
|
8332
8349
|
/**
|
|
8333
8350
|
*
|
|
8334
|
-
* @type {
|
|
8335
|
-
* @memberof
|
|
8351
|
+
* @type {boolean}
|
|
8352
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8336
8353
|
*/
|
|
8337
|
-
'
|
|
8354
|
+
'legalDocuments'?: boolean;
|
|
8338
8355
|
/**
|
|
8339
8356
|
*
|
|
8340
|
-
* @type {
|
|
8341
|
-
* @memberof
|
|
8357
|
+
* @type {boolean}
|
|
8358
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8342
8359
|
*/
|
|
8343
|
-
'
|
|
8360
|
+
'policyLinks'?: boolean;
|
|
8344
8361
|
/**
|
|
8345
8362
|
*
|
|
8346
|
-
* @type {
|
|
8347
|
-
* @memberof
|
|
8363
|
+
* @type {boolean}
|
|
8364
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8348
8365
|
*/
|
|
8349
|
-
'
|
|
8366
|
+
'paymentGatewayPictures'?: boolean;
|
|
8350
8367
|
/**
|
|
8351
8368
|
*
|
|
8352
|
-
* @type {
|
|
8353
|
-
* @memberof
|
|
8369
|
+
* @type {boolean}
|
|
8370
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8354
8371
|
*/
|
|
8355
|
-
'
|
|
8372
|
+
'languageSwitcher'?: boolean;
|
|
8356
8373
|
/**
|
|
8357
8374
|
*
|
|
8358
|
-
* @type {
|
|
8359
|
-
* @memberof
|
|
8375
|
+
* @type {boolean}
|
|
8376
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8360
8377
|
*/
|
|
8361
|
-
'
|
|
8362
|
-
}
|
|
8363
|
-
/**
|
|
8364
|
-
*
|
|
8365
|
-
* @export
|
|
8366
|
-
* @interface ITemplatesResponse
|
|
8367
|
-
*/
|
|
8368
|
-
export interface ITemplatesResponse {
|
|
8378
|
+
'socialButtons'?: boolean;
|
|
8369
8379
|
/**
|
|
8370
8380
|
*
|
|
8371
|
-
* @type {
|
|
8372
|
-
* @memberof
|
|
8381
|
+
* @type {boolean}
|
|
8382
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8373
8383
|
*/
|
|
8374
|
-
'
|
|
8375
|
-
}
|
|
8376
|
-
/**
|
|
8377
|
-
*
|
|
8378
|
-
* @export
|
|
8379
|
-
* @interface IThemeCloneRequest
|
|
8380
|
-
*/
|
|
8381
|
-
export interface IThemeCloneRequest {
|
|
8384
|
+
'isInnerContainer'?: boolean;
|
|
8382
8385
|
/**
|
|
8383
8386
|
*
|
|
8384
|
-
* @type {
|
|
8385
|
-
* @memberof
|
|
8387
|
+
* @type {number}
|
|
8388
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8386
8389
|
*/
|
|
8387
|
-
'
|
|
8390
|
+
'contentMobileMaxWidth'?: number;
|
|
8388
8391
|
/**
|
|
8389
8392
|
*
|
|
8390
|
-
* @type {
|
|
8391
|
-
* @memberof
|
|
8393
|
+
* @type {number}
|
|
8394
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8392
8395
|
*/
|
|
8393
|
-
'
|
|
8396
|
+
'contentMaxWidth'?: number;
|
|
8394
8397
|
/**
|
|
8395
8398
|
*
|
|
8396
|
-
* @type {
|
|
8397
|
-
* @memberof
|
|
8399
|
+
* @type {number}
|
|
8400
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8398
8401
|
*/
|
|
8399
|
-
'
|
|
8400
|
-
}
|
|
8401
|
-
/**
|
|
8402
|
-
*
|
|
8403
|
-
* @export
|
|
8404
|
-
* @interface IThemePatchRequest
|
|
8405
|
-
*/
|
|
8406
|
-
export interface IThemePatchRequest {
|
|
8402
|
+
'contentMobileHeight'?: number;
|
|
8407
8403
|
/**
|
|
8408
8404
|
*
|
|
8409
|
-
* @type {
|
|
8410
|
-
* @memberof
|
|
8405
|
+
* @type {number}
|
|
8406
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8411
8407
|
*/
|
|
8412
|
-
'
|
|
8408
|
+
'contentHeight'?: number;
|
|
8413
8409
|
/**
|
|
8414
8410
|
*
|
|
8415
|
-
* @type {
|
|
8416
|
-
* @memberof
|
|
8411
|
+
* @type {number}
|
|
8412
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8417
8413
|
*/
|
|
8418
|
-
'
|
|
8414
|
+
'containerMobileHeight'?: number;
|
|
8419
8415
|
/**
|
|
8420
8416
|
*
|
|
8421
|
-
* @type {
|
|
8422
|
-
* @memberof
|
|
8417
|
+
* @type {number}
|
|
8418
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8423
8419
|
*/
|
|
8424
|
-
'
|
|
8420
|
+
'containerHeight'?: number;
|
|
8425
8421
|
/**
|
|
8426
8422
|
*
|
|
8427
|
-
* @type {
|
|
8428
|
-
* @memberof
|
|
8423
|
+
* @type {number}
|
|
8424
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8429
8425
|
*/
|
|
8430
|
-
'
|
|
8426
|
+
'containerWidth'?: number;
|
|
8431
8427
|
/**
|
|
8432
8428
|
*
|
|
8433
|
-
* @type {
|
|
8434
|
-
* @memberof
|
|
8429
|
+
* @type {ContentPositionYEnum}
|
|
8430
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8435
8431
|
*/
|
|
8436
|
-
'
|
|
8437
|
-
}
|
|
8438
|
-
/**
|
|
8439
|
-
*
|
|
8440
|
-
* @export
|
|
8441
|
-
* @interface IThemePostRequest
|
|
8442
|
-
*/
|
|
8443
|
-
export interface IThemePostRequest {
|
|
8432
|
+
'contentMobilePositionY'?: ContentPositionYEnum;
|
|
8444
8433
|
/**
|
|
8445
8434
|
*
|
|
8446
|
-
* @type {
|
|
8447
|
-
* @memberof
|
|
8435
|
+
* @type {ContentPositionYEnum}
|
|
8436
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8448
8437
|
*/
|
|
8449
|
-
'
|
|
8438
|
+
'contentPositionY'?: ContentPositionYEnum;
|
|
8450
8439
|
/**
|
|
8451
8440
|
*
|
|
8452
|
-
* @type {
|
|
8453
|
-
* @memberof
|
|
8441
|
+
* @type {ContentPositionXEnum}
|
|
8442
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8454
8443
|
*/
|
|
8455
|
-
'
|
|
8444
|
+
'contentMobilePositionX'?: ContentPositionXEnum;
|
|
8456
8445
|
/**
|
|
8457
8446
|
*
|
|
8458
|
-
* @type {
|
|
8459
|
-
* @memberof
|
|
8447
|
+
* @type {ContentPositionXEnum}
|
|
8448
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8460
8449
|
*/
|
|
8461
|
-
'
|
|
8450
|
+
'contentPositionX'?: ContentPositionXEnum;
|
|
8462
8451
|
/**
|
|
8463
8452
|
*
|
|
8464
|
-
* @type {
|
|
8465
|
-
* @memberof
|
|
8453
|
+
* @type {number}
|
|
8454
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8466
8455
|
*/
|
|
8467
|
-
'
|
|
8456
|
+
'imageAspectRatio'?: number;
|
|
8468
8457
|
/**
|
|
8469
8458
|
*
|
|
8470
|
-
* @type {
|
|
8471
|
-
* @memberof
|
|
8459
|
+
* @type {ProductDetailImageZoomTypeEnum}
|
|
8460
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8472
8461
|
*/
|
|
8473
|
-
'
|
|
8474
|
-
}
|
|
8475
|
-
/**
|
|
8476
|
-
*
|
|
8477
|
-
* @export
|
|
8478
|
-
* @interface IThemeResponse
|
|
8479
|
-
*/
|
|
8480
|
-
export interface IThemeResponse {
|
|
8462
|
+
'productDetailImageZoomType'?: ProductDetailImageZoomTypeEnum;
|
|
8481
8463
|
/**
|
|
8482
8464
|
*
|
|
8483
|
-
* @type {
|
|
8484
|
-
* @memberof
|
|
8465
|
+
* @type {FontSizeEnum}
|
|
8466
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8485
8467
|
*/
|
|
8486
|
-
'
|
|
8468
|
+
'contentDescriptionFontSize'?: FontSizeEnum;
|
|
8487
8469
|
/**
|
|
8488
8470
|
*
|
|
8489
|
-
* @type {
|
|
8490
|
-
* @memberof
|
|
8471
|
+
* @type {FontSizeEnum}
|
|
8472
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8491
8473
|
*/
|
|
8492
|
-
'
|
|
8474
|
+
'contentTitleFontSize'?: FontSizeEnum;
|
|
8493
8475
|
/**
|
|
8494
8476
|
*
|
|
8495
|
-
* @type {
|
|
8496
|
-
* @memberof
|
|
8477
|
+
* @type {FontSizeEnum}
|
|
8478
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8497
8479
|
*/
|
|
8498
|
-
'
|
|
8480
|
+
'descriptionFontSize'?: FontSizeEnum;
|
|
8499
8481
|
/**
|
|
8500
8482
|
*
|
|
8501
|
-
* @type {
|
|
8502
|
-
* @memberof
|
|
8483
|
+
* @type {FontSizeEnum}
|
|
8484
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8503
8485
|
*/
|
|
8504
|
-
'
|
|
8486
|
+
'titleFontSize'?: FontSizeEnum;
|
|
8505
8487
|
/**
|
|
8506
8488
|
*
|
|
8507
8489
|
* @type {string}
|
|
8508
|
-
* @memberof
|
|
8490
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8509
8491
|
*/
|
|
8510
|
-
'
|
|
8492
|
+
'textColor'?: string;
|
|
8511
8493
|
/**
|
|
8512
8494
|
*
|
|
8513
8495
|
* @type {string}
|
|
8514
|
-
* @memberof
|
|
8496
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8515
8497
|
*/
|
|
8516
|
-
'
|
|
8498
|
+
'customStyles'?: string;
|
|
8517
8499
|
/**
|
|
8518
8500
|
*
|
|
8519
|
-
* @type {
|
|
8520
|
-
* @memberof
|
|
8501
|
+
* @type {Array<string>}
|
|
8502
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8521
8503
|
*/
|
|
8522
|
-
'
|
|
8504
|
+
'customClasses'?: Array<string>;
|
|
8523
8505
|
/**
|
|
8524
8506
|
*
|
|
8525
8507
|
* @type {string}
|
|
8526
|
-
* @memberof
|
|
8508
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8527
8509
|
*/
|
|
8528
|
-
'
|
|
8510
|
+
'backgroundColor'?: string;
|
|
8529
8511
|
/**
|
|
8530
8512
|
*
|
|
8531
|
-
* @type {
|
|
8532
|
-
* @memberof
|
|
8513
|
+
* @type {boolean}
|
|
8514
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8533
8515
|
*/
|
|
8534
|
-
'
|
|
8516
|
+
'slide'?: boolean;
|
|
8535
8517
|
/**
|
|
8536
8518
|
*
|
|
8537
|
-
* @type {
|
|
8538
|
-
* @memberof
|
|
8519
|
+
* @type {boolean}
|
|
8520
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8539
8521
|
*/
|
|
8540
|
-
'
|
|
8522
|
+
'cardContainer'?: boolean;
|
|
8541
8523
|
/**
|
|
8542
8524
|
*
|
|
8543
|
-
* @type {
|
|
8544
|
-
* @memberof
|
|
8525
|
+
* @type {boolean}
|
|
8526
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8545
8527
|
*/
|
|
8546
|
-
'
|
|
8528
|
+
'grid'?: boolean;
|
|
8547
8529
|
/**
|
|
8548
8530
|
*
|
|
8549
|
-
* @type {
|
|
8550
|
-
* @memberof
|
|
8531
|
+
* @type {boolean}
|
|
8532
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8551
8533
|
*/
|
|
8552
|
-
'
|
|
8553
|
-
}
|
|
8554
|
-
/**
|
|
8555
|
-
*
|
|
8556
|
-
* @export
|
|
8557
|
-
* @interface IThemeResponseTemplate
|
|
8558
|
-
*/
|
|
8559
|
-
export interface IThemeResponseTemplate {
|
|
8534
|
+
'display': boolean;
|
|
8560
8535
|
/**
|
|
8561
8536
|
*
|
|
8562
|
-
* @type {
|
|
8563
|
-
* @memberof
|
|
8537
|
+
* @type {number}
|
|
8538
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8564
8539
|
*/
|
|
8565
|
-
'
|
|
8540
|
+
'interval'?: number;
|
|
8566
8541
|
/**
|
|
8567
8542
|
*
|
|
8568
|
-
* @type {
|
|
8569
|
-
* @memberof
|
|
8543
|
+
* @type {number}
|
|
8544
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8570
8545
|
*/
|
|
8571
|
-
'
|
|
8572
|
-
}
|
|
8573
|
-
/**
|
|
8574
|
-
*
|
|
8575
|
-
* @export
|
|
8576
|
-
* @interface IThemesResponse
|
|
8577
|
-
*/
|
|
8578
|
-
export interface IThemesResponse {
|
|
8546
|
+
'mobilePerViewCount'?: number;
|
|
8579
8547
|
/**
|
|
8580
8548
|
*
|
|
8581
|
-
* @type {
|
|
8582
|
-
* @memberof
|
|
8549
|
+
* @type {number}
|
|
8550
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8583
8551
|
*/
|
|
8584
|
-
'
|
|
8585
|
-
}
|
|
8586
|
-
/**
|
|
8587
|
-
*
|
|
8588
|
-
* @export
|
|
8589
|
-
* @interface IUserAddressResponse
|
|
8590
|
-
*/
|
|
8591
|
-
export interface IUserAddressResponse {
|
|
8552
|
+
'perViewCount'?: number;
|
|
8592
8553
|
/**
|
|
8593
8554
|
*
|
|
8594
|
-
* @type {
|
|
8595
|
-
* @memberof
|
|
8555
|
+
* @type {boolean}
|
|
8556
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8596
8557
|
*/
|
|
8597
|
-
'
|
|
8558
|
+
'autoPlay'?: boolean;
|
|
8559
|
+
/**
|
|
8560
|
+
*
|
|
8561
|
+
* @type {boolean}
|
|
8562
|
+
* @memberof ITemplateComponentResponseConfig
|
|
8563
|
+
*/
|
|
8564
|
+
'addName'?: boolean;
|
|
8598
8565
|
}
|
|
8599
8566
|
/**
|
|
8600
8567
|
*
|
|
8601
8568
|
* @export
|
|
8602
|
-
* @interface
|
|
8569
|
+
* @interface ITemplateComponentResponsePages
|
|
8603
8570
|
*/
|
|
8604
|
-
export interface
|
|
8571
|
+
export interface ITemplateComponentResponsePages {
|
|
8605
8572
|
/**
|
|
8606
8573
|
*
|
|
8607
8574
|
* @type {number}
|
|
8608
|
-
* @memberof
|
|
8575
|
+
* @memberof ITemplateComponentResponsePages
|
|
8609
8576
|
*/
|
|
8610
|
-
'
|
|
8577
|
+
'limit'?: number;
|
|
8611
8578
|
/**
|
|
8612
8579
|
*
|
|
8613
|
-
* @type {
|
|
8614
|
-
* @memberof
|
|
8580
|
+
* @type {Array<IPageResponse>}
|
|
8581
|
+
* @memberof ITemplateComponentResponsePages
|
|
8615
8582
|
*/
|
|
8616
|
-
'
|
|
8583
|
+
'list'?: Array<IPageResponse>;
|
|
8617
8584
|
/**
|
|
8618
8585
|
*
|
|
8619
|
-
* @type {
|
|
8620
|
-
* @memberof
|
|
8586
|
+
* @type {Array<IPageResponse>}
|
|
8587
|
+
* @memberof ITemplateComponentResponsePages
|
|
8621
8588
|
*/
|
|
8622
|
-
'
|
|
8589
|
+
'items'?: Array<IPageResponse>;
|
|
8590
|
+
}
|
|
8591
|
+
/**
|
|
8592
|
+
*
|
|
8593
|
+
* @export
|
|
8594
|
+
* @interface ITemplateComponentResponseProducts
|
|
8595
|
+
*/
|
|
8596
|
+
export interface ITemplateComponentResponseProducts {
|
|
8623
8597
|
/**
|
|
8624
8598
|
*
|
|
8625
|
-
* @type {
|
|
8626
|
-
* @memberof
|
|
8599
|
+
* @type {Array<IProductResponse>}
|
|
8600
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8627
8601
|
*/
|
|
8628
|
-
'
|
|
8602
|
+
'list'?: Array<IProductResponse>;
|
|
8629
8603
|
/**
|
|
8630
8604
|
*
|
|
8631
|
-
* @type {
|
|
8632
|
-
* @memberof
|
|
8605
|
+
* @type {number}
|
|
8606
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8633
8607
|
*/
|
|
8634
|
-
'
|
|
8608
|
+
'limit'?: number;
|
|
8635
8609
|
/**
|
|
8636
8610
|
*
|
|
8637
|
-
* @type {
|
|
8638
|
-
* @memberof
|
|
8611
|
+
* @type {ComponentProductListTypeEnum}
|
|
8612
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8639
8613
|
*/
|
|
8640
|
-
'
|
|
8614
|
+
'listType': ComponentProductListTypeEnum;
|
|
8641
8615
|
/**
|
|
8642
8616
|
*
|
|
8643
|
-
* @type {
|
|
8644
|
-
* @memberof
|
|
8617
|
+
* @type {ComponentProductOrderEnum}
|
|
8618
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8645
8619
|
*/
|
|
8646
|
-
'order'?:
|
|
8620
|
+
'order'?: ComponentProductOrderEnum;
|
|
8621
|
+
/**
|
|
8622
|
+
*
|
|
8623
|
+
* @type {ComponentProductTypeEnum}
|
|
8624
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8625
|
+
*/
|
|
8626
|
+
'relType'?: ComponentProductTypeEnum;
|
|
8647
8627
|
/**
|
|
8648
8628
|
*
|
|
8649
8629
|
* @type {string}
|
|
8650
|
-
* @memberof
|
|
8630
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8651
8631
|
*/
|
|
8652
|
-
'
|
|
8632
|
+
'relation'?: string;
|
|
8653
8633
|
/**
|
|
8654
8634
|
*
|
|
8655
|
-
* @type {
|
|
8656
|
-
* @memberof
|
|
8635
|
+
* @type {Array<IProductResponse>}
|
|
8636
|
+
* @memberof ITemplateComponentResponseProducts
|
|
8657
8637
|
*/
|
|
8658
|
-
'
|
|
8638
|
+
'items'?: Array<IProductResponse>;
|
|
8659
8639
|
}
|
|
8660
|
-
export declare const IUserCollectionQueryParamsDateFieldEnum: {
|
|
8661
|
-
readonly CREATED_AT: "createdAt";
|
|
8662
|
-
readonly UPDATED_AT: "updatedAt";
|
|
8663
|
-
};
|
|
8664
|
-
export type IUserCollectionQueryParamsDateFieldEnum = typeof IUserCollectionQueryParamsDateFieldEnum[keyof typeof IUserCollectionQueryParamsDateFieldEnum];
|
|
8665
8640
|
/**
|
|
8666
8641
|
*
|
|
8667
8642
|
* @export
|
|
8668
|
-
* @interface
|
|
8643
|
+
* @interface ITemplatePatchRequest
|
|
8669
8644
|
*/
|
|
8670
|
-
export interface
|
|
8671
|
-
/**
|
|
8672
|
-
*
|
|
8673
|
-
* @type {string}
|
|
8674
|
-
* @memberof IUserPatchRequest
|
|
8675
|
-
*/
|
|
8676
|
-
'name'?: string;
|
|
8677
|
-
/**
|
|
8678
|
-
*
|
|
8679
|
-
* @type {string}
|
|
8680
|
-
* @memberof IUserPatchRequest
|
|
8681
|
-
*/
|
|
8682
|
-
'password'?: string;
|
|
8645
|
+
export interface ITemplatePatchRequest {
|
|
8683
8646
|
/**
|
|
8684
8647
|
*
|
|
8685
8648
|
* @type {string}
|
|
8686
|
-
* @memberof
|
|
8649
|
+
* @memberof ITemplatePatchRequest
|
|
8687
8650
|
*/
|
|
8688
|
-
'
|
|
8651
|
+
'title'?: string;
|
|
8689
8652
|
/**
|
|
8690
8653
|
*
|
|
8691
|
-
* @type {
|
|
8692
|
-
* @memberof
|
|
8654
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8655
|
+
* @memberof ITemplatePatchRequest
|
|
8693
8656
|
*/
|
|
8694
|
-
'
|
|
8657
|
+
'components'?: PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8695
8658
|
/**
|
|
8696
8659
|
*
|
|
8697
|
-
* @type {
|
|
8698
|
-
* @memberof
|
|
8660
|
+
* @type {TemplateTypeEnum}
|
|
8661
|
+
* @memberof ITemplatePatchRequest
|
|
8699
8662
|
*/
|
|
8700
|
-
'
|
|
8663
|
+
'type'?: TemplateTypeEnum;
|
|
8701
8664
|
}
|
|
8702
8665
|
/**
|
|
8703
8666
|
*
|
|
8704
8667
|
* @export
|
|
8705
|
-
* @interface
|
|
8668
|
+
* @interface ITemplatePostRequest
|
|
8706
8669
|
*/
|
|
8707
|
-
export interface
|
|
8670
|
+
export interface ITemplatePostRequest {
|
|
8708
8671
|
/**
|
|
8709
8672
|
*
|
|
8710
8673
|
* @type {string}
|
|
8711
|
-
* @memberof
|
|
8674
|
+
* @memberof ITemplatePostRequest
|
|
8712
8675
|
*/
|
|
8713
|
-
'
|
|
8676
|
+
'company': string;
|
|
8714
8677
|
/**
|
|
8715
8678
|
*
|
|
8716
8679
|
* @type {string}
|
|
8717
|
-
* @memberof
|
|
8680
|
+
* @memberof ITemplatePostRequest
|
|
8718
8681
|
*/
|
|
8719
|
-
'
|
|
8682
|
+
'title': string;
|
|
8720
8683
|
/**
|
|
8721
8684
|
*
|
|
8722
|
-
* @type {
|
|
8723
|
-
* @memberof
|
|
8685
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8686
|
+
* @memberof ITemplatePostRequest
|
|
8724
8687
|
*/
|
|
8725
|
-
'
|
|
8688
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8726
8689
|
/**
|
|
8727
8690
|
*
|
|
8728
8691
|
* @type {string}
|
|
8729
|
-
* @memberof
|
|
8692
|
+
* @memberof ITemplatePostRequest
|
|
8730
8693
|
*/
|
|
8731
|
-
'
|
|
8694
|
+
'theme': string;
|
|
8732
8695
|
/**
|
|
8733
8696
|
*
|
|
8734
|
-
* @type {
|
|
8735
|
-
* @memberof
|
|
8697
|
+
* @type {TemplateTypeEnum}
|
|
8698
|
+
* @memberof ITemplatePostRequest
|
|
8736
8699
|
*/
|
|
8737
|
-
'
|
|
8700
|
+
'type': TemplateTypeEnum;
|
|
8738
8701
|
}
|
|
8739
8702
|
/**
|
|
8740
8703
|
*
|
|
8741
8704
|
* @export
|
|
8742
|
-
* @interface
|
|
8705
|
+
* @interface ITemplateResponse
|
|
8743
8706
|
*/
|
|
8744
|
-
export interface
|
|
8707
|
+
export interface ITemplateResponse {
|
|
8745
8708
|
/**
|
|
8746
8709
|
*
|
|
8747
8710
|
* @type {string}
|
|
8748
|
-
* @memberof
|
|
8711
|
+
* @memberof ITemplateResponse
|
|
8749
8712
|
*/
|
|
8750
|
-
'
|
|
8713
|
+
'company': string;
|
|
8751
8714
|
/**
|
|
8752
8715
|
*
|
|
8753
8716
|
* @type {string}
|
|
8754
|
-
* @memberof
|
|
8717
|
+
* @memberof ITemplateResponse
|
|
8755
8718
|
*/
|
|
8756
|
-
'
|
|
8719
|
+
'_id': string;
|
|
8757
8720
|
/**
|
|
8758
8721
|
*
|
|
8759
|
-
* @type {
|
|
8760
|
-
* @memberof
|
|
8722
|
+
* @type {number}
|
|
8723
|
+
* @memberof ITemplateResponse
|
|
8761
8724
|
*/
|
|
8762
|
-
'
|
|
8725
|
+
'__v': number;
|
|
8763
8726
|
/**
|
|
8764
8727
|
*
|
|
8765
|
-
* @type {
|
|
8766
|
-
* @memberof
|
|
8728
|
+
* @type {string}
|
|
8729
|
+
* @memberof ITemplateResponse
|
|
8767
8730
|
*/
|
|
8768
|
-
'
|
|
8731
|
+
'createdAt': string;
|
|
8769
8732
|
/**
|
|
8770
8733
|
*
|
|
8771
|
-
* @type {
|
|
8772
|
-
* @memberof
|
|
8734
|
+
* @type {string}
|
|
8735
|
+
* @memberof ITemplateResponse
|
|
8773
8736
|
*/
|
|
8774
|
-
'
|
|
8737
|
+
'updatedAt': string;
|
|
8775
8738
|
/**
|
|
8776
8739
|
*
|
|
8777
8740
|
* @type {string}
|
|
8778
|
-
* @memberof
|
|
8741
|
+
* @memberof ITemplateResponse
|
|
8779
8742
|
*/
|
|
8780
|
-
'
|
|
8743
|
+
'title': string;
|
|
8781
8744
|
/**
|
|
8782
8745
|
*
|
|
8783
|
-
* @type {
|
|
8784
|
-
* @memberof
|
|
8746
|
+
* @type {string}
|
|
8747
|
+
* @memberof ITemplateResponse
|
|
8785
8748
|
*/
|
|
8786
|
-
'
|
|
8749
|
+
'theme': string;
|
|
8787
8750
|
/**
|
|
8788
8751
|
*
|
|
8789
|
-
* @type {
|
|
8790
|
-
* @memberof
|
|
8752
|
+
* @type {TemplateTypeEnum}
|
|
8753
|
+
* @memberof ITemplateResponse
|
|
8791
8754
|
*/
|
|
8792
|
-
'
|
|
8755
|
+
'type': TemplateTypeEnum;
|
|
8793
8756
|
/**
|
|
8794
8757
|
*
|
|
8795
|
-
* @type {
|
|
8796
|
-
* @memberof
|
|
8758
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8759
|
+
* @memberof ITemplateResponse
|
|
8797
8760
|
*/
|
|
8798
|
-
'
|
|
8761
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8762
|
+
}
|
|
8763
|
+
/**
|
|
8764
|
+
*
|
|
8765
|
+
* @export
|
|
8766
|
+
* @interface ITemplatesResponse
|
|
8767
|
+
*/
|
|
8768
|
+
export interface ITemplatesResponse {
|
|
8799
8769
|
/**
|
|
8800
8770
|
*
|
|
8801
|
-
* @type {
|
|
8802
|
-
* @memberof
|
|
8803
|
-
*/
|
|
8804
|
-
'status': UserStatusEnum;
|
|
8805
|
-
/**
|
|
8806
|
-
*
|
|
8807
|
-
* @type {string}
|
|
8808
|
-
* @memberof IUserResponse
|
|
8771
|
+
* @type {Array<ITemplateResponse>}
|
|
8772
|
+
* @memberof ITemplatesResponse
|
|
8809
8773
|
*/
|
|
8810
|
-
'
|
|
8774
|
+
'data': Array<ITemplateResponse>;
|
|
8775
|
+
}
|
|
8776
|
+
/**
|
|
8777
|
+
*
|
|
8778
|
+
* @export
|
|
8779
|
+
* @interface IThemeCloneRequest
|
|
8780
|
+
*/
|
|
8781
|
+
export interface IThemeCloneRequest {
|
|
8811
8782
|
/**
|
|
8812
8783
|
*
|
|
8813
|
-
* @type {
|
|
8814
|
-
* @memberof
|
|
8784
|
+
* @type {string}
|
|
8785
|
+
* @memberof IThemeCloneRequest
|
|
8815
8786
|
*/
|
|
8816
|
-
'
|
|
8787
|
+
'main': string;
|
|
8817
8788
|
/**
|
|
8818
8789
|
*
|
|
8819
8790
|
* @type {string}
|
|
8820
|
-
* @memberof
|
|
8791
|
+
* @memberof IThemeCloneRequest
|
|
8821
8792
|
*/
|
|
8822
|
-
'
|
|
8793
|
+
'name'?: string;
|
|
8823
8794
|
/**
|
|
8824
8795
|
*
|
|
8825
8796
|
* @type {string}
|
|
8826
|
-
* @memberof
|
|
8797
|
+
* @memberof IThemeCloneRequest
|
|
8827
8798
|
*/
|
|
8828
|
-
'
|
|
8799
|
+
'company': string;
|
|
8829
8800
|
}
|
|
8830
8801
|
/**
|
|
8831
8802
|
*
|
|
8832
8803
|
* @export
|
|
8833
|
-
* @interface
|
|
8804
|
+
* @interface IThemePatchRequest
|
|
8834
8805
|
*/
|
|
8835
|
-
export interface
|
|
8806
|
+
export interface IThemePatchRequest {
|
|
8836
8807
|
/**
|
|
8837
8808
|
*
|
|
8838
|
-
* @type {
|
|
8839
|
-
* @memberof
|
|
8809
|
+
* @type {IThemeResponseTemplate}
|
|
8810
|
+
* @memberof IThemePatchRequest
|
|
8840
8811
|
*/
|
|
8841
|
-
'
|
|
8812
|
+
'template'?: IThemeResponseTemplate;
|
|
8842
8813
|
/**
|
|
8843
8814
|
*
|
|
8844
|
-
* @type {
|
|
8845
|
-
* @memberof
|
|
8815
|
+
* @type {string}
|
|
8816
|
+
* @memberof IThemePatchRequest
|
|
8846
8817
|
*/
|
|
8847
|
-
'
|
|
8818
|
+
'name'?: string;
|
|
8848
8819
|
/**
|
|
8849
8820
|
*
|
|
8850
|
-
* @type {
|
|
8851
|
-
* @memberof
|
|
8821
|
+
* @type {IImage}
|
|
8822
|
+
* @memberof IThemePatchRequest
|
|
8852
8823
|
*/
|
|
8853
|
-
'
|
|
8824
|
+
'thumbnail'?: IImage;
|
|
8854
8825
|
/**
|
|
8855
8826
|
*
|
|
8856
|
-
* @type {
|
|
8857
|
-
* @memberof
|
|
8827
|
+
* @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
|
|
8828
|
+
* @memberof IThemePatchRequest
|
|
8858
8829
|
*/
|
|
8859
|
-
'
|
|
8830
|
+
'config'?: PickIThemeExcludeKeyofIThemeTemplateConfig;
|
|
8860
8831
|
/**
|
|
8861
8832
|
*
|
|
8862
|
-
* @type {
|
|
8863
|
-
* @memberof
|
|
8833
|
+
* @type {string}
|
|
8834
|
+
* @memberof IThemePatchRequest
|
|
8864
8835
|
*/
|
|
8865
|
-
'
|
|
8836
|
+
'demoUrl'?: string;
|
|
8866
8837
|
}
|
|
8867
8838
|
/**
|
|
8868
8839
|
*
|
|
8869
8840
|
* @export
|
|
8870
|
-
* @interface
|
|
8841
|
+
* @interface IThemePostRequest
|
|
8871
8842
|
*/
|
|
8872
|
-
export interface
|
|
8843
|
+
export interface IThemePostRequest {
|
|
8873
8844
|
/**
|
|
8874
8845
|
*
|
|
8875
8846
|
* @type {string}
|
|
8876
|
-
* @memberof
|
|
8847
|
+
* @memberof IThemePostRequest
|
|
8877
8848
|
*/
|
|
8878
|
-
'
|
|
8849
|
+
'name': string;
|
|
8850
|
+
/**
|
|
8851
|
+
*
|
|
8852
|
+
* @type {IImage}
|
|
8853
|
+
* @memberof IThemePostRequest
|
|
8854
|
+
*/
|
|
8855
|
+
'thumbnail'?: IImage;
|
|
8856
|
+
/**
|
|
8857
|
+
*
|
|
8858
|
+
* @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
|
|
8859
|
+
* @memberof IThemePostRequest
|
|
8860
|
+
*/
|
|
8861
|
+
'config': PickIThemeExcludeKeyofIThemeTemplateConfig;
|
|
8879
8862
|
/**
|
|
8880
8863
|
*
|
|
8881
8864
|
* @type {string}
|
|
8882
|
-
* @memberof
|
|
8865
|
+
* @memberof IThemePostRequest
|
|
8883
8866
|
*/
|
|
8884
|
-
'
|
|
8867
|
+
'demoUrl'?: string;
|
|
8868
|
+
/**
|
|
8869
|
+
*
|
|
8870
|
+
* @type {IThemeResponseTemplate}
|
|
8871
|
+
* @memberof IThemePostRequest
|
|
8872
|
+
*/
|
|
8873
|
+
'template': IThemeResponseTemplate;
|
|
8885
8874
|
}
|
|
8886
8875
|
/**
|
|
8887
8876
|
*
|
|
8888
8877
|
* @export
|
|
8889
|
-
* @
|
|
8890
|
-
*/
|
|
8891
|
-
export declare const LanguageEnum: {
|
|
8892
|
-
readonly TR: "tr";
|
|
8893
|
-
readonly EN: "en";
|
|
8894
|
-
readonly DE: "de";
|
|
8895
|
-
};
|
|
8896
|
-
export type LanguageEnum = typeof LanguageEnum[keyof typeof LanguageEnum];
|
|
8897
|
-
/**
|
|
8898
|
-
*
|
|
8899
|
-
* @export
|
|
8900
|
-
* @interface NavigationUrl
|
|
8878
|
+
* @interface IThemeResponse
|
|
8901
8879
|
*/
|
|
8902
|
-
export interface
|
|
8880
|
+
export interface IThemeResponse {
|
|
8903
8881
|
/**
|
|
8904
8882
|
*
|
|
8905
8883
|
* @type {string}
|
|
8906
|
-
* @memberof
|
|
8884
|
+
* @memberof IThemeResponse
|
|
8885
|
+
*/
|
|
8886
|
+
'name': string;
|
|
8887
|
+
/**
|
|
8888
|
+
*
|
|
8889
|
+
* @type {string}
|
|
8890
|
+
* @memberof IThemeResponse
|
|
8891
|
+
*/
|
|
8892
|
+
'company'?: string;
|
|
8893
|
+
/**
|
|
8894
|
+
*
|
|
8895
|
+
* @type {string}
|
|
8896
|
+
* @memberof IThemeResponse
|
|
8907
8897
|
*/
|
|
8908
8898
|
'_id': string;
|
|
8909
8899
|
/**
|
|
8910
8900
|
*
|
|
8911
|
-
* @type {
|
|
8912
|
-
* @memberof
|
|
8901
|
+
* @type {number}
|
|
8902
|
+
* @memberof IThemeResponse
|
|
8913
8903
|
*/
|
|
8914
|
-
'
|
|
8904
|
+
'__v': number;
|
|
8915
8905
|
/**
|
|
8916
8906
|
*
|
|
8917
8907
|
* @type {string}
|
|
8918
|
-
* @memberof
|
|
8908
|
+
* @memberof IThemeResponse
|
|
8919
8909
|
*/
|
|
8920
|
-
'
|
|
8910
|
+
'createdAt': string;
|
|
8921
8911
|
/**
|
|
8922
8912
|
*
|
|
8923
8913
|
* @type {string}
|
|
8924
|
-
* @memberof
|
|
8914
|
+
* @memberof IThemeResponse
|
|
8925
8915
|
*/
|
|
8926
|
-
'
|
|
8916
|
+
'updatedAt': string;
|
|
8917
|
+
/**
|
|
8918
|
+
*
|
|
8919
|
+
* @type {IImage}
|
|
8920
|
+
* @memberof IThemeResponse
|
|
8921
|
+
*/
|
|
8922
|
+
'thumbnail'?: IImage;
|
|
8927
8923
|
/**
|
|
8928
8924
|
*
|
|
8929
8925
|
* @type {string}
|
|
8930
|
-
* @memberof
|
|
8926
|
+
* @memberof IThemeResponse
|
|
8931
8927
|
*/
|
|
8932
|
-
'
|
|
8928
|
+
'main'?: string;
|
|
8929
|
+
/**
|
|
8930
|
+
*
|
|
8931
|
+
* @type {PickIThemeExcludeKeyofIThemeTemplateConfig}
|
|
8932
|
+
* @memberof IThemeResponse
|
|
8933
|
+
*/
|
|
8934
|
+
'config': PickIThemeExcludeKeyofIThemeTemplateConfig;
|
|
8933
8935
|
/**
|
|
8934
8936
|
*
|
|
8935
8937
|
* @type {string}
|
|
8936
|
-
* @memberof
|
|
8938
|
+
* @memberof IThemeResponse
|
|
8937
8939
|
*/
|
|
8938
|
-
'
|
|
8940
|
+
'demoUrl'?: string;
|
|
8941
|
+
/**
|
|
8942
|
+
*
|
|
8943
|
+
* @type {string}
|
|
8944
|
+
* @memberof IThemeResponse
|
|
8945
|
+
*/
|
|
8946
|
+
'creator'?: string;
|
|
8947
|
+
/**
|
|
8948
|
+
*
|
|
8949
|
+
* @type {IThemeResponseTemplate}
|
|
8950
|
+
* @memberof IThemeResponse
|
|
8951
|
+
*/
|
|
8952
|
+
'template': IThemeResponseTemplate;
|
|
8939
8953
|
}
|
|
8940
|
-
export declare const NavigationUrlTargetEnum: {
|
|
8941
|
-
readonly BLANK: "_blank";
|
|
8942
|
-
};
|
|
8943
|
-
export type NavigationUrlTargetEnum = typeof NavigationUrlTargetEnum[keyof typeof NavigationUrlTargetEnum];
|
|
8944
|
-
/**
|
|
8945
|
-
*
|
|
8946
|
-
* @export
|
|
8947
|
-
* @enum {number}
|
|
8948
|
-
*/
|
|
8949
|
-
export declare const NotificationMessageEnum: {
|
|
8950
|
-
readonly NUMBER_404: 404;
|
|
8951
|
-
readonly NUMBER_409: 409;
|
|
8952
|
-
readonly NUMBER_201: 201;
|
|
8953
|
-
readonly NUMBER_500: 500;
|
|
8954
|
-
};
|
|
8955
|
-
export type NotificationMessageEnum = typeof NotificationMessageEnum[keyof typeof NotificationMessageEnum];
|
|
8956
|
-
/**
|
|
8957
|
-
*
|
|
8958
|
-
* @export
|
|
8959
|
-
* @enum {string}
|
|
8960
|
-
*/
|
|
8961
|
-
export declare const NotificationStatusEnum: {
|
|
8962
|
-
readonly ACTIVE: "active";
|
|
8963
|
-
readonly READ: "read";
|
|
8964
|
-
readonly DELETED: "deleted";
|
|
8965
|
-
};
|
|
8966
|
-
export type NotificationStatusEnum = typeof NotificationStatusEnum[keyof typeof NotificationStatusEnum];
|
|
8967
8954
|
/**
|
|
8968
8955
|
*
|
|
8969
8956
|
* @export
|
|
8970
|
-
* @
|
|
8957
|
+
* @interface IThemeResponseTemplate
|
|
8971
8958
|
*/
|
|
8972
|
-
export
|
|
8973
|
-
|
|
8974
|
-
|
|
8975
|
-
|
|
8976
|
-
|
|
8977
|
-
|
|
8959
|
+
export interface IThemeResponseTemplate {
|
|
8960
|
+
/**
|
|
8961
|
+
*
|
|
8962
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8963
|
+
* @memberof IThemeResponseTemplate
|
|
8964
|
+
*/
|
|
8965
|
+
'footer': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8966
|
+
/**
|
|
8967
|
+
*
|
|
8968
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
8969
|
+
* @memberof IThemeResponseTemplate
|
|
8970
|
+
*/
|
|
8971
|
+
'header': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
8972
|
+
}
|
|
8978
8973
|
/**
|
|
8979
8974
|
*
|
|
8980
8975
|
* @export
|
|
8981
|
-
* @
|
|
8976
|
+
* @interface IThemesResponse
|
|
8982
8977
|
*/
|
|
8983
|
-
export
|
|
8984
|
-
|
|
8985
|
-
|
|
8986
|
-
}
|
|
8987
|
-
|
|
8978
|
+
export interface IThemesResponse {
|
|
8979
|
+
/**
|
|
8980
|
+
*
|
|
8981
|
+
* @type {Array<IThemeResponse>}
|
|
8982
|
+
* @memberof IThemesResponse
|
|
8983
|
+
*/
|
|
8984
|
+
'data': Array<IThemeResponse>;
|
|
8985
|
+
}
|
|
8988
8986
|
/**
|
|
8989
8987
|
*
|
|
8990
8988
|
* @export
|
|
8991
|
-
* @
|
|
8989
|
+
* @interface IUserAddressResponse
|
|
8992
8990
|
*/
|
|
8993
|
-
export
|
|
8994
|
-
|
|
8995
|
-
|
|
8996
|
-
|
|
8997
|
-
|
|
8998
|
-
|
|
8991
|
+
export interface IUserAddressResponse {
|
|
8992
|
+
/**
|
|
8993
|
+
*
|
|
8994
|
+
* @type {Array<IAddress>}
|
|
8995
|
+
* @memberof IUserAddressResponse
|
|
8996
|
+
*/
|
|
8997
|
+
'addresses': Array<IAddress>;
|
|
8998
|
+
}
|
|
8999
8999
|
/**
|
|
9000
9000
|
*
|
|
9001
9001
|
* @export
|
|
9002
|
-
* @
|
|
9002
|
+
* @interface IUserCollectionQueryParams
|
|
9003
9003
|
*/
|
|
9004
|
-
export
|
|
9005
|
-
readonly WAITING_APPROVAL: "waiting_approval";
|
|
9006
|
-
readonly REJECTED: "rejected";
|
|
9007
|
-
readonly WAITING_RETURN: "waiting_return";
|
|
9008
|
-
readonly RETURNED: "returned";
|
|
9009
|
-
};
|
|
9010
|
-
export type OrderReturnStatusEnum = typeof OrderReturnStatusEnum[keyof typeof OrderReturnStatusEnum];
|
|
9011
|
-
/**
|
|
9012
|
-
*
|
|
9013
|
-
* @export
|
|
9014
|
-
* @enum {string}
|
|
9015
|
-
*/
|
|
9016
|
-
export declare const OrderReturnStatusEnumRETURNED: {
|
|
9017
|
-
readonly RETURNED: "returned";
|
|
9018
|
-
};
|
|
9019
|
-
export type OrderReturnStatusEnumRETURNED = typeof OrderReturnStatusEnumRETURNED[keyof typeof OrderReturnStatusEnumRETURNED];
|
|
9020
|
-
/**
|
|
9021
|
-
*
|
|
9022
|
-
* @export
|
|
9023
|
-
* @enum {string}
|
|
9024
|
-
*/
|
|
9025
|
-
export declare const OrderReturnStatusEnumWAITINGRETURN: {
|
|
9026
|
-
readonly WAITING_RETURN: "waiting_return";
|
|
9027
|
-
};
|
|
9028
|
-
export type OrderReturnStatusEnumWAITINGRETURN = typeof OrderReturnStatusEnumWAITINGRETURN[keyof typeof OrderReturnStatusEnumWAITINGRETURN];
|
|
9029
|
-
/**
|
|
9030
|
-
*
|
|
9031
|
-
* @export
|
|
9032
|
-
* @enum {string}
|
|
9033
|
-
*/
|
|
9034
|
-
export declare const OrderShippedStatusEnum: {
|
|
9035
|
-
readonly SHIPPED: "shipped";
|
|
9036
|
-
readonly COMPLETED: "completed";
|
|
9037
|
-
};
|
|
9038
|
-
export type OrderShippedStatusEnum = typeof OrderShippedStatusEnum[keyof typeof OrderShippedStatusEnum];
|
|
9039
|
-
/**
|
|
9040
|
-
*
|
|
9041
|
-
* @export
|
|
9042
|
-
* @enum {string}
|
|
9043
|
-
*/
|
|
9044
|
-
export declare const OrderStatusEnum: {
|
|
9045
|
-
readonly CANCELLED: "cancelled";
|
|
9046
|
-
readonly CREATED: "created";
|
|
9047
|
-
};
|
|
9048
|
-
export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
|
|
9049
|
-
/**
|
|
9050
|
-
*
|
|
9051
|
-
* @export
|
|
9052
|
-
* @enum {string}
|
|
9053
|
-
*/
|
|
9054
|
-
export declare const PageTypeEnum: {
|
|
9055
|
-
readonly BLOG: "blog";
|
|
9056
|
-
readonly PAGE: "page";
|
|
9057
|
-
readonly HOME: "home";
|
|
9058
|
-
readonly CART: "cart";
|
|
9059
|
-
readonly CHECKOUT: "checkout";
|
|
9060
|
-
readonly SEARCH: "search";
|
|
9061
|
-
readonly NOT_FOUND: "not-found";
|
|
9062
|
-
readonly BLOG_LIST: "blog-list";
|
|
9063
|
-
};
|
|
9064
|
-
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
9065
|
-
/**
|
|
9066
|
-
* Make all properties in T optional
|
|
9067
|
-
* @export
|
|
9068
|
-
* @interface PartialRecordLanguageEnumIContentsValue
|
|
9069
|
-
*/
|
|
9070
|
-
export interface PartialRecordLanguageEnumIContentsValue {
|
|
9004
|
+
export interface IUserCollectionQueryParams {
|
|
9071
9005
|
/**
|
|
9072
9006
|
*
|
|
9073
|
-
* @type {
|
|
9074
|
-
* @memberof
|
|
9007
|
+
* @type {number}
|
|
9008
|
+
* @memberof IUserCollectionQueryParams
|
|
9075
9009
|
*/
|
|
9076
|
-
'
|
|
9010
|
+
'page'?: number;
|
|
9077
9011
|
/**
|
|
9078
9012
|
*
|
|
9079
|
-
* @type {
|
|
9080
|
-
* @memberof
|
|
9013
|
+
* @type {number}
|
|
9014
|
+
* @memberof IUserCollectionQueryParams
|
|
9081
9015
|
*/
|
|
9082
|
-
'
|
|
9016
|
+
'itemsPerPage'?: number;
|
|
9083
9017
|
/**
|
|
9084
9018
|
*
|
|
9085
|
-
* @type {
|
|
9086
|
-
* @memberof
|
|
9019
|
+
* @type {string}
|
|
9020
|
+
* @memberof IUserCollectionQueryParams
|
|
9087
9021
|
*/
|
|
9088
|
-
'
|
|
9089
|
-
}
|
|
9090
|
-
/**
|
|
9091
|
-
* Make all properties in T optional
|
|
9092
|
-
* @export
|
|
9093
|
-
* @interface PartialRecordLanguageEnumString
|
|
9094
|
-
*/
|
|
9095
|
-
export interface PartialRecordLanguageEnumString {
|
|
9022
|
+
'search'?: string;
|
|
9096
9023
|
/**
|
|
9097
9024
|
*
|
|
9098
9025
|
* @type {string}
|
|
9099
|
-
* @memberof
|
|
9026
|
+
* @memberof IUserCollectionQueryParams
|
|
9100
9027
|
*/
|
|
9101
|
-
'
|
|
9028
|
+
'startDate'?: string;
|
|
9102
9029
|
/**
|
|
9103
9030
|
*
|
|
9104
9031
|
* @type {string}
|
|
9105
|
-
* @memberof
|
|
9032
|
+
* @memberof IUserCollectionQueryParams
|
|
9106
9033
|
*/
|
|
9107
|
-
'
|
|
9034
|
+
'endDate'?: string;
|
|
9108
9035
|
/**
|
|
9109
9036
|
*
|
|
9110
9037
|
* @type {string}
|
|
9111
|
-
* @memberof
|
|
9038
|
+
* @memberof IUserCollectionQueryParams
|
|
9112
9039
|
*/
|
|
9113
|
-
'
|
|
9114
|
-
}
|
|
9115
|
-
/**
|
|
9116
|
-
* Make all properties in T optional
|
|
9117
|
-
* @export
|
|
9118
|
-
* @interface PartialRecordLanguageEnumTitleString
|
|
9119
|
-
*/
|
|
9120
|
-
export interface PartialRecordLanguageEnumTitleString {
|
|
9040
|
+
'dateField'?: IUserCollectionQueryParamsDateFieldEnum;
|
|
9121
9041
|
/**
|
|
9122
9042
|
*
|
|
9123
|
-
* @type {
|
|
9124
|
-
* @memberof
|
|
9043
|
+
* @type {OrderEnum}
|
|
9044
|
+
* @memberof IUserCollectionQueryParams
|
|
9125
9045
|
*/
|
|
9126
|
-
'
|
|
9046
|
+
'order'?: OrderEnum;
|
|
9127
9047
|
/**
|
|
9128
9048
|
*
|
|
9129
|
-
* @type {
|
|
9130
|
-
* @memberof
|
|
9049
|
+
* @type {string}
|
|
9050
|
+
* @memberof IUserCollectionQueryParams
|
|
9131
9051
|
*/
|
|
9132
|
-
'
|
|
9052
|
+
'sort'?: string;
|
|
9133
9053
|
/**
|
|
9134
9054
|
*
|
|
9135
|
-
* @type {
|
|
9136
|
-
* @memberof
|
|
9055
|
+
* @type {UserStatusEnum}
|
|
9056
|
+
* @memberof IUserCollectionQueryParams
|
|
9137
9057
|
*/
|
|
9138
|
-
'
|
|
9058
|
+
'status'?: UserStatusEnum;
|
|
9139
9059
|
}
|
|
9140
|
-
|
|
9141
|
-
|
|
9142
|
-
|
|
9143
|
-
* @enum {string}
|
|
9144
|
-
*/
|
|
9145
|
-
export declare const PaymentGatewayEnum: {
|
|
9146
|
-
readonly IYZICO: "iyzico";
|
|
9147
|
-
readonly PAYTR: "paytr";
|
|
9148
|
-
readonly PAPARA: "papara";
|
|
9149
|
-
};
|
|
9150
|
-
export type PaymentGatewayEnum = typeof PaymentGatewayEnum[keyof typeof PaymentGatewayEnum];
|
|
9151
|
-
/**
|
|
9152
|
-
*
|
|
9153
|
-
* @export
|
|
9154
|
-
* @enum {string}
|
|
9155
|
-
*/
|
|
9156
|
-
export declare const PaymentMethodEnum: {
|
|
9157
|
-
readonly CREDIT_CARD: "credit_card";
|
|
9158
|
-
readonly BANK_TRANSFER: "bank_transfer";
|
|
9159
|
-
readonly CASH_ON_DELIVERY: "cash_on_delivery";
|
|
9160
|
-
readonly CARD_ON_DELIVERY: "card_on_delivery";
|
|
9060
|
+
export declare const IUserCollectionQueryParamsDateFieldEnum: {
|
|
9061
|
+
readonly CREATED_AT: "createdAt";
|
|
9062
|
+
readonly UPDATED_AT: "updatedAt";
|
|
9161
9063
|
};
|
|
9162
|
-
export type
|
|
9064
|
+
export type IUserCollectionQueryParamsDateFieldEnum = typeof IUserCollectionQueryParamsDateFieldEnum[keyof typeof IUserCollectionQueryParamsDateFieldEnum];
|
|
9163
9065
|
/**
|
|
9164
9066
|
*
|
|
9165
9067
|
* @export
|
|
9166
|
-
* @
|
|
9167
|
-
*/
|
|
9168
|
-
export declare const PaymentStatusEnum: {
|
|
9169
|
-
readonly WAITING_APPROVAL: "waiting_approval";
|
|
9170
|
-
readonly PAID: "paid";
|
|
9171
|
-
readonly FAILED: "failed";
|
|
9172
|
-
};
|
|
9173
|
-
export type PaymentStatusEnum = typeof PaymentStatusEnum[keyof typeof PaymentStatusEnum];
|
|
9174
|
-
/**
|
|
9175
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
9176
|
-
* @export
|
|
9177
|
-
* @interface PickIBasketExcludeKeyofIBasketItems
|
|
9068
|
+
* @interface IUserPatchRequest
|
|
9178
9069
|
*/
|
|
9179
|
-
export interface
|
|
9070
|
+
export interface IUserPatchRequest {
|
|
9180
9071
|
/**
|
|
9181
9072
|
*
|
|
9182
9073
|
* @type {string}
|
|
9183
|
-
* @memberof
|
|
9074
|
+
* @memberof IUserPatchRequest
|
|
9184
9075
|
*/
|
|
9185
|
-
'
|
|
9076
|
+
'name'?: string;
|
|
9186
9077
|
/**
|
|
9187
9078
|
*
|
|
9188
9079
|
* @type {string}
|
|
9189
|
-
* @memberof
|
|
9190
|
-
*/
|
|
9191
|
-
'_id': string;
|
|
9192
|
-
/**
|
|
9193
|
-
*
|
|
9194
|
-
* @type {number}
|
|
9195
|
-
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
9080
|
+
* @memberof IUserPatchRequest
|
|
9196
9081
|
*/
|
|
9197
|
-
'
|
|
9082
|
+
'password'?: string;
|
|
9198
9083
|
/**
|
|
9199
9084
|
*
|
|
9200
9085
|
* @type {string}
|
|
9201
|
-
* @memberof
|
|
9086
|
+
* @memberof IUserPatchRequest
|
|
9202
9087
|
*/
|
|
9203
|
-
'
|
|
9088
|
+
'phone'?: string;
|
|
9204
9089
|
/**
|
|
9205
9090
|
*
|
|
9206
|
-
* @type {
|
|
9207
|
-
* @memberof
|
|
9091
|
+
* @type {Array<UserRoleEnum>}
|
|
9092
|
+
* @memberof IUserPatchRequest
|
|
9208
9093
|
*/
|
|
9209
|
-
'
|
|
9094
|
+
'roles'?: Array<UserRoleEnum>;
|
|
9210
9095
|
/**
|
|
9211
9096
|
*
|
|
9212
|
-
* @type {
|
|
9213
|
-
* @memberof
|
|
9097
|
+
* @type {Array<IAddress>}
|
|
9098
|
+
* @memberof IUserPatchRequest
|
|
9214
9099
|
*/
|
|
9215
|
-
'
|
|
9100
|
+
'addresses'?: Array<IAddress>;
|
|
9216
9101
|
}
|
|
9217
9102
|
/**
|
|
9218
|
-
*
|
|
9103
|
+
*
|
|
9219
9104
|
* @export
|
|
9220
|
-
* @interface
|
|
9105
|
+
* @interface IUserPostRequest
|
|
9221
9106
|
*/
|
|
9222
|
-
export interface
|
|
9107
|
+
export interface IUserPostRequest {
|
|
9223
9108
|
/**
|
|
9224
9109
|
*
|
|
9225
9110
|
* @type {string}
|
|
9226
|
-
* @memberof
|
|
9227
|
-
*/
|
|
9228
|
-
'company': string;
|
|
9229
|
-
/**
|
|
9230
|
-
*
|
|
9231
|
-
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9232
|
-
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9111
|
+
* @memberof IUserPostRequest
|
|
9233
9112
|
*/
|
|
9234
|
-
'
|
|
9113
|
+
'name': string;
|
|
9235
9114
|
/**
|
|
9236
9115
|
*
|
|
9237
|
-
* @type {
|
|
9238
|
-
* @memberof
|
|
9116
|
+
* @type {string}
|
|
9117
|
+
* @memberof IUserPostRequest
|
|
9239
9118
|
*/
|
|
9240
|
-
'
|
|
9241
|
-
}
|
|
9242
|
-
/**
|
|
9243
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
9244
|
-
* @export
|
|
9245
|
-
* @interface PickICategoryExcludeKeyofICategoryAttributes
|
|
9246
|
-
*/
|
|
9247
|
-
export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
9119
|
+
'email': string;
|
|
9248
9120
|
/**
|
|
9249
9121
|
*
|
|
9250
9122
|
* @type {string}
|
|
9251
|
-
* @memberof
|
|
9123
|
+
* @memberof IUserPostRequest
|
|
9252
9124
|
*/
|
|
9253
|
-
'
|
|
9125
|
+
'password': string;
|
|
9254
9126
|
/**
|
|
9255
9127
|
*
|
|
9256
9128
|
* @type {string}
|
|
9257
|
-
* @memberof
|
|
9129
|
+
* @memberof IUserPostRequest
|
|
9258
9130
|
*/
|
|
9259
|
-
'
|
|
9131
|
+
'phone'?: string;
|
|
9260
9132
|
/**
|
|
9261
9133
|
*
|
|
9262
|
-
* @type {
|
|
9263
|
-
* @memberof
|
|
9134
|
+
* @type {Array<UserRoleEnum>}
|
|
9135
|
+
* @memberof IUserPostRequest
|
|
9264
9136
|
*/
|
|
9265
|
-
'
|
|
9137
|
+
'roles'?: Array<UserRoleEnum>;
|
|
9138
|
+
}
|
|
9139
|
+
/**
|
|
9140
|
+
*
|
|
9141
|
+
* @export
|
|
9142
|
+
* @interface IUserResponse
|
|
9143
|
+
*/
|
|
9144
|
+
export interface IUserResponse {
|
|
9266
9145
|
/**
|
|
9267
9146
|
*
|
|
9268
9147
|
* @type {string}
|
|
9269
|
-
* @memberof
|
|
9148
|
+
* @memberof IUserResponse
|
|
9270
9149
|
*/
|
|
9271
|
-
'
|
|
9150
|
+
'name': string;
|
|
9272
9151
|
/**
|
|
9273
9152
|
*
|
|
9274
9153
|
* @type {string}
|
|
9275
|
-
* @memberof
|
|
9154
|
+
* @memberof IUserResponse
|
|
9276
9155
|
*/
|
|
9277
|
-
'
|
|
9156
|
+
'phone'?: string;
|
|
9278
9157
|
/**
|
|
9279
9158
|
*
|
|
9280
|
-
* @type {
|
|
9281
|
-
* @memberof
|
|
9159
|
+
* @type {string}
|
|
9160
|
+
* @memberof IUserResponse
|
|
9282
9161
|
*/
|
|
9283
|
-
'
|
|
9162
|
+
'email': string;
|
|
9284
9163
|
/**
|
|
9285
9164
|
*
|
|
9286
|
-
* @type {Array<
|
|
9287
|
-
* @memberof
|
|
9165
|
+
* @type {Array<UserRoleEnum>}
|
|
9166
|
+
* @memberof IUserResponse
|
|
9288
9167
|
*/
|
|
9289
|
-
'
|
|
9168
|
+
'roles': Array<UserRoleEnum>;
|
|
9290
9169
|
/**
|
|
9291
9170
|
*
|
|
9292
|
-
* @type {
|
|
9293
|
-
* @memberof
|
|
9171
|
+
* @type {Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>}
|
|
9172
|
+
* @memberof IUserResponse
|
|
9294
9173
|
*/
|
|
9295
|
-
'
|
|
9174
|
+
'versions': Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>;
|
|
9296
9175
|
/**
|
|
9297
9176
|
*
|
|
9298
9177
|
* @type {string}
|
|
9299
|
-
* @memberof
|
|
9178
|
+
* @memberof IUserResponse
|
|
9300
9179
|
*/
|
|
9301
|
-
'
|
|
9302
|
-
}
|
|
9303
|
-
/**
|
|
9304
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
9305
|
-
* @export
|
|
9306
|
-
* @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9307
|
-
*/
|
|
9308
|
-
export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs {
|
|
9180
|
+
'company': string;
|
|
9309
9181
|
/**
|
|
9310
9182
|
*
|
|
9311
|
-
* @type {
|
|
9312
|
-
* @memberof
|
|
9183
|
+
* @type {LanguageEnum}
|
|
9184
|
+
* @memberof IUserResponse
|
|
9313
9185
|
*/
|
|
9314
|
-
'
|
|
9186
|
+
'language': LanguageEnum;
|
|
9315
9187
|
/**
|
|
9316
9188
|
*
|
|
9317
|
-
* @type {
|
|
9318
|
-
* @memberof
|
|
9189
|
+
* @type {PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions}
|
|
9190
|
+
* @memberof IUserResponse
|
|
9319
9191
|
*/
|
|
9320
|
-
'
|
|
9192
|
+
'contactPermissions': PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTContactPermissions;
|
|
9321
9193
|
/**
|
|
9322
9194
|
*
|
|
9323
|
-
* @type {
|
|
9324
|
-
* @memberof
|
|
9195
|
+
* @type {Array<IAddress>}
|
|
9196
|
+
* @memberof IUserResponse
|
|
9325
9197
|
*/
|
|
9326
|
-
'
|
|
9198
|
+
'addresses': Array<IAddress>;
|
|
9327
9199
|
/**
|
|
9328
9200
|
*
|
|
9329
|
-
* @type {
|
|
9330
|
-
* @memberof
|
|
9201
|
+
* @type {UserStatusEnum}
|
|
9202
|
+
* @memberof IUserResponse
|
|
9331
9203
|
*/
|
|
9332
|
-
'
|
|
9333
|
-
}
|
|
9334
|
-
/**
|
|
9335
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
9336
|
-
* @export
|
|
9337
|
-
* @interface PickICategoryResponseIdOrAttributesOrMain
|
|
9338
|
-
*/
|
|
9339
|
-
export interface PickICategoryResponseIdOrAttributesOrMain {
|
|
9204
|
+
'status': UserStatusEnum;
|
|
9340
9205
|
/**
|
|
9341
9206
|
*
|
|
9342
9207
|
* @type {string}
|
|
9343
|
-
* @memberof
|
|
9208
|
+
* @memberof IUserResponse
|
|
9344
9209
|
*/
|
|
9345
9210
|
'_id': string;
|
|
9346
9211
|
/**
|
|
9347
9212
|
*
|
|
9348
|
-
* @type {
|
|
9349
|
-
* @memberof
|
|
9213
|
+
* @type {number}
|
|
9214
|
+
* @memberof IUserResponse
|
|
9350
9215
|
*/
|
|
9351
|
-
'
|
|
9216
|
+
'__v': number;
|
|
9352
9217
|
/**
|
|
9353
9218
|
*
|
|
9354
9219
|
* @type {string}
|
|
9355
|
-
* @memberof
|
|
9220
|
+
* @memberof IUserResponse
|
|
9356
9221
|
*/
|
|
9357
|
-
'
|
|
9358
|
-
}
|
|
9359
|
-
/**
|
|
9360
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
9361
|
-
* @export
|
|
9362
|
-
* @interface PickICategoryResponseIdOrContentsOrAttributes
|
|
9363
|
-
*/
|
|
9364
|
-
export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
9222
|
+
'createdAt': string;
|
|
9365
9223
|
/**
|
|
9366
9224
|
*
|
|
9367
9225
|
* @type {string}
|
|
9368
|
-
* @memberof
|
|
9369
|
-
*/
|
|
9370
|
-
'_id': string;
|
|
9371
|
-
/**
|
|
9372
|
-
*
|
|
9373
|
-
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9374
|
-
* @memberof PickICategoryResponseIdOrContentsOrAttributes
|
|
9375
|
-
*/
|
|
9376
|
-
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9377
|
-
/**
|
|
9378
|
-
*
|
|
9379
|
-
* @type {Array<ICategoryResponseAttributesInner>}
|
|
9380
|
-
* @memberof PickICategoryResponseIdOrContentsOrAttributes
|
|
9226
|
+
* @memberof IUserResponse
|
|
9381
9227
|
*/
|
|
9382
|
-
'
|
|
9228
|
+
'updatedAt': string;
|
|
9383
9229
|
}
|
|
9384
9230
|
/**
|
|
9385
|
-
*
|
|
9231
|
+
*
|
|
9386
9232
|
* @export
|
|
9387
|
-
* @interface
|
|
9233
|
+
* @interface IUsersResponse
|
|
9388
9234
|
*/
|
|
9389
|
-
export interface
|
|
9390
|
-
/**
|
|
9391
|
-
*
|
|
9392
|
-
* @type {OrderEnum}
|
|
9393
|
-
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9394
|
-
*/
|
|
9395
|
-
'order'?: OrderEnum;
|
|
9235
|
+
export interface IUsersResponse {
|
|
9396
9236
|
/**
|
|
9397
9237
|
*
|
|
9398
9238
|
* @type {number}
|
|
9399
|
-
* @memberof
|
|
9239
|
+
* @memberof IUsersResponse
|
|
9400
9240
|
*/
|
|
9401
|
-
'page'
|
|
9241
|
+
'page': number;
|
|
9402
9242
|
/**
|
|
9403
9243
|
*
|
|
9404
9244
|
* @type {number}
|
|
9405
|
-
* @memberof
|
|
9406
|
-
*/
|
|
9407
|
-
'itemsPerPage'?: number;
|
|
9408
|
-
/**
|
|
9409
|
-
*
|
|
9410
|
-
* @type {string}
|
|
9411
|
-
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9412
|
-
*/
|
|
9413
|
-
'search'?: string;
|
|
9414
|
-
/**
|
|
9415
|
-
*
|
|
9416
|
-
* @type {string}
|
|
9417
|
-
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9418
|
-
*/
|
|
9419
|
-
'startDate'?: string;
|
|
9420
|
-
/**
|
|
9421
|
-
*
|
|
9422
|
-
* @type {string}
|
|
9423
|
-
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9424
|
-
*/
|
|
9425
|
-
'endDate'?: string;
|
|
9426
|
-
/**
|
|
9427
|
-
*
|
|
9428
|
-
* @type {string}
|
|
9429
|
-
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9245
|
+
* @memberof IUsersResponse
|
|
9430
9246
|
*/
|
|
9431
|
-
'
|
|
9432
|
-
}
|
|
9433
|
-
export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum: {
|
|
9434
|
-
readonly CREATED_AT: "createdAt";
|
|
9435
|
-
readonly UPDATED_AT: "updatedAt";
|
|
9436
|
-
};
|
|
9437
|
-
export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum[keyof typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum];
|
|
9438
|
-
/**
|
|
9439
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
9440
|
-
* @export
|
|
9441
|
-
* @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9442
|
-
*/
|
|
9443
|
-
export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
|
|
9247
|
+
'itemsPerPage': number;
|
|
9444
9248
|
/**
|
|
9445
9249
|
*
|
|
9446
|
-
* @type {
|
|
9447
|
-
* @memberof
|
|
9250
|
+
* @type {number}
|
|
9251
|
+
* @memberof IUsersResponse
|
|
9448
9252
|
*/
|
|
9449
|
-
'
|
|
9253
|
+
'total': number;
|
|
9450
9254
|
/**
|
|
9451
9255
|
*
|
|
9452
|
-
* @type {
|
|
9453
|
-
* @memberof
|
|
9256
|
+
* @type {number}
|
|
9257
|
+
* @memberof IUsersResponse
|
|
9454
9258
|
*/
|
|
9455
|
-
'
|
|
9259
|
+
'totalPages': number;
|
|
9456
9260
|
/**
|
|
9457
9261
|
*
|
|
9458
|
-
* @type {
|
|
9459
|
-
* @memberof
|
|
9262
|
+
* @type {Array<IUserResponse>}
|
|
9263
|
+
* @memberof IUsersResponse
|
|
9460
9264
|
*/
|
|
9461
|
-
'
|
|
9265
|
+
'data': Array<IUserResponse>;
|
|
9462
9266
|
}
|
|
9463
9267
|
/**
|
|
9464
|
-
*
|
|
9268
|
+
*
|
|
9465
9269
|
* @export
|
|
9466
|
-
* @interface
|
|
9270
|
+
* @interface IVerifyUserRequest
|
|
9467
9271
|
*/
|
|
9468
|
-
export interface
|
|
9469
|
-
/**
|
|
9470
|
-
*
|
|
9471
|
-
* @type {PaymentGatewayEnum}
|
|
9472
|
-
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9473
|
-
*/
|
|
9474
|
-
'type': PaymentGatewayEnum;
|
|
9475
|
-
/**
|
|
9476
|
-
*
|
|
9477
|
-
* @type {string}
|
|
9478
|
-
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9479
|
-
*/
|
|
9480
|
-
'merchantId': string;
|
|
9272
|
+
export interface IVerifyUserRequest {
|
|
9481
9273
|
/**
|
|
9482
9274
|
*
|
|
9483
9275
|
* @type {string}
|
|
9484
|
-
* @memberof
|
|
9276
|
+
* @memberof IVerifyUserRequest
|
|
9485
9277
|
*/
|
|
9486
|
-
'
|
|
9278
|
+
'code': string;
|
|
9487
9279
|
/**
|
|
9488
9280
|
*
|
|
9489
9281
|
* @type {string}
|
|
9490
|
-
* @memberof
|
|
9491
|
-
*/
|
|
9492
|
-
'secretKey': string;
|
|
9493
|
-
/**
|
|
9494
|
-
*
|
|
9495
|
-
* @type {boolean}
|
|
9496
|
-
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9497
|
-
*/
|
|
9498
|
-
'testMode': boolean;
|
|
9499
|
-
/**
|
|
9500
|
-
*
|
|
9501
|
-
* @type {boolean}
|
|
9502
|
-
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9282
|
+
* @memberof IVerifyUserRequest
|
|
9503
9283
|
*/
|
|
9504
|
-
'
|
|
9284
|
+
'email': string;
|
|
9505
9285
|
}
|
|
9506
9286
|
/**
|
|
9507
|
-
*
|
|
9287
|
+
*
|
|
9508
9288
|
* @export
|
|
9509
|
-
* @
|
|
9289
|
+
* @enum {string}
|
|
9510
9290
|
*/
|
|
9511
|
-
export
|
|
9512
|
-
|
|
9513
|
-
|
|
9514
|
-
|
|
9515
|
-
|
|
9516
|
-
|
|
9517
|
-
'name': string;
|
|
9518
|
-
/**
|
|
9519
|
-
*
|
|
9520
|
-
* @type {string}
|
|
9521
|
-
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9522
|
-
*/
|
|
9523
|
-
'phone'?: string;
|
|
9524
|
-
/**
|
|
9525
|
-
*
|
|
9526
|
-
* @type {string}
|
|
9527
|
-
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9528
|
-
*/
|
|
9529
|
-
'email'?: string;
|
|
9530
|
-
/**
|
|
9531
|
-
*
|
|
9532
|
-
* @type {string}
|
|
9533
|
-
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9534
|
-
*/
|
|
9535
|
-
'address'?: string;
|
|
9536
|
-
}
|
|
9291
|
+
export declare const LanguageEnum: {
|
|
9292
|
+
readonly TR: "tr";
|
|
9293
|
+
readonly EN: "en";
|
|
9294
|
+
readonly DE: "de";
|
|
9295
|
+
};
|
|
9296
|
+
export type LanguageEnum = typeof LanguageEnum[keyof typeof LanguageEnum];
|
|
9537
9297
|
/**
|
|
9538
|
-
*
|
|
9298
|
+
*
|
|
9539
9299
|
* @export
|
|
9540
|
-
* @interface
|
|
9300
|
+
* @interface NavigationUrl
|
|
9541
9301
|
*/
|
|
9542
|
-
export interface
|
|
9302
|
+
export interface NavigationUrl {
|
|
9543
9303
|
/**
|
|
9544
9304
|
*
|
|
9545
9305
|
* @type {string}
|
|
9546
|
-
* @memberof
|
|
9306
|
+
* @memberof NavigationUrl
|
|
9547
9307
|
*/
|
|
9548
|
-
'
|
|
9308
|
+
'_id': string;
|
|
9549
9309
|
/**
|
|
9550
9310
|
*
|
|
9551
|
-
* @type {
|
|
9552
|
-
* @memberof
|
|
9311
|
+
* @type {Array<NavigationUrl>}
|
|
9312
|
+
* @memberof NavigationUrl
|
|
9553
9313
|
*/
|
|
9554
|
-
'
|
|
9314
|
+
'children'?: Array<NavigationUrl>;
|
|
9555
9315
|
/**
|
|
9556
9316
|
*
|
|
9557
9317
|
* @type {string}
|
|
9558
|
-
* @memberof
|
|
9559
|
-
*/
|
|
9560
|
-
'email'?: string;
|
|
9561
|
-
/**
|
|
9562
|
-
*
|
|
9563
|
-
* @type {LanguageEnum}
|
|
9564
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9565
|
-
*/
|
|
9566
|
-
'language': LanguageEnum;
|
|
9567
|
-
/**
|
|
9568
|
-
*
|
|
9569
|
-
* @type {CompanyStatusEnum}
|
|
9570
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9318
|
+
* @memberof NavigationUrl
|
|
9571
9319
|
*/
|
|
9572
|
-
'
|
|
9320
|
+
'icon'?: string;
|
|
9573
9321
|
/**
|
|
9574
9322
|
*
|
|
9575
9323
|
* @type {string}
|
|
9576
|
-
* @memberof
|
|
9577
|
-
*/
|
|
9578
|
-
'_id': string;
|
|
9579
|
-
/**
|
|
9580
|
-
*
|
|
9581
|
-
* @type {number}
|
|
9582
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9324
|
+
* @memberof NavigationUrl
|
|
9583
9325
|
*/
|
|
9584
|
-
'
|
|
9326
|
+
'target'?: NavigationUrlTargetEnum;
|
|
9585
9327
|
/**
|
|
9586
9328
|
*
|
|
9587
9329
|
* @type {string}
|
|
9588
|
-
* @memberof
|
|
9330
|
+
* @memberof NavigationUrl
|
|
9589
9331
|
*/
|
|
9590
|
-
'
|
|
9332
|
+
'url': string;
|
|
9591
9333
|
/**
|
|
9592
9334
|
*
|
|
9593
9335
|
* @type {string}
|
|
9594
|
-
* @memberof
|
|
9336
|
+
* @memberof NavigationUrl
|
|
9595
9337
|
*/
|
|
9596
|
-
'
|
|
9338
|
+
'title': string;
|
|
9339
|
+
}
|
|
9340
|
+
export declare const NavigationUrlTargetEnum: {
|
|
9341
|
+
readonly BLANK: "_blank";
|
|
9342
|
+
};
|
|
9343
|
+
export type NavigationUrlTargetEnum = typeof NavigationUrlTargetEnum[keyof typeof NavigationUrlTargetEnum];
|
|
9344
|
+
/**
|
|
9345
|
+
*
|
|
9346
|
+
* @export
|
|
9347
|
+
* @enum {number}
|
|
9348
|
+
*/
|
|
9349
|
+
export declare const NotificationMessageEnum: {
|
|
9350
|
+
readonly NUMBER_404: 404;
|
|
9351
|
+
readonly NUMBER_409: 409;
|
|
9352
|
+
readonly NUMBER_201: 201;
|
|
9353
|
+
readonly NUMBER_500: 500;
|
|
9354
|
+
};
|
|
9355
|
+
export type NotificationMessageEnum = typeof NotificationMessageEnum[keyof typeof NotificationMessageEnum];
|
|
9356
|
+
/**
|
|
9357
|
+
*
|
|
9358
|
+
* @export
|
|
9359
|
+
* @enum {string}
|
|
9360
|
+
*/
|
|
9361
|
+
export declare const NotificationStatusEnum: {
|
|
9362
|
+
readonly ACTIVE: "active";
|
|
9363
|
+
readonly READ: "read";
|
|
9364
|
+
readonly DELETED: "deleted";
|
|
9365
|
+
};
|
|
9366
|
+
export type NotificationStatusEnum = typeof NotificationStatusEnum[keyof typeof NotificationStatusEnum];
|
|
9367
|
+
/**
|
|
9368
|
+
*
|
|
9369
|
+
* @export
|
|
9370
|
+
* @enum {string}
|
|
9371
|
+
*/
|
|
9372
|
+
export declare const OperationStatusEnum: {
|
|
9373
|
+
readonly ACTIVE: "active";
|
|
9374
|
+
readonly INACTIVE: "inactive";
|
|
9375
|
+
readonly DELETED: "deleted";
|
|
9376
|
+
};
|
|
9377
|
+
export type OperationStatusEnum = typeof OperationStatusEnum[keyof typeof OperationStatusEnum];
|
|
9378
|
+
/**
|
|
9379
|
+
*
|
|
9380
|
+
* @export
|
|
9381
|
+
* @enum {string}
|
|
9382
|
+
*/
|
|
9383
|
+
export declare const OrderEnum: {
|
|
9384
|
+
readonly ASC: "asc";
|
|
9385
|
+
readonly DESC: "desc";
|
|
9386
|
+
};
|
|
9387
|
+
export type OrderEnum = typeof OrderEnum[keyof typeof OrderEnum];
|
|
9388
|
+
/**
|
|
9389
|
+
*
|
|
9390
|
+
* @export
|
|
9391
|
+
* @enum {string}
|
|
9392
|
+
*/
|
|
9393
|
+
export declare const OrderPaymentStatusEnum: {
|
|
9394
|
+
readonly WAITING_PAYMENT: "waiting_payment";
|
|
9395
|
+
readonly PAID: "paid";
|
|
9396
|
+
readonly FAILED: "failed";
|
|
9397
|
+
};
|
|
9398
|
+
export type OrderPaymentStatusEnum = typeof OrderPaymentStatusEnum[keyof typeof OrderPaymentStatusEnum];
|
|
9399
|
+
/**
|
|
9400
|
+
*
|
|
9401
|
+
* @export
|
|
9402
|
+
* @enum {string}
|
|
9403
|
+
*/
|
|
9404
|
+
export declare const OrderReturnStatusEnum: {
|
|
9405
|
+
readonly WAITING_APPROVAL: "waiting_approval";
|
|
9406
|
+
readonly REJECTED: "rejected";
|
|
9407
|
+
readonly WAITING_RETURN: "waiting_return";
|
|
9408
|
+
readonly RETURNED: "returned";
|
|
9409
|
+
};
|
|
9410
|
+
export type OrderReturnStatusEnum = typeof OrderReturnStatusEnum[keyof typeof OrderReturnStatusEnum];
|
|
9411
|
+
/**
|
|
9412
|
+
*
|
|
9413
|
+
* @export
|
|
9414
|
+
* @enum {string}
|
|
9415
|
+
*/
|
|
9416
|
+
export declare const OrderReturnStatusEnumRETURNED: {
|
|
9417
|
+
readonly RETURNED: "returned";
|
|
9418
|
+
};
|
|
9419
|
+
export type OrderReturnStatusEnumRETURNED = typeof OrderReturnStatusEnumRETURNED[keyof typeof OrderReturnStatusEnumRETURNED];
|
|
9420
|
+
/**
|
|
9421
|
+
*
|
|
9422
|
+
* @export
|
|
9423
|
+
* @enum {string}
|
|
9424
|
+
*/
|
|
9425
|
+
export declare const OrderReturnStatusEnumWAITINGRETURN: {
|
|
9426
|
+
readonly WAITING_RETURN: "waiting_return";
|
|
9427
|
+
};
|
|
9428
|
+
export type OrderReturnStatusEnumWAITINGRETURN = typeof OrderReturnStatusEnumWAITINGRETURN[keyof typeof OrderReturnStatusEnumWAITINGRETURN];
|
|
9429
|
+
/**
|
|
9430
|
+
*
|
|
9431
|
+
* @export
|
|
9432
|
+
* @enum {string}
|
|
9433
|
+
*/
|
|
9434
|
+
export declare const OrderShippedStatusEnum: {
|
|
9435
|
+
readonly SHIPPED: "shipped";
|
|
9436
|
+
readonly COMPLETED: "completed";
|
|
9437
|
+
};
|
|
9438
|
+
export type OrderShippedStatusEnum = typeof OrderShippedStatusEnum[keyof typeof OrderShippedStatusEnum];
|
|
9439
|
+
/**
|
|
9440
|
+
*
|
|
9441
|
+
* @export
|
|
9442
|
+
* @enum {string}
|
|
9443
|
+
*/
|
|
9444
|
+
export declare const OrderStatusEnum: {
|
|
9445
|
+
readonly CANCELLED: "cancelled";
|
|
9446
|
+
readonly CREATED: "created";
|
|
9447
|
+
};
|
|
9448
|
+
export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
|
|
9449
|
+
/**
|
|
9450
|
+
*
|
|
9451
|
+
* @export
|
|
9452
|
+
* @enum {string}
|
|
9453
|
+
*/
|
|
9454
|
+
export declare const PageTypeEnum: {
|
|
9455
|
+
readonly BLOG: "blog";
|
|
9456
|
+
readonly PAGE: "page";
|
|
9457
|
+
readonly HOME: "home";
|
|
9458
|
+
readonly CART: "cart";
|
|
9459
|
+
readonly CHECKOUT: "checkout";
|
|
9460
|
+
readonly SEARCH: "search";
|
|
9461
|
+
readonly NOT_FOUND: "not-found";
|
|
9462
|
+
readonly BLOG_LIST: "blog-list";
|
|
9463
|
+
};
|
|
9464
|
+
export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
|
|
9465
|
+
/**
|
|
9466
|
+
* Make all properties in T optional
|
|
9467
|
+
* @export
|
|
9468
|
+
* @interface PartialRecordLanguageEnumIContentsValue
|
|
9469
|
+
*/
|
|
9470
|
+
export interface PartialRecordLanguageEnumIContentsValue {
|
|
9597
9471
|
/**
|
|
9598
9472
|
*
|
|
9599
|
-
* @type {
|
|
9600
|
-
* @memberof
|
|
9473
|
+
* @type {IContentsValue}
|
|
9474
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
9601
9475
|
*/
|
|
9602
|
-
'
|
|
9476
|
+
'tr'?: IContentsValue;
|
|
9603
9477
|
/**
|
|
9604
9478
|
*
|
|
9605
|
-
* @type {
|
|
9606
|
-
* @memberof
|
|
9479
|
+
* @type {IContentsValue}
|
|
9480
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
9607
9481
|
*/
|
|
9608
|
-
'
|
|
9482
|
+
'en'?: IContentsValue;
|
|
9609
9483
|
/**
|
|
9610
9484
|
*
|
|
9611
|
-
* @type {
|
|
9612
|
-
* @memberof
|
|
9485
|
+
* @type {IContentsValue}
|
|
9486
|
+
* @memberof PartialRecordLanguageEnumIContentsValue
|
|
9613
9487
|
*/
|
|
9614
|
-
'
|
|
9488
|
+
'de'?: IContentsValue;
|
|
9489
|
+
}
|
|
9490
|
+
/**
|
|
9491
|
+
* Make all properties in T optional
|
|
9492
|
+
* @export
|
|
9493
|
+
* @interface PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9494
|
+
*/
|
|
9495
|
+
export interface PartialRecordLanguageEnumITemplateComponentResponseArray {
|
|
9615
9496
|
/**
|
|
9616
9497
|
*
|
|
9617
|
-
* @type {Array<
|
|
9618
|
-
* @memberof
|
|
9498
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
9499
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9619
9500
|
*/
|
|
9620
|
-
'
|
|
9501
|
+
'tr'?: Array<ITemplateComponentResponse>;
|
|
9621
9502
|
/**
|
|
9622
9503
|
*
|
|
9623
|
-
* @type {
|
|
9624
|
-
* @memberof
|
|
9504
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
9505
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9625
9506
|
*/
|
|
9626
|
-
'
|
|
9507
|
+
'en'?: Array<ITemplateComponentResponse>;
|
|
9627
9508
|
/**
|
|
9628
9509
|
*
|
|
9629
|
-
* @type {
|
|
9630
|
-
* @memberof
|
|
9510
|
+
* @type {Array<ITemplateComponentResponse>}
|
|
9511
|
+
* @memberof PartialRecordLanguageEnumITemplateComponentResponseArray
|
|
9631
9512
|
*/
|
|
9632
|
-
'
|
|
9633
|
-
|
|
9634
|
-
|
|
9513
|
+
'de'?: Array<ITemplateComponentResponse>;
|
|
9514
|
+
}
|
|
9515
|
+
/**
|
|
9516
|
+
* Make all properties in T optional
|
|
9517
|
+
* @export
|
|
9518
|
+
* @interface PartialRecordLanguageEnumString
|
|
9519
|
+
*/
|
|
9520
|
+
export interface PartialRecordLanguageEnumString {
|
|
9635
9521
|
/**
|
|
9636
9522
|
*
|
|
9637
9523
|
* @type {string}
|
|
9638
|
-
* @memberof
|
|
9524
|
+
* @memberof PartialRecordLanguageEnumString
|
|
9639
9525
|
*/
|
|
9640
|
-
'
|
|
9526
|
+
'tr'?: string;
|
|
9641
9527
|
/**
|
|
9642
9528
|
*
|
|
9643
9529
|
* @type {string}
|
|
9644
|
-
* @memberof
|
|
9530
|
+
* @memberof PartialRecordLanguageEnumString
|
|
9645
9531
|
*/
|
|
9646
|
-
'
|
|
9532
|
+
'en'?: string;
|
|
9647
9533
|
/**
|
|
9648
9534
|
*
|
|
9649
9535
|
* @type {string}
|
|
9650
|
-
* @memberof
|
|
9536
|
+
* @memberof PartialRecordLanguageEnumString
|
|
9651
9537
|
*/
|
|
9652
|
-
'
|
|
9538
|
+
'de'?: string;
|
|
9539
|
+
}
|
|
9540
|
+
/**
|
|
9541
|
+
* Make all properties in T optional
|
|
9542
|
+
* @export
|
|
9543
|
+
* @interface PartialRecordLanguageEnumTitleString
|
|
9544
|
+
*/
|
|
9545
|
+
export interface PartialRecordLanguageEnumTitleString {
|
|
9653
9546
|
/**
|
|
9654
9547
|
*
|
|
9655
|
-
* @type {
|
|
9656
|
-
* @memberof
|
|
9548
|
+
* @type {RecordLanguageEnumTitleStringTr}
|
|
9549
|
+
* @memberof PartialRecordLanguageEnumTitleString
|
|
9657
9550
|
*/
|
|
9658
|
-
'
|
|
9551
|
+
'tr'?: RecordLanguageEnumTitleStringTr;
|
|
9659
9552
|
/**
|
|
9660
9553
|
*
|
|
9661
|
-
* @type {
|
|
9662
|
-
* @memberof
|
|
9554
|
+
* @type {RecordLanguageEnumTitleStringTr}
|
|
9555
|
+
* @memberof PartialRecordLanguageEnumTitleString
|
|
9663
9556
|
*/
|
|
9664
|
-
'
|
|
9557
|
+
'en'?: RecordLanguageEnumTitleStringTr;
|
|
9665
9558
|
/**
|
|
9666
9559
|
*
|
|
9667
|
-
* @type {
|
|
9668
|
-
* @memberof
|
|
9560
|
+
* @type {RecordLanguageEnumTitleStringTr}
|
|
9561
|
+
* @memberof PartialRecordLanguageEnumTitleString
|
|
9669
9562
|
*/
|
|
9670
|
-
'
|
|
9563
|
+
'de'?: RecordLanguageEnumTitleStringTr;
|
|
9564
|
+
}
|
|
9565
|
+
/**
|
|
9566
|
+
*
|
|
9567
|
+
* @export
|
|
9568
|
+
* @enum {string}
|
|
9569
|
+
*/
|
|
9570
|
+
export declare const PaymentGatewayEnum: {
|
|
9571
|
+
readonly IYZICO: "iyzico";
|
|
9572
|
+
readonly PAYTR: "paytr";
|
|
9573
|
+
readonly PAPARA: "papara";
|
|
9574
|
+
};
|
|
9575
|
+
export type PaymentGatewayEnum = typeof PaymentGatewayEnum[keyof typeof PaymentGatewayEnum];
|
|
9576
|
+
/**
|
|
9577
|
+
*
|
|
9578
|
+
* @export
|
|
9579
|
+
* @enum {string}
|
|
9580
|
+
*/
|
|
9581
|
+
export declare const PaymentMethodEnum: {
|
|
9582
|
+
readonly CREDIT_CARD: "credit_card";
|
|
9583
|
+
readonly BANK_TRANSFER: "bank_transfer";
|
|
9584
|
+
readonly CASH_ON_DELIVERY: "cash_on_delivery";
|
|
9585
|
+
readonly CARD_ON_DELIVERY: "card_on_delivery";
|
|
9586
|
+
};
|
|
9587
|
+
export type PaymentMethodEnum = typeof PaymentMethodEnum[keyof typeof PaymentMethodEnum];
|
|
9588
|
+
/**
|
|
9589
|
+
*
|
|
9590
|
+
* @export
|
|
9591
|
+
* @enum {string}
|
|
9592
|
+
*/
|
|
9593
|
+
export declare const PaymentStatusEnum: {
|
|
9594
|
+
readonly WAITING_APPROVAL: "waiting_approval";
|
|
9595
|
+
readonly PAID: "paid";
|
|
9596
|
+
readonly FAILED: "failed";
|
|
9597
|
+
};
|
|
9598
|
+
export type PaymentStatusEnum = typeof PaymentStatusEnum[keyof typeof PaymentStatusEnum];
|
|
9599
|
+
/**
|
|
9600
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9601
|
+
* @export
|
|
9602
|
+
* @interface PickIBasketExcludeKeyofIBasketItems
|
|
9603
|
+
*/
|
|
9604
|
+
export interface PickIBasketExcludeKeyofIBasketItems {
|
|
9671
9605
|
/**
|
|
9672
9606
|
*
|
|
9673
|
-
* @type {
|
|
9674
|
-
* @memberof
|
|
9607
|
+
* @type {string}
|
|
9608
|
+
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
9675
9609
|
*/
|
|
9676
|
-
'
|
|
9610
|
+
'company': string;
|
|
9677
9611
|
/**
|
|
9678
9612
|
*
|
|
9679
|
-
* @type {
|
|
9680
|
-
* @memberof
|
|
9613
|
+
* @type {string}
|
|
9614
|
+
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
9681
9615
|
*/
|
|
9682
|
-
'
|
|
9616
|
+
'_id': string;
|
|
9683
9617
|
/**
|
|
9684
9618
|
*
|
|
9685
|
-
* @type {
|
|
9686
|
-
* @memberof
|
|
9619
|
+
* @type {number}
|
|
9620
|
+
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
9687
9621
|
*/
|
|
9688
|
-
'
|
|
9622
|
+
'__v': number;
|
|
9689
9623
|
/**
|
|
9690
9624
|
*
|
|
9691
|
-
* @type {
|
|
9692
|
-
* @memberof
|
|
9625
|
+
* @type {string}
|
|
9626
|
+
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
9693
9627
|
*/
|
|
9694
|
-
'
|
|
9628
|
+
'createdAt': string;
|
|
9695
9629
|
/**
|
|
9696
9630
|
*
|
|
9697
|
-
* @type {
|
|
9698
|
-
* @memberof
|
|
9631
|
+
* @type {string}
|
|
9632
|
+
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
9699
9633
|
*/
|
|
9700
|
-
'
|
|
9634
|
+
'updatedAt': string;
|
|
9701
9635
|
/**
|
|
9702
9636
|
*
|
|
9703
9637
|
* @type {string}
|
|
9704
|
-
* @memberof
|
|
9638
|
+
* @memberof PickIBasketExcludeKeyofIBasketItems
|
|
9705
9639
|
*/
|
|
9706
|
-
'
|
|
9640
|
+
'user'?: string;
|
|
9641
|
+
}
|
|
9642
|
+
/**
|
|
9643
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9644
|
+
* @export
|
|
9645
|
+
* @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9646
|
+
*/
|
|
9647
|
+
export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs {
|
|
9707
9648
|
/**
|
|
9708
9649
|
*
|
|
9709
9650
|
* @type {string}
|
|
9710
|
-
* @memberof
|
|
9651
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9711
9652
|
*/
|
|
9712
|
-
'
|
|
9653
|
+
'company': string;
|
|
9713
9654
|
/**
|
|
9714
9655
|
*
|
|
9715
|
-
* @type {
|
|
9716
|
-
* @memberof
|
|
9656
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9657
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9717
9658
|
*/
|
|
9718
|
-
'
|
|
9659
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9719
9660
|
/**
|
|
9720
9661
|
*
|
|
9721
|
-
* @type {
|
|
9722
|
-
* @memberof
|
|
9662
|
+
* @type {IImage}
|
|
9663
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
|
|
9723
9664
|
*/
|
|
9724
|
-
'
|
|
9665
|
+
'thumbnail'?: IImage;
|
|
9666
|
+
}
|
|
9667
|
+
/**
|
|
9668
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9669
|
+
* @export
|
|
9670
|
+
* @interface PickICategoryExcludeKeyofICategoryAttributes
|
|
9671
|
+
*/
|
|
9672
|
+
export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
9725
9673
|
/**
|
|
9726
9674
|
*
|
|
9727
|
-
* @type {
|
|
9728
|
-
* @memberof
|
|
9675
|
+
* @type {string}
|
|
9676
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9729
9677
|
*/
|
|
9730
|
-
'
|
|
9678
|
+
'company': string;
|
|
9731
9679
|
/**
|
|
9732
|
-
*
|
|
9733
|
-
* @type {
|
|
9734
|
-
* @memberof
|
|
9680
|
+
*
|
|
9681
|
+
* @type {string}
|
|
9682
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9735
9683
|
*/
|
|
9736
|
-
'
|
|
9737
|
-
[key: string]: RecordStringUrlStringFileIImageValue;
|
|
9738
|
-
};
|
|
9684
|
+
'_id': string;
|
|
9739
9685
|
/**
|
|
9740
9686
|
*
|
|
9741
|
-
* @type {
|
|
9742
|
-
* @memberof
|
|
9687
|
+
* @type {number}
|
|
9688
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9743
9689
|
*/
|
|
9744
|
-
'
|
|
9690
|
+
'__v': number;
|
|
9745
9691
|
/**
|
|
9746
9692
|
*
|
|
9747
9693
|
* @type {string}
|
|
9748
|
-
* @memberof
|
|
9694
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9749
9695
|
*/
|
|
9750
|
-
'
|
|
9696
|
+
'createdAt': string;
|
|
9751
9697
|
/**
|
|
9752
9698
|
*
|
|
9753
|
-
* @type {
|
|
9754
|
-
* @memberof
|
|
9699
|
+
* @type {string}
|
|
9700
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9755
9701
|
*/
|
|
9756
|
-
'
|
|
9757
|
-
}
|
|
9758
|
-
/**
|
|
9759
|
-
*
|
|
9760
|
-
* @export
|
|
9761
|
-
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
9762
|
-
*/
|
|
9763
|
-
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin {
|
|
9702
|
+
'updatedAt': string;
|
|
9764
9703
|
/**
|
|
9765
9704
|
*
|
|
9766
|
-
* @type {
|
|
9767
|
-
* @memberof
|
|
9705
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9706
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9768
9707
|
*/
|
|
9769
|
-
'
|
|
9708
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9770
9709
|
/**
|
|
9771
9710
|
*
|
|
9772
|
-
* @type {
|
|
9773
|
-
* @memberof
|
|
9711
|
+
* @type {Array<string>}
|
|
9712
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9774
9713
|
*/
|
|
9775
|
-
'
|
|
9714
|
+
'slugs': Array<string>;
|
|
9776
9715
|
/**
|
|
9777
9716
|
*
|
|
9778
|
-
* @type {
|
|
9779
|
-
* @memberof
|
|
9717
|
+
* @type {IImage}
|
|
9718
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9780
9719
|
*/
|
|
9781
|
-
'
|
|
9720
|
+
'thumbnail'?: IImage;
|
|
9721
|
+
/**
|
|
9722
|
+
*
|
|
9723
|
+
* @type {string}
|
|
9724
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
9725
|
+
*/
|
|
9726
|
+
'main'?: string;
|
|
9782
9727
|
}
|
|
9783
9728
|
/**
|
|
9784
|
-
*
|
|
9729
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9785
9730
|
* @export
|
|
9786
|
-
* @interface
|
|
9731
|
+
* @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9787
9732
|
*/
|
|
9788
|
-
export interface
|
|
9733
|
+
export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs {
|
|
9789
9734
|
/**
|
|
9790
9735
|
*
|
|
9791
|
-
* @type {
|
|
9792
|
-
* @memberof
|
|
9736
|
+
* @type {string}
|
|
9737
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9793
9738
|
*/
|
|
9794
|
-
'
|
|
9739
|
+
'company': string;
|
|
9795
9740
|
/**
|
|
9796
9741
|
*
|
|
9797
|
-
* @type {
|
|
9798
|
-
* @memberof
|
|
9742
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9743
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9799
9744
|
*/
|
|
9800
|
-
'
|
|
9745
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9801
9746
|
/**
|
|
9802
9747
|
*
|
|
9803
|
-
* @type {
|
|
9804
|
-
* @memberof
|
|
9748
|
+
* @type {IImage}
|
|
9749
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9805
9750
|
*/
|
|
9806
|
-
'
|
|
9751
|
+
'thumbnail'?: IImage;
|
|
9807
9752
|
/**
|
|
9808
|
-
*
|
|
9809
|
-
* @type {
|
|
9810
|
-
* @memberof
|
|
9753
|
+
*
|
|
9754
|
+
* @type {string}
|
|
9755
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
|
|
9811
9756
|
*/
|
|
9812
|
-
'
|
|
9757
|
+
'main'?: string;
|
|
9813
9758
|
}
|
|
9814
9759
|
/**
|
|
9815
9760
|
* From T, pick a set of properties whose keys are in the union K
|
|
9816
9761
|
* @export
|
|
9817
|
-
* @interface
|
|
9762
|
+
* @interface PickICategoryResponseIdOrAttributesOrMain
|
|
9818
9763
|
*/
|
|
9819
|
-
export interface
|
|
9764
|
+
export interface PickICategoryResponseIdOrAttributesOrMain {
|
|
9820
9765
|
/**
|
|
9821
9766
|
*
|
|
9822
9767
|
* @type {string}
|
|
9823
|
-
* @memberof
|
|
9768
|
+
* @memberof PickICategoryResponseIdOrAttributesOrMain
|
|
9824
9769
|
*/
|
|
9825
|
-
'
|
|
9770
|
+
'_id': string;
|
|
9771
|
+
/**
|
|
9772
|
+
*
|
|
9773
|
+
* @type {Array<ICategoryResponseAttributesInner>}
|
|
9774
|
+
* @memberof PickICategoryResponseIdOrAttributesOrMain
|
|
9775
|
+
*/
|
|
9776
|
+
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
9826
9777
|
/**
|
|
9827
9778
|
*
|
|
9828
9779
|
* @type {string}
|
|
9829
|
-
* @memberof
|
|
9780
|
+
* @memberof PickICategoryResponseIdOrAttributesOrMain
|
|
9830
9781
|
*/
|
|
9831
|
-
'
|
|
9782
|
+
'main'?: string;
|
|
9832
9783
|
}
|
|
9833
9784
|
/**
|
|
9834
9785
|
* From T, pick a set of properties whose keys are in the union K
|
|
9835
9786
|
* @export
|
|
9836
|
-
* @interface
|
|
9787
|
+
* @interface PickICategoryResponseIdOrContentsOrAttributes
|
|
9837
9788
|
*/
|
|
9838
|
-
export interface
|
|
9789
|
+
export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
9839
9790
|
/**
|
|
9840
9791
|
*
|
|
9841
9792
|
* @type {string}
|
|
9842
|
-
* @memberof
|
|
9843
|
-
*/
|
|
9844
|
-
'name': string;
|
|
9845
|
-
/**
|
|
9846
|
-
*
|
|
9847
|
-
* @type {LanguageEnum}
|
|
9848
|
-
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
9793
|
+
* @memberof PickICategoryResponseIdOrContentsOrAttributes
|
|
9849
9794
|
*/
|
|
9850
|
-
'
|
|
9795
|
+
'_id': string;
|
|
9851
9796
|
/**
|
|
9852
9797
|
*
|
|
9853
|
-
* @type {
|
|
9854
|
-
* @memberof
|
|
9798
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9799
|
+
* @memberof PickICategoryResponseIdOrContentsOrAttributes
|
|
9855
9800
|
*/
|
|
9856
|
-
'
|
|
9801
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9857
9802
|
/**
|
|
9858
9803
|
*
|
|
9859
|
-
* @type {Array<
|
|
9860
|
-
* @memberof
|
|
9804
|
+
* @type {Array<ICategoryResponseAttributesInner>}
|
|
9805
|
+
* @memberof PickICategoryResponseIdOrContentsOrAttributes
|
|
9861
9806
|
*/
|
|
9862
|
-
'
|
|
9807
|
+
'attributes': Array<ICategoryResponseAttributesInner>;
|
|
9863
9808
|
}
|
|
9864
9809
|
/**
|
|
9865
9810
|
* From T, pick a set of properties whose keys are in the union K
|
|
9866
9811
|
* @export
|
|
9867
|
-
* @interface
|
|
9812
|
+
* @interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9868
9813
|
*/
|
|
9869
|
-
export interface
|
|
9814
|
+
export interface PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort {
|
|
9870
9815
|
/**
|
|
9871
9816
|
*
|
|
9872
|
-
* @type {
|
|
9873
|
-
* @memberof
|
|
9817
|
+
* @type {OrderEnum}
|
|
9818
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9874
9819
|
*/
|
|
9875
|
-
'
|
|
9820
|
+
'order'?: OrderEnum;
|
|
9876
9821
|
/**
|
|
9877
9822
|
*
|
|
9878
|
-
* @type {
|
|
9879
|
-
* @memberof
|
|
9823
|
+
* @type {number}
|
|
9824
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9880
9825
|
*/
|
|
9881
|
-
'
|
|
9882
|
-
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
9883
|
-
};
|
|
9826
|
+
'page'?: number;
|
|
9884
9827
|
/**
|
|
9885
9828
|
*
|
|
9886
|
-
* @type {
|
|
9887
|
-
* @memberof
|
|
9829
|
+
* @type {number}
|
|
9830
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9888
9831
|
*/
|
|
9889
|
-
'
|
|
9832
|
+
'itemsPerPage'?: number;
|
|
9890
9833
|
/**
|
|
9891
9834
|
*
|
|
9892
9835
|
* @type {string}
|
|
9893
|
-
* @memberof
|
|
9836
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9894
9837
|
*/
|
|
9895
|
-
'
|
|
9838
|
+
'search'?: string;
|
|
9896
9839
|
/**
|
|
9897
9840
|
*
|
|
9898
|
-
* @type {
|
|
9899
|
-
* @memberof
|
|
9841
|
+
* @type {string}
|
|
9842
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9900
9843
|
*/
|
|
9901
|
-
'
|
|
9844
|
+
'startDate'?: string;
|
|
9902
9845
|
/**
|
|
9903
9846
|
*
|
|
9904
9847
|
* @type {string}
|
|
9905
|
-
* @memberof
|
|
9848
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9906
9849
|
*/
|
|
9907
|
-
'
|
|
9850
|
+
'endDate'?: string;
|
|
9908
9851
|
/**
|
|
9909
9852
|
*
|
|
9910
|
-
* @type {
|
|
9911
|
-
* @memberof
|
|
9853
|
+
* @type {string}
|
|
9854
|
+
* @memberof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSort
|
|
9912
9855
|
*/
|
|
9913
|
-
'
|
|
9856
|
+
'dateField'?: PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum;
|
|
9914
9857
|
}
|
|
9858
|
+
export declare const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum: {
|
|
9859
|
+
readonly CREATED_AT: "createdAt";
|
|
9860
|
+
readonly UPDATED_AT: "updatedAt";
|
|
9861
|
+
};
|
|
9862
|
+
export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum[keyof typeof PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum];
|
|
9915
9863
|
/**
|
|
9916
|
-
*
|
|
9864
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9917
9865
|
* @export
|
|
9918
|
-
* @interface
|
|
9866
|
+
* @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9919
9867
|
*/
|
|
9920
|
-
export interface
|
|
9868
|
+
export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
|
|
9921
9869
|
/**
|
|
9922
9870
|
*
|
|
9923
|
-
* @type {
|
|
9924
|
-
* @memberof
|
|
9871
|
+
* @type {string}
|
|
9872
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9925
9873
|
*/
|
|
9926
|
-
'
|
|
9874
|
+
'company': string;
|
|
9927
9875
|
/**
|
|
9928
9876
|
*
|
|
9929
|
-
* @type {
|
|
9930
|
-
* @memberof
|
|
9877
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
9878
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9931
9879
|
*/
|
|
9932
|
-
'
|
|
9880
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
9933
9881
|
/**
|
|
9934
9882
|
*
|
|
9935
|
-
* @type {
|
|
9936
|
-
* @memberof
|
|
9883
|
+
* @type {IImage}
|
|
9884
|
+
* @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
9937
9885
|
*/
|
|
9938
|
-
'
|
|
9886
|
+
'thumbnail'?: IImage;
|
|
9887
|
+
}
|
|
9888
|
+
/**
|
|
9889
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9890
|
+
* @export
|
|
9891
|
+
* @interface PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9892
|
+
*/
|
|
9893
|
+
export interface PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id {
|
|
9939
9894
|
/**
|
|
9940
9895
|
*
|
|
9941
|
-
* @type {
|
|
9942
|
-
* @memberof
|
|
9896
|
+
* @type {PaymentGatewayEnum}
|
|
9897
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9943
9898
|
*/
|
|
9944
|
-
'
|
|
9899
|
+
'type': PaymentGatewayEnum;
|
|
9945
9900
|
/**
|
|
9946
9901
|
*
|
|
9947
|
-
* @type {
|
|
9948
|
-
* @memberof
|
|
9902
|
+
* @type {string}
|
|
9903
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9949
9904
|
*/
|
|
9950
|
-
'
|
|
9905
|
+
'merchantId': string;
|
|
9951
9906
|
/**
|
|
9952
9907
|
*
|
|
9953
|
-
* @type {
|
|
9954
|
-
* @memberof
|
|
9908
|
+
* @type {string}
|
|
9909
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9955
9910
|
*/
|
|
9956
|
-
'
|
|
9957
|
-
|
|
9958
|
-
|
|
9959
|
-
|
|
9960
|
-
|
|
9961
|
-
|
|
9962
|
-
|
|
9963
|
-
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder {
|
|
9911
|
+
'apiKey': string;
|
|
9912
|
+
/**
|
|
9913
|
+
*
|
|
9914
|
+
* @type {string}
|
|
9915
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9916
|
+
*/
|
|
9917
|
+
'secretKey': string;
|
|
9964
9918
|
/**
|
|
9965
9919
|
*
|
|
9966
9920
|
* @type {boolean}
|
|
9967
|
-
* @memberof
|
|
9921
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9968
9922
|
*/
|
|
9969
|
-
'
|
|
9923
|
+
'testMode': boolean;
|
|
9970
9924
|
/**
|
|
9971
9925
|
*
|
|
9972
9926
|
* @type {boolean}
|
|
9973
|
-
* @memberof
|
|
9927
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9974
9928
|
*/
|
|
9975
|
-
'
|
|
9929
|
+
'active': boolean;
|
|
9976
9930
|
}
|
|
9977
9931
|
/**
|
|
9978
|
-
*
|
|
9932
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9979
9933
|
* @export
|
|
9980
|
-
* @interface
|
|
9934
|
+
* @interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9981
9935
|
*/
|
|
9982
|
-
export interface
|
|
9936
|
+
export interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id {
|
|
9983
9937
|
/**
|
|
9984
9938
|
*
|
|
9985
|
-
* @type {
|
|
9986
|
-
* @memberof
|
|
9939
|
+
* @type {string}
|
|
9940
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9987
9941
|
*/
|
|
9988
|
-
'
|
|
9942
|
+
'name': string;
|
|
9989
9943
|
/**
|
|
9990
9944
|
*
|
|
9991
9945
|
* @type {string}
|
|
9992
|
-
* @memberof
|
|
9946
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9993
9947
|
*/
|
|
9994
|
-
'
|
|
9948
|
+
'phone'?: string;
|
|
9995
9949
|
/**
|
|
9996
9950
|
*
|
|
9997
9951
|
* @type {string}
|
|
9998
|
-
* @memberof
|
|
9952
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9999
9953
|
*/
|
|
10000
|
-
'
|
|
9954
|
+
'email'?: string;
|
|
9955
|
+
/**
|
|
9956
|
+
*
|
|
9957
|
+
* @type {string}
|
|
9958
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9959
|
+
*/
|
|
9960
|
+
'address'?: string;
|
|
10001
9961
|
}
|
|
10002
9962
|
/**
|
|
10003
9963
|
* From T, pick a set of properties whose keys are in the union K
|
|
10004
9964
|
* @export
|
|
10005
|
-
* @interface
|
|
9965
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10006
9966
|
*/
|
|
10007
|
-
export interface
|
|
9967
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
10008
9968
|
/**
|
|
10009
9969
|
*
|
|
10010
9970
|
* @type {string}
|
|
10011
|
-
* @memberof
|
|
9971
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10012
9972
|
*/
|
|
10013
|
-
'name'
|
|
9973
|
+
'name': string;
|
|
10014
9974
|
/**
|
|
10015
9975
|
*
|
|
10016
9976
|
* @type {string}
|
|
10017
|
-
* @memberof
|
|
9977
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10018
9978
|
*/
|
|
10019
|
-
'
|
|
9979
|
+
'phone'?: string;
|
|
10020
9980
|
/**
|
|
10021
9981
|
*
|
|
10022
9982
|
* @type {string}
|
|
10023
|
-
* @memberof
|
|
9983
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10024
9984
|
*/
|
|
10025
|
-
'
|
|
10026
|
-
|
|
10027
|
-
|
|
10028
|
-
|
|
10029
|
-
|
|
10030
|
-
|
|
10031
|
-
|
|
10032
|
-
|
|
9985
|
+
'email'?: string;
|
|
9986
|
+
/**
|
|
9987
|
+
*
|
|
9988
|
+
* @type {LanguageEnum}
|
|
9989
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9990
|
+
*/
|
|
9991
|
+
'language': LanguageEnum;
|
|
9992
|
+
/**
|
|
9993
|
+
*
|
|
9994
|
+
* @type {CompanyStatusEnum}
|
|
9995
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
9996
|
+
*/
|
|
9997
|
+
'status': CompanyStatusEnum;
|
|
9998
|
+
/**
|
|
9999
|
+
*
|
|
10000
|
+
* @type {string}
|
|
10001
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10002
|
+
*/
|
|
10003
|
+
'_id': string;
|
|
10033
10004
|
/**
|
|
10034
10005
|
*
|
|
10035
10006
|
* @type {number}
|
|
10036
|
-
* @memberof
|
|
10007
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10037
10008
|
*/
|
|
10038
|
-
'
|
|
10009
|
+
'__v': number;
|
|
10010
|
+
/**
|
|
10011
|
+
*
|
|
10012
|
+
* @type {string}
|
|
10013
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10014
|
+
*/
|
|
10015
|
+
'createdAt': string;
|
|
10016
|
+
/**
|
|
10017
|
+
*
|
|
10018
|
+
* @type {string}
|
|
10019
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10020
|
+
*/
|
|
10021
|
+
'updatedAt': string;
|
|
10022
|
+
/**
|
|
10023
|
+
*
|
|
10024
|
+
* @type {CompanyTypeEnum}
|
|
10025
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10026
|
+
*/
|
|
10027
|
+
'type': CompanyTypeEnum;
|
|
10039
10028
|
/**
|
|
10040
10029
|
*
|
|
10041
|
-
* @type {
|
|
10042
|
-
* @memberof
|
|
10030
|
+
* @type {PlanTypeEnum}
|
|
10031
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10043
10032
|
*/
|
|
10044
|
-
'
|
|
10033
|
+
'plan': PlanTypeEnum;
|
|
10045
10034
|
/**
|
|
10046
10035
|
*
|
|
10047
10036
|
* @type {string}
|
|
10048
|
-
* @memberof
|
|
10037
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10049
10038
|
*/
|
|
10050
|
-
'
|
|
10039
|
+
'owner': string;
|
|
10051
10040
|
/**
|
|
10052
10041
|
*
|
|
10053
|
-
* @type {
|
|
10054
|
-
* @memberof
|
|
10042
|
+
* @type {Array<string>}
|
|
10043
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10055
10044
|
*/
|
|
10056
|
-
'
|
|
10045
|
+
'domains': Array<string>;
|
|
10057
10046
|
/**
|
|
10058
10047
|
*
|
|
10059
10048
|
* @type {string}
|
|
10060
|
-
* @memberof
|
|
10049
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10061
10050
|
*/
|
|
10062
|
-
'
|
|
10051
|
+
'dnsZoneDomain'?: string;
|
|
10063
10052
|
/**
|
|
10064
10053
|
*
|
|
10065
|
-
* @type {
|
|
10066
|
-
* @memberof
|
|
10054
|
+
* @type {{ [key: string]: string; }}
|
|
10055
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10067
10056
|
*/
|
|
10068
|
-
'
|
|
10057
|
+
'socials'?: {
|
|
10058
|
+
[key: string]: string;
|
|
10059
|
+
};
|
|
10069
10060
|
/**
|
|
10070
10061
|
*
|
|
10071
10062
|
* @type {string}
|
|
10072
|
-
* @memberof
|
|
10063
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10073
10064
|
*/
|
|
10074
|
-
'
|
|
10065
|
+
'description'?: string;
|
|
10075
10066
|
/**
|
|
10076
10067
|
*
|
|
10077
10068
|
* @type {string}
|
|
10078
|
-
* @memberof
|
|
10069
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10079
10070
|
*/
|
|
10080
|
-
'
|
|
10071
|
+
'orderNoPrefix'?: string;
|
|
10081
10072
|
/**
|
|
10082
10073
|
*
|
|
10083
10074
|
* @type {string}
|
|
10084
|
-
* @memberof
|
|
10075
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10085
10076
|
*/
|
|
10086
|
-
'
|
|
10077
|
+
'orderNoSuffix'?: string;
|
|
10087
10078
|
/**
|
|
10088
10079
|
*
|
|
10089
|
-
* @type {
|
|
10090
|
-
* @memberof
|
|
10080
|
+
* @type {IImage}
|
|
10081
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10091
10082
|
*/
|
|
10092
|
-
'
|
|
10083
|
+
'logo'?: IImage;
|
|
10093
10084
|
/**
|
|
10094
10085
|
*
|
|
10095
|
-
* @type {
|
|
10096
|
-
* @memberof
|
|
10086
|
+
* @type {IImage}
|
|
10087
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10097
10088
|
*/
|
|
10098
|
-
'
|
|
10089
|
+
'emailLogo'?: IImage;
|
|
10099
10090
|
/**
|
|
10100
10091
|
*
|
|
10101
|
-
* @type {
|
|
10102
|
-
* @memberof
|
|
10092
|
+
* @type {IImage}
|
|
10093
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10103
10094
|
*/
|
|
10104
|
-
'
|
|
10095
|
+
'favicon'?: IImage;
|
|
10105
10096
|
/**
|
|
10106
10097
|
*
|
|
10107
|
-
* @type {
|
|
10108
|
-
* @memberof
|
|
10098
|
+
* @type {TimezoneEnum}
|
|
10099
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10109
10100
|
*/
|
|
10110
|
-
'
|
|
10101
|
+
'timezone': TimezoneEnum;
|
|
10111
10102
|
/**
|
|
10112
10103
|
*
|
|
10113
|
-
* @type {
|
|
10114
|
-
* @memberof
|
|
10104
|
+
* @type {Array<LanguageEnum>}
|
|
10105
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10115
10106
|
*/
|
|
10116
|
-
'
|
|
10107
|
+
'languages': Array<LanguageEnum>;
|
|
10117
10108
|
/**
|
|
10118
10109
|
*
|
|
10119
|
-
* @type {
|
|
10120
|
-
* @memberof
|
|
10110
|
+
* @type {CurrencyEnum}
|
|
10111
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10121
10112
|
*/
|
|
10122
|
-
'
|
|
10113
|
+
'currency': CurrencyEnum;
|
|
10123
10114
|
/**
|
|
10124
10115
|
*
|
|
10125
|
-
* @type {
|
|
10126
|
-
* @memberof
|
|
10116
|
+
* @type {RecordCurrencyEnumCurrency}
|
|
10117
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10127
10118
|
*/
|
|
10128
|
-
'
|
|
10119
|
+
'currencies': RecordCurrencyEnumCurrency;
|
|
10129
10120
|
/**
|
|
10130
10121
|
*
|
|
10131
|
-
* @type {
|
|
10132
|
-
* @memberof
|
|
10122
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin}
|
|
10123
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10133
10124
|
*/
|
|
10134
|
-
'
|
|
10125
|
+
'firebaseLogin': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin;
|
|
10135
10126
|
/**
|
|
10136
10127
|
*
|
|
10137
|
-
* @type {
|
|
10138
|
-
* @memberof
|
|
10128
|
+
* @type {string}
|
|
10129
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10139
10130
|
*/
|
|
10140
|
-
'
|
|
10131
|
+
'senderEmail'?: string;
|
|
10141
10132
|
/**
|
|
10142
10133
|
*
|
|
10143
|
-
* @type {
|
|
10144
|
-
* @memberof
|
|
10134
|
+
* @type {string}
|
|
10135
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10145
10136
|
*/
|
|
10146
|
-
'
|
|
10137
|
+
'senderName'?: string;
|
|
10147
10138
|
/**
|
|
10148
10139
|
*
|
|
10149
|
-
* @type {
|
|
10150
|
-
* @memberof
|
|
10140
|
+
* @type {Array<ShippingProvider>}
|
|
10141
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10151
10142
|
*/
|
|
10152
|
-
'
|
|
10143
|
+
'shippingProviders': Array<ShippingProvider>;
|
|
10153
10144
|
/**
|
|
10154
10145
|
*
|
|
10155
|
-
* @type {
|
|
10156
|
-
* @memberof
|
|
10146
|
+
* @type {boolean}
|
|
10147
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10157
10148
|
*/
|
|
10158
|
-
'
|
|
10149
|
+
'autoApproveReviews': boolean;
|
|
10159
10150
|
/**
|
|
10160
10151
|
*
|
|
10161
|
-
* @type {
|
|
10162
|
-
* @memberof
|
|
10152
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages}
|
|
10153
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10163
10154
|
*/
|
|
10164
|
-
'
|
|
10155
|
+
'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
|
|
10156
|
+
/**
|
|
10157
|
+
* Construct a type with a set of properties K of type T
|
|
10158
|
+
* @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
|
|
10159
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10160
|
+
*/
|
|
10161
|
+
'legalDocuments': {
|
|
10162
|
+
[key: string]: RecordStringUrlStringFileIImageValue;
|
|
10163
|
+
};
|
|
10165
10164
|
/**
|
|
10166
10165
|
*
|
|
10167
|
-
* @type {
|
|
10168
|
-
* @memberof
|
|
10166
|
+
* @type {RecordCompanyOnboardingStepEnumBoolean}
|
|
10167
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10169
10168
|
*/
|
|
10170
|
-
'
|
|
10169
|
+
'onboarding': RecordCompanyOnboardingStepEnumBoolean;
|
|
10171
10170
|
/**
|
|
10172
10171
|
*
|
|
10173
10172
|
* @type {string}
|
|
10174
|
-
* @memberof
|
|
10173
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10175
10174
|
*/
|
|
10176
|
-
'
|
|
10175
|
+
'subscriptionEndsAt': string;
|
|
10177
10176
|
/**
|
|
10178
10177
|
*
|
|
10179
|
-
* @type {
|
|
10180
|
-
* @memberof
|
|
10178
|
+
* @type {boolean}
|
|
10179
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10181
10180
|
*/
|
|
10182
|
-
'
|
|
10181
|
+
'allowGuestCheckout': boolean;
|
|
10182
|
+
}
|
|
10183
|
+
/**
|
|
10184
|
+
*
|
|
10185
|
+
* @export
|
|
10186
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
10187
|
+
*/
|
|
10188
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin {
|
|
10183
10189
|
/**
|
|
10184
10190
|
*
|
|
10185
|
-
* @type {
|
|
10186
|
-
* @memberof
|
|
10191
|
+
* @type {boolean}
|
|
10192
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
10187
10193
|
*/
|
|
10188
|
-
'
|
|
10194
|
+
'apple': boolean;
|
|
10189
10195
|
/**
|
|
10190
10196
|
*
|
|
10191
|
-
* @type {
|
|
10192
|
-
* @memberof
|
|
10197
|
+
* @type {boolean}
|
|
10198
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
10193
10199
|
*/
|
|
10194
|
-
'
|
|
10200
|
+
'facebook': boolean;
|
|
10195
10201
|
/**
|
|
10196
10202
|
*
|
|
10197
10203
|
* @type {boolean}
|
|
10198
|
-
* @memberof
|
|
10204
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysFirebaseLogin
|
|
10199
10205
|
*/
|
|
10200
|
-
'
|
|
10206
|
+
'google': boolean;
|
|
10201
10207
|
}
|
|
10202
10208
|
/**
|
|
10203
10209
|
*
|
|
10204
10210
|
* @export
|
|
10205
|
-
* @interface
|
|
10211
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages
|
|
10206
10212
|
*/
|
|
10207
|
-
export interface
|
|
10213
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages {
|
|
10208
10214
|
/**
|
|
10209
10215
|
*
|
|
10210
|
-
* @type {
|
|
10211
|
-
* @memberof
|
|
10216
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10217
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages
|
|
10212
10218
|
*/
|
|
10213
|
-
'
|
|
10219
|
+
'termsOfService'?: PartialRecordLanguageEnumString;
|
|
10214
10220
|
/**
|
|
10215
10221
|
*
|
|
10216
|
-
* @type {
|
|
10217
|
-
* @memberof
|
|
10222
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10223
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages
|
|
10218
10224
|
*/
|
|
10219
|
-
'
|
|
10225
|
+
'privacyPolicy'?: PartialRecordLanguageEnumString;
|
|
10220
10226
|
/**
|
|
10221
10227
|
*
|
|
10222
|
-
* @type {
|
|
10223
|
-
* @memberof
|
|
10228
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10229
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages
|
|
10224
10230
|
*/
|
|
10225
|
-
'
|
|
10231
|
+
'returnPolicy'?: PartialRecordLanguageEnumString;
|
|
10232
|
+
/**
|
|
10233
|
+
*
|
|
10234
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10235
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages
|
|
10236
|
+
*/
|
|
10237
|
+
'distanceSalesAgreement'?: PartialRecordLanguageEnumString;
|
|
10238
|
+
}
|
|
10239
|
+
/**
|
|
10240
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10241
|
+
* @export
|
|
10242
|
+
* @interface PickICompanyIdOrName
|
|
10243
|
+
*/
|
|
10244
|
+
export interface PickICompanyIdOrName {
|
|
10226
10245
|
/**
|
|
10227
10246
|
*
|
|
10228
10247
|
* @type {string}
|
|
10229
|
-
* @memberof
|
|
10248
|
+
* @memberof PickICompanyIdOrName
|
|
10230
10249
|
*/
|
|
10231
|
-
'
|
|
10250
|
+
'name': string;
|
|
10232
10251
|
/**
|
|
10233
10252
|
*
|
|
10234
10253
|
* @type {string}
|
|
10235
|
-
* @memberof
|
|
10254
|
+
* @memberof PickICompanyIdOrName
|
|
10236
10255
|
*/
|
|
10237
|
-
'
|
|
10256
|
+
'_id': string;
|
|
10257
|
+
}
|
|
10258
|
+
/**
|
|
10259
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10260
|
+
* @export
|
|
10261
|
+
* @interface PickICompanyNameOrDomainsOrIdOrLanguage
|
|
10262
|
+
*/
|
|
10263
|
+
export interface PickICompanyNameOrDomainsOrIdOrLanguage {
|
|
10238
10264
|
/**
|
|
10239
10265
|
*
|
|
10240
|
-
* @type {
|
|
10241
|
-
* @memberof
|
|
10266
|
+
* @type {string}
|
|
10267
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
10242
10268
|
*/
|
|
10243
|
-
'
|
|
10269
|
+
'name': string;
|
|
10244
10270
|
/**
|
|
10245
10271
|
*
|
|
10246
|
-
* @type {
|
|
10247
|
-
* @memberof
|
|
10272
|
+
* @type {LanguageEnum}
|
|
10273
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
10248
10274
|
*/
|
|
10249
|
-
'
|
|
10275
|
+
'language': LanguageEnum;
|
|
10250
10276
|
/**
|
|
10251
10277
|
*
|
|
10252
|
-
* @type {
|
|
10253
|
-
* @memberof
|
|
10278
|
+
* @type {string}
|
|
10279
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
10254
10280
|
*/
|
|
10255
|
-
'
|
|
10281
|
+
'_id': string;
|
|
10282
|
+
/**
|
|
10283
|
+
*
|
|
10284
|
+
* @type {Array<string>}
|
|
10285
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrLanguage
|
|
10286
|
+
*/
|
|
10287
|
+
'domains': Array<string>;
|
|
10288
|
+
}
|
|
10289
|
+
/**
|
|
10290
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10291
|
+
* @export
|
|
10292
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10293
|
+
*/
|
|
10294
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles {
|
|
10256
10295
|
/**
|
|
10257
10296
|
*
|
|
10258
10297
|
* @type {string}
|
|
10259
|
-
* @memberof
|
|
10298
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10260
10299
|
*/
|
|
10261
|
-
'
|
|
10300
|
+
'name': string;
|
|
10262
10301
|
/**
|
|
10263
10302
|
*
|
|
10264
|
-
* @type {
|
|
10265
|
-
* @memberof
|
|
10303
|
+
* @type {{ [key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue; }}
|
|
10304
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10266
10305
|
*/
|
|
10267
|
-
'
|
|
10306
|
+
'roles': {
|
|
10307
|
+
[key: string]: PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue;
|
|
10308
|
+
};
|
|
10268
10309
|
/**
|
|
10269
10310
|
*
|
|
10270
|
-
* @type {
|
|
10271
|
-
* @memberof
|
|
10311
|
+
* @type {LanguageEnum}
|
|
10312
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10272
10313
|
*/
|
|
10273
|
-
'
|
|
10314
|
+
'language': LanguageEnum;
|
|
10274
10315
|
/**
|
|
10275
10316
|
*
|
|
10276
10317
|
* @type {string}
|
|
10277
|
-
* @memberof
|
|
10318
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10278
10319
|
*/
|
|
10279
10320
|
'_id': string;
|
|
10280
|
-
}
|
|
10281
|
-
/**
|
|
10282
|
-
*
|
|
10283
|
-
* @export
|
|
10284
|
-
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10285
|
-
*/
|
|
10286
|
-
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner {
|
|
10287
|
-
/**
|
|
10288
|
-
*
|
|
10289
|
-
* @type {OrderReturnStatusEnum}
|
|
10290
|
-
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10291
|
-
*/
|
|
10292
|
-
'status': OrderReturnStatusEnum;
|
|
10293
10321
|
/**
|
|
10294
10322
|
*
|
|
10295
|
-
* @type {
|
|
10296
|
-
* @memberof
|
|
10323
|
+
* @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
|
|
10324
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10297
10325
|
*/
|
|
10298
|
-
'
|
|
10326
|
+
'users': Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>;
|
|
10299
10327
|
/**
|
|
10300
10328
|
*
|
|
10301
10329
|
* @type {string}
|
|
10302
|
-
* @memberof
|
|
10330
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10303
10331
|
*/
|
|
10304
|
-
'
|
|
10332
|
+
'owner': string;
|
|
10305
10333
|
/**
|
|
10306
10334
|
*
|
|
10307
|
-
* @type {string}
|
|
10308
|
-
* @memberof
|
|
10335
|
+
* @type {Array<string>}
|
|
10336
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles
|
|
10309
10337
|
*/
|
|
10310
|
-
'
|
|
10338
|
+
'domains': Array<string>;
|
|
10339
|
+
}
|
|
10340
|
+
/**
|
|
10341
|
+
*
|
|
10342
|
+
* @export
|
|
10343
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
10344
|
+
*/
|
|
10345
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue {
|
|
10311
10346
|
/**
|
|
10312
10347
|
*
|
|
10313
|
-
* @type {
|
|
10314
|
-
* @memberof
|
|
10348
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
10349
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
10315
10350
|
*/
|
|
10316
|
-
'
|
|
10351
|
+
'order': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
10317
10352
|
/**
|
|
10318
10353
|
*
|
|
10319
|
-
* @type {
|
|
10320
|
-
* @memberof
|
|
10354
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
10355
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
10321
10356
|
*/
|
|
10322
|
-
'
|
|
10357
|
+
'config': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
10323
10358
|
/**
|
|
10324
10359
|
*
|
|
10325
|
-
* @type {
|
|
10326
|
-
* @memberof
|
|
10360
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
10361
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
10327
10362
|
*/
|
|
10328
|
-
'
|
|
10363
|
+
'navigation': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
10329
10364
|
/**
|
|
10330
10365
|
*
|
|
10331
|
-
* @type {
|
|
10332
|
-
* @memberof
|
|
10366
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
10367
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
10333
10368
|
*/
|
|
10334
|
-
'
|
|
10369
|
+
'company': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
10335
10370
|
/**
|
|
10336
10371
|
*
|
|
10337
|
-
* @type {
|
|
10338
|
-
* @memberof
|
|
10372
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
10373
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
10339
10374
|
*/
|
|
10340
|
-
'
|
|
10375
|
+
'page': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
10341
10376
|
/**
|
|
10342
10377
|
*
|
|
10343
|
-
* @type {
|
|
10344
|
-
* @memberof
|
|
10378
|
+
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder}
|
|
10379
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValue
|
|
10345
10380
|
*/
|
|
10346
|
-
'
|
|
10381
|
+
'product': PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder;
|
|
10347
10382
|
}
|
|
10348
10383
|
/**
|
|
10349
10384
|
*
|
|
10350
10385
|
* @export
|
|
10351
|
-
* @interface
|
|
10386
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
|
|
10352
10387
|
*/
|
|
10353
|
-
export interface
|
|
10388
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder {
|
|
10354
10389
|
/**
|
|
10355
10390
|
*
|
|
10356
|
-
* @type {
|
|
10357
|
-
* @memberof
|
|
10391
|
+
* @type {boolean}
|
|
10392
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
|
|
10358
10393
|
*/
|
|
10359
|
-
'
|
|
10394
|
+
'd': boolean;
|
|
10360
10395
|
/**
|
|
10361
10396
|
*
|
|
10362
|
-
* @type {
|
|
10363
|
-
* @memberof
|
|
10397
|
+
* @type {boolean}
|
|
10398
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesRolesValueOrder
|
|
10364
10399
|
*/
|
|
10365
|
-
'
|
|
10400
|
+
'm': boolean;
|
|
10366
10401
|
}
|
|
10367
10402
|
/**
|
|
10368
10403
|
*
|
|
10369
10404
|
* @export
|
|
10370
|
-
* @interface
|
|
10405
|
+
* @interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
10371
10406
|
*/
|
|
10372
|
-
export interface
|
|
10407
|
+
export interface PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner {
|
|
10373
10408
|
/**
|
|
10374
10409
|
*
|
|
10375
|
-
* @type {
|
|
10376
|
-
* @memberof
|
|
10410
|
+
* @type {CompanyUserStatusEnum}
|
|
10411
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
10377
10412
|
*/
|
|
10378
|
-
'status':
|
|
10413
|
+
'status': CompanyUserStatusEnum;
|
|
10379
10414
|
/**
|
|
10380
10415
|
*
|
|
10381
10416
|
* @type {string}
|
|
10382
|
-
* @memberof
|
|
10417
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
10383
10418
|
*/
|
|
10384
|
-
'
|
|
10419
|
+
'role': string;
|
|
10385
10420
|
/**
|
|
10386
10421
|
*
|
|
10387
10422
|
* @type {string}
|
|
10388
|
-
* @memberof
|
|
10423
|
+
* @memberof PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner
|
|
10389
10424
|
*/
|
|
10390
|
-
'
|
|
10425
|
+
'user': string;
|
|
10426
|
+
}
|
|
10427
|
+
/**
|
|
10428
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10429
|
+
* @export
|
|
10430
|
+
* @interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
10431
|
+
*/
|
|
10432
|
+
export interface PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp {
|
|
10391
10433
|
/**
|
|
10392
10434
|
*
|
|
10393
10435
|
* @type {string}
|
|
10394
|
-
* @memberof
|
|
10436
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
10395
10437
|
*/
|
|
10396
|
-
'
|
|
10438
|
+
'name'?: string;
|
|
10397
10439
|
/**
|
|
10398
10440
|
*
|
|
10399
10441
|
* @type {string}
|
|
10400
|
-
* @memberof
|
|
10401
|
-
*/
|
|
10402
|
-
'cargoCode'?: string;
|
|
10403
|
-
/**
|
|
10404
|
-
*
|
|
10405
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>}
|
|
10406
|
-
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10442
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
10407
10443
|
*/
|
|
10408
|
-
'
|
|
10444
|
+
'email': string;
|
|
10409
10445
|
/**
|
|
10410
10446
|
*
|
|
10411
10447
|
* @type {string}
|
|
10412
|
-
* @memberof
|
|
10448
|
+
* @memberof PickIContactFormExcludeKeyofIContactFormKeyofMongoResponseOrCompanyOrIp
|
|
10413
10449
|
*/
|
|
10414
|
-
'
|
|
10450
|
+
'message': string;
|
|
10415
10451
|
}
|
|
10416
10452
|
/**
|
|
10417
10453
|
* From T, pick a set of properties whose keys are in the union K
|
|
10418
10454
|
* @export
|
|
10419
|
-
* @interface
|
|
10455
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10420
10456
|
*/
|
|
10421
|
-
export interface
|
|
10422
|
-
/**
|
|
10423
|
-
*
|
|
10424
|
-
* @type {string}
|
|
10425
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10426
|
-
*/
|
|
10427
|
-
'company': string;
|
|
10428
|
-
/**
|
|
10429
|
-
*
|
|
10430
|
-
* @type {string}
|
|
10431
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10432
|
-
*/
|
|
10433
|
-
'_id': string;
|
|
10457
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
10434
10458
|
/**
|
|
10435
10459
|
*
|
|
10436
10460
|
* @type {number}
|
|
10437
|
-
* @memberof
|
|
10461
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10438
10462
|
*/
|
|
10439
|
-
'
|
|
10463
|
+
'number': number;
|
|
10440
10464
|
/**
|
|
10441
10465
|
*
|
|
10442
10466
|
* @type {string}
|
|
10443
|
-
* @memberof
|
|
10467
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10444
10468
|
*/
|
|
10445
|
-
'
|
|
10469
|
+
'email'?: string;
|
|
10446
10470
|
/**
|
|
10447
10471
|
*
|
|
10448
10472
|
* @type {string}
|
|
10449
|
-
* @memberof
|
|
10450
|
-
*/
|
|
10451
|
-
'updatedAt': string;
|
|
10452
|
-
/**
|
|
10453
|
-
* Construct a type with a set of properties K of type T
|
|
10454
|
-
* @type {{ [key: string]: string; }}
|
|
10455
|
-
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10473
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10456
10474
|
*/
|
|
10457
|
-
'
|
|
10458
|
-
[key: string]: string;
|
|
10459
|
-
};
|
|
10475
|
+
'company': string;
|
|
10460
10476
|
/**
|
|
10461
10477
|
*
|
|
10462
|
-
* @type {
|
|
10463
|
-
* @memberof
|
|
10478
|
+
* @type {OrderStatusEnum}
|
|
10479
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10464
10480
|
*/
|
|
10465
|
-
'
|
|
10481
|
+
'status': OrderStatusEnum;
|
|
10466
10482
|
/**
|
|
10467
10483
|
*
|
|
10468
|
-
* @type {
|
|
10469
|
-
* @memberof
|
|
10484
|
+
* @type {string}
|
|
10485
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10470
10486
|
*/
|
|
10471
|
-
'
|
|
10487
|
+
'_id': string;
|
|
10472
10488
|
/**
|
|
10473
10489
|
*
|
|
10474
|
-
* @type {
|
|
10475
|
-
* @memberof
|
|
10490
|
+
* @type {number}
|
|
10491
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10476
10492
|
*/
|
|
10477
|
-
'
|
|
10493
|
+
'__v': number;
|
|
10478
10494
|
/**
|
|
10479
10495
|
*
|
|
10480
|
-
* @type {
|
|
10481
|
-
* @memberof
|
|
10496
|
+
* @type {string}
|
|
10497
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10482
10498
|
*/
|
|
10483
|
-
'
|
|
10484
|
-
}
|
|
10485
|
-
/**
|
|
10486
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10487
|
-
* @export
|
|
10488
|
-
* @interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10489
|
-
*/
|
|
10490
|
-
export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
|
|
10499
|
+
'createdAt': string;
|
|
10491
10500
|
/**
|
|
10492
10501
|
*
|
|
10493
10502
|
* @type {string}
|
|
10494
|
-
* @memberof
|
|
10503
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10495
10504
|
*/
|
|
10496
|
-
'
|
|
10505
|
+
'updatedAt': string;
|
|
10497
10506
|
/**
|
|
10498
10507
|
*
|
|
10499
|
-
* @type {
|
|
10500
|
-
* @memberof
|
|
10508
|
+
* @type {string}
|
|
10509
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10501
10510
|
*/
|
|
10502
|
-
'
|
|
10511
|
+
'user'?: string;
|
|
10503
10512
|
/**
|
|
10504
10513
|
*
|
|
10505
|
-
* @type {
|
|
10506
|
-
* @memberof
|
|
10514
|
+
* @type {CurrencyEnum}
|
|
10515
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10507
10516
|
*/
|
|
10508
|
-
'
|
|
10517
|
+
'currency': CurrencyEnum;
|
|
10509
10518
|
/**
|
|
10510
10519
|
*
|
|
10511
|
-
* @type {
|
|
10512
|
-
* @memberof
|
|
10520
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>}
|
|
10521
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10513
10522
|
*/
|
|
10514
|
-
'
|
|
10515
|
-
}
|
|
10516
|
-
/**
|
|
10517
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10518
|
-
* @export
|
|
10519
|
-
* @interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10520
|
-
*/
|
|
10521
|
-
export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields {
|
|
10523
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner>;
|
|
10522
10524
|
/**
|
|
10523
10525
|
*
|
|
10524
|
-
* @type {
|
|
10525
|
-
* @memberof
|
|
10526
|
+
* @type {IAddress}
|
|
10527
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10526
10528
|
*/
|
|
10527
|
-
'
|
|
10529
|
+
'shippingAddress': IAddress;
|
|
10528
10530
|
/**
|
|
10529
10531
|
*
|
|
10530
|
-
* @type {
|
|
10531
|
-
* @memberof
|
|
10532
|
+
* @type {IAddress}
|
|
10533
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10532
10534
|
*/
|
|
10533
|
-
'
|
|
10535
|
+
'billingAddress'?: IAddress;
|
|
10534
10536
|
/**
|
|
10535
10537
|
*
|
|
10536
|
-
* @type {
|
|
10537
|
-
* @memberof
|
|
10538
|
+
* @type {PaymentMethodEnum}
|
|
10539
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10538
10540
|
*/
|
|
10539
|
-
'
|
|
10541
|
+
'paymentMethod': PaymentMethodEnum;
|
|
10540
10542
|
/**
|
|
10541
10543
|
*
|
|
10542
|
-
* @type {
|
|
10543
|
-
* @memberof
|
|
10544
|
+
* @type {PaymentGatewayEnum}
|
|
10545
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10544
10546
|
*/
|
|
10545
|
-
'
|
|
10547
|
+
'paymentGateway': PaymentGatewayEnum;
|
|
10546
10548
|
/**
|
|
10547
10549
|
*
|
|
10548
10550
|
* @type {string}
|
|
10549
|
-
* @memberof
|
|
10551
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10550
10552
|
*/
|
|
10551
|
-
'
|
|
10553
|
+
'paymentId': string;
|
|
10552
10554
|
/**
|
|
10553
10555
|
*
|
|
10554
10556
|
* @type {number}
|
|
10555
|
-
* @memberof
|
|
10557
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10556
10558
|
*/
|
|
10557
|
-
'
|
|
10559
|
+
'subtotal': number;
|
|
10558
10560
|
/**
|
|
10559
10561
|
*
|
|
10560
10562
|
* @type {number}
|
|
10561
|
-
* @memberof
|
|
10563
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10562
10564
|
*/
|
|
10563
|
-
'
|
|
10565
|
+
'discount': number;
|
|
10564
10566
|
/**
|
|
10565
10567
|
*
|
|
10566
10568
|
* @type {number}
|
|
10567
|
-
* @memberof
|
|
10569
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10568
10570
|
*/
|
|
10569
|
-
'
|
|
10571
|
+
'tax': number;
|
|
10570
10572
|
/**
|
|
10571
10573
|
*
|
|
10572
|
-
* @type {
|
|
10573
|
-
* @memberof
|
|
10574
|
+
* @type {number}
|
|
10575
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10574
10576
|
*/
|
|
10575
|
-
'
|
|
10577
|
+
'shipping': number;
|
|
10576
10578
|
/**
|
|
10577
10579
|
*
|
|
10578
|
-
* @type {
|
|
10579
|
-
* @memberof
|
|
10580
|
+
* @type {string}
|
|
10581
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10580
10582
|
*/
|
|
10581
|
-
'
|
|
10583
|
+
'shippingRate': string;
|
|
10582
10584
|
/**
|
|
10583
|
-
*
|
|
10584
|
-
* @type {
|
|
10585
|
-
* @memberof
|
|
10585
|
+
*
|
|
10586
|
+
* @type {number}
|
|
10587
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10586
10588
|
*/
|
|
10587
|
-
'
|
|
10588
|
-
[key: string]: string;
|
|
10589
|
-
};
|
|
10589
|
+
'total': number;
|
|
10590
10590
|
/**
|
|
10591
10591
|
*
|
|
10592
10592
|
* @type {string}
|
|
10593
|
-
* @memberof
|
|
10593
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10594
10594
|
*/
|
|
10595
|
-
'
|
|
10595
|
+
'note'?: string;
|
|
10596
10596
|
/**
|
|
10597
10597
|
*
|
|
10598
10598
|
* @type {string}
|
|
10599
|
-
* @memberof
|
|
10599
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10600
10600
|
*/
|
|
10601
|
-
'
|
|
10601
|
+
'ip': string;
|
|
10602
10602
|
/**
|
|
10603
10603
|
*
|
|
10604
|
-
* @type {Array<
|
|
10605
|
-
* @memberof
|
|
10604
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>}
|
|
10605
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10606
10606
|
*/
|
|
10607
|
-
'
|
|
10607
|
+
'returns': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>;
|
|
10608
10608
|
/**
|
|
10609
10609
|
*
|
|
10610
|
-
* @type {
|
|
10611
|
-
* @memberof
|
|
10610
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>}
|
|
10611
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10612
10612
|
*/
|
|
10613
|
-
'
|
|
10614
|
-
[key: string]: StockTypeValue;
|
|
10615
|
-
};
|
|
10613
|
+
'shipped': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>;
|
|
10616
10614
|
/**
|
|
10617
10615
|
*
|
|
10618
|
-
* @type {
|
|
10619
|
-
* @memberof
|
|
10616
|
+
* @type {OrderPaymentStatusEnum}
|
|
10617
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10620
10618
|
*/
|
|
10621
|
-
'
|
|
10619
|
+
'paymentStatus': OrderPaymentStatusEnum;
|
|
10622
10620
|
/**
|
|
10623
10621
|
*
|
|
10624
|
-
* @type {
|
|
10625
|
-
* @memberof
|
|
10622
|
+
* @type {boolean}
|
|
10623
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
10626
10624
|
*/
|
|
10627
|
-
'
|
|
10625
|
+
'invoiceAdded': boolean;
|
|
10626
|
+
}
|
|
10627
|
+
/**
|
|
10628
|
+
*
|
|
10629
|
+
* @export
|
|
10630
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10631
|
+
*/
|
|
10632
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner {
|
|
10628
10633
|
/**
|
|
10629
10634
|
*
|
|
10630
|
-
* @type {
|
|
10631
|
-
* @memberof
|
|
10635
|
+
* @type {number}
|
|
10636
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10632
10637
|
*/
|
|
10633
|
-
'
|
|
10638
|
+
'price': number;
|
|
10634
10639
|
/**
|
|
10635
10640
|
*
|
|
10636
|
-
* @type {
|
|
10637
|
-
* @memberof
|
|
10641
|
+
* @type {number}
|
|
10642
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10638
10643
|
*/
|
|
10639
|
-
'
|
|
10644
|
+
'listPrice': number;
|
|
10640
10645
|
/**
|
|
10641
|
-
*
|
|
10642
|
-
* @type {
|
|
10643
|
-
* @memberof
|
|
10646
|
+
*
|
|
10647
|
+
* @type {number}
|
|
10648
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10644
10649
|
*/
|
|
10645
|
-
'
|
|
10646
|
-
[key: string]: Array<IImage>;
|
|
10647
|
-
};
|
|
10650
|
+
'amount': number;
|
|
10648
10651
|
/**
|
|
10649
10652
|
*
|
|
10650
|
-
* @type {
|
|
10651
|
-
* @memberof
|
|
10653
|
+
* @type {string}
|
|
10654
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10652
10655
|
*/
|
|
10653
|
-
'
|
|
10654
|
-
[key: string]: string;
|
|
10655
|
-
};
|
|
10656
|
+
'subVariantId'?: string;
|
|
10656
10657
|
/**
|
|
10657
10658
|
*
|
|
10658
|
-
* @type {
|
|
10659
|
-
* @memberof
|
|
10659
|
+
* @type {string}
|
|
10660
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10660
10661
|
*/
|
|
10661
|
-
'
|
|
10662
|
+
'mainVariantId'?: string;
|
|
10662
10663
|
/**
|
|
10663
10664
|
*
|
|
10664
|
-
* @type {
|
|
10665
|
-
* @memberof
|
|
10665
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10666
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10666
10667
|
*/
|
|
10667
|
-
'
|
|
10668
|
-
}
|
|
10669
|
-
/**
|
|
10670
|
-
*
|
|
10671
|
-
* @export
|
|
10672
|
-
* @interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts
|
|
10673
|
-
*/
|
|
10674
|
-
export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFieldsReviewCounts {
|
|
10668
|
+
'subVariantTitle': PartialRecordLanguageEnumString;
|
|
10675
10669
|
/**
|
|
10676
10670
|
*
|
|
10677
|
-
* @type {
|
|
10678
|
-
* @memberof
|
|
10671
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10672
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10679
10673
|
*/
|
|
10680
|
-
'
|
|
10674
|
+
'mainVariantTitle': PartialRecordLanguageEnumString;
|
|
10681
10675
|
/**
|
|
10682
10676
|
*
|
|
10683
|
-
* @type {
|
|
10684
|
-
* @memberof
|
|
10677
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10678
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10685
10679
|
*/
|
|
10686
|
-
'
|
|
10680
|
+
'productSlug': PartialRecordLanguageEnumString;
|
|
10687
10681
|
/**
|
|
10688
10682
|
*
|
|
10689
|
-
* @type {
|
|
10690
|
-
* @memberof
|
|
10683
|
+
* @type {string}
|
|
10684
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10691
10685
|
*/
|
|
10692
|
-
'
|
|
10686
|
+
'productThumbnail'?: string;
|
|
10693
10687
|
/**
|
|
10694
10688
|
*
|
|
10695
|
-
* @type {
|
|
10696
|
-
* @memberof
|
|
10689
|
+
* @type {PartialRecordLanguageEnumString}
|
|
10690
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10697
10691
|
*/
|
|
10698
|
-
'
|
|
10692
|
+
'productTitle': PartialRecordLanguageEnumString;
|
|
10699
10693
|
/**
|
|
10700
10694
|
*
|
|
10701
|
-
* @type {
|
|
10702
|
-
* @memberof
|
|
10695
|
+
* @type {string}
|
|
10696
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10703
10697
|
*/
|
|
10704
|
-
'
|
|
10698
|
+
'productId': string;
|
|
10699
|
+
/**
|
|
10700
|
+
*
|
|
10701
|
+
* @type {string}
|
|
10702
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
10703
|
+
*/
|
|
10704
|
+
'_id': string;
|
|
10705
10705
|
}
|
|
10706
10706
|
/**
|
|
10707
|
-
*
|
|
10707
|
+
*
|
|
10708
10708
|
* @export
|
|
10709
|
-
* @interface
|
|
10709
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10710
10710
|
*/
|
|
10711
|
-
export interface
|
|
10711
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner {
|
|
10712
10712
|
/**
|
|
10713
10713
|
*
|
|
10714
|
-
* @type {
|
|
10715
|
-
* @memberof
|
|
10714
|
+
* @type {OrderReturnStatusEnum}
|
|
10715
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10716
10716
|
*/
|
|
10717
|
-
'
|
|
10717
|
+
'status': OrderReturnStatusEnum;
|
|
10718
10718
|
/**
|
|
10719
10719
|
*
|
|
10720
10720
|
* @type {string}
|
|
10721
|
-
* @memberof
|
|
10721
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10722
10722
|
*/
|
|
10723
|
-
'
|
|
10723
|
+
'note'?: string;
|
|
10724
10724
|
/**
|
|
10725
10725
|
*
|
|
10726
|
-
* @type {
|
|
10727
|
-
* @memberof
|
|
10726
|
+
* @type {string}
|
|
10727
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10728
10728
|
*/
|
|
10729
|
-
'
|
|
10729
|
+
'warehouse'?: string;
|
|
10730
10730
|
/**
|
|
10731
10731
|
*
|
|
10732
|
-
* @type {
|
|
10733
|
-
* @memberof
|
|
10732
|
+
* @type {string}
|
|
10733
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10734
10734
|
*/
|
|
10735
|
-
'
|
|
10736
|
-
}
|
|
10737
|
-
/**
|
|
10738
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10739
|
-
* @export
|
|
10740
|
-
* @interface PickIProductIdOrContentsOrTotalSale
|
|
10741
|
-
*/
|
|
10742
|
-
export interface PickIProductIdOrContentsOrTotalSale {
|
|
10735
|
+
'cargoUrl'?: string;
|
|
10743
10736
|
/**
|
|
10744
10737
|
*
|
|
10745
10738
|
* @type {string}
|
|
10746
|
-
* @memberof
|
|
10739
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10747
10740
|
*/
|
|
10748
|
-
'
|
|
10741
|
+
'cargoCode'?: string;
|
|
10742
|
+
/**
|
|
10743
|
+
*
|
|
10744
|
+
* @type {boolean}
|
|
10745
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10746
|
+
*/
|
|
10747
|
+
'refund': boolean;
|
|
10749
10748
|
/**
|
|
10750
10749
|
*
|
|
10751
10750
|
* @type {number}
|
|
10752
|
-
* @memberof
|
|
10751
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10753
10752
|
*/
|
|
10754
|
-
'
|
|
10753
|
+
'price': number;
|
|
10755
10754
|
/**
|
|
10756
10755
|
*
|
|
10757
|
-
* @type {
|
|
10758
|
-
* @memberof
|
|
10756
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>}
|
|
10757
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10759
10758
|
*/
|
|
10760
|
-
'
|
|
10761
|
-
}
|
|
10762
|
-
/**
|
|
10763
|
-
* From T, pick a set of properties whose keys are in the union K
|
|
10764
|
-
* @export
|
|
10765
|
-
* @interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
10766
|
-
*/
|
|
10767
|
-
export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields {
|
|
10759
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>;
|
|
10768
10760
|
/**
|
|
10769
10761
|
*
|
|
10770
10762
|
* @type {string}
|
|
10771
|
-
* @memberof
|
|
10763
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10772
10764
|
*/
|
|
10773
|
-
'
|
|
10765
|
+
'shippedId'?: string;
|
|
10774
10766
|
/**
|
|
10775
10767
|
*
|
|
10776
|
-
* @type {
|
|
10777
|
-
* @memberof
|
|
10768
|
+
* @type {string}
|
|
10769
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
10778
10770
|
*/
|
|
10779
|
-
'
|
|
10771
|
+
'_id': string;
|
|
10772
|
+
}
|
|
10773
|
+
/**
|
|
10774
|
+
*
|
|
10775
|
+
* @export
|
|
10776
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner
|
|
10777
|
+
*/
|
|
10778
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner {
|
|
10780
10779
|
/**
|
|
10781
10780
|
*
|
|
10782
|
-
* @type {
|
|
10783
|
-
* @memberof
|
|
10781
|
+
* @type {number}
|
|
10782
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner
|
|
10784
10783
|
*/
|
|
10785
|
-
'
|
|
10784
|
+
'amount': number;
|
|
10786
10785
|
/**
|
|
10787
10786
|
*
|
|
10788
10787
|
* @type {string}
|
|
10789
|
-
* @memberof
|
|
10788
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner
|
|
10790
10789
|
*/
|
|
10791
|
-
'
|
|
10790
|
+
'_id': string;
|
|
10791
|
+
}
|
|
10792
|
+
/**
|
|
10793
|
+
*
|
|
10794
|
+
* @export
|
|
10795
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10796
|
+
*/
|
|
10797
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
10792
10798
|
/**
|
|
10793
10799
|
*
|
|
10794
|
-
* @type {
|
|
10795
|
-
* @memberof
|
|
10800
|
+
* @type {OrderShippedStatusEnum}
|
|
10801
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10796
10802
|
*/
|
|
10797
|
-
'
|
|
10803
|
+
'status': OrderShippedStatusEnum;
|
|
10798
10804
|
/**
|
|
10799
10805
|
*
|
|
10800
|
-
* @type {
|
|
10801
|
-
* @memberof
|
|
10806
|
+
* @type {string}
|
|
10807
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10802
10808
|
*/
|
|
10803
|
-
'
|
|
10809
|
+
'note'?: string;
|
|
10804
10810
|
/**
|
|
10805
10811
|
*
|
|
10806
|
-
* @type {
|
|
10807
|
-
* @memberof
|
|
10812
|
+
* @type {string}
|
|
10813
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10808
10814
|
*/
|
|
10809
|
-
'
|
|
10810
|
-
[key: string]: StockTypeValue;
|
|
10811
|
-
};
|
|
10815
|
+
'warehouse': string;
|
|
10812
10816
|
/**
|
|
10813
10817
|
*
|
|
10814
|
-
* @type {
|
|
10815
|
-
* @memberof
|
|
10818
|
+
* @type {string}
|
|
10819
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10816
10820
|
*/
|
|
10817
|
-
'
|
|
10821
|
+
'cargoUrl'?: string;
|
|
10818
10822
|
/**
|
|
10819
10823
|
*
|
|
10820
|
-
* @type {
|
|
10821
|
-
* @memberof
|
|
10824
|
+
* @type {string}
|
|
10825
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10822
10826
|
*/
|
|
10823
|
-
'
|
|
10827
|
+
'cargoCode'?: string;
|
|
10824
10828
|
/**
|
|
10825
10829
|
*
|
|
10826
|
-
* @type {Array<
|
|
10827
|
-
* @memberof
|
|
10828
|
-
*/
|
|
10829
|
-
'variants'?: Array<VariantType>;
|
|
10830
|
-
/**
|
|
10831
|
-
* Construct a type with a set of properties K of type T
|
|
10832
|
-
* @type {{ [key: string]: Array<IImage>; }}
|
|
10833
|
-
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
10830
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>}
|
|
10831
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10834
10832
|
*/
|
|
10835
|
-
'
|
|
10836
|
-
[key: string]: Array<IImage>;
|
|
10837
|
-
};
|
|
10833
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>;
|
|
10838
10834
|
/**
|
|
10839
10835
|
*
|
|
10840
|
-
* @type {
|
|
10841
|
-
* @memberof
|
|
10836
|
+
* @type {string}
|
|
10837
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
10842
10838
|
*/
|
|
10843
|
-
'
|
|
10844
|
-
[key: string]: string;
|
|
10845
|
-
};
|
|
10839
|
+
'_id': string;
|
|
10846
10840
|
}
|
|
10847
10841
|
/**
|
|
10848
10842
|
* From T, pick a set of properties whose keys are in the union K
|
|
10849
10843
|
* @export
|
|
10850
|
-
* @interface
|
|
10844
|
+
* @interface PickIPageExcludeKeyofIPageTemplate
|
|
10851
10845
|
*/
|
|
10852
|
-
export interface
|
|
10853
|
-
/**
|
|
10854
|
-
*
|
|
10855
|
-
* @type {string}
|
|
10856
|
-
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10857
|
-
*/
|
|
10858
|
-
'name': string;
|
|
10846
|
+
export interface PickIPageExcludeKeyofIPageTemplate {
|
|
10859
10847
|
/**
|
|
10860
10848
|
*
|
|
10861
10849
|
* @type {string}
|
|
10862
|
-
* @memberof
|
|
10850
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10863
10851
|
*/
|
|
10864
10852
|
'company': string;
|
|
10865
|
-
/**
|
|
10866
|
-
*
|
|
10867
|
-
* @type {ReviewStatusEnum}
|
|
10868
|
-
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10869
|
-
*/
|
|
10870
|
-
'status': ReviewStatusEnum;
|
|
10871
10853
|
/**
|
|
10872
10854
|
*
|
|
10873
10855
|
* @type {string}
|
|
10874
|
-
* @memberof
|
|
10856
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10875
10857
|
*/
|
|
10876
10858
|
'_id': string;
|
|
10877
10859
|
/**
|
|
10878
10860
|
*
|
|
10879
10861
|
* @type {number}
|
|
10880
|
-
* @memberof
|
|
10862
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10881
10863
|
*/
|
|
10882
10864
|
'__v': number;
|
|
10883
10865
|
/**
|
|
10884
10866
|
*
|
|
10885
10867
|
* @type {string}
|
|
10886
|
-
* @memberof
|
|
10868
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10887
10869
|
*/
|
|
10888
10870
|
'createdAt': string;
|
|
10889
10871
|
/**
|
|
10890
10872
|
*
|
|
10891
10873
|
* @type {string}
|
|
10892
|
-
* @memberof
|
|
10874
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10893
10875
|
*/
|
|
10894
10876
|
'updatedAt': string;
|
|
10895
10877
|
/**
|
|
10896
|
-
*
|
|
10897
|
-
* @type {string}
|
|
10898
|
-
* @memberof
|
|
10899
|
-
*/
|
|
10900
|
-
'user': string;
|
|
10901
|
-
/**
|
|
10902
|
-
*
|
|
10903
|
-
* @type {string}
|
|
10904
|
-
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
10878
|
+
* Construct a type with a set of properties K of type T
|
|
10879
|
+
* @type {{ [key: string]: string; }}
|
|
10880
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10905
10881
|
*/
|
|
10906
|
-
'
|
|
10882
|
+
'templates': {
|
|
10883
|
+
[key: string]: string;
|
|
10884
|
+
};
|
|
10907
10885
|
/**
|
|
10908
10886
|
*
|
|
10909
|
-
* @type {
|
|
10910
|
-
* @memberof
|
|
10887
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10888
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10911
10889
|
*/
|
|
10912
|
-
'
|
|
10890
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10913
10891
|
/**
|
|
10914
10892
|
*
|
|
10915
|
-
* @type {
|
|
10916
|
-
* @memberof
|
|
10893
|
+
* @type {Array<string>}
|
|
10894
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10917
10895
|
*/
|
|
10918
|
-
'
|
|
10896
|
+
'slugs': Array<string>;
|
|
10919
10897
|
/**
|
|
10920
10898
|
*
|
|
10921
|
-
* @type {
|
|
10922
|
-
* @memberof
|
|
10899
|
+
* @type {IImage}
|
|
10900
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10923
10901
|
*/
|
|
10924
|
-
'
|
|
10902
|
+
'thumbnail'?: IImage;
|
|
10925
10903
|
/**
|
|
10926
10904
|
*
|
|
10927
|
-
* @type {
|
|
10928
|
-
* @memberof
|
|
10905
|
+
* @type {PageTypeEnum}
|
|
10906
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
10929
10907
|
*/
|
|
10930
|
-
'
|
|
10908
|
+
'type': PageTypeEnum;
|
|
10909
|
+
}
|
|
10910
|
+
/**
|
|
10911
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
10912
|
+
* @export
|
|
10913
|
+
* @interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10914
|
+
*/
|
|
10915
|
+
export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
|
|
10931
10916
|
/**
|
|
10932
10917
|
*
|
|
10933
10918
|
* @type {string}
|
|
10934
|
-
* @memberof
|
|
10919
|
+
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10935
10920
|
*/
|
|
10936
|
-
'
|
|
10921
|
+
'company': string;
|
|
10937
10922
|
/**
|
|
10938
10923
|
*
|
|
10939
|
-
* @type {
|
|
10940
|
-
* @memberof
|
|
10924
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
10925
|
+
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10941
10926
|
*/
|
|
10942
|
-
'
|
|
10927
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
10943
10928
|
/**
|
|
10944
10929
|
*
|
|
10945
|
-
* @type {
|
|
10946
|
-
* @memberof
|
|
10930
|
+
* @type {IImage}
|
|
10931
|
+
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10947
10932
|
*/
|
|
10948
|
-
'
|
|
10933
|
+
'thumbnail'?: IImage;
|
|
10949
10934
|
/**
|
|
10950
10935
|
*
|
|
10951
|
-
* @type {
|
|
10952
|
-
* @memberof
|
|
10936
|
+
* @type {PageTypeEnum}
|
|
10937
|
+
* @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
|
|
10953
10938
|
*/
|
|
10954
|
-
'
|
|
10939
|
+
'type': PageTypeEnum;
|
|
10955
10940
|
}
|
|
10956
10941
|
/**
|
|
10957
10942
|
* From T, pick a set of properties whose keys are in the union K
|
|
10958
10943
|
* @export
|
|
10959
|
-
* @interface
|
|
10944
|
+
* @interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10960
10945
|
*/
|
|
10961
|
-
export interface
|
|
10946
|
+
export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields {
|
|
10962
10947
|
/**
|
|
10963
10948
|
*
|
|
10964
|
-
* @type {
|
|
10965
|
-
* @memberof
|
|
10949
|
+
* @type {string}
|
|
10950
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10966
10951
|
*/
|
|
10967
|
-
'
|
|
10952
|
+
'company': string;
|
|
10968
10953
|
/**
|
|
10969
10954
|
*
|
|
10970
|
-
* @type {
|
|
10971
|
-
* @memberof
|
|
10955
|
+
* @type {string}
|
|
10956
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10972
10957
|
*/
|
|
10973
|
-
'
|
|
10958
|
+
'_id': string;
|
|
10974
10959
|
/**
|
|
10975
10960
|
*
|
|
10976
|
-
* @type {
|
|
10977
|
-
* @memberof
|
|
10961
|
+
* @type {number}
|
|
10962
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10978
10963
|
*/
|
|
10979
|
-
'
|
|
10964
|
+
'__v': number;
|
|
10980
10965
|
/**
|
|
10981
10966
|
*
|
|
10982
|
-
* @type {
|
|
10983
|
-
* @memberof
|
|
10967
|
+
* @type {string}
|
|
10968
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10984
10969
|
*/
|
|
10985
|
-
'
|
|
10970
|
+
'createdAt': string;
|
|
10986
10971
|
/**
|
|
10987
10972
|
*
|
|
10988
|
-
* @type {
|
|
10989
|
-
* @memberof
|
|
10973
|
+
* @type {string}
|
|
10974
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10990
10975
|
*/
|
|
10991
|
-
'
|
|
10976
|
+
'updatedAt': string;
|
|
10992
10977
|
/**
|
|
10993
10978
|
*
|
|
10994
|
-
* @type {
|
|
10995
|
-
* @memberof
|
|
10979
|
+
* @type {number}
|
|
10980
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10996
10981
|
*/
|
|
10997
|
-
'
|
|
10982
|
+
'rating': number;
|
|
10998
10983
|
/**
|
|
10999
10984
|
*
|
|
11000
|
-
* @type {
|
|
11001
|
-
* @memberof
|
|
10985
|
+
* @type {number}
|
|
10986
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11002
10987
|
*/
|
|
11003
|
-
'
|
|
11004
|
-
}
|
|
11005
|
-
/**
|
|
11006
|
-
*
|
|
11007
|
-
* @export
|
|
11008
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11009
|
-
*/
|
|
11010
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig {
|
|
10988
|
+
'totalStock': number;
|
|
11011
10989
|
/**
|
|
11012
10990
|
*
|
|
11013
|
-
* @type {
|
|
11014
|
-
* @memberof
|
|
10991
|
+
* @type {number}
|
|
10992
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11015
10993
|
*/
|
|
11016
|
-
'
|
|
10994
|
+
'totalSale': number;
|
|
11017
10995
|
/**
|
|
11018
10996
|
*
|
|
11019
|
-
* @type {
|
|
11020
|
-
* @memberof
|
|
10997
|
+
* @type {boolean}
|
|
10998
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11021
10999
|
*/
|
|
11022
|
-
'
|
|
11000
|
+
'negativeStock'?: boolean;
|
|
11023
11001
|
/**
|
|
11024
11002
|
*
|
|
11025
|
-
* @type {string}
|
|
11026
|
-
* @memberof
|
|
11003
|
+
* @type {Array<string>}
|
|
11004
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11027
11005
|
*/
|
|
11028
|
-
'
|
|
11006
|
+
'collections': Array<string>;
|
|
11029
11007
|
/**
|
|
11030
|
-
*
|
|
11031
|
-
* @type {string}
|
|
11032
|
-
* @memberof
|
|
11008
|
+
* Construct a type with a set of properties K of type T
|
|
11009
|
+
* @type {{ [key: string]: string; }}
|
|
11010
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11033
11011
|
*/
|
|
11034
|
-
'
|
|
11012
|
+
'templates': {
|
|
11013
|
+
[key: string]: string;
|
|
11014
|
+
};
|
|
11035
11015
|
/**
|
|
11036
11016
|
*
|
|
11037
11017
|
* @type {string}
|
|
11038
|
-
* @memberof
|
|
11039
|
-
*/
|
|
11040
|
-
'url'?: string;
|
|
11041
|
-
/**
|
|
11042
|
-
*
|
|
11043
|
-
* @type {IImage}
|
|
11044
|
-
* @memberof PickITemplateComponentExcludeKeyofITemplateComponentContentsConfig
|
|
11018
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11045
11019
|
*/
|
|
11046
|
-
'
|
|
11020
|
+
'sku'?: string;
|
|
11047
11021
|
/**
|
|
11048
11022
|
*
|
|
11049
|
-
* @type {
|
|
11050
|
-
* @memberof
|
|
11023
|
+
* @type {string}
|
|
11024
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11051
11025
|
*/
|
|
11052
|
-
'
|
|
11026
|
+
'barcode'?: string;
|
|
11053
11027
|
/**
|
|
11054
11028
|
*
|
|
11055
|
-
* @type {
|
|
11056
|
-
* @memberof
|
|
11029
|
+
* @type {Array<IImage>}
|
|
11030
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11057
11031
|
*/
|
|
11058
|
-
'
|
|
11032
|
+
'photos': Array<IImage>;
|
|
11059
11033
|
/**
|
|
11060
11034
|
*
|
|
11061
|
-
* @type {string}
|
|
11062
|
-
* @memberof
|
|
11035
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
11036
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11063
11037
|
*/
|
|
11064
|
-
'
|
|
11038
|
+
'stock'?: {
|
|
11039
|
+
[key: string]: StockTypeValue;
|
|
11040
|
+
};
|
|
11065
11041
|
/**
|
|
11066
11042
|
*
|
|
11067
|
-
* @type {
|
|
11068
|
-
* @memberof
|
|
11043
|
+
* @type {PriceType}
|
|
11044
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11069
11045
|
*/
|
|
11070
|
-
'
|
|
11046
|
+
'priceInfo': PriceType;
|
|
11071
11047
|
/**
|
|
11072
11048
|
*
|
|
11073
|
-
* @type {
|
|
11074
|
-
* @memberof
|
|
11049
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11050
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11075
11051
|
*/
|
|
11076
|
-
'
|
|
11052
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11077
11053
|
/**
|
|
11078
11054
|
*
|
|
11079
|
-
* @type {
|
|
11080
|
-
* @memberof
|
|
11055
|
+
* @type {Array<string>}
|
|
11056
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11081
11057
|
*/
|
|
11082
|
-
'
|
|
11058
|
+
'slugs': Array<string>;
|
|
11083
11059
|
/**
|
|
11084
11060
|
*
|
|
11085
|
-
* @type {
|
|
11086
|
-
* @memberof
|
|
11061
|
+
* @type {Array<VariantType>}
|
|
11062
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11087
11063
|
*/
|
|
11088
|
-
'
|
|
11064
|
+
'variants'?: Array<VariantType>;
|
|
11089
11065
|
/**
|
|
11090
|
-
*
|
|
11091
|
-
* @type {
|
|
11092
|
-
* @memberof
|
|
11066
|
+
* Construct a type with a set of properties K of type T
|
|
11067
|
+
* @type {{ [key: string]: Array<IImage>; }}
|
|
11068
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11093
11069
|
*/
|
|
11094
|
-
'
|
|
11070
|
+
'mainVariantsPhotos'?: {
|
|
11071
|
+
[key: string]: Array<IImage>;
|
|
11072
|
+
};
|
|
11095
11073
|
/**
|
|
11096
11074
|
*
|
|
11097
|
-
* @type {
|
|
11098
|
-
* @memberof
|
|
11075
|
+
* @type {{ [key: string]: string; }}
|
|
11076
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11099
11077
|
*/
|
|
11100
|
-
'
|
|
11078
|
+
'attributes'?: {
|
|
11079
|
+
[key: string]: string;
|
|
11080
|
+
};
|
|
11101
11081
|
/**
|
|
11102
11082
|
*
|
|
11103
11083
|
* @type {number}
|
|
11104
|
-
* @memberof
|
|
11084
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11105
11085
|
*/
|
|
11106
|
-
'
|
|
11086
|
+
'reviewCount': number;
|
|
11107
11087
|
/**
|
|
11108
11088
|
*
|
|
11109
|
-
* @type {
|
|
11110
|
-
* @memberof
|
|
11089
|
+
* @type {IProductResponseReviewCounts}
|
|
11090
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
11111
11091
|
*/
|
|
11112
|
-
'
|
|
11092
|
+
'reviewCounts': IProductResponseReviewCounts;
|
|
11093
|
+
}
|
|
11094
|
+
/**
|
|
11095
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11096
|
+
* @export
|
|
11097
|
+
* @interface PickIProductIdOrContentsOrCollectionsOrCategory
|
|
11098
|
+
*/
|
|
11099
|
+
export interface PickIProductIdOrContentsOrCollectionsOrCategory {
|
|
11113
11100
|
/**
|
|
11114
11101
|
*
|
|
11115
|
-
* @type {
|
|
11116
|
-
* @memberof
|
|
11102
|
+
* @type {string}
|
|
11103
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
11117
11104
|
*/
|
|
11118
|
-
'
|
|
11105
|
+
'_id': string;
|
|
11119
11106
|
/**
|
|
11120
11107
|
*
|
|
11121
|
-
* @type {
|
|
11122
|
-
* @memberof
|
|
11108
|
+
* @type {string}
|
|
11109
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
11123
11110
|
*/
|
|
11124
|
-
'
|
|
11111
|
+
'category'?: string;
|
|
11125
11112
|
/**
|
|
11126
11113
|
*
|
|
11127
|
-
* @type {
|
|
11128
|
-
* @memberof
|
|
11114
|
+
* @type {Array<string>}
|
|
11115
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
11129
11116
|
*/
|
|
11130
|
-
'
|
|
11117
|
+
'collections': Array<string>;
|
|
11131
11118
|
/**
|
|
11132
11119
|
*
|
|
11133
|
-
* @type {
|
|
11134
|
-
* @memberof
|
|
11120
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11121
|
+
* @memberof PickIProductIdOrContentsOrCollectionsOrCategory
|
|
11135
11122
|
*/
|
|
11136
|
-
'
|
|
11123
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11124
|
+
}
|
|
11125
|
+
/**
|
|
11126
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11127
|
+
* @export
|
|
11128
|
+
* @interface PickIProductIdOrContentsOrTotalSale
|
|
11129
|
+
*/
|
|
11130
|
+
export interface PickIProductIdOrContentsOrTotalSale {
|
|
11137
11131
|
/**
|
|
11138
11132
|
*
|
|
11139
|
-
* @type {
|
|
11140
|
-
* @memberof
|
|
11133
|
+
* @type {string}
|
|
11134
|
+
* @memberof PickIProductIdOrContentsOrTotalSale
|
|
11141
11135
|
*/
|
|
11142
|
-
'
|
|
11136
|
+
'_id': string;
|
|
11143
11137
|
/**
|
|
11144
11138
|
*
|
|
11145
|
-
* @type {
|
|
11146
|
-
* @memberof
|
|
11139
|
+
* @type {number}
|
|
11140
|
+
* @memberof PickIProductIdOrContentsOrTotalSale
|
|
11147
11141
|
*/
|
|
11148
|
-
'
|
|
11142
|
+
'totalSale': number;
|
|
11149
11143
|
/**
|
|
11150
11144
|
*
|
|
11151
|
-
* @type {
|
|
11152
|
-
* @memberof
|
|
11145
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11146
|
+
* @memberof PickIProductIdOrContentsOrTotalSale
|
|
11153
11147
|
*/
|
|
11154
|
-
'
|
|
11148
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11149
|
+
}
|
|
11150
|
+
/**
|
|
11151
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11152
|
+
* @export
|
|
11153
|
+
* @interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11154
|
+
*/
|
|
11155
|
+
export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields {
|
|
11155
11156
|
/**
|
|
11156
11157
|
*
|
|
11157
|
-
* @type {
|
|
11158
|
-
* @memberof
|
|
11158
|
+
* @type {string}
|
|
11159
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11159
11160
|
*/
|
|
11160
|
-
'
|
|
11161
|
+
'company': string;
|
|
11161
11162
|
/**
|
|
11162
11163
|
*
|
|
11163
|
-
* @type {
|
|
11164
|
-
* @memberof
|
|
11164
|
+
* @type {boolean}
|
|
11165
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11165
11166
|
*/
|
|
11166
|
-
'
|
|
11167
|
+
'negativeStock'?: boolean;
|
|
11167
11168
|
/**
|
|
11168
11169
|
*
|
|
11169
|
-
* @type {
|
|
11170
|
-
* @memberof
|
|
11170
|
+
* @type {Array<string>}
|
|
11171
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11171
11172
|
*/
|
|
11172
|
-
'
|
|
11173
|
+
'collections': Array<string>;
|
|
11173
11174
|
/**
|
|
11174
11175
|
*
|
|
11175
|
-
* @type {
|
|
11176
|
-
* @memberof
|
|
11176
|
+
* @type {string}
|
|
11177
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11177
11178
|
*/
|
|
11178
|
-
'
|
|
11179
|
+
'sku'?: string;
|
|
11179
11180
|
/**
|
|
11180
11181
|
*
|
|
11181
|
-
* @type {
|
|
11182
|
-
* @memberof
|
|
11182
|
+
* @type {string}
|
|
11183
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11183
11184
|
*/
|
|
11184
|
-
'
|
|
11185
|
+
'barcode'?: string;
|
|
11185
11186
|
/**
|
|
11186
11187
|
*
|
|
11187
|
-
* @type {
|
|
11188
|
-
* @memberof
|
|
11188
|
+
* @type {Array<IImage>}
|
|
11189
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11189
11190
|
*/
|
|
11190
|
-
'
|
|
11191
|
+
'photos': Array<IImage>;
|
|
11191
11192
|
/**
|
|
11192
11193
|
*
|
|
11193
|
-
* @type {
|
|
11194
|
-
* @memberof
|
|
11194
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
11195
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11195
11196
|
*/
|
|
11196
|
-
'
|
|
11197
|
+
'stock'?: {
|
|
11198
|
+
[key: string]: StockTypeValue;
|
|
11199
|
+
};
|
|
11197
11200
|
/**
|
|
11198
11201
|
*
|
|
11199
|
-
* @type {
|
|
11200
|
-
* @memberof
|
|
11202
|
+
* @type {PriceType}
|
|
11203
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11201
11204
|
*/
|
|
11202
|
-
'
|
|
11205
|
+
'priceInfo': PriceType;
|
|
11203
11206
|
/**
|
|
11204
11207
|
*
|
|
11205
|
-
* @type {
|
|
11206
|
-
* @memberof
|
|
11208
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11209
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11207
11210
|
*/
|
|
11208
|
-
'
|
|
11211
|
+
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11209
11212
|
/**
|
|
11210
11213
|
*
|
|
11211
|
-
* @type {
|
|
11212
|
-
* @memberof
|
|
11214
|
+
* @type {Array<VariantType>}
|
|
11215
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11213
11216
|
*/
|
|
11214
|
-
'
|
|
11217
|
+
'variants'?: Array<VariantType>;
|
|
11215
11218
|
/**
|
|
11216
|
-
*
|
|
11217
|
-
* @type {Array<
|
|
11218
|
-
* @memberof
|
|
11219
|
+
* Construct a type with a set of properties K of type T
|
|
11220
|
+
* @type {{ [key: string]: Array<IImage>; }}
|
|
11221
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11219
11222
|
*/
|
|
11220
|
-
'
|
|
11223
|
+
'mainVariantsPhotos'?: {
|
|
11224
|
+
[key: string]: Array<IImage>;
|
|
11225
|
+
};
|
|
11221
11226
|
/**
|
|
11222
11227
|
*
|
|
11223
|
-
* @type {string}
|
|
11224
|
-
* @memberof
|
|
11228
|
+
* @type {{ [key: string]: string; }}
|
|
11229
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
11225
11230
|
*/
|
|
11226
|
-
'
|
|
11231
|
+
'attributes'?: {
|
|
11232
|
+
[key: string]: string;
|
|
11233
|
+
};
|
|
11234
|
+
}
|
|
11235
|
+
/**
|
|
11236
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11237
|
+
* @export
|
|
11238
|
+
* @interface PickIReviewExcludeKeyofIReviewProduct
|
|
11239
|
+
*/
|
|
11240
|
+
export interface PickIReviewExcludeKeyofIReviewProduct {
|
|
11227
11241
|
/**
|
|
11228
11242
|
*
|
|
11229
|
-
* @type {
|
|
11230
|
-
* @memberof
|
|
11243
|
+
* @type {string}
|
|
11244
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11231
11245
|
*/
|
|
11232
|
-
'
|
|
11246
|
+
'name': string;
|
|
11233
11247
|
/**
|
|
11234
11248
|
*
|
|
11235
|
-
* @type {
|
|
11236
|
-
* @memberof
|
|
11249
|
+
* @type {string}
|
|
11250
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11237
11251
|
*/
|
|
11238
|
-
'
|
|
11252
|
+
'company': string;
|
|
11239
11253
|
/**
|
|
11240
11254
|
*
|
|
11241
|
-
* @type {
|
|
11242
|
-
* @memberof
|
|
11255
|
+
* @type {ReviewStatusEnum}
|
|
11256
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11243
11257
|
*/
|
|
11244
|
-
'
|
|
11258
|
+
'status': ReviewStatusEnum;
|
|
11245
11259
|
/**
|
|
11246
11260
|
*
|
|
11247
|
-
* @type {
|
|
11248
|
-
* @memberof
|
|
11261
|
+
* @type {string}
|
|
11262
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11249
11263
|
*/
|
|
11250
|
-
'
|
|
11264
|
+
'_id': string;
|
|
11251
11265
|
/**
|
|
11252
11266
|
*
|
|
11253
11267
|
* @type {number}
|
|
11254
|
-
* @memberof
|
|
11268
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11255
11269
|
*/
|
|
11256
|
-
'
|
|
11270
|
+
'__v': number;
|
|
11257
11271
|
/**
|
|
11258
11272
|
*
|
|
11259
|
-
* @type {
|
|
11260
|
-
* @memberof
|
|
11273
|
+
* @type {string}
|
|
11274
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11261
11275
|
*/
|
|
11262
|
-
'
|
|
11276
|
+
'createdAt': string;
|
|
11263
11277
|
/**
|
|
11264
11278
|
*
|
|
11265
|
-
* @type {
|
|
11266
|
-
* @memberof
|
|
11279
|
+
* @type {string}
|
|
11280
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11267
11281
|
*/
|
|
11268
|
-
'
|
|
11282
|
+
'updatedAt': string;
|
|
11269
11283
|
/**
|
|
11270
11284
|
*
|
|
11271
|
-
* @type {
|
|
11272
|
-
* @memberof
|
|
11285
|
+
* @type {string}
|
|
11286
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11273
11287
|
*/
|
|
11274
|
-
'
|
|
11288
|
+
'user': string;
|
|
11275
11289
|
/**
|
|
11276
11290
|
*
|
|
11277
|
-
* @type {
|
|
11278
|
-
* @memberof
|
|
11291
|
+
* @type {string}
|
|
11292
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11279
11293
|
*/
|
|
11280
|
-
'
|
|
11281
|
-
}
|
|
11282
|
-
/**
|
|
11283
|
-
*
|
|
11284
|
-
* @export
|
|
11285
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsPages
|
|
11286
|
-
*/
|
|
11287
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsPages {
|
|
11294
|
+
'order': string;
|
|
11288
11295
|
/**
|
|
11289
11296
|
*
|
|
11290
|
-
* @type {
|
|
11291
|
-
* @memberof
|
|
11297
|
+
* @type {string}
|
|
11298
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11292
11299
|
*/
|
|
11293
|
-
'
|
|
11300
|
+
'relId': string;
|
|
11294
11301
|
/**
|
|
11295
11302
|
*
|
|
11296
|
-
* @type {
|
|
11297
|
-
* @memberof
|
|
11303
|
+
* @type {PartialRecordLanguageEnumString}
|
|
11304
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11298
11305
|
*/
|
|
11299
|
-
'
|
|
11300
|
-
}
|
|
11301
|
-
/**
|
|
11302
|
-
*
|
|
11303
|
-
* @export
|
|
11304
|
-
* @interface PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts
|
|
11305
|
-
*/
|
|
11306
|
-
export interface PickITemplateComponentExcludeKeyofITemplateComponentContentsProducts {
|
|
11306
|
+
'mainVariantTitle': PartialRecordLanguageEnumString;
|
|
11307
11307
|
/**
|
|
11308
11308
|
*
|
|
11309
|
-
* @type {
|
|
11310
|
-
* @memberof
|
|
11309
|
+
* @type {PartialRecordLanguageEnumString}
|
|
11310
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11311
11311
|
*/
|
|
11312
|
-
'
|
|
11312
|
+
'subVariantTitle': PartialRecordLanguageEnumString;
|
|
11313
11313
|
/**
|
|
11314
11314
|
*
|
|
11315
|
-
* @type {
|
|
11316
|
-
* @memberof
|
|
11315
|
+
* @type {string}
|
|
11316
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11317
11317
|
*/
|
|
11318
|
-
'
|
|
11318
|
+
'mainVariantId'?: string;
|
|
11319
11319
|
/**
|
|
11320
11320
|
*
|
|
11321
|
-
* @type {
|
|
11322
|
-
* @memberof
|
|
11321
|
+
* @type {string}
|
|
11322
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11323
11323
|
*/
|
|
11324
|
-
'
|
|
11324
|
+
'subVariantId'?: string;
|
|
11325
11325
|
/**
|
|
11326
11326
|
*
|
|
11327
|
-
* @type {
|
|
11328
|
-
* @memberof
|
|
11327
|
+
* @type {number}
|
|
11328
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11329
11329
|
*/
|
|
11330
|
-
'
|
|
11330
|
+
'rating': number;
|
|
11331
11331
|
/**
|
|
11332
11332
|
*
|
|
11333
11333
|
* @type {string}
|
|
11334
|
-
* @memberof
|
|
11334
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11335
11335
|
*/
|
|
11336
|
-
'
|
|
11336
|
+
'title': string;
|
|
11337
11337
|
/**
|
|
11338
11338
|
*
|
|
11339
|
-
* @type {
|
|
11340
|
-
* @memberof
|
|
11339
|
+
* @type {string}
|
|
11340
|
+
* @memberof PickIReviewExcludeKeyofIReviewProduct
|
|
11341
11341
|
*/
|
|
11342
|
-
'
|
|
11342
|
+
'comment': string;
|
|
11343
11343
|
}
|
|
11344
11344
|
/**
|
|
11345
11345
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -11416,10 +11416,10 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
11416
11416
|
'title': string;
|
|
11417
11417
|
/**
|
|
11418
11418
|
*
|
|
11419
|
-
* @type {
|
|
11419
|
+
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
11420
11420
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
11421
11421
|
*/
|
|
11422
|
-
'components':
|
|
11422
|
+
'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
|
|
11423
11423
|
/**
|
|
11424
11424
|
*
|
|
11425
11425
|
* @type {string}
|
|
@@ -12165,31 +12165,6 @@ export interface RecordCurrencyEnumNumber {
|
|
|
12165
12165
|
*/
|
|
12166
12166
|
'jpy': number;
|
|
12167
12167
|
}
|
|
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
12168
|
/**
|
|
12194
12169
|
* Construct a type with a set of properties K of type T
|
|
12195
12170
|
* @export
|