@infisale-client/api-client 1.3.65 → 1.3.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/api.d.ts +203 -125
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -1267,6 +1267,12 @@ export interface IBrandPatchRequest {
|
|
|
1267
1267
|
* @memberof IBrandPatchRequest
|
|
1268
1268
|
*/
|
|
1269
1269
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1270
|
+
/**
|
|
1271
|
+
*
|
|
1272
|
+
* @type {string}
|
|
1273
|
+
* @memberof IBrandPatchRequest
|
|
1274
|
+
*/
|
|
1275
|
+
'publishedAt'?: string;
|
|
1270
1276
|
/**
|
|
1271
1277
|
*
|
|
1272
1278
|
* @type {IImage}
|
|
@@ -1298,6 +1304,12 @@ export interface IBrandPostRequest {
|
|
|
1298
1304
|
* @memberof IBrandPostRequest
|
|
1299
1305
|
*/
|
|
1300
1306
|
'thumbnail'?: IImage;
|
|
1307
|
+
/**
|
|
1308
|
+
*
|
|
1309
|
+
* @type {string}
|
|
1310
|
+
* @memberof IBrandPostRequest
|
|
1311
|
+
*/
|
|
1312
|
+
'publishedAt'?: string;
|
|
1301
1313
|
}
|
|
1302
1314
|
/**
|
|
1303
1315
|
*
|
|
@@ -1408,7 +1420,13 @@ export interface IBrandResponse {
|
|
|
1408
1420
|
* @type {Array<string>}
|
|
1409
1421
|
* @memberof IBrandResponse
|
|
1410
1422
|
*/
|
|
1411
|
-
'
|
|
1423
|
+
'languages': Array<string>;
|
|
1424
|
+
/**
|
|
1425
|
+
*
|
|
1426
|
+
* @type {string}
|
|
1427
|
+
* @memberof IBrandResponse
|
|
1428
|
+
*/
|
|
1429
|
+
'publishedAt': string;
|
|
1412
1430
|
}
|
|
1413
1431
|
/**
|
|
1414
1432
|
*
|
|
@@ -1631,19 +1649,19 @@ export interface ICategoryPatchRequest {
|
|
|
1631
1649
|
* @type {string}
|
|
1632
1650
|
* @memberof ICategoryPatchRequest
|
|
1633
1651
|
*/
|
|
1634
|
-
'
|
|
1652
|
+
'publishedAt'?: string;
|
|
1635
1653
|
/**
|
|
1636
1654
|
*
|
|
1637
|
-
* @type {
|
|
1655
|
+
* @type {string}
|
|
1638
1656
|
* @memberof ICategoryPatchRequest
|
|
1639
1657
|
*/
|
|
1640
|
-
'
|
|
1658
|
+
'company'?: string;
|
|
1641
1659
|
/**
|
|
1642
1660
|
*
|
|
1643
|
-
* @type {
|
|
1661
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1644
1662
|
* @memberof ICategoryPatchRequest
|
|
1645
1663
|
*/
|
|
1646
|
-
'
|
|
1664
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1647
1665
|
/**
|
|
1648
1666
|
*
|
|
1649
1667
|
* @type {IImage}
|
|
@@ -1675,12 +1693,6 @@ export interface ICategoryPostRequest {
|
|
|
1675
1693
|
* @memberof ICategoryPostRequest
|
|
1676
1694
|
*/
|
|
1677
1695
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1678
|
-
/**
|
|
1679
|
-
*
|
|
1680
|
-
* @type {string}
|
|
1681
|
-
* @memberof ICategoryPostRequest
|
|
1682
|
-
*/
|
|
1683
|
-
'publishedAt': string;
|
|
1684
1696
|
/**
|
|
1685
1697
|
*
|
|
1686
1698
|
* @type {IImage}
|
|
@@ -1699,6 +1711,12 @@ export interface ICategoryPostRequest {
|
|
|
1699
1711
|
* @memberof ICategoryPostRequest
|
|
1700
1712
|
*/
|
|
1701
1713
|
'attributes': Array<ICategoryAttributesResponseAttributesInner>;
|
|
1714
|
+
/**
|
|
1715
|
+
*
|
|
1716
|
+
* @type {string}
|
|
1717
|
+
* @memberof ICategoryPostRequest
|
|
1718
|
+
*/
|
|
1719
|
+
'publishedAt'?: string;
|
|
1702
1720
|
}
|
|
1703
1721
|
/**
|
|
1704
1722
|
*
|
|
@@ -1747,7 +1765,7 @@ export interface ICategoryResponse {
|
|
|
1747
1765
|
* @type {Array<string>}
|
|
1748
1766
|
* @memberof ICategoryResponse
|
|
1749
1767
|
*/
|
|
1750
|
-
'
|
|
1768
|
+
'languages': Array<string>;
|
|
1751
1769
|
/**
|
|
1752
1770
|
*
|
|
1753
1771
|
* @type {string}
|
|
@@ -1986,7 +2004,7 @@ export interface ICollection {
|
|
|
1986
2004
|
* @type {Array<string>}
|
|
1987
2005
|
* @memberof ICollection
|
|
1988
2006
|
*/
|
|
1989
|
-
'
|
|
2007
|
+
'languages': Array<string>;
|
|
1990
2008
|
/**
|
|
1991
2009
|
*
|
|
1992
2010
|
* @type {string}
|
|
@@ -2129,16 +2147,16 @@ export interface ICollectionPostRequest {
|
|
|
2129
2147
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
2130
2148
|
/**
|
|
2131
2149
|
*
|
|
2132
|
-
* @type {
|
|
2150
|
+
* @type {IImage}
|
|
2133
2151
|
* @memberof ICollectionPostRequest
|
|
2134
2152
|
*/
|
|
2135
|
-
'
|
|
2153
|
+
'thumbnail'?: IImage;
|
|
2136
2154
|
/**
|
|
2137
2155
|
*
|
|
2138
|
-
* @type {
|
|
2156
|
+
* @type {string}
|
|
2139
2157
|
* @memberof ICollectionPostRequest
|
|
2140
2158
|
*/
|
|
2141
|
-
'
|
|
2159
|
+
'publishedAt'?: string;
|
|
2142
2160
|
}
|
|
2143
2161
|
/**
|
|
2144
2162
|
*
|
|
@@ -2187,7 +2205,7 @@ export interface ICollectionResponse {
|
|
|
2187
2205
|
* @type {Array<string>}
|
|
2188
2206
|
* @memberof ICollectionResponse
|
|
2189
2207
|
*/
|
|
2190
|
-
'
|
|
2208
|
+
'languages': Array<string>;
|
|
2191
2209
|
/**
|
|
2192
2210
|
*
|
|
2193
2211
|
* @type {string}
|
|
@@ -2459,6 +2477,12 @@ export interface ICompany {
|
|
|
2459
2477
|
* @memberof ICompany
|
|
2460
2478
|
*/
|
|
2461
2479
|
'orderNoSuffix'?: string;
|
|
2480
|
+
/**
|
|
2481
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2482
|
+
* @type {number}
|
|
2483
|
+
* @memberof ICompany
|
|
2484
|
+
*/
|
|
2485
|
+
'lastOrderNumber'?: number;
|
|
2462
2486
|
/**
|
|
2463
2487
|
*
|
|
2464
2488
|
* @type {string}
|
|
@@ -2625,6 +2649,18 @@ export interface ICompany {
|
|
|
2625
2649
|
* @memberof ICompany
|
|
2626
2650
|
*/
|
|
2627
2651
|
'htmlHead'?: string;
|
|
2652
|
+
/**
|
|
2653
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2654
|
+
* @type {number}
|
|
2655
|
+
* @memberof ICompany
|
|
2656
|
+
*/
|
|
2657
|
+
'password'?: number;
|
|
2658
|
+
/**
|
|
2659
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
2660
|
+
* @type {boolean}
|
|
2661
|
+
* @memberof ICompany
|
|
2662
|
+
*/
|
|
2663
|
+
'passwordActive'?: boolean;
|
|
2628
2664
|
/**
|
|
2629
2665
|
*
|
|
2630
2666
|
* @type {CompanyStatusEnum}
|
|
@@ -2662,6 +2698,12 @@ export interface ICompany {
|
|
|
2662
2698
|
* @interface ICompanyAdminResponse
|
|
2663
2699
|
*/
|
|
2664
2700
|
export interface ICompanyAdminResponse {
|
|
2701
|
+
/**
|
|
2702
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2703
|
+
* @type {number}
|
|
2704
|
+
* @memberof ICompanyAdminResponse
|
|
2705
|
+
*/
|
|
2706
|
+
'password'?: number;
|
|
2665
2707
|
/**
|
|
2666
2708
|
*
|
|
2667
2709
|
* @type {string}
|
|
@@ -2716,6 +2758,12 @@ export interface ICompanyAdminResponse {
|
|
|
2716
2758
|
* @memberof ICompanyAdminResponse
|
|
2717
2759
|
*/
|
|
2718
2760
|
'updatedAt': string;
|
|
2761
|
+
/**
|
|
2762
|
+
*
|
|
2763
|
+
* @type {Array<LanguageEnum>}
|
|
2764
|
+
* @memberof ICompanyAdminResponse
|
|
2765
|
+
*/
|
|
2766
|
+
'languages': Array<LanguageEnum>;
|
|
2719
2767
|
/**
|
|
2720
2768
|
*
|
|
2721
2769
|
* @type {CompanyTypeEnum}
|
|
@@ -2770,6 +2818,12 @@ export interface ICompanyAdminResponse {
|
|
|
2770
2818
|
* @memberof ICompanyAdminResponse
|
|
2771
2819
|
*/
|
|
2772
2820
|
'orderNoSuffix'?: string;
|
|
2821
|
+
/**
|
|
2822
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2823
|
+
* @type {number}
|
|
2824
|
+
* @memberof ICompanyAdminResponse
|
|
2825
|
+
*/
|
|
2826
|
+
'lastOrderNumber'?: number;
|
|
2773
2827
|
/**
|
|
2774
2828
|
*
|
|
2775
2829
|
* @type {IImage}
|
|
@@ -2794,12 +2848,6 @@ export interface ICompanyAdminResponse {
|
|
|
2794
2848
|
* @memberof ICompanyAdminResponse
|
|
2795
2849
|
*/
|
|
2796
2850
|
'timezone': TimezoneEnum;
|
|
2797
|
-
/**
|
|
2798
|
-
*
|
|
2799
|
-
* @type {Array<LanguageEnum>}
|
|
2800
|
-
* @memberof ICompanyAdminResponse
|
|
2801
|
-
*/
|
|
2802
|
-
'languages': Array<LanguageEnum>;
|
|
2803
2851
|
/**
|
|
2804
2852
|
*
|
|
2805
2853
|
* @type {CurrencyEnum}
|
|
@@ -2868,6 +2916,12 @@ export interface ICompanyAdminResponse {
|
|
|
2868
2916
|
* @memberof ICompanyAdminResponse
|
|
2869
2917
|
*/
|
|
2870
2918
|
'htmlHead'?: string;
|
|
2919
|
+
/**
|
|
2920
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
2921
|
+
* @type {boolean}
|
|
2922
|
+
* @memberof ICompanyAdminResponse
|
|
2923
|
+
*/
|
|
2924
|
+
'passwordActive'?: boolean;
|
|
2871
2925
|
/**
|
|
2872
2926
|
*
|
|
2873
2927
|
* @type {string}
|
|
@@ -3420,6 +3474,12 @@ export interface ICompanyDashboardResponseOrdersInner {
|
|
|
3420
3474
|
* @interface ICompanyPatchRequest
|
|
3421
3475
|
*/
|
|
3422
3476
|
export interface ICompanyPatchRequest {
|
|
3477
|
+
/**
|
|
3478
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3479
|
+
* @type {number}
|
|
3480
|
+
* @memberof ICompanyPatchRequest
|
|
3481
|
+
*/
|
|
3482
|
+
'password'?: number;
|
|
3423
3483
|
/**
|
|
3424
3484
|
*
|
|
3425
3485
|
* @type {string}
|
|
@@ -3458,6 +3518,12 @@ export interface ICompanyPatchRequest {
|
|
|
3458
3518
|
* @memberof ICompanyPatchRequest
|
|
3459
3519
|
*/
|
|
3460
3520
|
'status'?: CompanyStatusEnum;
|
|
3521
|
+
/**
|
|
3522
|
+
*
|
|
3523
|
+
* @type {Array<LanguageEnum>}
|
|
3524
|
+
* @memberof ICompanyPatchRequest
|
|
3525
|
+
*/
|
|
3526
|
+
'languages'?: Array<LanguageEnum>;
|
|
3461
3527
|
/**
|
|
3462
3528
|
*
|
|
3463
3529
|
* @type {string}
|
|
@@ -3530,6 +3596,12 @@ export interface ICompanyPatchRequest {
|
|
|
3530
3596
|
* @memberof ICompanyPatchRequest
|
|
3531
3597
|
*/
|
|
3532
3598
|
'orderNoSuffix'?: string;
|
|
3599
|
+
/**
|
|
3600
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
3601
|
+
* @type {number}
|
|
3602
|
+
* @memberof ICompanyPatchRequest
|
|
3603
|
+
*/
|
|
3604
|
+
'lastOrderNumber'?: number;
|
|
3533
3605
|
/**
|
|
3534
3606
|
*
|
|
3535
3607
|
* @type {IImage}
|
|
@@ -3554,12 +3626,6 @@ export interface ICompanyPatchRequest {
|
|
|
3554
3626
|
* @memberof ICompanyPatchRequest
|
|
3555
3627
|
*/
|
|
3556
3628
|
'timezone'?: TimezoneEnum;
|
|
3557
|
-
/**
|
|
3558
|
-
*
|
|
3559
|
-
* @type {Array<LanguageEnum>}
|
|
3560
|
-
* @memberof ICompanyPatchRequest
|
|
3561
|
-
*/
|
|
3562
|
-
'languages'?: Array<LanguageEnum>;
|
|
3563
3629
|
/**
|
|
3564
3630
|
*
|
|
3565
3631
|
* @type {CurrencyEnum}
|
|
@@ -3598,6 +3664,12 @@ export interface ICompanyPatchRequest {
|
|
|
3598
3664
|
* @memberof ICompanyPatchRequest
|
|
3599
3665
|
*/
|
|
3600
3666
|
'htmlHead'?: string;
|
|
3667
|
+
/**
|
|
3668
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
3669
|
+
* @type {boolean}
|
|
3670
|
+
* @memberof ICompanyPatchRequest
|
|
3671
|
+
*/
|
|
3672
|
+
'passwordActive'?: boolean;
|
|
3601
3673
|
/**
|
|
3602
3674
|
*
|
|
3603
3675
|
* @type {string}
|
|
@@ -3765,6 +3837,12 @@ export interface ICompanyPostRequest {
|
|
|
3765
3837
|
* @interface ICompanyResponse
|
|
3766
3838
|
*/
|
|
3767
3839
|
export interface ICompanyResponse {
|
|
3840
|
+
/**
|
|
3841
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3842
|
+
* @type {number}
|
|
3843
|
+
* @memberof ICompanyResponse
|
|
3844
|
+
*/
|
|
3845
|
+
'password'?: number;
|
|
3768
3846
|
/**
|
|
3769
3847
|
*
|
|
3770
3848
|
* @type {string}
|
|
@@ -3819,6 +3897,12 @@ export interface ICompanyResponse {
|
|
|
3819
3897
|
* @memberof ICompanyResponse
|
|
3820
3898
|
*/
|
|
3821
3899
|
'updatedAt': string;
|
|
3900
|
+
/**
|
|
3901
|
+
*
|
|
3902
|
+
* @type {Array<LanguageEnum>}
|
|
3903
|
+
* @memberof ICompanyResponse
|
|
3904
|
+
*/
|
|
3905
|
+
'languages': Array<LanguageEnum>;
|
|
3822
3906
|
/**
|
|
3823
3907
|
*
|
|
3824
3908
|
* @type {CompanyTypeEnum}
|
|
@@ -3873,6 +3957,12 @@ export interface ICompanyResponse {
|
|
|
3873
3957
|
* @memberof ICompanyResponse
|
|
3874
3958
|
*/
|
|
3875
3959
|
'orderNoSuffix'?: string;
|
|
3960
|
+
/**
|
|
3961
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
3962
|
+
* @type {number}
|
|
3963
|
+
* @memberof ICompanyResponse
|
|
3964
|
+
*/
|
|
3965
|
+
'lastOrderNumber'?: number;
|
|
3876
3966
|
/**
|
|
3877
3967
|
*
|
|
3878
3968
|
* @type {IImage}
|
|
@@ -3897,12 +3987,6 @@ export interface ICompanyResponse {
|
|
|
3897
3987
|
* @memberof ICompanyResponse
|
|
3898
3988
|
*/
|
|
3899
3989
|
'timezone': TimezoneEnum;
|
|
3900
|
-
/**
|
|
3901
|
-
*
|
|
3902
|
-
* @type {Array<LanguageEnum>}
|
|
3903
|
-
* @memberof ICompanyResponse
|
|
3904
|
-
*/
|
|
3905
|
-
'languages': Array<LanguageEnum>;
|
|
3906
3990
|
/**
|
|
3907
3991
|
*
|
|
3908
3992
|
* @type {CurrencyEnum}
|
|
@@ -3971,6 +4055,12 @@ export interface ICompanyResponse {
|
|
|
3971
4055
|
* @memberof ICompanyResponse
|
|
3972
4056
|
*/
|
|
3973
4057
|
'htmlHead'?: string;
|
|
4058
|
+
/**
|
|
4059
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
4060
|
+
* @type {boolean}
|
|
4061
|
+
* @memberof ICompanyResponse
|
|
4062
|
+
*/
|
|
4063
|
+
'passwordActive'?: boolean;
|
|
3974
4064
|
/**
|
|
3975
4065
|
*
|
|
3976
4066
|
* @type {string}
|
|
@@ -6980,11 +7070,11 @@ export interface IOrderPostRequest {
|
|
|
6980
7070
|
*/
|
|
6981
7071
|
export interface IOrderResponse {
|
|
6982
7072
|
/**
|
|
6983
|
-
*
|
|
6984
|
-
* @type {
|
|
7073
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
7074
|
+
* @type {string}
|
|
6985
7075
|
* @memberof IOrderResponse
|
|
6986
7076
|
*/
|
|
6987
|
-
'number':
|
|
7077
|
+
'number': string;
|
|
6988
7078
|
/**
|
|
6989
7079
|
*
|
|
6990
7080
|
* @type {string}
|
|
@@ -7634,28 +7724,28 @@ export interface IPagePostRequest {
|
|
|
7634
7724
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7635
7725
|
/**
|
|
7636
7726
|
*
|
|
7637
|
-
* @type {
|
|
7727
|
+
* @type {IImage}
|
|
7638
7728
|
* @memberof IPagePostRequest
|
|
7639
7729
|
*/
|
|
7640
|
-
'
|
|
7730
|
+
'thumbnail'?: IImage;
|
|
7641
7731
|
/**
|
|
7642
7732
|
*
|
|
7643
|
-
* @type {
|
|
7733
|
+
* @type {string}
|
|
7644
7734
|
* @memberof IPagePostRequest
|
|
7645
7735
|
*/
|
|
7646
|
-
'
|
|
7736
|
+
'type': string;
|
|
7647
7737
|
/**
|
|
7648
7738
|
*
|
|
7649
7739
|
* @type {string}
|
|
7650
7740
|
* @memberof IPagePostRequest
|
|
7651
7741
|
*/
|
|
7652
|
-
'
|
|
7742
|
+
'publishedAt'?: string;
|
|
7653
7743
|
/**
|
|
7654
7744
|
*
|
|
7655
7745
|
* @type {boolean}
|
|
7656
7746
|
* @memberof IPagePostRequest
|
|
7657
7747
|
*/
|
|
7658
|
-
'draft'
|
|
7748
|
+
'draft'?: boolean;
|
|
7659
7749
|
}
|
|
7660
7750
|
/**
|
|
7661
7751
|
*
|
|
@@ -7704,7 +7794,7 @@ export interface IPageResponse {
|
|
|
7704
7794
|
* @type {Array<string>}
|
|
7705
7795
|
* @memberof IPageResponse
|
|
7706
7796
|
*/
|
|
7707
|
-
'
|
|
7797
|
+
'languages': Array<string>;
|
|
7708
7798
|
/**
|
|
7709
7799
|
*
|
|
7710
7800
|
* @type {string}
|
|
@@ -8414,6 +8504,12 @@ export interface IProductPatchRequest {
|
|
|
8414
8504
|
* @memberof IProductPatchRequest
|
|
8415
8505
|
*/
|
|
8416
8506
|
'template'?: string;
|
|
8507
|
+
/**
|
|
8508
|
+
*
|
|
8509
|
+
* @type {string}
|
|
8510
|
+
* @memberof IProductPatchRequest
|
|
8511
|
+
*/
|
|
8512
|
+
'publishedAt'?: string;
|
|
8417
8513
|
/**
|
|
8418
8514
|
*
|
|
8419
8515
|
* @type {string}
|
|
@@ -8492,12 +8588,6 @@ export interface IProductPatchRequest {
|
|
|
8492
8588
|
'attributes'?: {
|
|
8493
8589
|
[key: string]: string;
|
|
8494
8590
|
};
|
|
8495
|
-
/**
|
|
8496
|
-
*
|
|
8497
|
-
* @type {string}
|
|
8498
|
-
* @memberof IProductPatchRequest
|
|
8499
|
-
*/
|
|
8500
|
-
'publishedAt'?: string;
|
|
8501
8591
|
}
|
|
8502
8592
|
/**
|
|
8503
8593
|
*
|
|
@@ -8588,25 +8678,25 @@ export interface IProductPostRequest {
|
|
|
8588
8678
|
* @type {string}
|
|
8589
8679
|
* @memberof IProductPostRequest
|
|
8590
8680
|
*/
|
|
8591
|
-
'
|
|
8681
|
+
'category'?: string;
|
|
8592
8682
|
/**
|
|
8593
8683
|
*
|
|
8594
8684
|
* @type {string}
|
|
8595
8685
|
* @memberof IProductPostRequest
|
|
8596
8686
|
*/
|
|
8597
|
-
'
|
|
8687
|
+
'brand'?: string;
|
|
8598
8688
|
/**
|
|
8599
8689
|
*
|
|
8600
8690
|
* @type {string}
|
|
8601
8691
|
* @memberof IProductPostRequest
|
|
8602
8692
|
*/
|
|
8603
|
-
'
|
|
8693
|
+
'template': string;
|
|
8604
8694
|
/**
|
|
8605
8695
|
*
|
|
8606
8696
|
* @type {string}
|
|
8607
8697
|
* @memberof IProductPostRequest
|
|
8608
8698
|
*/
|
|
8609
|
-
'
|
|
8699
|
+
'publishedAt'?: string;
|
|
8610
8700
|
}
|
|
8611
8701
|
/**
|
|
8612
8702
|
*
|
|
@@ -8717,7 +8807,7 @@ export interface IProductResponse {
|
|
|
8717
8807
|
* @type {Array<string>}
|
|
8718
8808
|
* @memberof IProductResponse
|
|
8719
8809
|
*/
|
|
8720
|
-
'
|
|
8810
|
+
'languages': Array<string>;
|
|
8721
8811
|
/**
|
|
8722
8812
|
*
|
|
8723
8813
|
* @type {Array<VariantType>}
|
|
@@ -11885,25 +11975,25 @@ export interface PickIBasketExcludeKeyofIBasketItems {
|
|
|
11885
11975
|
/**
|
|
11886
11976
|
* From T, pick a set of properties whose keys are in the union K
|
|
11887
11977
|
* @export
|
|
11888
|
-
* @interface
|
|
11978
|
+
* @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11889
11979
|
*/
|
|
11890
|
-
export interface
|
|
11980
|
+
export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue {
|
|
11891
11981
|
/**
|
|
11892
11982
|
*
|
|
11893
11983
|
* @type {string}
|
|
11894
|
-
* @memberof
|
|
11984
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11895
11985
|
*/
|
|
11896
11986
|
'company': string;
|
|
11897
11987
|
/**
|
|
11898
11988
|
*
|
|
11899
11989
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11900
|
-
* @memberof
|
|
11990
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11901
11991
|
*/
|
|
11902
11992
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11903
11993
|
/**
|
|
11904
11994
|
*
|
|
11905
11995
|
* @type {IImage}
|
|
11906
|
-
* @memberof
|
|
11996
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11907
11997
|
*/
|
|
11908
11998
|
'thumbnail'?: IImage;
|
|
11909
11999
|
}
|
|
@@ -11954,7 +12044,7 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
11954
12044
|
* @type {Array<string>}
|
|
11955
12045
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
11956
12046
|
*/
|
|
11957
|
-
'
|
|
12047
|
+
'languages': Array<string>;
|
|
11958
12048
|
/**
|
|
11959
12049
|
*
|
|
11960
12050
|
* @type {string}
|
|
@@ -11977,37 +12067,31 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
11977
12067
|
/**
|
|
11978
12068
|
* From T, pick a set of properties whose keys are in the union K
|
|
11979
12069
|
* @export
|
|
11980
|
-
* @interface
|
|
12070
|
+
* @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11981
12071
|
*/
|
|
11982
|
-
export interface
|
|
12072
|
+
export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue {
|
|
11983
12073
|
/**
|
|
11984
12074
|
*
|
|
11985
12075
|
* @type {string}
|
|
11986
|
-
* @memberof
|
|
12076
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11987
12077
|
*/
|
|
11988
12078
|
'company': string;
|
|
11989
12079
|
/**
|
|
11990
12080
|
*
|
|
11991
12081
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11992
|
-
* @memberof
|
|
12082
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11993
12083
|
*/
|
|
11994
12084
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11995
|
-
/**
|
|
11996
|
-
*
|
|
11997
|
-
* @type {string}
|
|
11998
|
-
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
|
|
11999
|
-
*/
|
|
12000
|
-
'publishedAt': string;
|
|
12001
12085
|
/**
|
|
12002
12086
|
*
|
|
12003
12087
|
* @type {IImage}
|
|
12004
|
-
* @memberof
|
|
12088
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12005
12089
|
*/
|
|
12006
12090
|
'thumbnail'?: IImage;
|
|
12007
12091
|
/**
|
|
12008
12092
|
*
|
|
12009
12093
|
* @type {string}
|
|
12010
|
-
* @memberof
|
|
12094
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12011
12095
|
*/
|
|
12012
12096
|
'main'?: string;
|
|
12013
12097
|
}
|
|
@@ -12064,37 +12148,31 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
12064
12148
|
/**
|
|
12065
12149
|
* From T, pick a set of properties whose keys are in the union K
|
|
12066
12150
|
* @export
|
|
12067
|
-
* @interface
|
|
12151
|
+
* @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12068
12152
|
*/
|
|
12069
|
-
export interface
|
|
12153
|
+
export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue {
|
|
12070
12154
|
/**
|
|
12071
12155
|
*
|
|
12072
12156
|
* @type {string}
|
|
12073
|
-
* @memberof
|
|
12157
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12074
12158
|
*/
|
|
12075
12159
|
'company': string;
|
|
12076
12160
|
/**
|
|
12077
12161
|
*
|
|
12078
12162
|
* @type {string}
|
|
12079
|
-
* @memberof
|
|
12163
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12080
12164
|
*/
|
|
12081
12165
|
'template': string;
|
|
12082
12166
|
/**
|
|
12083
12167
|
*
|
|
12084
12168
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12085
|
-
* @memberof
|
|
12169
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12086
12170
|
*/
|
|
12087
12171
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12088
|
-
/**
|
|
12089
|
-
*
|
|
12090
|
-
* @type {string}
|
|
12091
|
-
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12092
|
-
*/
|
|
12093
|
-
'publishedAt': string;
|
|
12094
12172
|
/**
|
|
12095
12173
|
*
|
|
12096
12174
|
* @type {IImage}
|
|
12097
|
-
* @memberof
|
|
12175
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12098
12176
|
*/
|
|
12099
12177
|
'thumbnail'?: IImage;
|
|
12100
12178
|
}
|
|
@@ -12145,7 +12223,7 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
|
12145
12223
|
* @type {Array<string>}
|
|
12146
12224
|
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
12147
12225
|
*/
|
|
12148
|
-
'
|
|
12226
|
+
'languages': Array<string>;
|
|
12149
12227
|
/**
|
|
12150
12228
|
*
|
|
12151
12229
|
* @type {string}
|
|
@@ -12293,6 +12371,12 @@ export interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91
|
|
|
12293
12371
|
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12294
12372
|
*/
|
|
12295
12373
|
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
12374
|
+
/**
|
|
12375
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
12376
|
+
* @type {number}
|
|
12377
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12378
|
+
*/
|
|
12379
|
+
'password'?: number;
|
|
12296
12380
|
/**
|
|
12297
12381
|
*
|
|
12298
12382
|
* @type {string}
|
|
@@ -12347,6 +12431,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12347
12431
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12348
12432
|
*/
|
|
12349
12433
|
'updatedAt': string;
|
|
12434
|
+
/**
|
|
12435
|
+
*
|
|
12436
|
+
* @type {Array<LanguageEnum>}
|
|
12437
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12438
|
+
*/
|
|
12439
|
+
'languages': Array<LanguageEnum>;
|
|
12350
12440
|
/**
|
|
12351
12441
|
*
|
|
12352
12442
|
* @type {CompanyTypeEnum}
|
|
@@ -12401,6 +12491,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12401
12491
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12402
12492
|
*/
|
|
12403
12493
|
'orderNoSuffix'?: string;
|
|
12494
|
+
/**
|
|
12495
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
12496
|
+
* @type {number}
|
|
12497
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12498
|
+
*/
|
|
12499
|
+
'lastOrderNumber'?: number;
|
|
12404
12500
|
/**
|
|
12405
12501
|
*
|
|
12406
12502
|
* @type {IImage}
|
|
@@ -12425,12 +12521,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12425
12521
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12426
12522
|
*/
|
|
12427
12523
|
'timezone': TimezoneEnum;
|
|
12428
|
-
/**
|
|
12429
|
-
*
|
|
12430
|
-
* @type {Array<LanguageEnum>}
|
|
12431
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12432
|
-
*/
|
|
12433
|
-
'languages': Array<LanguageEnum>;
|
|
12434
12524
|
/**
|
|
12435
12525
|
*
|
|
12436
12526
|
* @type {CurrencyEnum}
|
|
@@ -12499,6 +12589,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12499
12589
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12500
12590
|
*/
|
|
12501
12591
|
'htmlHead'?: string;
|
|
12592
|
+
/**
|
|
12593
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
12594
|
+
* @type {boolean}
|
|
12595
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12596
|
+
*/
|
|
12597
|
+
'passwordActive'?: boolean;
|
|
12502
12598
|
/**
|
|
12503
12599
|
*
|
|
12504
12600
|
* @type {string}
|
|
@@ -12911,11 +13007,11 @@ export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
|
|
|
12911
13007
|
*/
|
|
12912
13008
|
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
12913
13009
|
/**
|
|
12914
|
-
*
|
|
12915
|
-
* @type {
|
|
13010
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
13011
|
+
* @type {string}
|
|
12916
13012
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
12917
13013
|
*/
|
|
12918
|
-
'number':
|
|
13014
|
+
'number': string;
|
|
12919
13015
|
/**
|
|
12920
13016
|
*
|
|
12921
13017
|
* @type {string}
|
|
@@ -13296,51 +13392,39 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
|
13296
13392
|
/**
|
|
13297
13393
|
* From T, pick a set of properties whose keys are in the union K
|
|
13298
13394
|
* @export
|
|
13299
|
-
* @interface
|
|
13395
|
+
* @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13300
13396
|
*/
|
|
13301
|
-
export interface
|
|
13397
|
+
export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue {
|
|
13302
13398
|
/**
|
|
13303
13399
|
*
|
|
13304
13400
|
* @type {string}
|
|
13305
|
-
* @memberof
|
|
13401
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13306
13402
|
*/
|
|
13307
13403
|
'company': string;
|
|
13308
13404
|
/**
|
|
13309
13405
|
*
|
|
13310
13406
|
* @type {string}
|
|
13311
|
-
* @memberof
|
|
13407
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13312
13408
|
*/
|
|
13313
13409
|
'template': string;
|
|
13314
13410
|
/**
|
|
13315
13411
|
*
|
|
13316
13412
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
13317
|
-
* @memberof
|
|
13413
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13318
13414
|
*/
|
|
13319
13415
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
13320
|
-
/**
|
|
13321
|
-
*
|
|
13322
|
-
* @type {string}
|
|
13323
|
-
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
13324
|
-
*/
|
|
13325
|
-
'publishedAt': string;
|
|
13326
13416
|
/**
|
|
13327
13417
|
*
|
|
13328
13418
|
* @type {IImage}
|
|
13329
|
-
* @memberof
|
|
13419
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13330
13420
|
*/
|
|
13331
13421
|
'thumbnail'?: IImage;
|
|
13332
13422
|
/**
|
|
13333
13423
|
*
|
|
13334
13424
|
* @type {string}
|
|
13335
|
-
* @memberof
|
|
13425
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13336
13426
|
*/
|
|
13337
13427
|
'type': string;
|
|
13338
|
-
/**
|
|
13339
|
-
*
|
|
13340
|
-
* @type {boolean}
|
|
13341
|
-
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
13342
|
-
*/
|
|
13343
|
-
'draft': boolean;
|
|
13344
13428
|
}
|
|
13345
13429
|
/**
|
|
13346
13430
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -13389,7 +13473,7 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
13389
13473
|
* @type {Array<string>}
|
|
13390
13474
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
13391
13475
|
*/
|
|
13392
|
-
'
|
|
13476
|
+
'languages': Array<string>;
|
|
13393
13477
|
/**
|
|
13394
13478
|
*
|
|
13395
13479
|
* @type {string}
|
|
@@ -13585,7 +13669,7 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
13585
13669
|
* @type {Array<string>}
|
|
13586
13670
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
13587
13671
|
*/
|
|
13588
|
-
'
|
|
13672
|
+
'languages': Array<string>;
|
|
13589
13673
|
/**
|
|
13590
13674
|
*
|
|
13591
13675
|
* @type {Array<VariantType>}
|
|
@@ -13804,12 +13888,6 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
13804
13888
|
'attributes'?: {
|
|
13805
13889
|
[key: string]: string;
|
|
13806
13890
|
};
|
|
13807
|
-
/**
|
|
13808
|
-
*
|
|
13809
|
-
* @type {string}
|
|
13810
|
-
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
|
|
13811
|
-
*/
|
|
13812
|
-
'publishedAt': string;
|
|
13813
13891
|
}
|
|
13814
13892
|
/**
|
|
13815
13893
|
* 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.
|
|
3
|
+
"version": "1.3.67",
|
|
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": "
|
|
40
|
+
"gitHead": "a61291de13e785c63c9fb2294c83b82fcec007d3"
|
|
41
41
|
}
|