@infisale-client/api 1.3.4 → 1.3.6

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.
Files changed (2) hide show
  1. package/dist/api/api.d.ts +280 -106
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -999,12 +999,6 @@ export interface IBrandPatchRequest {
999
999
  * @memberof IBrandPatchRequest
1000
1000
  */
1001
1001
  'contents'?: PartialRecordLanguageEnumIContentsValue;
1002
- /**
1003
- *
1004
- * @type {IImage}
1005
- * @memberof IBrandPatchRequest
1006
- */
1007
- 'thumbnail'?: IImage;
1008
1002
  }
1009
1003
  /**
1010
1004
  *
@@ -1024,12 +1018,6 @@ export interface IBrandPostRequest {
1024
1018
  * @memberof IBrandPostRequest
1025
1019
  */
1026
1020
  'contents': PartialRecordLanguageEnumIContentsValue;
1027
- /**
1028
- *
1029
- * @type {IImage}
1030
- * @memberof IBrandPostRequest
1031
- */
1032
- 'thumbnail'?: IImage;
1033
1021
  }
1034
1022
  /**
1035
1023
  *
@@ -1063,16 +1051,64 @@ export interface IBrandResponse {
1063
1051
  'updatedAt': string;
1064
1052
  /**
1065
1053
  *
1066
- * @type {string}
1054
+ * @type {ContentStatusEnum}
1067
1055
  * @memberof IBrandResponse
1068
1056
  */
1069
- 'company': string;
1057
+ 'status': ContentStatusEnum;
1070
1058
  /**
1071
1059
  *
1072
1060
  * @type {IImage}
1073
1061
  * @memberof IBrandResponse
1074
1062
  */
1075
1063
  'thumbnail'?: IImage;
1064
+ /**
1065
+ *
1066
+ * @type {string}
1067
+ * @memberof IBrandResponse
1068
+ */
1069
+ 'content'?: string;
1070
+ /**
1071
+ *
1072
+ * @type {string}
1073
+ * @memberof IBrandResponse
1074
+ */
1075
+ 'slug': string;
1076
+ /**
1077
+ *
1078
+ * @type {Array<string>}
1079
+ * @memberof IBrandResponse
1080
+ */
1081
+ 'keywords'?: Array<string>;
1082
+ /**
1083
+ *
1084
+ * @type {string}
1085
+ * @memberof IBrandResponse
1086
+ */
1087
+ 'metaDescription'?: string;
1088
+ /**
1089
+ *
1090
+ * @type {string}
1091
+ * @memberof IBrandResponse
1092
+ */
1093
+ 'metaTitle'?: string;
1094
+ /**
1095
+ *
1096
+ * @type {string}
1097
+ * @memberof IBrandResponse
1098
+ */
1099
+ 'description'?: string;
1100
+ /**
1101
+ *
1102
+ * @type {string}
1103
+ * @memberof IBrandResponse
1104
+ */
1105
+ 'title': string;
1106
+ /**
1107
+ *
1108
+ * @type {string}
1109
+ * @memberof IBrandResponse
1110
+ */
1111
+ 'company': string;
1076
1112
  /**
1077
1113
  *
1078
1114
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1314,12 +1350,6 @@ export interface ICategoryPatchRequest {
1314
1350
  * @memberof ICategoryPatchRequest
1315
1351
  */
1316
1352
  'contents'?: PartialRecordLanguageEnumIContentsValue;
1317
- /**
1318
- *
1319
- * @type {IImage}
1320
- * @memberof ICategoryPatchRequest
1321
- */
1322
- 'thumbnail'?: IImage;
1323
1353
  /**
1324
1354
  *
1325
1355
  * @type {string}
@@ -1345,12 +1375,6 @@ export interface ICategoryPostRequest {
1345
1375
  * @memberof ICategoryPostRequest
1346
1376
  */
1347
1377
  'contents': PartialRecordLanguageEnumIContentsValue;
1348
- /**
1349
- *
1350
- * @type {IImage}
1351
- * @memberof ICategoryPostRequest
1352
- */
1353
- 'thumbnail'?: IImage;
1354
1378
  /**
1355
1379
  *
1356
1380
  * @type {string}
@@ -1424,6 +1448,54 @@ export interface ICategoryResponse {
1424
1448
  * @memberof ICategoryResponse
1425
1449
  */
