@infisale-client/api 1.3.5 → 1.3.7

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/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ## Usage
6
6
 
7
7
  ```
8
- const api = require('api');
8
+ const api = require('api');
9
9
 
10
10
  // TODO: DEMONSTRATE API
11
11
  ```
package/dist/api/api.d.ts CHANGED
@@ -993,18 +993,6 @@ export type IBrandCollectionQueryParamsDateFieldEnum = typeof IBrandCollectionQu
993
993
  * @interface IBrandPatchRequest
994
994
  */
995
995
  export interface IBrandPatchRequest {
996
- /**
997
- *
998
- * @type {ContentStatusEnum}
999
- * @memberof IBrandPatchRequest
1000
- */
1001
- 'status'?: ContentStatusEnum;
1002
- /**
1003
- *
1004
- * @type {string}
1005
- * @memberof IBrandPatchRequest
1006
- */
1007
- 'title'?: string;
1008
996
  /**
1009
997
  *
1010
998
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1017,42 +1005,6 @@ export interface IBrandPatchRequest {
1017
1005
  * @memberof IBrandPatchRequest
1018
1006
  */
1019
1007
  'thumbnail'?: IImage;
1020
- /**
1021
- *
1022
- * @type {string}
1023
- * @memberof IBrandPatchRequest
1024
- */
1025
- 'description'?: string;
1026
- /**
1027
- *
1028
- * @type {string}
1029
- * @memberof IBrandPatchRequest
1030
- */
1031
- 'metaTitle'?: string;
1032
- /**
1033
- *
1034
- * @type {string}
1035
- * @memberof IBrandPatchRequest
1036
- */
1037
- 'metaDescription'?: string;
1038
- /**
1039
- *
1040
- * @type {Array<string>}
1041
- * @memberof IBrandPatchRequest
1042
- */
1043
- 'keywords'?: Array<string>;
1044
- /**
1045
- *
1046
- * @type {string}
1047
- * @memberof IBrandPatchRequest
1048
- */
1049
- 'slug'?: string;
1050
- /**
1051
- *
1052
- * @type {string}
1053
- * @memberof IBrandPatchRequest
1054
- */
1055
- 'content'?: string;
1056
1008
  }
1057
1009
  /**
1058
1010
  *
@@ -1066,18 +1018,6 @@ export interface IBrandPostRequest {
1066
1018
  * @memberof IBrandPostRequest
1067
1019
  */
1068
1020
  'company': string;
1069
- /**
1070
- *
1071
- * @type {ContentStatusEnum}
1072
- * @memberof IBrandPostRequest
1073
- */
1074
- 'status': ContentStatusEnum;
1075
- /**
1076
- *
1077
- * @type {string}
1078
- * @memberof IBrandPostRequest
1079
- */
1080
- 'title': string;
1081
1021
  /**
1082
1022
  *
1083
1023
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1090,42 +1030,6 @@ export interface IBrandPostRequest {
1090
1030
  * @memberof IBrandPostRequest
1091
1031
  */
1092
1032
  'thumbnail'?: IImage;
1093
- /**
1094
- *
1095
- * @type {string}
1096
- * @memberof IBrandPostRequest
1097
- */
1098
- 'description'?: string;
1099
- /**
1100
- *
1101
- * @type {string}
1102
- * @memberof IBrandPostRequest
1103
- */
1104
- 'metaTitle'?: string;
1105
- /**
1106
- *
1107
- * @type {string}
1108
- * @memberof IBrandPostRequest
1109
- */
1110
- 'metaDescription'?: string;
1111
- /**
1112
- *
1113
- * @type {Array<string>}
1114
- * @memberof IBrandPostRequest
1115
- */
1116
- 'keywords'?: Array<string>;
1117
- /**
1118
- *
1119
- * @type {string}
1120
- * @memberof IBrandPostRequest
1121
- */
1122
- 'slug': string;
1123
- /**
1124
- *
1125
- * @type {string}
1126
- * @memberof IBrandPostRequest
1127
- */
1128
- 'content'?: string;
1129
1033
  }
1130
1034
  /**
1131
1035
  *
@@ -1163,12 +1067,6 @@ export interface IBrandResponse {
1163
1067
  * @memberof IBrandResponse
1164
1068
  */
1165
1069
  'status': ContentStatusEnum;
