@infisale-client/api 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 +293 -125
- package/dist/api/api.js +109 -2
- package/dist/api/api.mjs +103 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -1307,6 +1307,12 @@ export interface IBrandPatchRequest {
|
|
|
1307
1307
|
* @memberof IBrandPatchRequest
|
|
1308
1308
|
*/
|
|
1309
1309
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1310
|
+
/**
|
|
1311
|
+
*
|
|
1312
|
+
* @type {string}
|
|
1313
|
+
* @memberof IBrandPatchRequest
|
|
1314
|
+
*/
|
|
1315
|
+
'publishedAt'?: string;
|
|
1310
1316
|
/**
|
|
1311
1317
|
*
|
|
1312
1318
|
* @type {IImage}
|
|
@@ -1338,6 +1344,12 @@ export interface IBrandPostRequest {
|
|
|
1338
1344
|
* @memberof IBrandPostRequest
|
|
1339
1345
|
*/
|
|
1340
1346
|
'thumbnail'?: IImage;
|
|
1347
|
+
/**
|
|
1348
|
+
*
|
|
1349
|
+
* @type {string}
|
|
1350
|
+
* @memberof IBrandPostRequest
|
|
1351
|
+
*/
|
|
1352
|
+
'publishedAt'?: string;
|
|
1341
1353
|
}
|
|
1342
1354
|
/**
|
|
1343
1355
|
*
|
|
@@ -1448,7 +1460,13 @@ export interface IBrandResponse {
|
|
|
1448
1460
|
* @type {Array<string>}
|
|
1449
1461
|
* @memberof IBrandResponse
|
|
1450
1462
|
*/
|
|
1451
|
-
'
|
|
1463
|
+
'languages': Array<string>;
|
|
1464
|
+
/**
|
|
1465
|
+
*
|
|
1466
|
+
* @type {string}
|
|
1467
|
+
* @memberof IBrandResponse
|
|
1468
|
+
*/
|
|
1469
|
+
'publishedAt': string;
|
|
1452
1470
|
}
|
|
1453
1471
|
/**
|
|
1454
1472
|
*
|
|
@@ -1671,19 +1689,19 @@ export interface ICategoryPatchRequest {
|
|
|
1671
1689
|
* @type {string}
|
|
1672
1690
|
* @memberof ICategoryPatchRequest
|
|
1673
1691
|
*/
|
|
1674
|
-
'
|
|
1692
|
+
'publishedAt'?: string;
|
|
1675
1693
|
/**
|
|
1676
1694
|
*
|
|
1677
|
-
* @type {
|
|
1695
|
+
* @type {string}
|
|
1678
1696
|
* @memberof ICategoryPatchRequest
|
|
1679
1697
|
*/
|
|
1680
|
-
'
|
|
1698
|
+
'company'?: string;
|
|
1681
1699
|
/**
|
|
1682
1700
|
*
|
|
1683
|
-
* @type {
|
|
1701
|
+
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
1684
1702
|
* @memberof ICategoryPatchRequest
|
|
1685
1703
|
*/
|
|
1686
|
-
'
|
|
1704
|
+
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1687
1705
|
/**
|
|
1688
1706
|
*
|
|
1689
1707
|
* @type {IImage}
|
|
@@ -1715,12 +1733,6 @@ export interface ICategoryPostRequest {
|
|
|
1715
1733
|
* @memberof ICategoryPostRequest
|
|
1716
1734
|
*/
|
|
1717
1735
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1718
|
-
/**
|
|
1719
|
-
*
|
|
1720
|
-
* @type {string}
|
|
1721
|
-
* @memberof ICategoryPostRequest
|
|
1722
|
-
*/
|
|
1723
|
-
'publishedAt': string;
|
|
1724
1736
|
/**
|
|
1725
1737
|
*
|
|
1726
1738
|
* @type {IImage}
|
|
@@ -1739,6 +1751,12 @@ export interface ICategoryPostRequest {
|
|
|
1739
1751
|
* @memberof ICategoryPostRequest
|
|
1740
1752
|
*/
|
|
1741
1753
|
'attributes': Array<ICategoryAttributesResponseAttributesInner>;
|
|
1754
|
+
/**
|
|
1755
|
+
*
|
|
1756
|
+
* @type {string}
|
|
1757
|
+
* @memberof ICategoryPostRequest
|
|
1758
|
+
*/
|
|
1759
|
+
'publishedAt'?: string;
|
|
1742
1760
|
}
|
|
1743
1761
|
/**
|
|
1744
1762
|
*
|
|
@@ -1787,7 +1805,7 @@ export interface ICategoryResponse {
|
|
|
1787
1805
|
* @type {Array<string>}
|
|
1788
1806
|
* @memberof ICategoryResponse
|
|
1789
1807
|
*/
|
|
1790
|
-
'
|
|
1808
|
+
'languages': Array<string>;
|
|
1791
1809
|
/**
|
|
1792
1810
|
*
|
|
1793
1811
|
* @type {string}
|
|
@@ -2026,7 +2044,7 @@ export interface ICollection {
|
|
|
2026
2044
|
* @type {Array<string>}
|
|
2027
2045
|
* @memberof ICollection
|
|
2028
2046
|
*/
|
|
2029
|
-
'
|
|
2047
|
+
'languages': Array<string>;
|
|
2030
2048
|
/**
|
|
2031
2049
|
*
|
|
2032
2050
|
* @type {string}
|
|
@@ -2169,16 +2187,16 @@ export interface ICollectionPostRequest {
|
|
|
2169
2187
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
2170
2188
|
/**
|
|
2171
2189
|
*
|
|
2172
|
-
* @type {
|
|
2190
|
+
* @type {IImage}
|
|
2173
2191
|
* @memberof ICollectionPostRequest
|
|
2174
2192
|
*/
|
|
2175
|
-
'
|
|
2193
|
+
'thumbnail'?: IImage;
|
|
2176
2194
|
/**
|
|
2177
2195
|
*
|
|
2178
|
-
* @type {
|
|
2196
|
+
* @type {string}
|
|
2179
2197
|
* @memberof ICollectionPostRequest
|
|
2180
2198
|
*/
|
|
2181
|
-
'
|
|
2199
|
+
'publishedAt'?: string;
|
|
2182
2200
|
}
|
|
2183
2201
|
/**
|
|
2184
2202
|
*
|
|
@@ -2227,7 +2245,7 @@ export interface ICollectionResponse {
|
|
|
2227
2245
|
* @type {Array<string>}
|
|
2228
2246
|
* @memberof ICollectionResponse
|
|
2229
2247
|
*/
|
|
2230
|
-
'
|
|
2248
|
+
'languages': Array<string>;
|
|
2231
2249
|
/**
|
|
2232
2250
|
*
|
|
2233
2251
|
* @type {string}
|
|
@@ -2499,6 +2517,12 @@ export interface ICompany {
|
|
|
2499
2517
|
* @memberof ICompany
|
|
2500
2518
|
*/
|
|
2501
2519
|
'orderNoSuffix'?: string;
|
|
2520
|
+
/**
|
|
2521
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2522
|
+
* @type {number}
|
|
2523
|
+
* @memberof ICompany
|
|
2524
|
+
*/
|
|
2525
|
+
'lastOrderNumber'?: number;
|
|
2502
2526
|
/**
|
|
2503
2527
|
*
|
|
2504
2528
|
* @type {string}
|
|
@@ -2665,6 +2689,18 @@ export interface ICompany {
|
|
|
2665
2689
|
* @memberof ICompany
|
|
2666
2690
|
*/
|
|
2667
2691
|
'htmlHead'?: string;
|
|
2692
|
+
/**
|
|
2693
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2694
|
+
* @type {number}
|
|
2695
|
+
* @memberof ICompany
|
|
2696
|
+
*/
|
|
2697
|
+
'password'?: number;
|
|
2698
|
+
/**
|
|
2699
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
2700
|
+
* @type {boolean}
|
|
2701
|
+
* @memberof ICompany
|
|
2702
|
+
*/
|
|
2703
|
+
'passwordActive'?: boolean;
|
|
2668
2704
|
/**
|
|
2669
2705
|
*
|
|
2670
2706
|
* @type {CompanyStatusEnum}
|
|
@@ -2702,6 +2738,12 @@ export interface ICompany {
|
|
|
2702
2738
|
* @interface ICompanyAdminResponse
|
|
2703
2739
|
*/
|
|
2704
2740
|
export interface ICompanyAdminResponse {
|
|
2741
|
+
/**
|
|
2742
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2743
|
+
* @type {number}
|
|
2744
|
+
* @memberof ICompanyAdminResponse
|
|
2745
|
+
*/
|
|
2746
|
+
'password'?: number;
|
|
2705
2747
|
/**
|
|
2706
2748
|
*
|
|
2707
2749
|
* @type {string}
|
|
@@ -2756,6 +2798,12 @@ export interface ICompanyAdminResponse {
|
|
|
2756
2798
|
* @memberof ICompanyAdminResponse
|
|
2757
2799
|
*/
|
|
2758
2800
|
'updatedAt': string;
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @type {Array<LanguageEnum>}
|
|
2804
|
+
* @memberof ICompanyAdminResponse
|
|
2805
|
+
*/
|
|
2806
|
+
'languages': Array<LanguageEnum>;
|
|
2759
2807
|
/**
|
|
2760
2808
|
*
|
|
2761
2809
|
* @type {CompanyTypeEnum}
|
|
@@ -2810,6 +2858,12 @@ export interface ICompanyAdminResponse {
|
|
|
2810
2858
|
* @memberof ICompanyAdminResponse
|
|
2811
2859
|
*/
|
|
2812
2860
|
'orderNoSuffix'?: string;
|
|
2861
|
+
/**
|
|
2862
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2863
|
+
* @type {number}
|
|
2864
|
+
* @memberof ICompanyAdminResponse
|
|
2865
|
+
*/
|
|
2866
|
+
'lastOrderNumber'?: number;
|
|
2813
2867
|
/**
|
|
2814
2868
|
*
|
|
2815
2869
|
* @type {IImage}
|
|
@@ -2834,12 +2888,6 @@ export interface ICompanyAdminResponse {
|
|
|
2834
2888
|
* @memberof ICompanyAdminResponse
|
|
2835
2889
|
*/
|
|
2836
2890
|
'timezone': TimezoneEnum;
|
|
2837
|
-
/**
|
|
2838
|
-
*
|
|
2839
|
-
* @type {Array<LanguageEnum>}
|
|
2840
|
-
* @memberof ICompanyAdminResponse
|
|
2841
|
-
*/
|
|
2842
|
-
'languages': Array<LanguageEnum>;
|
|
2843
2891
|
/**
|
|
2844
2892
|
*
|
|
2845
2893
|
* @type {CurrencyEnum}
|
|
@@ -2908,6 +2956,12 @@ export interface ICompanyAdminResponse {
|
|
|
2908
2956
|
* @memberof ICompanyAdminResponse
|
|
2909
2957
|
*/
|
|
2910
2958
|
'htmlHead'?: string;
|
|
2959
|
+
/**
|
|
2960
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
2961
|
+
* @type {boolean}
|
|
2962
|
+
* @memberof ICompanyAdminResponse
|
|
2963
|
+
*/
|
|
2964
|
+
'passwordActive'?: boolean;
|
|
2911
2965
|
/**
|
|
2912
2966
|
*
|
|
2913
2967
|
* @type {string}
|
|
@@ -3460,6 +3514,12 @@ export interface ICompanyDashboardResponseOrdersInner {
|
|
|
3460
3514
|
* @interface ICompanyPatchRequest
|
|
3461
3515
|
*/
|
|
3462
3516
|
export interface ICompanyPatchRequest {
|
|
3517
|
+
/**
|
|
3518
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3519
|
+
* @type {number}
|
|
3520
|
+
* @memberof ICompanyPatchRequest
|
|
3521
|
+
*/
|
|
3522
|
+
'password'?: number;
|
|
3463
3523
|
/**
|
|
3464
3524
|
*
|
|
3465
3525
|
* @type {string}
|
|
@@ -3498,6 +3558,12 @@ export interface ICompanyPatchRequest {
|
|
|
3498
3558
|
* @memberof ICompanyPatchRequest
|
|
3499
3559
|
*/
|
|
3500
3560
|
'status'?: CompanyStatusEnum;
|
|
3561
|
+
/**
|
|
3562
|
+
*
|
|
3563
|
+
* @type {Array<LanguageEnum>}
|
|
3564
|
+
* @memberof ICompanyPatchRequest
|
|
3565
|
+
*/
|
|
3566
|
+
'languages'?: Array<LanguageEnum>;
|
|
3501
3567
|
/**
|
|
3502
3568
|
*
|
|
3503
3569
|
* @type {string}
|
|
@@ -3570,6 +3636,12 @@ export interface ICompanyPatchRequest {
|
|
|
3570
3636
|
* @memberof ICompanyPatchRequest
|
|
3571
3637
|
*/
|
|
3572
3638
|
'orderNoSuffix'?: string;
|
|
3639
|
+
/**
|
|
3640
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
3641
|
+
* @type {number}
|
|
3642
|
+
* @memberof ICompanyPatchRequest
|
|
3643
|
+
*/
|
|
3644
|
+
'lastOrderNumber'?: number;
|
|
3573
3645
|
/**
|
|
3574
3646
|
*
|
|
3575
3647
|
* @type {IImage}
|
|
@@ -3594,12 +3666,6 @@ export interface ICompanyPatchRequest {
|
|
|
3594
3666
|
* @memberof ICompanyPatchRequest
|
|
3595
3667
|
*/
|
|
3596
3668
|
'timezone'?: TimezoneEnum;
|
|
3597
|
-
/**
|
|
3598
|
-
*
|
|
3599
|
-
* @type {Array<LanguageEnum>}
|
|
3600
|
-
* @memberof ICompanyPatchRequest
|
|
3601
|
-
*/
|
|
3602
|
-
'languages'?: Array<LanguageEnum>;
|
|
3603
3669
|
/**
|
|
3604
3670
|
*
|
|
3605
3671
|
* @type {CurrencyEnum}
|
|
@@ -3638,6 +3704,12 @@ export interface ICompanyPatchRequest {
|
|
|
3638
3704
|
* @memberof ICompanyPatchRequest
|
|
3639
3705
|
*/
|
|
3640
3706
|
'htmlHead'?: string;
|
|
3707
|
+
/**
|
|
3708
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
3709
|
+
* @type {boolean}
|
|
3710
|
+
* @memberof ICompanyPatchRequest
|
|
3711
|
+
*/
|
|
3712
|
+
'passwordActive'?: boolean;
|
|
3641
3713
|
/**
|
|
3642
3714
|
*
|
|
3643
3715
|
* @type {string}
|
|
@@ -3805,6 +3877,12 @@ export interface ICompanyPostRequest {
|
|
|
3805
3877
|
* @interface ICompanyResponse
|
|
3806
3878
|
*/
|
|
3807
3879
|
export interface ICompanyResponse {
|
|
3880
|
+
/**
|
|
3881
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3882
|
+
* @type {number}
|
|
3883
|
+
* @memberof ICompanyResponse
|
|
3884
|
+
*/
|
|
3885
|
+
'password'?: number;
|
|
3808
3886
|
/**
|
|
3809
3887
|
*
|
|
3810
3888
|
* @type {string}
|
|
@@ -3859,6 +3937,12 @@ export interface ICompanyResponse {
|
|
|
3859
3937
|
* @memberof ICompanyResponse
|
|
3860
3938
|
*/
|
|
3861
3939
|
'updatedAt': string;
|
|
3940
|
+
/**
|
|
3941
|
+
*
|
|
3942
|
+
* @type {Array<LanguageEnum>}
|
|
3943
|
+
* @memberof ICompanyResponse
|
|
3944
|
+
*/
|
|
3945
|
+
'languages': Array<LanguageEnum>;
|
|
3862
3946
|
/**
|
|
3863
3947
|
*
|
|
3864
3948
|
* @type {CompanyTypeEnum}
|
|
@@ -3913,6 +3997,12 @@ export interface ICompanyResponse {
|
|
|
3913
3997
|
* @memberof ICompanyResponse
|
|
3914
3998
|
*/
|
|
3915
3999
|
'orderNoSuffix'?: string;
|
|
4000
|
+
/**
|
|
4001
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
4002
|
+
* @type {number}
|
|
4003
|
+
* @memberof ICompanyResponse
|
|
4004
|
+
*/
|
|
4005
|
+
'lastOrderNumber'?: number;
|
|
3916
4006
|
/**
|
|
3917
4007
|
*
|
|
3918
4008
|
* @type {IImage}
|
|
@@ -3937,12 +4027,6 @@ export interface ICompanyResponse {
|
|
|
3937
4027
|
* @memberof ICompanyResponse
|
|
3938
4028
|
*/
|
|
3939
4029
|
'timezone': TimezoneEnum;
|
|
3940
|
-
/**
|
|
3941
|
-
*
|
|
3942
|
-
* @type {Array<LanguageEnum>}
|
|
3943
|
-
* @memberof ICompanyResponse
|
|
3944
|
-
*/
|
|
3945
|
-
'languages': Array<LanguageEnum>;
|
|
3946
4030
|
/**
|
|
3947
4031
|
*
|
|
3948
4032
|
* @type {CurrencyEnum}
|
|
@@ -4011,6 +4095,12 @@ export interface ICompanyResponse {
|
|
|
4011
4095
|
* @memberof ICompanyResponse
|
|
4012
4096
|
*/
|
|
4013
4097
|
'htmlHead'?: string;
|
|
4098
|
+
/**
|
|
4099
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
4100
|
+
* @type {boolean}
|
|
4101
|
+
* @memberof ICompanyResponse
|
|
4102
|
+
*/
|
|
4103
|
+
'passwordActive'?: boolean;
|
|
4014
4104
|
/**
|
|
4015
4105
|
*
|
|
4016
4106
|
* @type {string}
|
|
@@ -7020,11 +7110,11 @@ export interface IOrderPostRequest {
|
|
|
7020
7110
|
*/
|
|
7021
7111
|
export interface IOrderResponse {
|
|
7022
7112
|
/**
|
|
7023
|
-
*
|
|
7024
|
-
* @type {
|
|
7113
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
7114
|
+
* @type {string}
|
|
7025
7115
|
* @memberof IOrderResponse
|
|
7026
7116
|
*/
|
|
7027
|
-
'number':
|
|
7117
|
+
'number': string;
|
|
7028
7118
|
/**
|
|
7029
7119
|
*
|
|
7030
7120
|
* @type {string}
|
|
@@ -7674,28 +7764,28 @@ export interface IPagePostRequest {
|
|
|
7674
7764
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7675
7765
|
/**
|
|
7676
7766
|
*
|
|
7677
|
-
* @type {
|
|
7767
|
+
* @type {IImage}
|
|
7678
7768
|
* @memberof IPagePostRequest
|
|
7679
7769
|
*/
|
|
7680
|
-
'
|
|
7770
|
+
'thumbnail'?: IImage;
|
|
7681
7771
|
/**
|
|
7682
7772
|
*
|
|
7683
|
-
* @type {
|
|
7773
|
+
* @type {string}
|
|
7684
7774
|
* @memberof IPagePostRequest
|
|
7685
7775
|
*/
|
|
7686
|
-
'
|
|
7776
|
+
'type': string;
|
|
7687
7777
|
/**
|
|
7688
7778
|
*
|
|
7689
7779
|
* @type {string}
|
|
7690
7780
|
* @memberof IPagePostRequest
|
|
7691
7781
|
*/
|
|
7692
|
-
'
|
|
7782
|
+
'publishedAt'?: string;
|
|
7693
7783
|
/**
|
|
7694
7784
|
*
|
|
7695
7785
|
* @type {boolean}
|
|
7696
7786
|
* @memberof IPagePostRequest
|
|
7697
7787
|
*/
|
|
7698
|
-
'draft'
|
|
7788
|
+
'draft'?: boolean;
|
|
7699
7789
|
}
|
|
7700
7790
|
/**
|
|
7701
7791
|
*
|
|
@@ -7744,7 +7834,7 @@ export interface IPageResponse {
|
|
|
7744
7834
|
* @type {Array<string>}
|
|
7745
7835
|
* @memberof IPageResponse
|
|
7746
7836
|
*/
|
|
7747
|
-
'
|
|
7837
|
+
'languages': Array<string>;
|
|
7748
7838
|
/**
|
|
7749
7839
|
*
|
|
7750
7840
|
* @type {string}
|
|
@@ -8454,6 +8544,12 @@ export interface IProductPatchRequest {
|
|
|
8454
8544
|
* @memberof IProductPatchRequest
|
|
8455
8545
|
*/
|
|
8456
8546
|
'template'?: string;
|
|
8547
|
+
/**
|
|
8548
|
+
*
|
|
8549
|
+
* @type {string}
|
|
8550
|
+
* @memberof IProductPatchRequest
|
|
8551
|
+
*/
|
|
8552
|
+
'publishedAt'?: string;
|
|
8457
8553
|
/**
|
|
8458
8554
|
*
|
|
8459
8555
|
* @type {string}
|
|
@@ -8532,12 +8628,6 @@ export interface IProductPatchRequest {
|
|
|
8532
8628
|
'attributes'?: {
|
|
8533
8629
|
[key: string]: string;
|
|
8534
8630
|
};
|
|
8535
|
-
/**
|
|
8536
|
-
*
|
|
8537
|
-
* @type {string}
|
|
8538
|
-
* @memberof IProductPatchRequest
|
|
8539
|
-
*/
|
|
8540
|
-
'publishedAt'?: string;
|
|
8541
8631
|
}
|
|
8542
8632
|
/**
|
|
8543
8633
|
*
|
|
@@ -8628,25 +8718,25 @@ export interface IProductPostRequest {
|
|
|
8628
8718
|
* @type {string}
|
|
8629
8719
|
* @memberof IProductPostRequest
|
|
8630
8720
|
*/
|
|
8631
|
-
'
|
|
8721
|
+
'category'?: string;
|
|
8632
8722
|
/**
|
|
8633
8723
|
*
|
|
8634
8724
|
* @type {string}
|
|
8635
8725
|
* @memberof IProductPostRequest
|
|
8636
8726
|
*/
|
|
8637
|
-
'
|
|
8727
|
+
'brand'?: string;
|
|
8638
8728
|
/**
|
|
8639
8729
|
*
|
|
8640
8730
|
* @type {string}
|
|
8641
8731
|
* @memberof IProductPostRequest
|
|
8642
8732
|
*/
|
|
8643
|
-
'
|
|
8733
|
+
'template': string;
|
|
8644
8734
|
/**
|
|
8645
8735
|
*
|
|
8646
8736
|
* @type {string}
|
|
8647
8737
|
* @memberof IProductPostRequest
|
|
8648
8738
|
*/
|
|
8649
|
-
'
|
|
8739
|
+
'publishedAt'?: string;
|
|
8650
8740
|
}
|
|
8651
8741
|
/**
|
|
8652
8742
|
*
|
|
@@ -8757,7 +8847,7 @@ export interface IProductResponse {
|
|
|
8757
8847
|
* @type {Array<string>}
|
|
8758
8848
|
* @memberof IProductResponse
|
|
8759
8849
|
*/
|
|
8760
|
-
'
|
|
8850
|
+
'languages': Array<string>;
|
|
8761
8851
|
/**
|
|
8762
8852
|
*
|
|
8763
8853
|
* @type {Array<VariantType>}
|
|
@@ -11925,25 +12015,25 @@ export interface PickIBasketExcludeKeyofIBasketItems {
|
|
|
11925
12015
|
/**
|
|
11926
12016
|
* From T, pick a set of properties whose keys are in the union K
|
|
11927
12017
|
* @export
|
|
11928
|
-
* @interface
|
|
12018
|
+
* @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11929
12019
|
*/
|
|
11930
|
-
export interface
|
|
12020
|
+
export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue {
|
|
11931
12021
|
/**
|
|
11932
12022
|
*
|
|
11933
12023
|
* @type {string}
|
|
11934
|
-
* @memberof
|
|
12024
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11935
12025
|
*/
|
|
11936
12026
|
'company': string;
|
|
11937
12027
|
/**
|
|
11938
12028
|
*
|
|
11939
12029
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11940
|
-
* @memberof
|
|
12030
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11941
12031
|
*/
|
|
11942
12032
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
11943
12033
|
/**
|
|
11944
12034
|
*
|
|
11945
12035
|
* @type {IImage}
|
|
11946
|
-
* @memberof
|
|
12036
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
11947
12037
|
*/
|
|
11948
12038
|
'thumbnail'?: IImage;
|
|
11949
12039
|
}
|
|
@@ -11994,7 +12084,7 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
11994
12084
|
* @type {Array<string>}
|
|
11995
12085
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
11996
12086
|
*/
|
|
11997
|
-
'
|
|
12087
|
+
'languages': Array<string>;
|
|
11998
12088
|
/**
|
|
11999
12089
|
*
|
|
12000
12090
|
* @type {string}
|
|
@@ -12017,37 +12107,31 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
12017
12107
|
/**
|
|
12018
12108
|
* From T, pick a set of properties whose keys are in the union K
|
|
12019
12109
|
* @export
|
|
12020
|
-
* @interface
|
|
12110
|
+
* @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12021
12111
|
*/
|
|
12022
|
-
export interface
|
|
12112
|
+
export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue {
|
|
12023
12113
|
/**
|
|
12024
12114
|
*
|
|
12025
12115
|
* @type {string}
|
|
12026
|
-
* @memberof
|
|
12116
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12027
12117
|
*/
|
|
12028
12118
|
'company': string;
|
|
12029
12119
|
/**
|
|
12030
12120
|
*
|
|
12031
12121
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12032
|
-
* @memberof
|
|
12122
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12033
12123
|
*/
|
|
12034
12124
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12035
|
-
/**
|
|
12036
|
-
*
|
|
12037
|
-
* @type {string}
|
|
12038
|
-
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrSlugsOrKeyofIContentsValue
|
|
12039
|
-
*/
|
|
12040
|
-
'publishedAt': string;
|
|
12041
12125
|
/**
|
|
12042
12126
|
*
|
|
12043
12127
|
* @type {IImage}
|
|
12044
|
-
* @memberof
|
|
12128
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12045
12129
|
*/
|
|
12046
12130
|
'thumbnail'?: IImage;
|
|
12047
12131
|
/**
|
|
12048
12132
|
*
|
|
12049
12133
|
* @type {string}
|
|
12050
|
-
* @memberof
|
|
12134
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12051
12135
|
*/
|
|
12052
12136
|
'main'?: string;
|
|
12053
12137
|
}
|
|
@@ -12104,37 +12188,31 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
12104
12188
|
/**
|
|
12105
12189
|
* From T, pick a set of properties whose keys are in the union K
|
|
12106
12190
|
* @export
|
|
12107
|
-
* @interface
|
|
12191
|
+
* @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12108
12192
|
*/
|
|
12109
|
-
export interface
|
|
12193
|
+
export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue {
|
|
12110
12194
|
/**
|
|
12111
12195
|
*
|
|
12112
12196
|
* @type {string}
|
|
12113
|
-
* @memberof
|
|
12197
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12114
12198
|
*/
|
|
12115
12199
|
'company': string;
|
|
12116
12200
|
/**
|
|
12117
12201
|
*
|
|
12118
12202
|
* @type {string}
|
|
12119
|
-
* @memberof
|
|
12203
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12120
12204
|
*/
|
|
12121
12205
|
'template': string;
|
|
12122
12206
|
/**
|
|
12123
12207
|
*
|
|
12124
12208
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12125
|
-
* @memberof
|
|
12209
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12126
12210
|
*/
|
|
12127
12211
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12128
|
-
/**
|
|
12129
|
-
*
|
|
12130
|
-
* @type {string}
|
|
12131
|
-
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
12132
|
-
*/
|
|
12133
|
-
'publishedAt': string;
|
|
12134
12212
|
/**
|
|
12135
12213
|
*
|
|
12136
12214
|
* @type {IImage}
|
|
12137
|
-
* @memberof
|
|
12215
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrLanguagesOrKeyofIContentsValue
|
|
12138
12216
|
*/
|
|
12139
12217
|
'thumbnail'?: IImage;
|
|
12140
12218
|
}
|
|
@@ -12185,7 +12263,7 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
|
12185
12263
|
* @type {Array<string>}
|
|
12186
12264
|
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
12187
12265
|
*/
|
|
12188
|
-
'
|
|
12266
|
+
'languages': Array<string>;
|
|
12189
12267
|
/**
|
|
12190
12268
|
*
|
|
12191
12269
|
* @type {string}
|
|
@@ -12333,6 +12411,12 @@ export interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91
|
|
|
12333
12411
|
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12334
12412
|
*/
|
|
12335
12413
|
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
12414
|
+
/**
|
|
12415
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
12416
|
+
* @type {number}
|
|
12417
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12418
|
+
*/
|
|
12419
|
+
'password'?: number;
|
|
12336
12420
|
/**
|
|
12337
12421
|
*
|
|
12338
12422
|
* @type {string}
|
|
@@ -12387,6 +12471,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12387
12471
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12388
12472
|
*/
|
|
12389
12473
|
'updatedAt': string;
|
|
12474
|
+
/**
|
|
12475
|
+
*
|
|
12476
|
+
* @type {Array<LanguageEnum>}
|
|
12477
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12478
|
+
*/
|
|
12479
|
+
'languages': Array<LanguageEnum>;
|
|
12390
12480
|
/**
|
|
12391
12481
|
*
|
|
12392
12482
|
* @type {CompanyTypeEnum}
|
|
@@ -12441,6 +12531,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12441
12531
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12442
12532
|
*/
|
|
12443
12533
|
'orderNoSuffix'?: string;
|
|
12534
|
+
/**
|
|
12535
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
12536
|
+
* @type {number}
|
|
12537
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12538
|
+
*/
|
|
12539
|
+
'lastOrderNumber'?: number;
|
|
12444
12540
|
/**
|
|
12445
12541
|
*
|
|
12446
12542
|
* @type {IImage}
|
|
@@ -12465,12 +12561,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12465
12561
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12466
12562
|
*/
|
|
12467
12563
|
'timezone': TimezoneEnum;
|
|
12468
|
-
/**
|
|
12469
|
-
*
|
|
12470
|
-
* @type {Array<LanguageEnum>}
|
|
12471
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12472
|
-
*/
|
|
12473
|
-
'languages': Array<LanguageEnum>;
|
|
12474
12564
|
/**
|
|
12475
12565
|
*
|
|
12476
12566
|
* @type {CurrencyEnum}
|
|
@@ -12539,6 +12629,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12539
12629
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12540
12630
|
*/
|
|
12541
12631
|
'htmlHead'?: string;
|
|
12632
|
+
/**
|
|
12633
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
12634
|
+
* @type {boolean}
|
|
12635
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12636
|
+
*/
|
|
12637
|
+
'passwordActive'?: boolean;
|
|
12542
12638
|
/**
|
|
12543
12639
|
*
|
|
12544
12640
|
* @type {string}
|
|
@@ -12951,11 +13047,11 @@ export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
|
|
|
12951
13047
|
*/
|
|
12952
13048
|
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
12953
13049
|
/**
|
|
12954
|
-
*
|
|
12955
|
-
* @type {
|
|
13050
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
13051
|
+
* @type {string}
|
|
12956
13052
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
12957
13053
|
*/
|
|
12958
|
-
'number':
|
|
13054
|
+
'number': string;
|
|
12959
13055
|
/**
|
|
12960
13056
|
*
|
|
12961
13057
|
* @type {string}
|
|
@@ -13336,51 +13432,39 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
|
13336
13432
|
/**
|
|
13337
13433
|
* From T, pick a set of properties whose keys are in the union K
|
|
13338
13434
|
* @export
|
|
13339
|
-
* @interface
|
|
13435
|
+
* @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13340
13436
|
*/
|
|
13341
|
-
export interface
|
|
13437
|
+
export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue {
|
|
13342
13438
|
/**
|
|
13343
13439
|
*
|
|
13344
13440
|
* @type {string}
|
|
13345
|
-
* @memberof
|
|
13441
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13346
13442
|
*/
|
|
13347
13443
|
'company': string;
|
|
13348
13444
|
/**
|
|
13349
13445
|
*
|
|
13350
13446
|
* @type {string}
|
|
13351
|
-
* @memberof
|
|
13447
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13352
13448
|
*/
|
|
13353
13449
|
'template': string;
|
|
13354
13450
|
/**
|
|
13355
13451
|
*
|
|
13356
13452
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
13357
|
-
* @memberof
|
|
13453
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13358
13454
|
*/
|
|
13359
13455
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
13360
|
-
/**
|
|
13361
|
-
*
|
|
13362
|
-
* @type {string}
|
|
13363
|
-
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
13364
|
-
*/
|
|
13365
|
-
'publishedAt': string;
|
|
13366
13456
|
/**
|
|
13367
13457
|
*
|
|
13368
13458
|
* @type {IImage}
|
|
13369
|
-
* @memberof
|
|
13459
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13370
13460
|
*/
|
|
13371
13461
|
'thumbnail'?: IImage;
|
|
13372
13462
|
/**
|
|
13373
13463
|
*
|
|
13374
13464
|
* @type {string}
|
|
13375
|
-
* @memberof
|
|
13465
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrLanguagesOrKeyofIContentsValue
|
|
13376
13466
|
*/
|
|
13377
13467
|
'type': string;
|
|
13378
|
-
/**
|
|
13379
|
-
*
|
|
13380
|
-
* @type {boolean}
|
|
13381
|
-
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
13382
|
-
*/
|
|
13383
|
-
'draft': boolean;
|
|
13384
13468
|
}
|
|
13385
13469
|
/**
|
|
13386
13470
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -13429,7 +13513,7 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
13429
13513
|
* @type {Array<string>}
|
|
13430
13514
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
13431
13515
|
*/
|
|
13432
|
-
'
|
|
13516
|
+
'languages': Array<string>;
|
|
13433
13517
|
/**
|
|
13434
13518
|
*
|
|
13435
13519
|
* @type {string}
|
|
@@ -13625,7 +13709,7 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
13625
13709
|
* @type {Array<string>}
|
|
13626
13710
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
13627
13711
|
*/
|
|
13628
|
-
'
|
|
13712
|
+
'languages': Array<string>;
|
|
13629
13713
|
/**
|
|
13630
13714
|
*
|
|
13631
13715
|
* @type {Array<VariantType>}
|
|
@@ -13844,12 +13928,6 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
13844
13928
|
'attributes'?: {
|
|
13845
13929
|
[key: string]: string;
|
|
13846
13930
|
};
|
|
13847
|
-
/**
|
|
13848
|
-
*
|
|
13849
|
-
* @type {string}
|
|
13850
|
-
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
|
|
13851
|
-
*/
|
|
13852
|
-
'publishedAt': string;
|
|
13853
13931
|
}
|
|
13854
13932
|
/**
|
|
13855
13933
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -20560,6 +20638,96 @@ export declare const GetContactFormsDateFieldEnum: {
|
|
|
20560
20638
|
readonly UPDATED_AT: "updatedAt";
|
|
20561
20639
|
};
|
|
20562
20640
|
export type GetContactFormsDateFieldEnum = typeof GetContactFormsDateFieldEnum[keyof typeof GetContactFormsDateFieldEnum];
|
|
20641
|
+
/**
|
|
20642
|
+
* ContentApi - axios parameter creator
|
|
20643
|
+
* @export
|
|
20644
|
+
*/
|
|
20645
|
+
export declare const ContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20646
|
+
/**
|
|
20647
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
20648
|
+
* @param {string} slug
|
|
20649
|
+
* @param {string} [companyId]
|
|
20650
|
+
* @param {string} [domain]
|
|
20651
|
+
* @param {*} [options] Override http request option.
|
|
20652
|
+
* @throws {RequiredError}
|
|
20653
|
+
*/
|
|
20654
|
+
getContentBySlug: (slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20655
|
+
};
|
|
20656
|
+
/**
|
|
20657
|
+
* ContentApi - functional programming interface
|
|
20658
|
+
* @export
|
|
20659
|
+
*/
|
|
20660
|
+
export declare const ContentApiFp: (configuration?: Configuration) => {
|
|
20661
|
+
/**
|
|
20662
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
20663
|
+
* @param {string} slug
|
|
20664
|
+
* @param {string} [companyId]
|
|
20665
|
+
* @param {string} [domain]
|
|
20666
|
+
* @param {*} [options] Override http request option.
|
|
20667
|
+
* @throws {RequiredError}
|
|
20668
|
+
*/
|
|
20669
|
+
getContentBySlug(slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
20670
|
+
[key: string]: any;
|
|
20671
|
+
}>>;
|
|
20672
|
+
};
|
|
20673
|
+
/**
|
|
20674
|
+
* ContentApi - factory interface
|
|
20675
|
+
* @export
|
|
20676
|
+
*/
|
|
20677
|
+
export declare const ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20678
|
+
/**
|
|
20679
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
20680
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
20681
|
+
* @param {*} [options] Override http request option.
|
|
20682
|
+
* @throws {RequiredError}
|
|
20683
|
+
*/
|
|
20684
|
+
getContentBySlug(requestParameters: ContentApiGetContentBySlugRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
20685
|
+
[key: string]: any;
|
|
20686
|
+
}>;
|
|
20687
|
+
};
|
|
20688
|
+
/**
|
|
20689
|
+
* Request parameters for getContentBySlug operation in ContentApi.
|
|
20690
|
+
* @export
|
|
20691
|
+
* @interface ContentApiGetContentBySlugRequest
|
|
20692
|
+
*/
|
|
20693
|
+
export interface ContentApiGetContentBySlugRequest {
|
|
20694
|
+
/**
|
|
20695
|
+
*
|
|
20696
|
+
* @type {string}
|
|
20697
|
+
* @memberof ContentApiGetContentBySlug
|
|
20698
|
+
*/
|
|
20699
|
+
readonly slug: string;
|
|
20700
|
+
/**
|
|
20701
|
+
*
|
|
20702
|
+
* @type {string}
|
|
20703
|
+
* @memberof ContentApiGetContentBySlug
|
|
20704
|
+
*/
|
|
20705
|
+
readonly companyId?: string;
|
|
20706
|
+
/**
|
|
20707
|
+
*
|
|
20708
|
+
* @type {string}
|
|
20709
|
+
* @memberof ContentApiGetContentBySlug
|
|
20710
|
+
*/
|
|
20711
|
+
readonly domain?: string;
|
|
20712
|
+
}
|
|
20713
|
+
/**
|
|
20714
|
+
* ContentApi - object-oriented interface
|
|
20715
|
+
* @export
|
|
20716
|
+
* @class ContentApi
|
|
20717
|
+
* @extends {BaseAPI}
|
|
20718
|
+
*/
|
|
20719
|
+
export declare class ContentApi extends BaseAPI {
|
|
20720
|
+
/**
|
|
20721
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
20722
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
20723
|
+
* @param {*} [options] Override http request option.
|
|
20724
|
+
* @throws {RequiredError}
|
|
20725
|
+
* @memberof ContentApi
|
|
20726
|
+
*/
|
|
20727
|
+
getContentBySlug(requestParameters: ContentApiGetContentBySlugRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
20728
|
+
[key: string]: any;
|
|
20729
|
+
}, any>>;
|
|
20730
|
+
}
|
|
20563
20731
|
/**
|
|
20564
20732
|
* ContentPlanApi - axios parameter creator
|
|
20565
20733
|
* @export
|
package/dist/api/api.js
CHANGED
|
@@ -18,8 +18,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.OrderReturnStatusEnumWAITINGRETURN = exports.OrderReturnStatusEnumRETURNED = exports.OrderReturnStatusEnum = exports.OrderPaymentStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IUrlRedirectCollectionQueryParamsSortEnum = exports.IUrlRedirectCollectionQueryParamsDateFieldEnum = exports.IUniqueCollectionQueryParamsDateFieldEnum = exports.ISubscriptionPostRequestPeriodEnum = exports.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsCategoryEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.INavigationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContentPlanCollectionQueryParamsDateFieldEnum = exports.IContentPlanAttemptStepEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.IAiChatCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.ContentPlanStatusEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = exports.AiChatStatusEnum = exports.AiChatRoleEnum = exports.AiChatPurposeEnum = void 0;
|
|
20
20
|
exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.GetCategoriesDateFieldEnum = exports.CategoryApi = exports.CategoryApiFactory = exports.CategoryApiFp = exports.CategoryApiAxiosParamCreator = exports.GetBrandsDateFieldEnum = exports.BrandApi = exports.BrandApiFactory = exports.BrandApiFp = exports.BrandApiAxiosParamCreator = exports.BasketApi = exports.BasketApiFactory = exports.BasketApiFp = exports.BasketApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.GetAiChatsDateFieldEnum = exports.AiChatApi = exports.AiChatApiFactory = exports.AiChatApiFp = exports.AiChatApiAxiosParamCreator = exports.AddressApi = exports.AddressApiFactory = exports.AddressApiFp = exports.AddressApiAxiosParamCreator = exports.UserStatusEnum = exports.UserRoleEnum = exports.TimezoneEnum = exports.ThemeKeywordEnum = exports.SubscriptionStatusEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanAttributeKeyEnum = exports.PlanAttributeGroupEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.OrderStatusEnum = exports.OrderShippedStatusEnum = void 0;
|
|
21
|
-
exports.
|
|
22
|
-
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.GetUrlRedirectsSortEnum = exports.GetUrlRedirectsDateFieldEnum = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.GetUniquePagesDateFieldEnum = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = exports.ThemeApiFp = exports.ThemeApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPlansCategoryEnum = exports.GetPlansDateFieldEnum = exports.PlanApi = void 0;
|
|
21
|
+
exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.GetOperationsDateFieldEnum = exports.OperationApi = exports.OperationApiFactory = exports.OperationApiFp = exports.OperationApiAxiosParamCreator = exports.GetNotificationsDateFieldEnum = exports.NotificationApi = exports.NotificationApiFactory = exports.NotificationApiFp = exports.NotificationApiAxiosParamCreator = exports.GetNavigationsDateFieldEnum = exports.NavigationApi = exports.NavigationApiFactory = exports.NavigationApiFp = exports.NavigationApiAxiosParamCreator = exports.GetFilesDateFieldEnum = exports.FileApi = exports.FileApiFactory = exports.FileApiFp = exports.FileApiAxiosParamCreator = exports.GetContentPlansDateFieldEnum = exports.ContentPlanApi = exports.ContentPlanApiFactory = exports.ContentPlanApiFp = exports.ContentPlanApiAxiosParamCreator = exports.ContentApi = exports.ContentApiFactory = exports.ContentApiFp = exports.ContentApiAxiosParamCreator = exports.GetContactFormsDateFieldEnum = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.GetCompanyCustomersDateFieldEnum = exports.GetCompaniesDateFieldEnum = exports.CompanyApi = exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = void 0;
|
|
22
|
+
exports.GetUsersDateFieldEnum = exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.GetUrlRedirectsSortEnum = exports.GetUrlRedirectsDateFieldEnum = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.GetUniquePagesDateFieldEnum = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.ThemeApi = exports.ThemeApiFactory = exports.ThemeApiFp = exports.ThemeApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPlansCategoryEnum = exports.GetPlansDateFieldEnum = exports.PlanApi = exports.PlanApiFactory = exports.PlanApiFp = exports.PlanApiAxiosParamCreator = exports.GetPagesDateFieldEnum = void 0;
|
|
23
23
|
const axios_1 = __importDefault(require("axios"));
|
|
24
24
|
// Some imports not used depending on template conditions
|
|
25
25
|
// @ts-ignore
|
|
@@ -7344,6 +7344,113 @@ exports.GetContactFormsDateFieldEnum = {
|
|
|
7344
7344
|
CREATED_AT: 'createdAt',
|
|
7345
7345
|
UPDATED_AT: 'updatedAt'
|
|
7346
7346
|
};
|
|
7347
|
+
/**
|
|
7348
|
+
* ContentApi - axios parameter creator
|
|
7349
|
+
* @export
|
|
7350
|
+
*/
|
|
7351
|
+
const ContentApiAxiosParamCreator = function (configuration) {
|
|
7352
|
+
return {
|
|
7353
|
+
/**
|
|
7354
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7355
|
+
* @param {string} slug
|
|
7356
|
+
* @param {string} [companyId]
|
|
7357
|
+
* @param {string} [domain]
|
|
7358
|
+
* @param {*} [options] Override http request option.
|
|
7359
|
+
* @throws {RequiredError}
|
|
7360
|
+
*/
|
|
7361
|
+
getContentBySlug: async (slug, companyId, domain, options = {}) => {
|
|
7362
|
+
// verify required parameter 'slug' is not null or undefined
|
|
7363
|
+
(0, common_1.assertParamExists)('getContentBySlug', 'slug', slug);
|
|
7364
|
+
const localVarPath = `/api/contents/slug/{slug}`
|
|
7365
|
+
.replace(`{${"slug"}}`, encodeURIComponent(String(slug)));
|
|
7366
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7367
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
7368
|
+
let baseOptions;
|
|
7369
|
+
if (configuration) {
|
|
7370
|
+
baseOptions = configuration.baseOptions;
|
|
7371
|
+
}
|
|
7372
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
7373
|
+
const localVarHeaderParameter = {};
|
|
7374
|
+
const localVarQueryParameter = {};
|
|
7375
|
+
if (companyId !== undefined) {
|
|
7376
|
+
localVarQueryParameter['companyId'] = companyId;
|
|
7377
|
+
}
|
|
7378
|
+
if (domain !== undefined) {
|
|
7379
|
+
localVarQueryParameter['domain'] = domain;
|
|
7380
|
+
}
|
|
7381
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7382
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7383
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7384
|
+
return {
|
|
7385
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7386
|
+
options: localVarRequestOptions,
|
|
7387
|
+
};
|
|
7388
|
+
},
|
|
7389
|
+
};
|
|
7390
|
+
};
|
|
7391
|
+
exports.ContentApiAxiosParamCreator = ContentApiAxiosParamCreator;
|
|
7392
|
+
/**
|
|
7393
|
+
* ContentApi - functional programming interface
|
|
7394
|
+
* @export
|
|
7395
|
+
*/
|
|
7396
|
+
const ContentApiFp = function (configuration) {
|
|
7397
|
+
const localVarAxiosParamCreator = (0, exports.ContentApiAxiosParamCreator)(configuration);
|
|
7398
|
+
return {
|
|
7399
|
+
/**
|
|
7400
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7401
|
+
* @param {string} slug
|
|
7402
|
+
* @param {string} [companyId]
|
|
7403
|
+
* @param {string} [domain]
|
|
7404
|
+
* @param {*} [options] Override http request option.
|
|
7405
|
+
* @throws {RequiredError}
|
|
7406
|
+
*/
|
|
7407
|
+
async getContentBySlug(slug, companyId, domain, options) {
|
|
7408
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getContentBySlug(slug, companyId, domain, options);
|
|
7409
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7410
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['ContentApi.getContentBySlug']?.[localVarOperationServerIndex]?.url;
|
|
7411
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
7412
|
+
},
|
|
7413
|
+
};
|
|
7414
|
+
};
|
|
7415
|
+
exports.ContentApiFp = ContentApiFp;
|
|
7416
|
+
/**
|
|
7417
|
+
* ContentApi - factory interface
|
|
7418
|
+
* @export
|
|
7419
|
+
*/
|
|
7420
|
+
const ContentApiFactory = function (configuration, basePath, axios) {
|
|
7421
|
+
const localVarFp = (0, exports.ContentApiFp)(configuration);
|
|
7422
|
+
return {
|
|
7423
|
+
/**
|
|
7424
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7425
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
7426
|
+
* @param {*} [options] Override http request option.
|
|
7427
|
+
* @throws {RequiredError}
|
|
7428
|
+
*/
|
|
7429
|
+
getContentBySlug(requestParameters, options) {
|
|
7430
|
+
return localVarFp.getContentBySlug(requestParameters.slug, requestParameters.companyId, requestParameters.domain, options).then((request) => request(axios, basePath));
|
|
7431
|
+
},
|
|
7432
|
+
};
|
|
7433
|
+
};
|
|
7434
|
+
exports.ContentApiFactory = ContentApiFactory;
|
|
7435
|
+
/**
|
|
7436
|
+
* ContentApi - object-oriented interface
|
|
7437
|
+
* @export
|
|
7438
|
+
* @class ContentApi
|
|
7439
|
+
* @extends {BaseAPI}
|
|
7440
|
+
*/
|
|
7441
|
+
class ContentApi extends base_1.BaseAPI {
|
|
7442
|
+
/**
|
|
7443
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7444
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
7445
|
+
* @param {*} [options] Override http request option.
|
|
7446
|
+
* @throws {RequiredError}
|
|
7447
|
+
* @memberof ContentApi
|
|
7448
|
+
*/
|
|
7449
|
+
getContentBySlug(requestParameters, options) {
|
|
7450
|
+
return (0, exports.ContentApiFp)(this.configuration).getContentBySlug(requestParameters.slug, requestParameters.companyId, requestParameters.domain, options).then((request) => request(this.axios, this.basePath));
|
|
7451
|
+
}
|
|
7452
|
+
}
|
|
7453
|
+
exports.ContentApi = ContentApi;
|
|
7347
7454
|
/**
|
|
7348
7455
|
* ContentPlanApi - axios parameter creator
|
|
7349
7456
|
* @export
|
package/dist/api/api.mjs
CHANGED
|
@@ -7296,6 +7296,109 @@ export const GetContactFormsDateFieldEnum = {
|
|
|
7296
7296
|
CREATED_AT: 'createdAt',
|
|
7297
7297
|
UPDATED_AT: 'updatedAt'
|
|
7298
7298
|
};
|
|
7299
|
+
/**
|
|
7300
|
+
* ContentApi - axios parameter creator
|
|
7301
|
+
* @export
|
|
7302
|
+
*/
|
|
7303
|
+
export const ContentApiAxiosParamCreator = function (configuration) {
|
|
7304
|
+
return {
|
|
7305
|
+
/**
|
|
7306
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7307
|
+
* @param {string} slug
|
|
7308
|
+
* @param {string} [companyId]
|
|
7309
|
+
* @param {string} [domain]
|
|
7310
|
+
* @param {*} [options] Override http request option.
|
|
7311
|
+
* @throws {RequiredError}
|
|
7312
|
+
*/
|
|
7313
|
+
getContentBySlug: async (slug, companyId, domain, options = {}) => {
|
|
7314
|
+
// verify required parameter 'slug' is not null or undefined
|
|
7315
|
+
assertParamExists('getContentBySlug', 'slug', slug);
|
|
7316
|
+
const localVarPath = `/api/contents/slug/{slug}`
|
|
7317
|
+
.replace(`{${"slug"}}`, encodeURIComponent(String(slug)));
|
|
7318
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7319
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
7320
|
+
let baseOptions;
|
|
7321
|
+
if (configuration) {
|
|
7322
|
+
baseOptions = configuration.baseOptions;
|
|
7323
|
+
}
|
|
7324
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
7325
|
+
const localVarHeaderParameter = {};
|
|
7326
|
+
const localVarQueryParameter = {};
|
|
7327
|
+
if (companyId !== undefined) {
|
|
7328
|
+
localVarQueryParameter['companyId'] = companyId;
|
|
7329
|
+
}
|
|
7330
|
+
if (domain !== undefined) {
|
|
7331
|
+
localVarQueryParameter['domain'] = domain;
|
|
7332
|
+
}
|
|
7333
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7334
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7335
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7336
|
+
return {
|
|
7337
|
+
url: toPathString(localVarUrlObj),
|
|
7338
|
+
options: localVarRequestOptions,
|
|
7339
|
+
};
|
|
7340
|
+
},
|
|
7341
|
+
};
|
|
7342
|
+
};
|
|
7343
|
+
/**
|
|
7344
|
+
* ContentApi - functional programming interface
|
|
7345
|
+
* @export
|
|
7346
|
+
*/
|
|
7347
|
+
export const ContentApiFp = function (configuration) {
|
|
7348
|
+
const localVarAxiosParamCreator = ContentApiAxiosParamCreator(configuration);
|
|
7349
|
+
return {
|
|
7350
|
+
/**
|
|
7351
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7352
|
+
* @param {string} slug
|
|
7353
|
+
* @param {string} [companyId]
|
|
7354
|
+
* @param {string} [domain]
|
|
7355
|
+
* @param {*} [options] Override http request option.
|
|
7356
|
+
* @throws {RequiredError}
|
|
7357
|
+
*/
|
|
7358
|
+
async getContentBySlug(slug, companyId, domain, options) {
|
|
7359
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getContentBySlug(slug, companyId, domain, options);
|
|
7360
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7361
|
+
const localVarOperationServerBasePath = operationServerMap['ContentApi.getContentBySlug']?.[localVarOperationServerIndex]?.url;
|
|
7362
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
7363
|
+
},
|
|
7364
|
+
};
|
|
7365
|
+
};
|
|
7366
|
+
/**
|
|
7367
|
+
* ContentApi - factory interface
|
|
7368
|
+
* @export
|
|
7369
|
+
*/
|
|
7370
|
+
export const ContentApiFactory = function (configuration, basePath, axios) {
|
|
7371
|
+
const localVarFp = ContentApiFp(configuration);
|
|
7372
|
+
return {
|
|
7373
|
+
/**
|
|
7374
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7375
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
7376
|
+
* @param {*} [options] Override http request option.
|
|
7377
|
+
* @throws {RequiredError}
|
|
7378
|
+
*/
|
|
7379
|
+
getContentBySlug(requestParameters, options) {
|
|
7380
|
+
return localVarFp.getContentBySlug(requestParameters.slug, requestParameters.companyId, requestParameters.domain, options).then((request) => request(axios, basePath));
|
|
7381
|
+
},
|
|
7382
|
+
};
|
|
7383
|
+
};
|
|
7384
|
+
/**
|
|
7385
|
+
* ContentApi - object-oriented interface
|
|
7386
|
+
* @export
|
|
7387
|
+
* @class ContentApi
|
|
7388
|
+
* @extends {BaseAPI}
|
|
7389
|
+
*/
|
|
7390
|
+
export class ContentApi extends BaseAPI {
|
|
7391
|
+
/**
|
|
7392
|
+
* Headless prefix\'siz routing: slug → tipten bağımsız içerik + parent (tek dil), yanıta `modelName` eklenir. Ön taraf bununla tek noktadan dispatch eder.
|
|
7393
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
7394
|
+
* @param {*} [options] Override http request option.
|
|
7395
|
+
* @throws {RequiredError}
|
|
7396
|
+
* @memberof ContentApi
|
|
7397
|
+
*/
|
|
7398
|
+
getContentBySlug(requestParameters, options) {
|
|
7399
|
+
return ContentApiFp(this.configuration).getContentBySlug(requestParameters.slug, requestParameters.companyId, requestParameters.domain, options).then((request) => request(this.axios, this.basePath));
|
|
7400
|
+
}
|
|
7401
|
+
}
|
|
7299
7402
|
/**
|
|
7300
7403
|
* ContentPlanApi - axios parameter creator
|
|
7301
7404
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.67",
|
|
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": "
|
|
40
|
+
"gitHead": "a61291de13e785c63c9fb2294c83b82fcec007d3"
|
|
41
41
|
}
|