1426
1450
  'main'?: string;
1451
+ /**
1452
+ *
1453
+ * @type {ContentStatusEnum}
1454
+ * @memberof ICategoryResponse
1455
+ */
1456
+ 'status': ContentStatusEnum;
1457
+ /**
1458
+ *
1459
+ * @type {string}
1460
+ * @memberof ICategoryResponse
1461
+ */
1462
+ 'content'?: string;
1463
+ /**
1464
+ *
1465
+ * @type {string}
1466
+ * @memberof ICategoryResponse
1467
+ */
1468
+ 'slug': string;
1469
+ /**
1470
+ *
1471
+ * @type {Array<string>}
1472
+ * @memberof ICategoryResponse
1473
+ */
1474
+ 'keywords'?: Array<string>;
1475
+ /**
1476
+ *
1477
+ * @type {string}
1478
+ * @memberof ICategoryResponse
1479
+ */
1480
+ 'metaDescription'?: string;
1481
+ /**
1482
+ *
1483
+ * @type {string}
1484
+ * @memberof ICategoryResponse
1485
+ */
1486
+ 'metaTitle'?: string;
1487
+ /**
1488
+ *
1489
+ * @type {string}
1490
+ * @memberof ICategoryResponse
1491
+ */
1492
+ 'description'?: string;
1493
+ /**
1494
+ *
1495
+ * @type {string}
1496
+ * @memberof ICategoryResponse
1497
+ */
1498
+ 'title': string;
1427
1499
  /**
1428
1500
  *
1429
1501
  * @type {Array<ICategoryResponseAttributesInner>}
@@ -1688,12 +1760,6 @@ export interface ICollectionPatchRequest {
1688
1760
  * @memberof ICollectionPatchRequest
1689
1761
  */
1690
1762
  'contents'?: PartialRecordLanguageEnumIContentsValue;
1691
- /**
1692
- *
1693
- * @type {IImage}
1694
- * @memberof ICollectionPatchRequest
1695
- */
1696
- 'thumbnail'?: IImage;
1697
1763
  }
1698
1764
  /**
1699
1765
  *
@@ -1713,12 +1779,6 @@ export interface ICollectionPostRequest {
1713
1779
  * @memberof ICollectionPostRequest
1714
1780
  */
1715
1781
  'contents': PartialRecordLanguageEnumIContentsValue;
1716
- /**
1717
- *
1718
- * @type {IImage}
1719
- * @memberof ICollectionPostRequest
1720
- */
1721
- 'thumbnail'?: IImage;
1722
1782
  /**
1723
1783
  *
1724
1784
  * @type {ITemplateResponse}
@@ -1788,6 +1848,54 @@ export interface ICollectionResponse {
1788
1848
  'templates': {
1789
1849
  [key: string]: string;
1790
1850
  };
1851
+ /**
1852
+ *
1853
+ * @type {ContentStatusEnum}
1854
+ * @memberof ICollectionResponse
1855
+ */
1856
+ 'status': ContentStatusEnum;
1857
+ /**
1858
+ *
1859
+ * @type {string}
1860
+ * @memberof ICollectionResponse
1861
+ */
1862
+ 'content'?: string;
1863
+ /**
1864
+ *
1865
+ * @type {string}
1866
+ * @memberof ICollectionResponse
1867
+ */
1868
+ 'slug': string;
1869
+ /**
1870
+ *
1871
+ * @type {Array<string>}
1872
+ * @memberof ICollectionResponse
1873
+ */
1874
+ 'keywords'?: Array<string>;
1875
+ /**
1876
+ *
1877
+ * @type {string}
1878
+ * @memberof ICollectionResponse
1879
+ */
1880
+ 'metaDescription'?: string;
1881
+ /**
1882
+ *
1883
+ * @type {string}
1884
+ * @memberof ICollectionResponse
1885
+ */
1886
+ 'metaTitle'?: string;
1887
+ /**
1888
+ *
1889
+ * @type {string}
1890
+ * @memberof ICollectionResponse
1891
+ */
1892
+ 'description'?: string;
1893
+ /**
1894
+ *
1895
+ * @type {string}
1896
+ * @memberof ICollectionResponse
1897
+ */
1898
+ 'title': string;
1791
1899
  /**
1792
1900
  *
1793
1901
  * @type {ITemplateResponse}
@@ -6147,12 +6255,6 @@ export interface IPagePatchRequest {
6147
6255
  * @memberof IPagePatchRequest
6148
6256
  */
