@infisale-client/api-client 1.3.65 → 1.3.66

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 +394 -94
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -1267,6 +1267,24 @@ export interface IBrandPatchRequest {
1267
1267
  * @memberof IBrandPatchRequest
1268
1268
  */
1269
1269
  'contents'?: PartialRecordLanguageEnumIContentsValue;
1270
+ /**
1271
+ *
1272
+ * @type {Array<string>}
1273
+ * @memberof IBrandPatchRequest
1274
+ */
1275
+ 'slugs'?: Array<string>;
1276
+ /**
1277
+ *
1278
+ * @type {Array<string>}
1279
+ * @memberof IBrandPatchRequest
1280
+ */
1281
+ 'languages'?: Array<string>;
1282
+ /**
1283
+ *
1284
+ * @type {string}
1285
+ * @memberof IBrandPatchRequest
1286
+ */
1287
+ 'publishedAt'?: string;
1270
1288
  /**
1271
1289
  *
1272
1290
  * @type {IImage}
@@ -1292,12 +1310,30 @@ export interface IBrandPostRequest {
1292
1310
  * @memberof IBrandPostRequest
1293
1311
  */
1294
1312
  'contents': PartialRecordLanguageEnumIContentsValue;
1313
+ /**
1314
+ *
1315
+ * @type {Array<string>}
1316
+ * @memberof IBrandPostRequest
1317
+ */
1318
+ 'slugs': Array<string>;
1319
+ /**
1320
+ *
1321
+ * @type {Array<string>}
1322
+ * @memberof IBrandPostRequest
1323
+ */
1324
+ 'languages': Array<string>;
1295
1325
  /**
1296
1326
  *
1297
1327
  * @type {IImage}
1298
1328
  * @memberof IBrandPostRequest
1299
1329
  */
1300
1330
  'thumbnail'?: IImage;
1331
+ /**
1332
+ *
1333
+ * @type {string}
1334
+ * @memberof IBrandPostRequest
1335
+ */
1336
+ 'publishedAt'?: string;
1301
1337
  }
1302
1338
  /**
1303
1339
  *
@@ -1409,6 +1445,18 @@ export interface IBrandResponse {
1409
1445
  * @memberof IBrandResponse
1410
1446
  */
1411
1447
  'slugs': Array<string>;
1448
+ /**
1449
+ *
1450
+ * @type {Array<string>}
1451
+ * @memberof IBrandResponse
1452
+ */
1453
+ 'languages': Array<string>;
1454
+ /**
1455
+ *
1456
+ * @type {string}
1457
+ * @memberof IBrandResponse
1458
+ */
1459
+ 'publishedAt': string;
1412
1460
  }
1413
1461
  /**
1414
1462
  *
@@ -1626,6 +1674,12 @@ export interface ICategoryPatchRequest {
1626
1674
  * @memberof ICategoryPatchRequest
1627
1675
  */
1628
1676
  'attributes'?: Array<ICategoryAttributesResponseAttributesInner>;
1677
+ /**
1678
+ *
1679
+ * @type {string}
1680
+ * @memberof ICategoryPatchRequest
1681
+ */
1682
+ 'publishedAt'?: string;
1629
1683
  /**
1630
1684
  *
1631
1685
  * @type {string}
@@ -1640,10 +1694,16 @@ export interface ICategoryPatchRequest {
1640
1694
  'contents'?: PartialRecordLanguageEnumIContentsValue;
1641
1695
  /**
1642
1696
  *
1643
- * @type {string}
1697
+ * @type {Array<string>}
1644
1698
  * @memberof ICategoryPatchRequest
1645
1699
  */
1646
- 'publishedAt'?: string;
1700
+ 'slugs'?: Array<string>;
1701
+ /**
1702
+ *
1703
+ * @type {Array<string>}
1704
+ * @memberof ICategoryPatchRequest
1705
+ */
1706
+ 'languages'?: Array<string>;
1647
1707
  /**
1648
1708
  *
1649
1709
  * @type {IImage}
@@ -1677,10 +1737,16 @@ export interface ICategoryPostRequest {
1677
1737
  'contents': PartialRecordLanguageEnumIContentsValue;
1678
1738
  /**
1679
1739
  *
1680
- * @type {string}
1740
+ * @type {Array<string>}
1681
1741
  * @memberof ICategoryPostRequest
1682
1742
  */