1166
- /**
1167
- *
1168
- * @type {IImage}
1169
- * @memberof IBrandResponse
1170
- */
1171
- 'thumbnail'?: IImage;
1172
1070
  /**
1173
1071
  *
1174
1072
  * @type {string}
@@ -1217,6 +1115,12 @@ export interface IBrandResponse {
1217
1115
  * @memberof IBrandResponse
1218
1116
  */
1219
1117
  'company': string;
1118
+ /**
1119
+ *
1120
+ * @type {IImage}
1121
+ * @memberof IBrandResponse
1122
+ */
1123
+ 'thumbnail'?: IImage;
1220
1124
  /**
1221
1125
  *
1222
1126
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1452,18 +1356,6 @@ export interface ICategoryPatchRequest {
1452
1356
  * @memberof ICategoryPatchRequest
1453
1357
  */
1454
1358
  'company'?: string;
1455
- /**
1456
- *
1457
- * @type {ContentStatusEnum}
1458
- * @memberof ICategoryPatchRequest
1459
- */
1460
- 'status'?: ContentStatusEnum;
1461
- /**
1462
- *
1463
- * @type {string}
1464
- * @memberof ICategoryPatchRequest
1465
- */
1466
- 'title'?: string;
1467
1359
  /**
1468
1360
  *
1469
1361
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1482,42 +1374,6 @@ export interface ICategoryPatchRequest {
1482
1374
  * @memberof ICategoryPatchRequest
1483
1375
  */
1484
1376
  'main'?: string;
1485
- /**
1486
- *
1487
- * @type {string}
1488
- * @memberof ICategoryPatchRequest
1489
- */
1490
- 'description'?: string;
1491
- /**
1492
- *
1493
- * @type {string}
1494
- * @memberof ICategoryPatchRequest
1495
- */
1496
- 'metaTitle'?: string;
1497
- /**
1498
- *
1499
- * @type {string}
1500
- * @memberof ICategoryPatchRequest
1501
- */
1502
- 'metaDescription'?: string;
1503
- /**
1504
- *
1505
- * @type {Array<string>}
1506
- * @memberof ICategoryPatchRequest
1507
- */
1508
- 'keywords'?: Array<string>;
1509
- /**
1510
- *
1511
- * @type {string}
1512
- * @memberof ICategoryPatchRequest
1513
- */
1514
- 'slug'?: string;
1515
- /**
1516
- *
1517
- * @type {string}
1518
- * @memberof ICategoryPatchRequest
1519
- */
1520
- 'content'?: string;
1521
1377
  }
1522
1378
  /**
1523
1379
  *
@@ -1531,18 +1387,6 @@ export interface ICategoryPostRequest {
1531
1387
  * @memberof ICategoryPostRequest
1532
1388
  */
1533
1389
  'company': string;
1534
- /**
1535
- *
1536
- * @type {ContentStatusEnum}
1537
- * @memberof ICategoryPostRequest
1538
- */
1539
- 'status': ContentStatusEnum;
1540
- /**
1541
- *
1542
- * @type {string}
1543
- * @memberof ICategoryPostRequest
1544
- */
1545
- 'title': string;
1546
1390
  /**
1547
1391
  *
1548
1392
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -1561,42 +1405,6 @@ export interface ICategoryPostRequest {
1561
1405
  * @memberof ICategoryPostRequest
1562
1406
  */
1563
1407
  'main'?: string;
1564
- /**
1565
- *
1566
- * @type {string}
1567
- * @memberof ICategoryPostRequest
1568
- */
1569
- 'description'?: string;
1570
- /**
1571
- *
1572
- * @type {string}
1573
- * @memberof ICategoryPostRequest
1574
- */
1575
- 'metaTitle'?: string;
1576
- /**
1577
- *
1578
- * @type {string}
1579
- * @memberof ICategoryPostRequest
1580
- */
1581
- 'metaDescription'?: string;
1582
- /**
1583
- *
1584
- * @type {Array<string>}
1585
- * @memberof ICategoryPostRequest
1586
- */
1587
- 'keywords'?: Array<string>;
1588
- /**
1589
- *
1590
- * @type {string}
1591
- * @memberof ICategoryPostRequest
1592
- */
1593
- 'slug': string;
1594
- /**
1595
- *
1596
- * @type {string}
1597
- * @memberof ICategoryPostRequest
1598
- */
1599
- 'content'?: string;
1600
1408
  /**
1601
1409
  *
1602
1410
  * @type {Array<ICategoryAttributesResponseAttributesInner>}
@@ -1964,18 +1772,6 @@ export type ICollectionCollectionsQueryParamsDateFieldEnum = typeof ICollectionC
1964
1772
  * @interface ICollectionPatchRequest
1965
1773
  */