6149
6257
  'contents'?: PartialRecordLanguageEnumIContentsValue;
6150
- /**
6151
- *
6152
- * @type {IImage}
6153
- * @memberof IPagePatchRequest
6154
- */
6155
- 'thumbnail'?: IImage;
6156
6258
  /**
6157
6259
  *
6158
6260
  * @type {PageTypeEnum}
@@ -6178,12 +6280,6 @@ export interface IPagePostRequest {
6178
6280
  * @memberof IPagePostRequest
6179
6281
  */
6180
6282
  'contents': PartialRecordLanguageEnumIContentsValue;
6181
- /**
6182
- *
6183
- * @type {IImage}
6184
- * @memberof IPagePostRequest
6185
- */
6186
- 'thumbnail'?: IImage;
6187
6283
  /**
6188
6284
  *
6189
6285
  * @type {PageTypeEnum}
@@ -6265,6 +6361,54 @@ export interface IPageResponse {
6265
6361
  * @memberof IPageResponse
6266
6362
  */
6267
6363
  'type': PageTypeEnum;
6364
+ /**
6365
+ *
6366
+ * @type {ContentStatusEnum}
6367
+ * @memberof IPageResponse
6368
+ */
6369
+ 'status': ContentStatusEnum;
6370
+ /**
6371
+ *
6372
+ * @type {string}
6373
+ * @memberof IPageResponse
6374
+ */
6375
+ 'content'?: string;
6376
+ /**
6377
+ *
6378
+ * @type {string}
6379
+ * @memberof IPageResponse
6380
+ */
6381
+ 'slug': string;
6382
+ /**
6383
+ *
6384
+ * @type {Array<string>}
6385
+ * @memberof IPageResponse
6386
+ */
6387
+ 'keywords'?: Array<string>;
6388
+ /**
6389
+ *
6390
+ * @type {string}
6391
+ * @memberof IPageResponse
6392
+ */
6393
+ 'metaDescription'?: string;
6394
+ /**
6395
+ *
6396
+ * @type {string}
6397
+ * @memberof IPageResponse
6398
+ */
6399
+ 'metaTitle'?: string;
6400
+ /**
6401
+ *
6402
+ * @type {string}
6403
+ * @memberof IPageResponse
6404
+ */
6405
+ 'description'?: string;
6406
+ /**
6407
+ *
6408
+ * @type {string}
6409
+ * @memberof IPageResponse
6410
+ */
6411
+ 'title': string;
6268
6412
  /**
6269
6413
  *
6270
6414
  * @type {ITemplateResponse}
@@ -7254,6 +7398,60 @@ export interface IProductResponse {
7254
7398
  * @memberof IProductResponse
7255
7399
  */
7256
7400
  'reviewCounts': IProductResponseReviewCounts;
