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