1966
1774
  export interface ICollectionPatchRequest {
1967
- /**
1968
- *
1969
- * @type {ContentStatusEnum}
1970
- * @memberof ICollectionPatchRequest
1971
- */
1972
- 'status'?: ContentStatusEnum;
1973
- /**
1974
- *
1975
- * @type {string}
1976
- * @memberof ICollectionPatchRequest
1977
- */
1978
- 'title'?: string;
1979
1775
  /**
1980
1776
  *
1981
1777
  * @type {ITemplateResponse}
@@ -1994,42 +1790,6 @@ export interface ICollectionPatchRequest {
1994
1790
  * @memberof ICollectionPatchRequest
1995
1791
  */
1996
1792
  'thumbnail'?: IImage;
1997
- /**
1998
- *
1999
- * @type {string}
2000
- * @memberof ICollectionPatchRequest
2001
- */
2002
- 'description'?: string;
2003
- /**
2004
- *
2005
- * @type {string}
2006
- * @memberof ICollectionPatchRequest
2007
- */
2008
- 'metaTitle'?: string;
2009
- /**
2010
- *
2011
- * @type {string}
2012
- * @memberof ICollectionPatchRequest
2013
- */
2014
- 'metaDescription'?: string;
2015
- /**
2016
- *
2017
- * @type {Array<string>}
2018
- * @memberof ICollectionPatchRequest
2019
- */
2020
- 'keywords'?: Array<string>;
2021
- /**
2022
- *
2023
- * @type {string}
2024
- * @memberof ICollectionPatchRequest
2025
- */
2026
- 'slug'?: string;
2027
- /**
2028
- *
2029
- * @type {string}
2030
- * @memberof ICollectionPatchRequest
2031
- */
2032
- 'content'?: string;
2033
1793
  }
2034
1794
  /**
2035
1795
  *
@@ -2043,18 +1803,6 @@ export interface ICollectionPostRequest {
2043
1803
  * @memberof ICollectionPostRequest
2044
1804
  */
2045
1805
  'company': string;
2046
- /**
2047
- *
2048
- * @type {ContentStatusEnum}
2049
- * @memberof ICollectionPostRequest
2050
- */
2051
- 'status': ContentStatusEnum;
2052
- /**
2053
- *
2054
- * @type {string}
2055
- * @memberof ICollectionPostRequest
2056
- */
2057
- 'title': string;
2058
1806
  /**
2059
1807
  *
2060
1808
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -2067,42 +1815,6 @@ export interface ICollectionPostRequest {
2067
1815
  * @memberof ICollectionPostRequest
2068
1816
  */
2069
1817
  'thumbnail'?: IImage;
2070
- /**
2071
- *
2072
- * @type {string}
2073
- * @memberof ICollectionPostRequest
2074
- */
2075
- 'description'?: string;
2076
- /**
2077
- *
2078
- * @type {string}
2079
- * @memberof ICollectionPostRequest
2080
- */
2081
- 'metaTitle'?: string;
2082
- /**
2083
- *
2084
- * @type {string}
2085
- * @memberof ICollectionPostRequest
2086
- */
2087
- 'metaDescription'?: string;
2088
- /**
2089
- *
2090
- * @type {Array<string>}
2091
- * @memberof ICollectionPostRequest
2092
- */
2093
- 'keywords'?: Array<string>;
2094
- /**
2095
- *
2096
- * @type {string}
2097
- * @memberof ICollectionPostRequest
2098
- */
2099
- 'slug': string;
2100
- /**
2101
- *
2102
- * @type {string}
2103
- * @memberof ICollectionPostRequest
2104
- */
2105
- 'content'?: string;
2106
1818
  /**
2107
1819
  *
2108
1820
  * @type {ITemplateResponse}
@@ -4654,12 +4366,6 @@ export interface IContentsValue {
4654
4366
  * @memberof IContentsValue
4655
4367
  */
4656
4368
  'status': ContentStatusEnum;