7401
+ /**
7402
+ *
7403
+ * @type {ContentStatusEnum}
7404
+ * @memberof IProductResponse
7405
+ */
7406
+ 'status': ContentStatusEnum;
7407
+ /**
7408
+ *
7409
+ * @type {IImage}
7410
+ * @memberof IProductResponse
7411
+ */
7412
+ 'thumbnail'?: IImage;
7413
+ /**
7414
+ *
7415
+ * @type {string}
7416
+ * @memberof IProductResponse
7417
+ */
7418
+ 'content'?: string;
7419
+ /**
7420
+ *
7421
+ * @type {string}
7422
+ * @memberof IProductResponse
7423
+ */
7424
+ 'slug': string;
7425
+ /**
7426
+ *
7427
+ * @type {Array<string>}
7428
+ * @memberof IProductResponse
7429
+ */
7430
+ 'keywords'?: Array<string>;
7431
+ /**
7432
+ *
7433
+ * @type {string}
7434
+ * @memberof IProductResponse
7435
+ */
7436
+ 'metaDescription'?: string;
7437
+ /**
7438
+ *
7439
+ * @type {string}
7440
+ * @memberof IProductResponse
7441
+ */
7442
+ 'metaTitle'?: string;
7443
+ /**
7444
+ *
7445
+ * @type {string}
7446
+ * @memberof IProductResponse
7447
+ */
7448
+ 'description'?: string;
7449
+ /**
7450
+ *
7451
+ * @type {string}
7452
+ * @memberof IProductResponse
7453
+ */
7454
+ 'title': string;
7257
7455
  /**
7258
7456
  *
7259
7457
  * @type {IBrandResponse}
@@ -9171,27 +9369,21 @@ export interface PickIBasketExcludeKeyofIBasketItems {
9171
9369
  /**
9172
9370
  * From T, pick a set of properties whose keys are in the union K
9173
9371
  * @export
9174
- * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9372
+ * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
9175
9373
  */
9176
- export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs {
9374
+ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
9177
9375
  /**
9178
9376
  *
9179
9377
  * @type {string}
9180
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9378
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
9181
9379
  */
9182
9380
  'company': string;
9183
9381
  /**
9184
9382
  *
9185
9383
  * @type {PartialRecordLanguageEnumIContentsValue}
9186
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9384
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
9187
9385
  */
9188
9386
  'contents': PartialRecordLanguageEnumIContentsValue;
9189
- /**
9190
- *
9191
- * @type {IImage}
9192
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9193
- */
9194
- 'thumbnail'?: IImage;
9195
9387
  }
9196
9388
  /**
9197
9389
  * From T, pick a set of properties whose keys are in the union K
@@ -9257,31 +9449,25 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
9257
9449
  /**
9258
9450
  * From T, pick a set of properties whose keys are in the union K
9259
9451
  * @export
9260
- * @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9452
+ * @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
9261
9453
  */