1683
- 'publishedAt': string;
1743
+ 'slugs': Array<string>;
1744
+ /**
1745
+ *
1746
+ * @type {Array<string>}
1747
+ * @memberof ICategoryPostRequest
1748
+ */
1749
+ 'languages': Array<string>;
1684
1750
  /**
1685
1751
  *
1686
1752
  * @type {IImage}
@@ -1699,6 +1765,12 @@ export interface ICategoryPostRequest {
1699
1765
  * @memberof ICategoryPostRequest
1700
1766
  */
1701
1767
  'attributes': Array<ICategoryAttributesResponseAttributesInner>;
1768
+ /**
1769
+ *
1770
+ * @type {string}
1771
+ * @memberof ICategoryPostRequest
1772
+ */
1773
+ 'publishedAt'?: string;
1702
1774
  }
1703
1775
  /**
1704
1776
  *
@@ -1748,6 +1820,12 @@ export interface ICategoryResponse {
1748
1820
  * @memberof ICategoryResponse
1749
1821
  */
1750
1822
  'slugs': Array<string>;
1823
+ /**
1824
+ *
1825
+ * @type {Array<string>}
1826
+ * @memberof ICategoryResponse
1827
+ */
1828
+ 'languages': Array<string>;
1751
1829
  /**
1752
1830
  *
1753
1831
  * @type {string}
@@ -1987,6 +2065,12 @@ export interface ICollection {
1987
2065
  * @memberof ICollection
1988
2066
  */
1989
2067
  'slugs': Array<string>;
2068
+ /**
2069
+ *
2070
+ * @type {Array<string>}
2071
+ * @memberof ICollection
2072
+ */
2073
+ 'languages': Array<string>;
1990
2074
  /**
1991
2075
  *
1992
2076
  * @type {string}
@@ -2090,6 +2174,18 @@ export interface ICollectionPatchRequest {
2090
2174
  * @memberof ICollectionPatchRequest
2091
2175
  */
2092
2176
  'contents'?: PartialRecordLanguageEnumIContentsValue;
2177
+ /**
2178
+ *
2179
+ * @type {Array<string>}
2180
+ * @memberof ICollectionPatchRequest
2181
+ */
2182
+ 'slugs'?: Array<string>;
2183
+ /**
2184
+ *
2185
+ * @type {Array<string>}
2186
+ * @memberof ICollectionPatchRequest
2187
+ */
2188
+ 'languages'?: Array<string>;
2093
2189
  /**
2094
2190
  *
2095
2191
  * @type {string}
@@ -2129,16 +2225,28 @@ export interface ICollectionPostRequest {
2129
2225
  'contents': PartialRecordLanguageEnumIContentsValue;
2130
2226
  /**
2131
2227
  *
2132
- * @type {string}
2228
+ * @type {Array<string>}
2133
2229
  * @memberof ICollectionPostRequest
2134
2230
  */
2135
- 'publishedAt': string;
2231
+ 'slugs': Array<string>;
2232
+ /**
2233
+ *
2234
+ * @type {Array<string>}
2235
+ * @memberof ICollectionPostRequest
2236
+ */
2237
+ 'languages': Array<string>;
2136
2238
  /**
2137
2239
  *
2138
2240
  * @type {IImage}
2139
2241
  * @memberof ICollectionPostRequest
2140
2242
  */
2141
2243
  'thumbnail'?: IImage;
2244
+ /**
2245
+ *
2246
+ * @type {string}
2247
+ * @memberof ICollectionPostRequest
2248
+ */
2249
+ 'publishedAt'?: string;
2142
2250
  }
2143
2251
  /**
2144
2252
  *
@@ -2188,6 +2296,12 @@ export interface ICollectionResponse {
2188
2296
  * @memberof ICollectionResponse
2189
2297
  */
2190
2298
  'slugs': Array<string>;
2299
+ /**
2300
+ *
2301
+ * @type {Array<string>}
2302
+ * @memberof ICollectionResponse
2303
+ */
2304
+ 'languages': Array<string>;
2191
2305
  /**
2192
2306
  *
2193
2307
  * @type {string}
@@ -2459,6 +2573,12 @@ export interface ICompany {
2459
2573
  * @memberof ICompany
2460
2574
  */
2461
2575
  'orderNoSuffix'?: string;