4657
- /**
4658
- *
4659
- * @type {IImage}
4660
- * @memberof IContentsValue
4661
- */
4662
- 'thumbnail'?: IImage;
4663
4369
  /**
4664
4370
  *
4665
4371
  * @type {string}
@@ -6567,18 +6273,6 @@ export interface IPageGetAllQueryParams {
6567
6273
  * @interface IPagePatchRequest
6568
6274
  */
6569
6275
  export interface IPagePatchRequest {
6570
- /**
6571
- *
6572
- * @type {ContentStatusEnum}
6573
- * @memberof IPagePatchRequest
6574
- */
6575
- 'status'?: ContentStatusEnum;
6576
- /**
6577
- *
6578
- * @type {string}
6579
- * @memberof IPagePatchRequest
6580
- */
6581
- 'title'?: string;
6582
6276
  /**
6583
6277
  *
6584
6278
  * @type {ITemplateResponse}
@@ -6603,42 +6297,6 @@ export interface IPagePatchRequest {
6603
6297
  * @memberof IPagePatchRequest
6604
6298
  */
6605
6299
  'type'?: PageTypeEnum;
6606
- /**
6607
- *
6608
- * @type {string}
6609
- * @memberof IPagePatchRequest
6610
- */
6611
- 'description'?: string;
6612
- /**
6613
- *
6614
- * @type {string}
6615
- * @memberof IPagePatchRequest
6616
- */
6617
- 'metaTitle'?: string;
6618
- /**
6619
- *
6620
- * @type {string}
6621
- * @memberof IPagePatchRequest
6622
- */
6623
- 'metaDescription'?: string;
6624
- /**
6625
- *
6626
- * @type {Array<string>}
6627
- * @memberof IPagePatchRequest
6628
- */
6629
- 'keywords'?: Array<string>;
6630
- /**
6631
- *
6632
- * @type {string}
6633
- * @memberof IPagePatchRequest
6634
- */
6635
- 'slug'?: string;
6636
- /**
6637
- *
6638
- * @type {string}
6639
- * @memberof IPagePatchRequest
6640
- */
6641
- 'content'?: string;
6642
6300
  }
6643
6301
  /**
6644
6302
  *
@@ -6652,18 +6310,6 @@ export interface IPagePostRequest {
6652
6310
  * @memberof IPagePostRequest
6653
6311
  */
6654
6312
  'company': string;
6655
- /**
6656
- *
6657
- * @type {ContentStatusEnum}
6658
- * @memberof IPagePostRequest
6659
- */
6660
- 'status': ContentStatusEnum;
6661
- /**
6662
- *
6663
- * @type {string}
6664
- * @memberof IPagePostRequest
6665
- */
6666
- 'title': string;
6667
6313
  /**
6668
6314
  *
6669
6315
  * @type {PartialRecordLanguageEnumIContentsValue}
@@ -6682,42 +6328,6 @@ export interface IPagePostRequest {
6682
6328
  * @memberof IPagePostRequest
6683
6329
  */
6684
6330
  'type': PageTypeEnum;
6685
- /**
6686
- *
6687
- * @type {string}
6688
- * @memberof IPagePostRequest
6689
- */
6690
- 'description'?: string;
6691
- /**
6692
- *
6693
- * @type {string}
6694
- * @memberof IPagePostRequest
6695
- */
6696
- 'metaTitle'?: string;
6697
- /**
6698
- *
6699
- * @type {string}
6700
- * @memberof IPagePostRequest
6701
- */
6702
- 'metaDescription'?: string;
6703
- /**
6704
- *
6705
- * @type {Array<string>}
6706
- * @memberof IPagePostRequest
6707
- */
6708
- 'keywords'?: Array<string>;
6709
- /**
6710
- *
6711
- * @type {string}
6712
- * @memberof IPagePostRequest
6713
- */
6714
- 'slug': string;
6715
- /**
6716
- *
6717
- * @type {string}
6718
- * @memberof IPagePostRequest
6719
- */
6720
- 'content'?: string;
6721
6331
  /**
6722
6332
  *
6723
6333
  * @type {ITemplateResponse}
@@ -7502,18 +7112,6 @@ export interface IProductPatchRequest {
7502
7112
  * @memberof IProductPatchRequest
7503
7113
  */
7504
7114
  'company'?: string;