9262
- export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs {
9454
+ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue {
9263
9455
  /**
9264
9456
  *
9265
9457
  * @type {string}
9266
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9458
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
9267
9459
  */
9268
9460
  'company': string;
9269
9461
  /**
9270
9462
  *
9271
9463
  * @type {PartialRecordLanguageEnumIContentsValue}
9272
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9464
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
9273
9465
  */
9274
9466
  'contents': PartialRecordLanguageEnumIContentsValue;
9275
- /**
9276
- *
9277
- * @type {IImage}
9278
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9279
- */
9280
- 'thumbnail'?: IImage;
9281
9467
  /**
9282
9468
  *
9283
9469
  * @type {string}
9284
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9470
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
9285
9471
  */
9286
9472
  'main'?: string;
9287
9473
  }
@@ -9392,27 +9578,21 @@ export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDate
9392
9578
  /**
9393
9579
  * From T, pick a set of properties whose keys are in the union K
9394
9580
  * @export
9395
- * @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9581
+ * @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
9396
9582
  */
9397
- export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
9583
+ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue {
9398
9584
  /**
9399
9585
  *
9400
9586
  * @type {string}
9401
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9587
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
9402
9588
  */
9403
9589
  'company': string;
9404
9590
  /**
9405
9591
  *
9406
9592
  * @type {PartialRecordLanguageEnumIContentsValue}
9407
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9593
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
9408
9594
  */
9409
9595
  'contents': PartialRecordLanguageEnumIContentsValue;
9410
- /**
9411
- *
9412
- * @type {IImage}
9413
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9414
- */
9415
- 'thumbnail'?: IImage;
9416
9596
  }
9417
9597
  /**
9418
9598
  * From T, pick a set of properties whose keys are in the union K
@@ -10439,31 +10619,25 @@ export interface PickIPageExcludeKeyofIPageTemplate {
10439
10619
  /**
10440
10620
  * From T, pick a set of properties whose keys are in the union K
10441
10621
  * @export
10442
- * @interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10622
+ * @interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10443
10623
  */
10444
- export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
10624
+ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue {
10445
10625
  /**
10446
10626
  *
10447
10627
  * @type {string}
10448
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10628
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10449
10629
  */
10450
10630
  'company': string;
10451
10631
  /**
10452
10632
  *
10453
10633
  * @type {PartialRecordLanguageEnumIContentsValue}
10454
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10634
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10455
10635
  */
10456
10636
  'contents': PartialRecordLanguageEnumIContentsValue;
10457
- /**
10458
- *
10459
- * @type {IImage}
10460
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10461
- */
10462
- 'thumbnail'?: IImage;
10463
10637
  /**
10464
10638
  *
10465
10639
  * @type {PageTypeEnum}
10466
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10640
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10467
10641
  */
10468
10642
  'type': PageTypeEnum;
10469
10643
  }
@@ -10679,49 +10853,49 @@ export interface PickIProductIdOrContentsOrTotalSale {
10679
10853
  /**
10680
10854
  * From T, pick a set of properties whose keys are in the union K
10681
10855
  * @export
10682
- * @interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10856
+ * @interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10683
10857
  */
10684
- export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields {
10858
+ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue {
10685
10859
  /**
10686
10860
  *
10687
10861
  * @type {string}
10688
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10862
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10689
10863
  */
10690
10864
  'company': string;
10691
10865
  /**
10692
10866
  *
10693
10867
  * @type {boolean}
10694
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10868
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10695
10869
  */
10696
10870
  'negativeStock'?: boolean;
10697
10871
  /**
10698
10872
  *
10699
10873
  * @type {Array<string>}
10700
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10874
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10701
10875
  */
10702
10876
  'collections': Array<string>;
10703
10877
  /**
10704
10878
  *
10705
10879
  * @type {string}
10706
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10880
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10707
10881
  */
10708
10882
  'sku'?: string;
10709
10883
  /**
10710
10884
  *
10711
10885
  * @type {string}
10712
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10886
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10713
10887
  */
10714
10888
  'barcode'?: string;
10715
10889
  /**
10716
10890
  *
10717
10891
  * @type {Array<IImage>}
10718
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10892
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10719
10893
  */
10720
10894
  'photos': Array<IImage>;
10721
10895
  /**
10722
10896
  *
10723
10897
  * @type {{ [key: string]: StockTypeValue; }}
10724
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10898
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10725
10899
  */
10726
10900
  'stock'?: {
10727
10901
  [key: string]: StockTypeValue;
@@ -10729,25 +10903,25 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
10729
10903
  /**
10730
10904
  *
10731
10905
  * @type {PriceType}
10732
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10906
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10733
10907
  */
10734
10908
  'priceInfo': PriceType;
10735
10909
  /**
10736
10910
  *
10737
10911
  * @type {PartialRecordLanguageEnumIContentsValue}
10738
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10912
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10739
10913
  */
10740
10914
  'contents': PartialRecordLanguageEnumIContentsValue;
10741
10915
  /**
10742
10916
  *
10743
10917
  * @type {Array<VariantType>}
10744
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10918
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10745
10919
  */
10746
10920
  'variants'?: Array<VariantType>;
10747
10921
  /**
10748
10922
  * Construct a type with a set of properties K of type T
10749
10923
  * @type {{ [key: string]: Array<IImage>; }}
10750
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10924
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10751
10925
  */
10752
10926
  'mainVariantsPhotos'?: {
10753
10927
  [key: string]: Array<IImage>;
@@ -10755,7 +10929,7 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
10755
10929
  /**
10756
10930
  *
10757
10931
  * @type {{ [key: string]: string; }}
10758
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10932
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
10759
10933
  */
10760
10934
  'attributes'?: {
10761
10935
  [key: string]: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "api-sdk",
5
5
  "author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
6
6
  "homepage": "https://github.com/infisale/infisale-client#readme",
@@ -37,5 +37,5 @@
37
37
  "bugs": {
38
38
  "url": "https://github.com/infisale/infisale-client/issues"
39
39
  },
40
- "gitHead": "4599e1c74c444958c9e0839c9dbbff567a7184d7"
40
+ "gitHead": "8cf386dcdce01acea4ce20ddbcd6a3b6805ea3cc"
41
41
  }