2576
+ /**
2577
+ * Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
2578
+ * @type {number}
2579
+ * @memberof ICompany
2580
+ */
2581
+ 'lastOrderNumber'?: number;
2462
2582
  /**
2463
2583
  *
2464
2584
  * @type {string}
@@ -2625,6 +2745,18 @@ export interface ICompany {
2625
2745
  * @memberof ICompany
2626
2746
  */
2627
2747
  'htmlHead'?: string;
2748
+ /**
2749
+ * Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
2750
+ * @type {number}
2751
+ * @memberof ICompany
2752
+ */
2753
+ 'password'?: number;
2754
+ /**
2755
+ * Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
2756
+ * @type {boolean}
2757
+ * @memberof ICompany
2758
+ */
2759
+ 'passwordActive'?: boolean;
2628
2760
  /**
2629
2761
  *
2630
2762
  * @type {CompanyStatusEnum}
@@ -2662,6 +2794,12 @@ export interface ICompany {
2662
2794
  * @interface ICompanyAdminResponse
2663
2795
  */
2664
2796
  export interface ICompanyAdminResponse {
2797
+ /**
2798
+ * Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
2799
+ * @type {number}
2800
+ * @memberof ICompanyAdminResponse
2801
+ */
2802
+ 'password'?: number;
2665
2803
  /**
2666
2804
  *
2667
2805
  * @type {string}
@@ -2716,6 +2854,12 @@ export interface ICompanyAdminResponse {
2716
2854
  * @memberof ICompanyAdminResponse
2717
2855
  */
2718
2856
  'updatedAt': string;
2857
+ /**
2858
+ *
2859
+ * @type {Array<LanguageEnum>}
2860
+ * @memberof ICompanyAdminResponse
2861
+ */
2862
+ 'languages': Array<LanguageEnum>;
2719
2863
  /**
2720
2864
  *
2721
2865
  * @type {CompanyTypeEnum}
@@ -2770,6 +2914,12 @@ export interface ICompanyAdminResponse {
2770
2914
  * @memberof ICompanyAdminResponse
2771
2915
  */
2772
2916
  'orderNoSuffix'?: string;
2917
+ /**
2918
+ * Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
2919
+ * @type {number}
2920
+ * @memberof ICompanyAdminResponse
2921
+ */
2922
+ 'lastOrderNumber'?: number;
2773
2923
  /**
2774
2924
  *
2775
2925
  * @type {IImage}
@@ -2794,12 +2944,6 @@ export interface ICompanyAdminResponse {
2794
2944
  * @memberof ICompanyAdminResponse
2795
2945
  */
2796
2946
  'timezone': TimezoneEnum;
2797
- /**
2798
- *
2799
- * @type {Array<LanguageEnum>}
2800
- * @memberof ICompanyAdminResponse
2801
- */
2802
- 'languages': Array<LanguageEnum>;
2803
2947
  /**
2804
2948
  *
2805
2949
  * @type {CurrencyEnum}
@@ -2868,6 +3012,12 @@ export interface ICompanyAdminResponse {
2868
3012
  * @memberof ICompanyAdminResponse
2869
3013
  */
2870
3014
  'htmlHead'?: string;
3015
+ /**
3016
+ * Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
3017
+ * @type {boolean}
3018
+ * @memberof ICompanyAdminResponse
3019
+ */
3020
+ 'passwordActive'?: boolean;
2871
3021
  /**
2872
3022
  *
2873
3023
  * @type {string}
@@ -3420,6 +3570,12 @@ export interface ICompanyDashboardResponseOrdersInner {
3420
3570
  * @interface ICompanyPatchRequest
3421
3571
  */
3422
3572
  export interface ICompanyPatchRequest {
3573
+ /**
3574
+ * Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
3575
+ * @type {number}
3576
+ * @memberof ICompanyPatchRequest
3577
+ */
3578
+ 'password'?: number;
3423
3579
  /**
3424
3580
  *
3425
3581
  * @type {string}
@@ -3458,6 +3614,12 @@ export interface ICompanyPatchRequest {
3458
3614
  * @memberof ICompanyPatchRequest
3459
3615
  */
3460
3616
  'status'?: CompanyStatusEnum;
3617
+ /**
3618
+ *
3619
+ * @type {Array<LanguageEnum>}
3620
+ * @memberof ICompanyPatchRequest
3621
+ */
3622
+ 'languages'?: Array<LanguageEnum>;
3461
3623
  /**
3462
3624
  *
3463
3625
  * @type {string}
@@ -3530,6 +3692,12 @@ export interface ICompanyPatchRequest {
3530
3692
  * @memberof ICompanyPatchRequest
3531
3693
  */
3532
3694
  'orderNoSuffix'?: string;
3695
+ /**
3696
+ * Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
3697
+ * @type {number}
3698
+ * @memberof ICompanyPatchRequest
3699
+ */
3700
+ 'lastOrderNumber'?: number;
3533
3701
  /**
3534
3702
  *
3535
3703
  * @type {IImage}
@@ -3554,12 +3722,6 @@ export interface ICompanyPatchRequest {
3554
3722
  * @memberof ICompanyPatchRequest
3555
3723
  */
3556
3724
  'timezone'?: TimezoneEnum;
3557
- /**
3558
- *
3559
- * @type {Array<LanguageEnum>}
3560
- * @memberof ICompanyPatchRequest
3561
- */
3562
- 'languages'?: Array<LanguageEnum>;
3563
3725
  /**
3564
3726
  *
3565
3727
  * @type {CurrencyEnum}
@@ -3598,6 +3760,12 @@ export interface ICompanyPatchRequest {
3598
3760
  * @memberof ICompanyPatchRequest
3599
3761
  */
3600
3762
  'htmlHead'?: string;
3763
+ /**
3764
+ * Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
3765
+ * @type {boolean}
3766
+ * @memberof ICompanyPatchRequest
3767
+ */
3768
+ 'passwordActive'?: boolean;
3601
3769
  /**
3602
3770
  *
3603
3771
  * @type {string}
@@ -3765,6 +3933,12 @@ export interface ICompanyPostRequest {
3765
3933
  * @interface ICompanyResponse
3766
3934
  */
3767
3935
  export interface ICompanyResponse {
3936
+ /**
3937
+ * Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
3938
+ * @type {number}
3939
+ * @memberof ICompanyResponse
3940
+ */
3941
+ 'password'?: number;
3768
3942
  /**
3769
3943
  *
3770
3944
  * @type {string}
@@ -3819,6 +3993,12 @@ export interface ICompanyResponse {
3819
3993
  * @memberof ICompanyResponse
3820
3994
  */
3821
3995
  'updatedAt': string;
3996
+ /**
3997
+ *
3998
+ * @type {Array<LanguageEnum>}
3999
+ * @memberof ICompanyResponse
4000
+ */
4001
+ 'languages': Array<LanguageEnum>;
3822
4002
  /**
3823
4003
  *
3824
4004
  * @type {CompanyTypeEnum}
@@ -3873,6 +4053,12 @@ export interface ICompanyResponse {
3873
4053
  * @memberof ICompanyResponse
3874
4054
  */
3875
4055
  'orderNoSuffix'?: string;
4056
+ /**
4057
+ * Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
4058
+ * @type {number}
4059
+ * @memberof ICompanyResponse
4060
+ */
4061
+ 'lastOrderNumber'?: number;
3876
4062
  /**
3877
4063
  *
3878
4064
  * @type {IImage}
@@ -3897,12 +4083,6 @@ export interface ICompanyResponse {
3897
4083
  * @memberof ICompanyResponse
3898
4084
  */
3899
4085
  'timezone': TimezoneEnum;
3900
- /**
3901
- *
3902
- * @type {Array<LanguageEnum>}
3903
- * @memberof ICompanyResponse
3904
- */
3905
- 'languages': Array<LanguageEnum>;
3906
4086
  /**
3907
4087
  *
3908
4088
  * @type {CurrencyEnum}
@@ -3971,6 +4151,12 @@ export interface ICompanyResponse {
3971
4151
  * @memberof ICompanyResponse
3972
4152
  */
3973
4153
  'htmlHead'?: string;
4154
+ /**
4155
+ * Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
4156
+ * @type {boolean}
4157
+ * @memberof ICompanyResponse
4158
+ */
4159
+ 'passwordActive'?: boolean;
3974
4160
  /**
3975
4161
  *
3976
4162
  * @type {string}
@@ -6980,11 +7166,11 @@ export interface IOrderPostRequest {
6980
7166
  */
6981
7167
  export interface IOrderResponse {
6982
7168
  /**
6983
- *
6984
- * @type {number}
7169
+ * Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
7170
+ * @type {string}
6985
7171
  * @memberof IOrderResponse
6986
7172
  */
6987
- 'number': number;
7173
+ 'number': string;
6988
7174
  /**
6989
7175
  *
6990
7176
  * @type {string}
@@ -7589,6 +7775,18 @@ export interface IPagePatchRequest {
7589
7775
  * @memberof IPagePatchRequest
7590
7776
  */
7591
7777
  'contents'?: PartialRecordLanguageEnumIContentsValue;
7778
+ /**
7779
+ *
7780
+ * @type {Array<string>}
7781
+ * @memberof IPagePatchRequest
7782
+ */
7783
+ 'slugs'?: Array<string>;
7784
+ /**
7785
+ *
7786
+ * @type {Array<string>}
7787
+ * @memberof IPagePatchRequest
7788
+ */
7789
+ 'languages'?: Array<string>;
7592
7790
  /**
7593
7791
  *
7594
7792
  * @type {string}
@@ -7634,10 +7832,16 @@ export interface IPagePostRequest {
7634
7832
  'contents': PartialRecordLanguageEnumIContentsValue;
7635
7833
  /**
7636
7834
  *
7637
- * @type {string}
7835
+ * @type {Array<string>}
7638
7836
  * @memberof IPagePostRequest
7639
7837
  */
7640
- 'publishedAt': string;
7838
+ 'slugs': Array<string>;
7839
+ /**
7840
+ *
7841
+ * @type {Array<string>}
7842
+ * @memberof IPagePostRequest
7843
+ */
7844
+ 'languages': Array<string>;
7641
7845
  /**
7642
7846
  *
7643
7847
  * @type {IImage}
@@ -7650,12 +7854,18 @@ export interface IPagePostRequest {
7650
7854
  * @memberof IPagePostRequest
7651
7855
  */
7652
7856
  'type': string;
7857
+ /**
7858
+ *
7859
+ * @type {string}
7860
+ * @memberof IPagePostRequest
7861
+ */
7862
+ 'publishedAt'?: string;
7653
7863
  /**
7654
7864
  *
7655
7865
  * @type {boolean}
7656
7866
  * @memberof IPagePostRequest
7657
7867
  */
7658
- 'draft': boolean;
7868
+ 'draft'?: boolean;
7659
7869
  }
7660
7870
  /**
7661
7871
  *
@@ -7705,6 +7915,12 @@ export interface IPageResponse {
7705
7915
  * @memberof IPageResponse
7706
7916
  */
7707
7917
  'slugs': Array<string>;
7918
+ /**
7919
+ *
7920
+ * @type {Array<string>}
7921
+ * @memberof IPageResponse
7922
+ */
7923
+ 'languages': Array<string>;
7708
7924
  /**
7709
7925
  *
7710
7926
  * @type {string}
@@ -8414,6 +8630,12 @@ export interface IProductPatchRequest {
8414
8630
  * @memberof IProductPatchRequest
8415
8631
  */
8416
8632
  'template'?: string;
8633
+ /**
8634
+ *
8635
+ * @type {string}
8636
+ * @memberof IProductPatchRequest
8637
+ */
8638
+ 'publishedAt'?: string;
8417
8639
  /**
8418
8640
  *
8419
8641
  * @type {string}
@@ -8470,6 +8692,12 @@ export interface IProductPatchRequest {
8470
8692
  * @memberof IProductPatchRequest
8471
8693
  */
8472
8694
  'contents'?: PartialRecordLanguageEnumIContentsValue;
8695
+ /**
8696
+ *
8697
+ * @type {Array<string>}
8698
+ * @memberof IProductPatchRequest
8699
+ */
8700
+ 'languages'?: Array<string>;
8473
8701
  /**
8474
8702
  *
8475
8703
  * @type {Array<VariantType>}
@@ -8492,12 +8720,6 @@ export interface IProductPatchRequest {
8492
8720
  'attributes'?: {
8493
8721
  [key: string]: string;
8494
8722
  };
8495
- /**
8496
- *
8497
- * @type {string}
8498
- * @memberof IProductPatchRequest
8499
- */
8500
- 'publishedAt'?: string;
8501
8723
  }
8502
8724
  /**
8503
8725
  *
@@ -8561,6 +8783,12 @@ export interface IProductPostRequest {
8561
8783
  * @memberof IProductPostRequest
8562
8784
  */
8563
8785
  'contents': PartialRecordLanguageEnumIContentsValue;
8786
+ /**
8787
+ *
8788
+ * @type {Array<string>}
8789
+ * @memberof IProductPostRequest
8790
+ */
8791
+ 'languages': Array<string>;
8564
8792
  /**
8565
8793
  *
8566
8794
  * @type {Array<VariantType>}
@@ -8588,25 +8816,25 @@ export interface IProductPostRequest {
8588
8816
  * @type {string}
8589
8817
  * @memberof IProductPostRequest
8590
8818
  */
8591
- 'publishedAt': string;
8819
+ 'category'?: string;
8592
8820
  /**
8593
8821
  *
8594
8822
  * @type {string}
8595
8823
  * @memberof IProductPostRequest
8596
8824
  */
8597
- 'category'?: string;
8825
+ 'brand'?: string;
8598
8826
  /**
8599
8827
  *
8600
8828
  * @type {string}
8601
8829
  * @memberof IProductPostRequest
8602
8830
  */
8603
- 'brand'?: string;
8831
+ 'template': string;
8604
8832
  /**
8605
8833
  *
8606
8834
  * @type {string}
8607
8835
  * @memberof IProductPostRequest
8608
8836
  */
8609
- 'template': string;
8837
+ 'publishedAt'?: string;
8610
8838
  }
8611
8839
  /**
8612
8840
  *
@@ -8718,6 +8946,12 @@ export interface IProductResponse {
8718
8946
  * @memberof IProductResponse
8719
8947
  */
8720
8948
  'slugs': Array<string>;
8949
+ /**
8950
+ *
8951
+ * @type {Array<string>}
8952
+ * @memberof IProductResponse
8953
+ */
8954
+ 'languages': Array<string>;
8721
8955
  /**
8722
8956
  *
8723
8957
  * @type {Array<VariantType>}
@@ -11885,25 +12119,37 @@ export interface PickIBasketExcludeKeyofIBasketItems {
11885
12119
  /**
11886
12120
  * From T, pick a set of properties whose keys are in the union K
11887
12121
  * @export
11888
- * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12122
+ * @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
11889
12123
  */
11890
- export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
12124
+ export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue {
11891
12125
  /**
11892
12126
  *
11893
12127
  * @type {string}
11894
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12128
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
11895
12129
  */
11896
12130
  'company': string;
11897
12131
  /**
11898
12132
  *
11899
12133
  * @type {PartialRecordLanguageEnumIContentsValue}
11900
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12134
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
11901
12135
  */
11902
12136
  'contents': PartialRecordLanguageEnumIContentsValue;
12137
+ /**
12138
+ *
12139
+ * @type {Array<string>}
12140
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12141
+ */
12142
+ 'slugs': Array<string>;
12143
+ /**
12144
+ *
12145
+ * @type {Array<string>}
12146
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12147
+ */
12148
+ 'languages': Array<string>;
11903
12149
  /**
11904
12150
  *
11905
12151
  * @type {IImage}
11906
- * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12152
+ * @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
11907
12153
  */
11908
12154
  'thumbnail'?: IImage;
11909
12155
  }
@@ -11955,6 +12201,12 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
11955
12201
  * @memberof PickICategoryExcludeKeyofICategoryAttributes
11956
12202
  */
11957
12203
  'slugs': Array<string>;
12204
+ /**
12205
+ *
12206
+ * @type {Array<string>}
12207
+ * @memberof PickICategoryExcludeKeyofICategoryAttributes
12208
+ */
12209
+ 'languages': Array<string>;
11958
12210
  /**
11959
12211
  *
11960
12212
  * @type {string}
@@ -11977,37 +12229,43 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
11977
12229
  /**
11978
12230
  * From T, pick a set of properties whose keys are in the union K
11979
12231
  * @export
11980
- * @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
12232
+ * @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
11981
12233
  */
11982
- export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue {
12234
+ export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue {
11983
12235
  /**
11984
12236
  *
11985
12237
  * @type {string}
11986
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
12238
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
11987
12239
  */
11988
12240
  'company': string;
11989
12241
  /**
11990
12242
  *
11991
12243
  * @type {PartialRecordLanguageEnumIContentsValue}
11992
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
12244
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
11993
12245
  */
11994
12246
  'contents': PartialRecordLanguageEnumIContentsValue;
11995
12247
  /**
11996
12248
  *
11997
- * @type {string}
11998
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
12249
+ * @type {Array<string>}
12250
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
11999
12251
  */
12000
- 'publishedAt': string;
12252
+ 'slugs': Array<string>;
12253
+ /**
12254
+ *
12255
+ * @type {Array<string>}
12256
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
12257
+ */
12258
+ 'languages': Array<string>;
12001
12259
  /**
12002
12260
  *
12003
12261
  * @type {IImage}
12004
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
12262
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
12005
12263
  */
12006
12264
  'thumbnail'?: IImage;
12007
12265
  /**
12008
12266
  *
12009
12267
  * @type {string}
12010
- * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
12268
+ * @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
12011
12269
  */
12012
12270
  'main'?: string;
12013
12271
  }
@@ -12064,37 +12322,43 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
12064
12322
  /**
12065
12323
  * From T, pick a set of properties whose keys are in the union K
12066
12324
  * @export
12067
- * @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12325
+ * @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12068
12326
  */
12069
- export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
12327
+ export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue {
12070
12328
  /**
12071
12329
  *
12072
12330
  * @type {string}
12073
- * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12331
+ * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12074
12332
  */
12075
12333
  'company': string;
12076
12334
  /**
12077
12335
  *
12078
12336
  * @type {string}
12079
- * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12337
+ * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12080
12338
  */
12081
12339
  'template': string;
12082
12340
  /**
12083
12341
  *
12084
12342
  * @type {PartialRecordLanguageEnumIContentsValue}
12085
- * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12343
+ * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12086
12344
  */
12087
12345
  'contents': PartialRecordLanguageEnumIContentsValue;
12088
12346
  /**
12089
12347
  *
12090
- * @type {string}
12091
- * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12348
+ * @type {Array<string>}
12349
+ * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12092
12350
  */
12093
- 'publishedAt': string;
12351
+ 'slugs': Array<string>;
12352
+ /**
12353
+ *
12354
+ * @type {Array<string>}
12355
+ * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12356
+ */
12357
+ 'languages': Array<string>;
12094
12358
  /**
12095
12359
  *
12096
12360
  * @type {IImage}
12097
- * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
12361
+ * @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
12098
12362
  */
12099
12363
  'thumbnail'?: IImage;
12100
12364
  }
@@ -12146,6 +12410,12 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
12146
12410
  * @memberof PickICollectionExcludeKeyofICollectionTemplate
12147
12411
  */
12148
12412
  'slugs': Array<string>;
12413
+ /**
12414
+ *
12415
+ * @type {Array<string>}
12416
+ * @memberof PickICollectionExcludeKeyofICollectionTemplate
12417
+ */
12418
+ 'languages': Array<string>;
12149
12419
  /**
12150
12420
  *
12151
12421
  * @type {string}
@@ -12293,6 +12563,12 @@ export interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91
12293
12563
  * @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12294
12564
  */
12295
12565
  export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
12566
+ /**
12567
+ * Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
12568
+ * @type {number}
12569
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12570
+ */
12571
+ 'password'?: number;
12296
12572
  /**
12297
12573
  *
12298
12574
  * @type {string}
@@ -12347,6 +12623,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
12347
12623
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12348
12624
  */
12349
12625
  'updatedAt': string;
12626
+ /**
12627
+ *
12628
+ * @type {Array<LanguageEnum>}
12629
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12630
+ */
12631
+ 'languages': Array<LanguageEnum>;
12350
12632
  /**
12351
12633
  *
12352
12634
  * @type {CompanyTypeEnum}
@@ -12401,6 +12683,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
12401
12683
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12402
12684
  */
12403
12685
  'orderNoSuffix'?: string;
12686
+ /**
12687
+ * Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
12688
+ * @type {number}
12689
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12690
+ */
12691
+ 'lastOrderNumber'?: number;
12404
12692
  /**
12405
12693
  *
12406
12694
  * @type {IImage}
@@ -12425,12 +12713,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
12425
12713
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12426
12714
  */
12427
12715
  'timezone': TimezoneEnum;
12428
- /**
12429
- *
12430
- * @type {Array<LanguageEnum>}
12431
- * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12432
- */
12433
- 'languages': Array<LanguageEnum>;
12434
12716
  /**
12435
12717
  *
12436
12718
  * @type {CurrencyEnum}
@@ -12499,6 +12781,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
12499
12781
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12500
12782
  */
12501
12783
  'htmlHead'?: string;
12784
+ /**
12785
+ * Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
12786
+ * @type {boolean}
12787
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12788
+ */
12789
+ 'passwordActive'?: boolean;
12502
12790
  /**
12503
12791
  *
12504
12792
  * @type {string}
@@ -12911,11 +13199,11 @@ export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
12911
13199
  */
12912
13200
  export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
12913
13201
  /**
12914
- *
12915
- * @type {number}
13202
+ * Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
13203
+ * @type {string}
12916
13204
  * @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
12917
13205
  */
12918
- 'number': number;
13206
+ 'number': string;
12919
13207
  /**
12920
13208
  *
12921
13209
  * @type {string}
@@ -13296,51 +13584,51 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
13296
13584
  /**
13297
13585
  * From T, pick a set of properties whose keys are in the union K
13298
13586
  * @export
13299
- * @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13587
+ * @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13300
13588
  */
13301
- export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue {
13589
+ export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue {
13302
13590
  /**
13303
13591
  *
13304
13592
  * @type {string}
13305
- * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13593
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13306
13594
  */
13307
13595
  'company': string;
13308
13596
  /**
13309
13597
  *
13310
13598
  * @type {string}
13311
- * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13599
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13312
13600
  */
13313
13601
  'template': string;
13314
13602
  /**
13315
13603
  *
13316
13604
  * @type {PartialRecordLanguageEnumIContentsValue}
13317
- * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13605
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13318
13606
  */
13319
13607
  'contents': PartialRecordLanguageEnumIContentsValue;
13320
13608
  /**
13321
13609
  *
13322
- * @type {string}
13323
- * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13610
+ * @type {Array<string>}
13611
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13324
13612
  */
13325
- 'publishedAt': string;
13613
+ 'slugs': Array<string>;
13614
+ /**
13615
+ *
13616
+ * @type {Array<string>}
13617
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13618
+ */
13619
+ 'languages': Array<string>;
13326
13620
  /**
13327
13621
  *
13328
13622
  * @type {IImage}
13329
- * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13623
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13330
13624
  */
13331
13625
  'thumbnail'?: IImage;
13332
13626
  /**
13333
13627
  *
13334
13628
  * @type {string}
13335
- * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13629
+ * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
13336
13630
  */
13337
13631
  'type': string;
13338
- /**
13339
- *
13340
- * @type {boolean}
13341
- * @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
13342
- */
13343
- 'draft': boolean;
13344
13632
  }
13345
13633
  /**
13346
13634
  * From T, pick a set of properties whose keys are in the union K
@@ -13390,6 +13678,12 @@ export interface PickIPageExcludeKeyofIPageTemplate {
13390
13678
  * @memberof PickIPageExcludeKeyofIPageTemplate
13391
13679
  */
13392
13680
  'slugs': Array<string>;
13681
+ /**
13682
+ *
13683
+ * @type {Array<string>}
13684
+ * @memberof PickIPageExcludeKeyofIPageTemplate
13685
+ */
13686
+ 'languages': Array<string>;
13393
13687
  /**
13394
13688
  *
13395
13689
  * @type {string}
@@ -13586,6 +13880,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
13586
13880
  * @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
13587
13881
  */
13588
13882
  'slugs': Array<string>;
13883
+ /**
13884
+ *
13885
+ * @type {Array<string>}
13886
+ * @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
13887
+ */
13888
+ 'languages': Array<string>;
13589
13889
  /**
13590
13890
  *
13591
13891
  * @type {Array<VariantType>}
@@ -13782,6 +14082,12 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
13782
14082
  * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
13783
14083
  */
13784
14084
  'contents': PartialRecordLanguageEnumIContentsValue;
14085
+ /**
14086
+ *
14087
+ * @type {Array<string>}
14088
+ * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
14089
+ */
14090
+ 'languages': Array<string>;
13785
14091
  /**
13786
14092
  *
13787
14093
  * @type {Array<VariantType>}
@@ -13804,12 +14110,6 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
13804
14110
  'attributes'?: {
13805
14111
  [key: string]: string;
13806
14112
  };
13807
- /**
13808
- *
13809
- * @type {string}
13810
- * @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
13811
- */
13812
- 'publishedAt': string;
13813
14113
  }
13814
14114
  /**
13815
14115
  * 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-client",
3
- "version": "1.3.65",
3
+ "version": "1.3.66",
4
4
  "description": "api-client-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": "e4dcb70ebcc8aea35943bee559499dadb32c5823"
40
+ "gitHead": "4e5a12f5b56f7b405659f0edcb758d9abad1d8e5"
41
41
  }