7505
- /**
7506
- *
7507
- * @type {ContentStatusEnum}
7508
- * @memberof IProductPatchRequest
7509
- */
7510
- 'status'?: ContentStatusEnum;
7511
- /**
7512
- *
7513
- * @type {string}
7514
- * @memberof IProductPatchRequest
7515
- */
7516
- 'title'?: string;
7517
7115
  /**
7518
7116
  *
7519
7117
  * @type {boolean}
@@ -7586,73 +7184,19 @@ export interface IProductPatchRequest {
7586
7184
  'attributes'?: {
7587
7185
  [key: string]: string;
7588
7186
  };
7589
- /**
7590
- *
7591
- * @type {IImage}
7592
- * @memberof IProductPatchRequest
7593
- */
7594
- 'thumbnail'?: IImage;
7595
- /**
7596
- *
7597
- * @type {string}
7598
- * @memberof IProductPatchRequest
7599
- */
7600
- 'description'?: string;
7601
- /**
7602
- *
7603
- * @type {string}
7604
- * @memberof IProductPatchRequest
7605
- */
7606
- 'metaTitle'?: string;
7607
- /**
7608
- *
7609
- * @type {string}
7610
- * @memberof IProductPatchRequest
7611
- */
7612
- 'metaDescription'?: string;
7613
- /**
7614
- *
7615
- * @type {Array<string>}
7616
- * @memberof IProductPatchRequest
7617
- */
7618
- 'keywords'?: Array<string>;
7619
- /**
7620
- *
7621
- * @type {string}
7622
- * @memberof IProductPatchRequest
7623
- */
7624
- 'slug'?: string;
7625
- /**
7626
- *
7627
- * @type {string}
7628
- * @memberof IProductPatchRequest
7629
- */
7630
- 'content'?: string;
7631
7187
  }
7632
7188
  /**
7633
7189
  *
7634
7190
  * @export
7635
7191
  * @interface IProductPostRequest
7636
7192
  */
7637
- export interface IProductPostRequest {
7638
- /**
7639
- *
7640
- * @type {string}
7641
- * @memberof IProductPostRequest
7642
- */
7643
- 'company': string;
7644
- /**
7645
- *
7646
- * @type {ContentStatusEnum}
7647
- * @memberof IProductPostRequest
7648
- */
7649
- 'status': ContentStatusEnum;
7193
+ export interface IProductPostRequest {
7650
7194
  /**
7651
7195
  *
7652
7196
  * @type {string}
7653
7197
  * @memberof IProductPostRequest
7654
7198
  */
7655
- 'title': string;
7199
+ 'company': string;
7656
7200
  /**
7657
7201
  *
7658
7202
  * @type {boolean}
@@ -7725,48 +7269,6 @@ export interface IProductPostRequest {
7725
7269
  'attributes'?: {
7726
7270
  [key: string]: string;
7727
7271
  };
7728
- /**
7729
- *
7730
- * @type {IImage}
7731
- * @memberof IProductPostRequest
7732
- */
7733
- 'thumbnail'?: IImage;
7734
- /**
7735
- *
7736
- * @type {string}
7737
- * @memberof IProductPostRequest
7738
- */
7739
- 'description'?: string;
7740
- /**
7741
- *
7742
- * @type {string}
7743
- * @memberof IProductPostRequest
7744
- */
7745
- 'metaTitle'?: string;
7746
- /**
7747
- *
7748
- * @type {string}
7749
- * @memberof IProductPostRequest
7750
- */
7751
- 'metaDescription'?: string;
7752
- /**
7753
- *
7754
- * @type {Array<string>}
7755
- * @memberof IProductPostRequest
7756
- */
7757
- 'keywords'?: Array<string>;
7758
- /**
7759
- *
7760
- * @type {string}
7761
- * @memberof IProductPostRequest
7762
- */
7763
- 'slug': string;
7764
- /**
7765
- *
7766
- * @type {string}
7767
- * @memberof IProductPostRequest
7768
- */
7769
- 'content'?: string;
7770
7272
  /**
7771
7273
  *
7772
7274
  * @type {string}
@@ -7944,12 +7446,6 @@ export interface IProductResponse {
7944
7446
  * @memberof IProductResponse
7945
7447
  */
7946
7448
  'status': ContentStatusEnum;
7947
- /**
7948
- *
7949
- * @type {IImage}
7950
- * @memberof IProductResponse
7951
- */
7952
- 'thumbnail'?: IImage;
7953
7449
  /**
7954
7450
  *
7955
7451
  * @type {string}
@@ -9909,75 +9405,27 @@ export interface PickIBasketExcludeKeyofIBasketItems {
9909
9405
  /**
9910
9406
  * From T, pick a set of properties whose keys are in the union K
9911
9407
  * @export
9912
- * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9408
+ * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
9913
9409
  */
9914
- export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs {
9410
+ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
9915
9411
  /**
9916
9412
  *
9917
9413
  * @type {string}
9918
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9414
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
9919
9415
  */
9920
9416
  'company': string;
9921
- /**
9922
- *
9923
- * @type {ContentStatusEnum}
9924
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9925
- */
9926
- 'status': ContentStatusEnum;
9927
- /**
9928
- *
9929
- * @type {string}
9930
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9931
- */
9932
- 'title': string;
9933
9417
  /**
9934
9418
  *
9935
9419
  * @type {PartialRecordLanguageEnumIContentsValue}
9936
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9420
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
9937
9421
  */
9938
9422
  'contents': PartialRecordLanguageEnumIContentsValue;
9939
9423
  /**
9940
9424
  *
9941
9425
  * @type {IImage}
9942
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9426
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
9943
9427
  */
9944
9428
  'thumbnail'?: IImage;
9945
- /**
9946
- *
9947
- * @type {string}
9948
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9949
- */
9950
- 'description'?: string;
9951
- /**
9952
- *
9953
- * @type {string}
9954
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9955
- */
9956
- 'metaTitle'?: string;
9957
- /**
9958
- *
9959
- * @type {string}
9960
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9961
- */
9962
- 'metaDescription'?: string;
9963
- /**
9964
- *
9965
- * @type {Array<string>}
9966
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9967
- */
9968
- 'keywords'?: Array<string>;
9969
- /**
9970
- *
9971
- * @type {string}
9972
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9973
- */
9974
- 'slug': string;
9975
- /**
9976
- *
9977
- * @type {string}
9978
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugs
9979
- */
9980
- 'content'?: string;
9981
9429
  }
9982
9430
  /**
9983
9431
  * From T, pick a set of properties whose keys are in the union K
@@ -10043,81 +9491,33 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
10043
9491
  /**
10044
9492
  * From T, pick a set of properties whose keys are in the union K
10045
9493
  * @export
10046
- * @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9494
+ * @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
10047
9495
  */
10048
- export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs {
9496
+ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue {
10049
9497
  /**
10050
9498
  *
10051
9499
  * @type {string}
10052
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9500
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
10053
9501
  */
10054
9502
  'company': string;
10055
- /**
10056
- *
10057
- * @type {ContentStatusEnum}
10058
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10059
- */
10060
- 'status': ContentStatusEnum;
10061
- /**
10062
- *
10063
- * @type {string}
10064
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10065
- */
10066
- 'title': string;
10067
9503
  /**
10068
9504
  *
10069
9505
  * @type {PartialRecordLanguageEnumIContentsValue}
10070
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9506
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
10071
9507
  */
10072
9508
  'contents': PartialRecordLanguageEnumIContentsValue;
10073
9509
  /**
10074
9510
  *
10075
9511
  * @type {IImage}
10076
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9512
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
10077
9513
  */
10078
9514
  'thumbnail'?: IImage;
10079
9515
  /**
10080
9516
  *
10081
9517
  * @type {string}
10082
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
9518
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
10083
9519
  */
10084
9520
  'main'?: string;
10085
- /**
10086
- *
10087
- * @type {string}
10088
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10089
- */
10090
- 'description'?: string;
10091
- /**
10092
- *
10093
- * @type {string}
10094
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10095
- */
10096
- 'metaTitle'?: string;
10097
- /**
10098
- *
10099
- * @type {string}
10100
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10101
- */
10102
- 'metaDescription'?: string;
10103
- /**
10104
- *
10105
- * @type {Array<string>}
10106
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10107
- */
10108
- 'keywords'?: Array<string>;
10109
- /**
10110
- *
10111
- * @type {string}
10112
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10113
- */
10114
- 'slug': string;
10115
- /**
10116
- *
10117
- * @type {string}
10118
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugs
10119
- */
10120
- 'content'?: string;
10121
9521
  }
10122
9522
  /**
10123
9523
  * From T, pick a set of properties whose keys are in the union K
@@ -10226,75 +9626,27 @@ export type PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDate
10226
9626
  /**
10227
9627
  * From T, pick a set of properties whose keys are in the union K
10228
9628
  * @export
10229
- * @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9629
+ * @interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10230
9630
  */
10231
- export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
9631
+ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue {
10232
9632
  /**
10233
9633
  *
10234
9634
  * @type {string}
10235
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9635
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10236
9636
  */
10237
9637
  'company': string;
10238
- /**
10239
- *
10240
- * @type {ContentStatusEnum}
10241
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10242
- */
10243
- 'status': ContentStatusEnum;
10244
- /**
10245
- *
10246
- * @type {string}
10247
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10248
- */
10249
- 'title': string;
10250
9638
  /**
10251
9639
  *
10252
9640
  * @type {PartialRecordLanguageEnumIContentsValue}
10253
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9641
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10254
9642
  */
10255
9643
  'contents': PartialRecordLanguageEnumIContentsValue;
10256
9644
  /**
10257
9645
  *
10258
9646
  * @type {IImage}
10259
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
9647
+ * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
10260
9648
  */
10261
9649
  'thumbnail'?: IImage;
10262
- /**
10263
- *
10264
- * @type {string}
10265
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10266
- */
10267
- 'description'?: string;
10268
- /**
10269
- *
10270
- * @type {string}
10271
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10272
- */
10273
- 'metaTitle'?: string;
10274
- /**
10275
- *
10276
- * @type {string}
10277
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10278
- */
10279
- 'metaDescription'?: string;
10280
- /**
10281
- *
10282
- * @type {Array<string>}
10283
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10284
- */
10285
- 'keywords'?: Array<string>;
10286
- /**
10287
- *
10288
- * @type {string}
10289
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10290
- */
10291
- 'slug': string;
10292
- /**
10293
- *
10294
- * @type {string}
10295
- * @memberof PickICollectionResponseExcludeKeyofICollectionResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10296
- */
10297
- 'content'?: string;
10298
9650
  }
10299
9651
  /**
10300
9652
  * From T, pick a set of properties whose keys are in the union K
@@ -11321,81 +10673,33 @@ export interface PickIPageExcludeKeyofIPageTemplate {
11321
10673
  /**
11322
10674
  * From T, pick a set of properties whose keys are in the union K
11323
10675
  * @export
11324
- * @interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10676
+ * @interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
11325
10677
  */
11326
- export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs {
10678
+ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue {
11327
10679
  /**
11328
10680
  *
11329
10681
  * @type {string}
11330
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10682
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
11331
10683
  */
11332
10684
  'company': string;
11333
- /**
11334
- *
11335
- * @type {ContentStatusEnum}
11336
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11337
- */
11338
- 'status': ContentStatusEnum;
11339
- /**
11340
- *
11341
- * @type {string}
11342
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11343
- */
11344
- 'title': string;
11345
10685
  /**
11346
10686
  *
11347
10687
  * @type {PartialRecordLanguageEnumIContentsValue}
11348
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10688
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
11349
10689
  */
11350
10690
  'contents': PartialRecordLanguageEnumIContentsValue;
11351
10691
  /**
11352
10692
  *
11353
10693
  * @type {IImage}
11354
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10694
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
11355
10695
  */
11356
10696
  'thumbnail'?: IImage;
11357
10697
  /**
11358
10698
  *
11359
10699
  * @type {PageTypeEnum}
11360
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
10700
+ * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugsOrKeyofIContentsValue
11361
10701
  */
11362
10702
  'type': PageTypeEnum;
11363
- /**
11364
- *
11365
- * @type {string}
11366
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11367
- */
11368
- 'description'?: string;
11369
- /**
11370
- *
11371
- * @type {string}
11372
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11373
- */
11374
- 'metaTitle'?: string;
11375
- /**
11376
- *
11377
- * @type {string}
11378
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11379
- */
11380
- 'metaDescription'?: string;
11381
- /**
11382
- *
11383
- * @type {Array<string>}
11384
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11385
- */
11386
- 'keywords'?: Array<string>;
11387
- /**
11388
- *
11389
- * @type {string}
11390
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11391
- */
11392
- 'slug': string;
11393
- /**
11394
- *
11395
- * @type {string}
11396
- * @memberof PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrTemplateOrTemplatesOrSlugs
11397
- */
11398
- 'content'?: string;
11399
10703
  }
11400
10704
  /**
11401
10705
  * From T, pick a set of properties whose keys are in the union K
@@ -11609,61 +10913,49 @@ export interface PickIProductIdOrContentsOrTotalSale {
11609
10913
  /**
11610
10914
  * From T, pick a set of properties whose keys are in the union K
11611
10915
  * @export
11612
- * @interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10916
+ * @interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11613
10917
  */
11614
- export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields {
10918
+ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue {
11615
10919
  /**
11616
10920
  *
11617
10921
  * @type {string}
11618
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10922
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11619
10923
  */
11620
10924
  'company': string;
11621
- /**
11622
- *
11623
- * @type {ContentStatusEnum}
11624
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11625
- */
11626
- 'status': ContentStatusEnum;
11627
- /**
11628
- *
11629
- * @type {string}
11630
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11631
- */
11632
- 'title': string;
11633
10925
  /**
11634
10926
  *
11635
10927
  * @type {boolean}
11636
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10928
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11637
10929
  */
11638
10930
  'negativeStock'?: boolean;
11639
10931
  /**
11640
10932
  *
11641
10933
  * @type {Array<string>}
11642
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10934
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11643
10935
  */
11644
10936
  'collections': Array<string>;
11645
10937
  /**
11646
10938
  *
11647
10939
  * @type {string}
11648
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10940
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11649
10941
  */
11650
10942
  'sku'?: string;
11651
10943
  /**
11652
10944
  *
11653
10945
  * @type {string}
11654
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10946
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11655
10947
  */
11656
10948
  'barcode'?: string;
11657
10949
  /**
11658
10950
  *
11659
10951
  * @type {Array<IImage>}
11660
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10952
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11661
10953
  */
11662
10954
  'photos': Array<IImage>;
11663
10955
  /**
11664
10956
  *
11665
10957
  * @type {{ [key: string]: StockTypeValue; }}
11666
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10958
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11667
10959
  */
11668
10960
  'stock'?: {
11669
10961
  [key: string]: StockTypeValue;
@@ -11671,25 +10963,25 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
11671
10963
  /**
11672
10964
  *
11673
10965
  * @type {PriceType}
11674
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10966
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11675
10967
  */
11676
10968
  'priceInfo': PriceType;
11677
10969
  /**
11678
10970
  *
11679
10971
  * @type {PartialRecordLanguageEnumIContentsValue}
11680
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10972
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11681
10973
  */
11682
10974
  'contents': PartialRecordLanguageEnumIContentsValue;
11683
10975
  /**
11684
10976
  *
11685
10977
  * @type {Array<VariantType>}
11686
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10978
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11687
10979
  */
11688
10980
  'variants'?: Array<VariantType>;
11689
10981
  /**
11690
10982
  * Construct a type with a set of properties K of type T
11691
10983
  * @type {{ [key: string]: Array<IImage>; }}
11692
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10984
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11693
10985
  */
11694
10986
  'mainVariantsPhotos'?: {
11695
10987
  [key: string]: Array<IImage>;
@@ -11697,53 +10989,11 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
11697
10989
  /**
11698
10990
  *
11699
10991
  * @type {{ [key: string]: string; }}
11700
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
10992
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
11701
10993
  */
11702
10994
  'attributes'?: {
11703
10995
  [key: string]: string;
11704
10996
  };
11705
- /**
11706
- *
11707
- * @type {IImage}
11708
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11709
- */
11710
- 'thumbnail'?: IImage;
11711
- /**
11712
- *
11713
- * @type {string}
11714
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11715
- */
11716
- 'description'?: string;
11717
- /**
11718
- *
11719
- * @type {string}
11720
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11721
- */
11722
- 'metaTitle'?: string;
11723
- /**
11724
- *
11725
- * @type {string}
11726
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11727
- */
11728
- 'metaDescription'?: string;
11729
- /**
11730
- *
11731
- * @type {Array<string>}
11732
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11733
- */
11734
- 'keywords'?: Array<string>;
11735
- /**
11736
- *
11737
- * @type {string}
11738
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11739
- */
11740
- 'slug': string;
11741
- /**
11742
- *
11743
- * @type {string}
11744
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
11745
- */
11746
- 'content'?: string;
11747
10997
  }
11748
10998
  /**
11749
10999
  * From T, pick a set of properties whose keys are in the union K
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
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": "14800b659c106e76194ecc5534489c121b39d7ff"
40
+ "gitHead": "9237476390354933f923585b27254e8379d305df"
41
41
  }