@infisale-client/api 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.
- package/dist/api/api.d.ts +484 -94
- 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,24 @@ export interface IBrandPatchRequest {
|
|
|
1307
1307
|
* @memberof IBrandPatchRequest
|
|
1308
1308
|
*/
|
|
1309
1309
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1310
|
+
/**
|
|
1311
|
+
*
|
|
1312
|
+
* @type {Array<string>}
|
|
1313
|
+
* @memberof IBrandPatchRequest
|
|
1314
|
+
*/
|
|
1315
|
+
'slugs'?: Array<string>;
|
|
1316
|
+
/**
|
|
1317
|
+
*
|
|
1318
|
+
* @type {Array<string>}
|
|
1319
|
+
* @memberof IBrandPatchRequest
|
|
1320
|
+
*/
|
|
1321
|
+
'languages'?: Array<string>;
|
|
1322
|
+
/**
|
|
1323
|
+
*
|
|
1324
|
+
* @type {string}
|
|
1325
|
+
* @memberof IBrandPatchRequest
|
|
1326
|
+
*/
|
|
1327
|
+
'publishedAt'?: string;
|
|
1310
1328
|
/**
|
|
1311
1329
|
*
|
|
1312
1330
|
* @type {IImage}
|
|
@@ -1332,12 +1350,30 @@ export interface IBrandPostRequest {
|
|
|
1332
1350
|
* @memberof IBrandPostRequest
|
|
1333
1351
|
*/
|
|
1334
1352
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1353
|
+
/**
|
|
1354
|
+
*
|
|
1355
|
+
* @type {Array<string>}
|
|
1356
|
+
* @memberof IBrandPostRequest
|
|
1357
|
+
*/
|
|
1358
|
+
'slugs': Array<string>;
|
|
1359
|
+
/**
|
|
1360
|
+
*
|
|
1361
|
+
* @type {Array<string>}
|
|
1362
|
+
* @memberof IBrandPostRequest
|
|
1363
|
+
*/
|
|
1364
|
+
'languages': Array<string>;
|
|
1335
1365
|
/**
|
|
1336
1366
|
*
|
|
1337
1367
|
* @type {IImage}
|
|
1338
1368
|
* @memberof IBrandPostRequest
|
|
1339
1369
|
*/
|
|
1340
1370
|
'thumbnail'?: IImage;
|
|
1371
|
+
/**
|
|
1372
|
+
*
|
|
1373
|
+
* @type {string}
|
|
1374
|
+
* @memberof IBrandPostRequest
|
|
1375
|
+
*/
|
|
1376
|
+
'publishedAt'?: string;
|
|
1341
1377
|
}
|
|
1342
1378
|
/**
|
|
1343
1379
|
*
|
|
@@ -1449,6 +1485,18 @@ export interface IBrandResponse {
|
|
|
1449
1485
|
* @memberof IBrandResponse
|
|
1450
1486
|
*/
|
|
1451
1487
|
'slugs': Array<string>;
|
|
1488
|
+
/**
|
|
1489
|
+
*
|
|
1490
|
+
* @type {Array<string>}
|
|
1491
|
+
* @memberof IBrandResponse
|
|
1492
|
+
*/
|
|
1493
|
+
'languages': Array<string>;
|
|
1494
|
+
/**
|
|
1495
|
+
*
|
|
1496
|
+
* @type {string}
|
|
1497
|
+
* @memberof IBrandResponse
|
|
1498
|
+
*/
|
|
1499
|
+
'publishedAt': string;
|
|
1452
1500
|
}
|
|
1453
1501
|
/**
|
|
1454
1502
|
*
|
|
@@ -1666,6 +1714,12 @@ export interface ICategoryPatchRequest {
|
|
|
1666
1714
|
* @memberof ICategoryPatchRequest
|
|
1667
1715
|
*/
|
|
1668
1716
|
'attributes'?: Array<ICategoryAttributesResponseAttributesInner>;
|
|
1717
|
+
/**
|
|
1718
|
+
*
|
|
1719
|
+
* @type {string}
|
|
1720
|
+
* @memberof ICategoryPatchRequest
|
|
1721
|
+
*/
|
|
1722
|
+
'publishedAt'?: string;
|
|
1669
1723
|
/**
|
|
1670
1724
|
*
|
|
1671
1725
|
* @type {string}
|
|
@@ -1680,10 +1734,16 @@ export interface ICategoryPatchRequest {
|
|
|
1680
1734
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
1681
1735
|
/**
|
|
1682
1736
|
*
|
|
1683
|
-
* @type {string}
|
|
1737
|
+
* @type {Array<string>}
|
|
1684
1738
|
* @memberof ICategoryPatchRequest
|
|
1685
1739
|
*/
|
|
1686
|
-
'
|
|
1740
|
+
'slugs'?: Array<string>;
|
|
1741
|
+
/**
|
|
1742
|
+
*
|
|
1743
|
+
* @type {Array<string>}
|
|
1744
|
+
* @memberof ICategoryPatchRequest
|
|
1745
|
+
*/
|
|
1746
|
+
'languages'?: Array<string>;
|
|
1687
1747
|
/**
|
|
1688
1748
|
*
|
|
1689
1749
|
* @type {IImage}
|
|
@@ -1717,10 +1777,16 @@ export interface ICategoryPostRequest {
|
|
|
1717
1777
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
1718
1778
|
/**
|
|
1719
1779
|
*
|
|
1720
|
-
* @type {string}
|
|
1780
|
+
* @type {Array<string>}
|
|
1721
1781
|
* @memberof ICategoryPostRequest
|
|
1722
1782
|
*/
|
|
1723
|
-
'
|
|
1783
|
+
'slugs': Array<string>;
|
|
1784
|
+
/**
|
|
1785
|
+
*
|
|
1786
|
+
* @type {Array<string>}
|
|
1787
|
+
* @memberof ICategoryPostRequest
|
|
1788
|
+
*/
|
|
1789
|
+
'languages': Array<string>;
|
|
1724
1790
|
/**
|
|
1725
1791
|
*
|
|
1726
1792
|
* @type {IImage}
|
|
@@ -1739,6 +1805,12 @@ export interface ICategoryPostRequest {
|
|
|
1739
1805
|
* @memberof ICategoryPostRequest
|
|
1740
1806
|
*/
|
|
1741
1807
|
'attributes': Array<ICategoryAttributesResponseAttributesInner>;
|
|
1808
|
+
/**
|
|
1809
|
+
*
|
|
1810
|
+
* @type {string}
|
|
1811
|
+
* @memberof ICategoryPostRequest
|
|
1812
|
+
*/
|
|
1813
|
+
'publishedAt'?: string;
|
|
1742
1814
|
}
|
|
1743
1815
|
/**
|
|
1744
1816
|
*
|
|
@@ -1788,6 +1860,12 @@ export interface ICategoryResponse {
|
|
|
1788
1860
|
* @memberof ICategoryResponse
|
|
1789
1861
|
*/
|
|
1790
1862
|
'slugs': Array<string>;
|
|
1863
|
+
/**
|
|
1864
|
+
*
|
|
1865
|
+
* @type {Array<string>}
|
|
1866
|
+
* @memberof ICategoryResponse
|
|
1867
|
+
*/
|
|
1868
|
+
'languages': Array<string>;
|
|
1791
1869
|
/**
|
|
1792
1870
|
*
|
|
1793
1871
|
* @type {string}
|
|
@@ -2027,6 +2105,12 @@ export interface ICollection {
|
|
|
2027
2105
|
* @memberof ICollection
|
|
2028
2106
|
*/
|
|
2029
2107
|
'slugs': Array<string>;
|
|
2108
|
+
/**
|
|
2109
|
+
*
|
|
2110
|
+
* @type {Array<string>}
|
|
2111
|
+
* @memberof ICollection
|
|
2112
|
+
*/
|
|
2113
|
+
'languages': Array<string>;
|
|
2030
2114
|
/**
|
|
2031
2115
|
*
|
|
2032
2116
|
* @type {string}
|
|
@@ -2130,6 +2214,18 @@ export interface ICollectionPatchRequest {
|
|
|
2130
2214
|
* @memberof ICollectionPatchRequest
|
|
2131
2215
|
*/
|
|
2132
2216
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
2217
|
+
/**
|
|
2218
|
+
*
|
|
2219
|
+
* @type {Array<string>}
|
|
2220
|
+
* @memberof ICollectionPatchRequest
|
|
2221
|
+
*/
|
|
2222
|
+
'slugs'?: Array<string>;
|
|
2223
|
+
/**
|
|
2224
|
+
*
|
|
2225
|
+
* @type {Array<string>}
|
|
2226
|
+
* @memberof ICollectionPatchRequest
|
|
2227
|
+
*/
|
|
2228
|
+
'languages'?: Array<string>;
|
|
2133
2229
|
/**
|
|
2134
2230
|
*
|
|
2135
2231
|
* @type {string}
|
|
@@ -2169,16 +2265,28 @@ export interface ICollectionPostRequest {
|
|
|
2169
2265
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
2170
2266
|
/**
|
|
2171
2267
|
*
|
|
2172
|
-
* @type {string}
|
|
2268
|
+
* @type {Array<string>}
|
|
2173
2269
|
* @memberof ICollectionPostRequest
|
|
2174
2270
|
*/
|
|
2175
|
-
'
|
|
2271
|
+
'slugs': Array<string>;
|
|
2272
|
+
/**
|
|
2273
|
+
*
|
|
2274
|
+
* @type {Array<string>}
|
|
2275
|
+
* @memberof ICollectionPostRequest
|
|
2276
|
+
*/
|
|
2277
|
+
'languages': Array<string>;
|
|
2176
2278
|
/**
|
|
2177
2279
|
*
|
|
2178
2280
|
* @type {IImage}
|
|
2179
2281
|
* @memberof ICollectionPostRequest
|
|
2180
2282
|
*/
|
|
2181
2283
|
'thumbnail'?: IImage;
|
|
2284
|
+
/**
|
|
2285
|
+
*
|
|
2286
|
+
* @type {string}
|
|
2287
|
+
* @memberof ICollectionPostRequest
|
|
2288
|
+
*/
|
|
2289
|
+
'publishedAt'?: string;
|
|
2182
2290
|
}
|
|
2183
2291
|
/**
|
|
2184
2292
|
*
|
|
@@ -2228,6 +2336,12 @@ export interface ICollectionResponse {
|
|
|
2228
2336
|
* @memberof ICollectionResponse
|
|
2229
2337
|
*/
|
|
2230
2338
|
'slugs': Array<string>;
|
|
2339
|
+
/**
|
|
2340
|
+
*
|
|
2341
|
+
* @type {Array<string>}
|
|
2342
|
+
* @memberof ICollectionResponse
|
|
2343
|
+
*/
|
|
2344
|
+
'languages': Array<string>;
|
|
2231
2345
|
/**
|
|
2232
2346
|
*
|
|
2233
2347
|
* @type {string}
|
|
@@ -2499,6 +2613,12 @@ export interface ICompany {
|
|
|
2499
2613
|
* @memberof ICompany
|
|
2500
2614
|
*/
|
|
2501
2615
|
'orderNoSuffix'?: string;
|
|
2616
|
+
/**
|
|
2617
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2618
|
+
* @type {number}
|
|
2619
|
+
* @memberof ICompany
|
|
2620
|
+
*/
|
|
2621
|
+
'lastOrderNumber'?: number;
|
|
2502
2622
|
/**
|
|
2503
2623
|
*
|
|
2504
2624
|
* @type {string}
|
|
@@ -2665,6 +2785,18 @@ export interface ICompany {
|
|
|
2665
2785
|
* @memberof ICompany
|
|
2666
2786
|
*/
|
|
2667
2787
|
'htmlHead'?: string;
|
|
2788
|
+
/**
|
|
2789
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2790
|
+
* @type {number}
|
|
2791
|
+
* @memberof ICompany
|
|
2792
|
+
*/
|
|
2793
|
+
'password'?: number;
|
|
2794
|
+
/**
|
|
2795
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
2796
|
+
* @type {boolean}
|
|
2797
|
+
* @memberof ICompany
|
|
2798
|
+
*/
|
|
2799
|
+
'passwordActive'?: boolean;
|
|
2668
2800
|
/**
|
|
2669
2801
|
*
|
|
2670
2802
|
* @type {CompanyStatusEnum}
|
|
@@ -2702,6 +2834,12 @@ export interface ICompany {
|
|
|
2702
2834
|
* @interface ICompanyAdminResponse
|
|
2703
2835
|
*/
|
|
2704
2836
|
export interface ICompanyAdminResponse {
|
|
2837
|
+
/**
|
|
2838
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
2839
|
+
* @type {number}
|
|
2840
|
+
* @memberof ICompanyAdminResponse
|
|
2841
|
+
*/
|
|
2842
|
+
'password'?: number;
|
|
2705
2843
|
/**
|
|
2706
2844
|
*
|
|
2707
2845
|
* @type {string}
|
|
@@ -2756,6 +2894,12 @@ export interface ICompanyAdminResponse {
|
|
|
2756
2894
|
* @memberof ICompanyAdminResponse
|
|
2757
2895
|
*/
|
|
2758
2896
|
'updatedAt': string;
|
|
2897
|
+
/**
|
|
2898
|
+
*
|
|
2899
|
+
* @type {Array<LanguageEnum>}
|
|
2900
|
+
* @memberof ICompanyAdminResponse
|
|
2901
|
+
*/
|
|
2902
|
+
'languages': Array<LanguageEnum>;
|
|
2759
2903
|
/**
|
|
2760
2904
|
*
|
|
2761
2905
|
* @type {CompanyTypeEnum}
|
|
@@ -2810,6 +2954,12 @@ export interface ICompanyAdminResponse {
|
|
|
2810
2954
|
* @memberof ICompanyAdminResponse
|
|
2811
2955
|
*/
|
|
2812
2956
|
'orderNoSuffix'?: string;
|
|
2957
|
+
/**
|
|
2958
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
2959
|
+
* @type {number}
|
|
2960
|
+
* @memberof ICompanyAdminResponse
|
|
2961
|
+
*/
|
|
2962
|
+
'lastOrderNumber'?: number;
|
|
2813
2963
|
/**
|
|
2814
2964
|
*
|
|
2815
2965
|
* @type {IImage}
|
|
@@ -2834,12 +2984,6 @@ export interface ICompanyAdminResponse {
|
|
|
2834
2984
|
* @memberof ICompanyAdminResponse
|
|
2835
2985
|
*/
|
|
2836
2986
|
'timezone': TimezoneEnum;
|
|
2837
|
-
/**
|
|
2838
|
-
*
|
|
2839
|
-
* @type {Array<LanguageEnum>}
|
|
2840
|
-
* @memberof ICompanyAdminResponse
|
|
2841
|
-
*/
|
|
2842
|
-
'languages': Array<LanguageEnum>;
|
|
2843
2987
|
/**
|
|
2844
2988
|
*
|
|
2845
2989
|
* @type {CurrencyEnum}
|
|
@@ -2908,6 +3052,12 @@ export interface ICompanyAdminResponse {
|
|
|
2908
3052
|
* @memberof ICompanyAdminResponse
|
|
2909
3053
|
*/
|
|
2910
3054
|
'htmlHead'?: string;
|
|
3055
|
+
/**
|
|
3056
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
3057
|
+
* @type {boolean}
|
|
3058
|
+
* @memberof ICompanyAdminResponse
|
|
3059
|
+
*/
|
|
3060
|
+
'passwordActive'?: boolean;
|
|
2911
3061
|
/**
|
|
2912
3062
|
*
|
|
2913
3063
|
* @type {string}
|
|
@@ -3460,6 +3610,12 @@ export interface ICompanyDashboardResponseOrdersInner {
|
|
|
3460
3610
|
* @interface ICompanyPatchRequest
|
|
3461
3611
|
*/
|
|
3462
3612
|
export interface ICompanyPatchRequest {
|
|
3613
|
+
/**
|
|
3614
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3615
|
+
* @type {number}
|
|
3616
|
+
* @memberof ICompanyPatchRequest
|
|
3617
|
+
*/
|
|
3618
|
+
'password'?: number;
|
|
3463
3619
|
/**
|
|
3464
3620
|
*
|
|
3465
3621
|
* @type {string}
|
|
@@ -3498,6 +3654,12 @@ export interface ICompanyPatchRequest {
|
|
|
3498
3654
|
* @memberof ICompanyPatchRequest
|
|
3499
3655
|
*/
|
|
3500
3656
|
'status'?: CompanyStatusEnum;
|
|
3657
|
+
/**
|
|
3658
|
+
*
|
|
3659
|
+
* @type {Array<LanguageEnum>}
|
|
3660
|
+
* @memberof ICompanyPatchRequest
|
|
3661
|
+
*/
|
|
3662
|
+
'languages'?: Array<LanguageEnum>;
|
|
3501
3663
|
/**
|
|
3502
3664
|
*
|
|
3503
3665
|
* @type {string}
|
|
@@ -3570,6 +3732,12 @@ export interface ICompanyPatchRequest {
|
|
|
3570
3732
|
* @memberof ICompanyPatchRequest
|
|
3571
3733
|
*/
|
|
3572
3734
|
'orderNoSuffix'?: string;
|
|
3735
|
+
/**
|
|
3736
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
3737
|
+
* @type {number}
|
|
3738
|
+
* @memberof ICompanyPatchRequest
|
|
3739
|
+
*/
|
|
3740
|
+
'lastOrderNumber'?: number;
|
|
3573
3741
|
/**
|
|
3574
3742
|
*
|
|
3575
3743
|
* @type {IImage}
|
|
@@ -3594,12 +3762,6 @@ export interface ICompanyPatchRequest {
|
|
|
3594
3762
|
* @memberof ICompanyPatchRequest
|
|
3595
3763
|
*/
|
|
3596
3764
|
'timezone'?: TimezoneEnum;
|
|
3597
|
-
/**
|
|
3598
|
-
*
|
|
3599
|
-
* @type {Array<LanguageEnum>}
|
|
3600
|
-
* @memberof ICompanyPatchRequest
|
|
3601
|
-
*/
|
|
3602
|
-
'languages'?: Array<LanguageEnum>;
|
|
3603
3765
|
/**
|
|
3604
3766
|
*
|
|
3605
3767
|
* @type {CurrencyEnum}
|
|
@@ -3638,6 +3800,12 @@ export interface ICompanyPatchRequest {
|
|
|
3638
3800
|
* @memberof ICompanyPatchRequest
|
|
3639
3801
|
*/
|
|
3640
3802
|
'htmlHead'?: string;
|
|
3803
|
+
/**
|
|
3804
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
3805
|
+
* @type {boolean}
|
|
3806
|
+
* @memberof ICompanyPatchRequest
|
|
3807
|
+
*/
|
|
3808
|
+
'passwordActive'?: boolean;
|
|
3641
3809
|
/**
|
|
3642
3810
|
*
|
|
3643
3811
|
* @type {string}
|
|
@@ -3805,6 +3973,12 @@ export interface ICompanyPostRequest {
|
|
|
3805
3973
|
* @interface ICompanyResponse
|
|
3806
3974
|
*/
|
|
3807
3975
|
export interface ICompanyResponse {
|
|
3976
|
+
/**
|
|
3977
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
3978
|
+
* @type {number}
|
|
3979
|
+
* @memberof ICompanyResponse
|
|
3980
|
+
*/
|
|
3981
|
+
'password'?: number;
|
|
3808
3982
|
/**
|
|
3809
3983
|
*
|
|
3810
3984
|
* @type {string}
|
|
@@ -3859,6 +4033,12 @@ export interface ICompanyResponse {
|
|
|
3859
4033
|
* @memberof ICompanyResponse
|
|
3860
4034
|
*/
|
|
3861
4035
|
'updatedAt': string;
|
|
4036
|
+
/**
|
|
4037
|
+
*
|
|
4038
|
+
* @type {Array<LanguageEnum>}
|
|
4039
|
+
* @memberof ICompanyResponse
|
|
4040
|
+
*/
|
|
4041
|
+
'languages': Array<LanguageEnum>;
|
|
3862
4042
|
/**
|
|
3863
4043
|
*
|
|
3864
4044
|
* @type {CompanyTypeEnum}
|
|
@@ -3913,6 +4093,12 @@ export interface ICompanyResponse {
|
|
|
3913
4093
|
* @memberof ICompanyResponse
|
|
3914
4094
|
*/
|
|
3915
4095
|
'orderNoSuffix'?: string;
|
|
4096
|
+
/**
|
|
4097
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
4098
|
+
* @type {number}
|
|
4099
|
+
* @memberof ICompanyResponse
|
|
4100
|
+
*/
|
|
4101
|
+
'lastOrderNumber'?: number;
|
|
3916
4102
|
/**
|
|
3917
4103
|
*
|
|
3918
4104
|
* @type {IImage}
|
|
@@ -3937,12 +4123,6 @@ export interface ICompanyResponse {
|
|
|
3937
4123
|
* @memberof ICompanyResponse
|
|
3938
4124
|
*/
|
|
3939
4125
|
'timezone': TimezoneEnum;
|
|
3940
|
-
/**
|
|
3941
|
-
*
|
|
3942
|
-
* @type {Array<LanguageEnum>}
|
|
3943
|
-
* @memberof ICompanyResponse
|
|
3944
|
-
*/
|
|
3945
|
-
'languages': Array<LanguageEnum>;
|
|
3946
4126
|
/**
|
|
3947
4127
|
*
|
|
3948
4128
|
* @type {CurrencyEnum}
|
|
@@ -4011,6 +4191,12 @@ export interface ICompanyResponse {
|
|
|
4011
4191
|
* @memberof ICompanyResponse
|
|
4012
4192
|
*/
|
|
4013
4193
|
'htmlHead'?: string;
|
|
4194
|
+
/**
|
|
4195
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
4196
|
+
* @type {boolean}
|
|
4197
|
+
* @memberof ICompanyResponse
|
|
4198
|
+
*/
|
|
4199
|
+
'passwordActive'?: boolean;
|
|
4014
4200
|
/**
|
|
4015
4201
|
*
|
|
4016
4202
|
* @type {string}
|
|
@@ -7020,11 +7206,11 @@ export interface IOrderPostRequest {
|
|
|
7020
7206
|
*/
|
|
7021
7207
|
export interface IOrderResponse {
|
|
7022
7208
|
/**
|
|
7023
|
-
*
|
|
7024
|
-
* @type {
|
|
7209
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
7210
|
+
* @type {string}
|
|
7025
7211
|
* @memberof IOrderResponse
|
|
7026
7212
|
*/
|
|
7027
|
-
'number':
|
|
7213
|
+
'number': string;
|
|
7028
7214
|
/**
|
|
7029
7215
|
*
|
|
7030
7216
|
* @type {string}
|
|
@@ -7629,6 +7815,18 @@ export interface IPagePatchRequest {
|
|
|
7629
7815
|
* @memberof IPagePatchRequest
|
|
7630
7816
|
*/
|
|
7631
7817
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
7818
|
+
/**
|
|
7819
|
+
*
|
|
7820
|
+
* @type {Array<string>}
|
|
7821
|
+
* @memberof IPagePatchRequest
|
|
7822
|
+
*/
|
|
7823
|
+
'slugs'?: Array<string>;
|
|
7824
|
+
/**
|
|
7825
|
+
*
|
|
7826
|
+
* @type {Array<string>}
|
|
7827
|
+
* @memberof IPagePatchRequest
|
|
7828
|
+
*/
|
|
7829
|
+
'languages'?: Array<string>;
|
|
7632
7830
|
/**
|
|
7633
7831
|
*
|
|
7634
7832
|
* @type {string}
|
|
@@ -7674,10 +7872,16 @@ export interface IPagePostRequest {
|
|
|
7674
7872
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
7675
7873
|
/**
|
|
7676
7874
|
*
|
|
7677
|
-
* @type {string}
|
|
7875
|
+
* @type {Array<string>}
|
|
7678
7876
|
* @memberof IPagePostRequest
|
|
7679
7877
|
*/
|
|
7680
|
-
'
|
|
7878
|
+
'slugs': Array<string>;
|
|
7879
|
+
/**
|
|
7880
|
+
*
|
|
7881
|
+
* @type {Array<string>}
|
|
7882
|
+
* @memberof IPagePostRequest
|
|
7883
|
+
*/
|
|
7884
|
+
'languages': Array<string>;
|
|
7681
7885
|
/**
|
|
7682
7886
|
*
|
|
7683
7887
|
* @type {IImage}
|
|
@@ -7690,12 +7894,18 @@ export interface IPagePostRequest {
|
|
|
7690
7894
|
* @memberof IPagePostRequest
|
|
7691
7895
|
*/
|
|
7692
7896
|
'type': string;
|
|
7897
|
+
/**
|
|
7898
|
+
*
|
|
7899
|
+
* @type {string}
|
|
7900
|
+
* @memberof IPagePostRequest
|
|
7901
|
+
*/
|
|
7902
|
+
'publishedAt'?: string;
|
|
7693
7903
|
/**
|
|
7694
7904
|
*
|
|
7695
7905
|
* @type {boolean}
|
|
7696
7906
|
* @memberof IPagePostRequest
|
|
7697
7907
|
*/
|
|
7698
|
-
'draft'
|
|
7908
|
+
'draft'?: boolean;
|
|
7699
7909
|
}
|
|
7700
7910
|
/**
|
|
7701
7911
|
*
|
|
@@ -7745,6 +7955,12 @@ export interface IPageResponse {
|
|
|
7745
7955
|
* @memberof IPageResponse
|
|
7746
7956
|
*/
|
|
7747
7957
|
'slugs': Array<string>;
|
|
7958
|
+
/**
|
|
7959
|
+
*
|
|
7960
|
+
* @type {Array<string>}
|
|
7961
|
+
* @memberof IPageResponse
|
|
7962
|
+
*/
|
|
7963
|
+
'languages': Array<string>;
|
|
7748
7964
|
/**
|
|
7749
7965
|
*
|
|
7750
7966
|
* @type {string}
|
|
@@ -8454,6 +8670,12 @@ export interface IProductPatchRequest {
|
|
|
8454
8670
|
* @memberof IProductPatchRequest
|
|
8455
8671
|
*/
|
|
8456
8672
|
'template'?: string;
|
|
8673
|
+
/**
|
|
8674
|
+
*
|
|
8675
|
+
* @type {string}
|
|
8676
|
+
* @memberof IProductPatchRequest
|
|
8677
|
+
*/
|
|
8678
|
+
'publishedAt'?: string;
|
|
8457
8679
|
/**
|
|
8458
8680
|
*
|
|
8459
8681
|
* @type {string}
|
|
@@ -8510,6 +8732,12 @@ export interface IProductPatchRequest {
|
|
|
8510
8732
|
* @memberof IProductPatchRequest
|
|
8511
8733
|
*/
|
|
8512
8734
|
'contents'?: PartialRecordLanguageEnumIContentsValue;
|
|
8735
|
+
/**
|
|
8736
|
+
*
|
|
8737
|
+
* @type {Array<string>}
|
|
8738
|
+
* @memberof IProductPatchRequest
|
|
8739
|
+
*/
|
|
8740
|
+
'languages'?: Array<string>;
|
|
8513
8741
|
/**
|
|
8514
8742
|
*
|
|
8515
8743
|
* @type {Array<VariantType>}
|
|
@@ -8532,12 +8760,6 @@ export interface IProductPatchRequest {
|
|
|
8532
8760
|
'attributes'?: {
|
|
8533
8761
|
[key: string]: string;
|
|
8534
8762
|
};
|
|
8535
|
-
/**
|
|
8536
|
-
*
|
|
8537
|
-
* @type {string}
|
|
8538
|
-
* @memberof IProductPatchRequest
|
|
8539
|
-
*/
|
|
8540
|
-
'publishedAt'?: string;
|
|
8541
8763
|
}
|
|
8542
8764
|
/**
|
|
8543
8765
|
*
|
|
@@ -8601,6 +8823,12 @@ export interface IProductPostRequest {
|
|
|
8601
8823
|
* @memberof IProductPostRequest
|
|
8602
8824
|
*/
|
|
8603
8825
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
8826
|
+
/**
|
|
8827
|
+
*
|
|
8828
|
+
* @type {Array<string>}
|
|
8829
|
+
* @memberof IProductPostRequest
|
|
8830
|
+
*/
|
|
8831
|
+
'languages': Array<string>;
|
|
8604
8832
|
/**
|
|
8605
8833
|
*
|
|
8606
8834
|
* @type {Array<VariantType>}
|
|
@@ -8628,25 +8856,25 @@ export interface IProductPostRequest {
|
|
|
8628
8856
|
* @type {string}
|
|
8629
8857
|
* @memberof IProductPostRequest
|
|
8630
8858
|
*/
|
|
8631
|
-
'
|
|
8859
|
+
'category'?: string;
|
|
8632
8860
|
/**
|
|
8633
8861
|
*
|
|
8634
8862
|
* @type {string}
|
|
8635
8863
|
* @memberof IProductPostRequest
|
|
8636
8864
|
*/
|
|
8637
|
-
'
|
|
8865
|
+
'brand'?: string;
|
|
8638
8866
|
/**
|
|
8639
8867
|
*
|
|
8640
8868
|
* @type {string}
|
|
8641
8869
|
* @memberof IProductPostRequest
|
|
8642
8870
|
*/
|
|
8643
|
-
'
|
|
8871
|
+
'template': string;
|
|
8644
8872
|
/**
|
|
8645
8873
|
*
|
|
8646
8874
|
* @type {string}
|
|
8647
8875
|
* @memberof IProductPostRequest
|
|
8648
8876
|
*/
|
|
8649
|
-
'
|
|
8877
|
+
'publishedAt'?: string;
|
|
8650
8878
|
}
|
|
8651
8879
|
/**
|
|
8652
8880
|
*
|
|
@@ -8758,6 +8986,12 @@ export interface IProductResponse {
|
|
|
8758
8986
|
* @memberof IProductResponse
|
|
8759
8987
|
*/
|
|
8760
8988
|
'slugs': Array<string>;
|
|
8989
|
+
/**
|
|
8990
|
+
*
|
|
8991
|
+
* @type {Array<string>}
|
|
8992
|
+
* @memberof IProductResponse
|
|
8993
|
+
*/
|
|
8994
|
+
'languages': Array<string>;
|
|
8761
8995
|
/**
|
|
8762
8996
|
*
|
|
8763
8997
|
* @type {Array<VariantType>}
|
|
@@ -11925,25 +12159,37 @@ export interface PickIBasketExcludeKeyofIBasketItems {
|
|
|
11925
12159
|
/**
|
|
11926
12160
|
* From T, pick a set of properties whose keys are in the union K
|
|
11927
12161
|
* @export
|
|
11928
|
-
* @interface
|
|
12162
|
+
* @interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11929
12163
|
*/
|
|
11930
|
-
export interface
|
|
12164
|
+
export interface PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue {
|
|
11931
12165
|
/**
|
|
11932
12166
|
*
|
|
11933
12167
|
* @type {string}
|
|
11934
|
-
* @memberof
|
|
12168
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11935
12169
|
*/
|
|
11936
12170
|
'company': string;
|
|
11937
12171
|
/**
|
|
11938
12172
|
*
|
|
11939
12173
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
11940
|
-
* @memberof
|
|
12174
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11941
12175
|
*/
|
|
11942
12176
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12177
|
+
/**
|
|
12178
|
+
*
|
|
12179
|
+
* @type {Array<string>}
|
|
12180
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12181
|
+
*/
|
|
12182
|
+
'slugs': Array<string>;
|
|
12183
|
+
/**
|
|
12184
|
+
*
|
|
12185
|
+
* @type {Array<string>}
|
|
12186
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12187
|
+
*/
|
|
12188
|
+
'languages': Array<string>;
|
|
11943
12189
|
/**
|
|
11944
12190
|
*
|
|
11945
12191
|
* @type {IImage}
|
|
11946
|
-
* @memberof
|
|
12192
|
+
* @memberof PickIBrandResponseExcludeKeyofIBrandResponseKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
11947
12193
|
*/
|
|
11948
12194
|
'thumbnail'?: IImage;
|
|
11949
12195
|
}
|
|
@@ -11995,6 +12241,12 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
11995
12241
|
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
11996
12242
|
*/
|
|
11997
12243
|
'slugs': Array<string>;
|
|
12244
|
+
/**
|
|
12245
|
+
*
|
|
12246
|
+
* @type {Array<string>}
|
|
12247
|
+
* @memberof PickICategoryExcludeKeyofICategoryAttributes
|
|
12248
|
+
*/
|
|
12249
|
+
'languages': Array<string>;
|
|
11998
12250
|
/**
|
|
11999
12251
|
*
|
|
12000
12252
|
* @type {string}
|
|
@@ -12017,37 +12269,43 @@ export interface PickICategoryExcludeKeyofICategoryAttributes {
|
|
|
12017
12269
|
/**
|
|
12018
12270
|
* From T, pick a set of properties whose keys are in the union K
|
|
12019
12271
|
* @export
|
|
12020
|
-
* @interface
|
|
12272
|
+
* @interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12021
12273
|
*/
|
|
12022
|
-
export interface
|
|
12274
|
+
export interface PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue {
|
|
12023
12275
|
/**
|
|
12024
12276
|
*
|
|
12025
12277
|
* @type {string}
|
|
12026
|
-
* @memberof
|
|
12278
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12027
12279
|
*/
|
|
12028
12280
|
'company': string;
|
|
12029
12281
|
/**
|
|
12030
12282
|
*
|
|
12031
12283
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12032
|
-
* @memberof
|
|
12284
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12033
12285
|
*/
|
|
12034
12286
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12035
12287
|
/**
|
|
12036
12288
|
*
|
|
12037
|
-
* @type {string}
|
|
12038
|
-
* @memberof
|
|
12289
|
+
* @type {Array<string>}
|
|
12290
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12039
12291
|
*/
|
|
12040
|
-
'
|
|
12292
|
+
'slugs': Array<string>;
|
|
12293
|
+
/**
|
|
12294
|
+
*
|
|
12295
|
+
* @type {Array<string>}
|
|
12296
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12297
|
+
*/
|
|
12298
|
+
'languages': Array<string>;
|
|
12041
12299
|
/**
|
|
12042
12300
|
*
|
|
12043
12301
|
* @type {IImage}
|
|
12044
|
-
* @memberof
|
|
12302
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12045
12303
|
*/
|
|
12046
12304
|
'thumbnail'?: IImage;
|
|
12047
12305
|
/**
|
|
12048
12306
|
*
|
|
12049
12307
|
* @type {string}
|
|
12050
|
-
* @memberof
|
|
12308
|
+
* @memberof PickICategoryResponseExcludeKeyofICategoryResponseKeyofMongoResponseOrAttributesOrPublishedAtOrKeyofIContentsValue
|
|
12051
12309
|
*/
|
|
12052
12310
|
'main'?: string;
|
|
12053
12311
|
}
|
|
@@ -12104,37 +12362,43 @@ export interface PickICategoryResponseIdOrContentsOrAttributes {
|
|
|
12104
12362
|
/**
|
|
12105
12363
|
* From T, pick a set of properties whose keys are in the union K
|
|
12106
12364
|
* @export
|
|
12107
|
-
* @interface
|
|
12365
|
+
* @interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12108
12366
|
*/
|
|
12109
|
-
export interface
|
|
12367
|
+
export interface PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue {
|
|
12110
12368
|
/**
|
|
12111
12369
|
*
|
|
12112
12370
|
* @type {string}
|
|
12113
|
-
* @memberof
|
|
12371
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12114
12372
|
*/
|
|
12115
12373
|
'company': string;
|
|
12116
12374
|
/**
|
|
12117
12375
|
*
|
|
12118
12376
|
* @type {string}
|
|
12119
|
-
* @memberof
|
|
12377
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12120
12378
|
*/
|
|
12121
12379
|
'template': string;
|
|
12122
12380
|
/**
|
|
12123
12381
|
*
|
|
12124
12382
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
12125
|
-
* @memberof
|
|
12383
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12126
12384
|
*/
|
|
12127
12385
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
12128
12386
|
/**
|
|
12129
12387
|
*
|
|
12130
|
-
* @type {string}
|
|
12131
|
-
* @memberof
|
|
12388
|
+
* @type {Array<string>}
|
|
12389
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12132
12390
|
*/
|
|
12133
|
-
'
|
|
12391
|
+
'slugs': Array<string>;
|
|
12392
|
+
/**
|
|
12393
|
+
*
|
|
12394
|
+
* @type {Array<string>}
|
|
12395
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12396
|
+
*/
|
|
12397
|
+
'languages': Array<string>;
|
|
12134
12398
|
/**
|
|
12135
12399
|
*
|
|
12136
12400
|
* @type {IImage}
|
|
12137
|
-
* @memberof
|
|
12401
|
+
* @memberof PickICollectionExcludeKeyofICollectionKeyofMongoResponseOrPublishedAtOrKeyofIContentsValue
|
|
12138
12402
|
*/
|
|
12139
12403
|
'thumbnail'?: IImage;
|
|
12140
12404
|
}
|
|
@@ -12186,6 +12450,12 @@ export interface PickICollectionExcludeKeyofICollectionTemplate {
|
|
|
12186
12450
|
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
12187
12451
|
*/
|
|
12188
12452
|
'slugs': Array<string>;
|
|
12453
|
+
/**
|
|
12454
|
+
*
|
|
12455
|
+
* @type {Array<string>}
|
|
12456
|
+
* @memberof PickICollectionExcludeKeyofICollectionTemplate
|
|
12457
|
+
*/
|
|
12458
|
+
'languages': Array<string>;
|
|
12189
12459
|
/**
|
|
12190
12460
|
*
|
|
12191
12461
|
* @type {string}
|
|
@@ -12333,6 +12603,12 @@ export interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91
|
|
|
12333
12603
|
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12334
12604
|
*/
|
|
12335
12605
|
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
12606
|
+
/**
|
|
12607
|
+
* Storefront erişim kilidi parolası (6 haneli). Gizli değildir; kilit sayfasında gösterilir.
|
|
12608
|
+
* @type {number}
|
|
12609
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12610
|
+
*/
|
|
12611
|
+
'password'?: number;
|
|
12336
12612
|
/**
|
|
12337
12613
|
*
|
|
12338
12614
|
* @type {string}
|
|
@@ -12387,6 +12663,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12387
12663
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12388
12664
|
*/
|
|
12389
12665
|
'updatedAt': string;
|
|
12666
|
+
/**
|
|
12667
|
+
*
|
|
12668
|
+
* @type {Array<LanguageEnum>}
|
|
12669
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12670
|
+
*/
|
|
12671
|
+
'languages': Array<LanguageEnum>;
|
|
12390
12672
|
/**
|
|
12391
12673
|
*
|
|
12392
12674
|
* @type {CompanyTypeEnum}
|
|
@@ -12441,6 +12723,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12441
12723
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12442
12724
|
*/
|
|
12443
12725
|
'orderNoSuffix'?: string;
|
|
12726
|
+
/**
|
|
12727
|
+
* Sipariş numarası atomik sayacı (`$inc` ile sıradaki numara). Bkz. OrderService.nextOrderNumber.
|
|
12728
|
+
* @type {number}
|
|
12729
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12730
|
+
*/
|
|
12731
|
+
'lastOrderNumber'?: number;
|
|
12444
12732
|
/**
|
|
12445
12733
|
*
|
|
12446
12734
|
* @type {IImage}
|
|
@@ -12465,12 +12753,6 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12465
12753
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12466
12754
|
*/
|
|
12467
12755
|
'timezone': TimezoneEnum;
|
|
12468
|
-
/**
|
|
12469
|
-
*
|
|
12470
|
-
* @type {Array<LanguageEnum>}
|
|
12471
|
-
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12472
|
-
*/
|
|
12473
|
-
'languages': Array<LanguageEnum>;
|
|
12474
12756
|
/**
|
|
12475
12757
|
*
|
|
12476
12758
|
* @type {CurrencyEnum}
|
|
@@ -12539,6 +12821,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12539
12821
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12540
12822
|
*/
|
|
12541
12823
|
'htmlHead'?: string;
|
|
12824
|
+
/**
|
|
12825
|
+
* Storefront erişim kilidi aktif mi? Aktifken parolasız ziyaretçi 403 alır. Yeni sitelerde varsayılan açık.
|
|
12826
|
+
* @type {boolean}
|
|
12827
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12828
|
+
*/
|
|
12829
|
+
'passwordActive'?: boolean;
|
|
12542
12830
|
/**
|
|
12543
12831
|
*
|
|
12544
12832
|
* @type {string}
|
|
@@ -12951,11 +13239,11 @@ export interface PickINavigationLinkExcludeKeyofINavigationLinkLinks {
|
|
|
12951
13239
|
*/
|
|
12952
13240
|
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
12953
13241
|
/**
|
|
12954
|
-
*
|
|
12955
|
-
* @type {
|
|
13242
|
+
* Değişmez sipariş numarası snapshot\'ı (prefix+sıra+suffix). Bkz. OrderService.nextOrderNumber.
|
|
13243
|
+
* @type {string}
|
|
12956
13244
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
12957
13245
|
*/
|
|
12958
|
-
'number':
|
|
13246
|
+
'number': string;
|
|
12959
13247
|
/**
|
|
12960
13248
|
*
|
|
12961
13249
|
* @type {string}
|
|
@@ -13336,51 +13624,51 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
|
13336
13624
|
/**
|
|
13337
13625
|
* From T, pick a set of properties whose keys are in the union K
|
|
13338
13626
|
* @export
|
|
13339
|
-
* @interface
|
|
13627
|
+
* @interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13340
13628
|
*/
|
|
13341
|
-
export interface
|
|
13629
|
+
export interface PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue {
|
|
13342
13630
|
/**
|
|
13343
13631
|
*
|
|
13344
13632
|
* @type {string}
|
|
13345
|
-
* @memberof
|
|
13633
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13346
13634
|
*/
|
|
13347
13635
|
'company': string;
|
|
13348
13636
|
/**
|
|
13349
13637
|
*
|
|
13350
13638
|
* @type {string}
|
|
13351
|
-
* @memberof
|
|
13639
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13352
13640
|
*/
|
|
13353
13641
|
'template': string;
|
|
13354
13642
|
/**
|
|
13355
13643
|
*
|
|
13356
13644
|
* @type {PartialRecordLanguageEnumIContentsValue}
|
|
13357
|
-
* @memberof
|
|
13645
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13358
13646
|
*/
|
|
13359
13647
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
13360
13648
|
/**
|
|
13361
13649
|
*
|
|
13362
|
-
* @type {string}
|
|
13363
|
-
* @memberof
|
|
13650
|
+
* @type {Array<string>}
|
|
13651
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13364
13652
|
*/
|
|
13365
|
-
'
|
|
13653
|
+
'slugs': Array<string>;
|
|
13654
|
+
/**
|
|
13655
|
+
*
|
|
13656
|
+
* @type {Array<string>}
|
|
13657
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13658
|
+
*/
|
|
13659
|
+
'languages': Array<string>;
|
|
13366
13660
|
/**
|
|
13367
13661
|
*
|
|
13368
13662
|
* @type {IImage}
|
|
13369
|
-
* @memberof
|
|
13663
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13370
13664
|
*/
|
|
13371
13665
|
'thumbnail'?: IImage;
|
|
13372
13666
|
/**
|
|
13373
13667
|
*
|
|
13374
13668
|
* @type {string}
|
|
13375
|
-
* @memberof
|
|
13669
|
+
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrPublishedAtOrDraftOrKeyofIContentsValue
|
|
13376
13670
|
*/
|
|
13377
13671
|
'type': string;
|
|
13378
|
-
/**
|
|
13379
|
-
*
|
|
13380
|
-
* @type {boolean}
|
|
13381
|
-
* @memberof PickIPageExcludeKeyofIPageKeyofMongoResponseOrSlugsOrKeyofIContentsValue
|
|
13382
|
-
*/
|
|
13383
|
-
'draft': boolean;
|
|
13384
13672
|
}
|
|
13385
13673
|
/**
|
|
13386
13674
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -13430,6 +13718,12 @@ export interface PickIPageExcludeKeyofIPageTemplate {
|
|
|
13430
13718
|
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
13431
13719
|
*/
|
|
13432
13720
|
'slugs': Array<string>;
|
|
13721
|
+
/**
|
|
13722
|
+
*
|
|
13723
|
+
* @type {Array<string>}
|
|
13724
|
+
* @memberof PickIPageExcludeKeyofIPageTemplate
|
|
13725
|
+
*/
|
|
13726
|
+
'languages': Array<string>;
|
|
13433
13727
|
/**
|
|
13434
13728
|
*
|
|
13435
13729
|
* @type {string}
|
|
@@ -13626,6 +13920,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
13626
13920
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
13627
13921
|
*/
|
|
13628
13922
|
'slugs': Array<string>;
|
|
13923
|
+
/**
|
|
13924
|
+
*
|
|
13925
|
+
* @type {Array<string>}
|
|
13926
|
+
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
13927
|
+
*/
|
|
13928
|
+
'languages': Array<string>;
|
|
13629
13929
|
/**
|
|
13630
13930
|
*
|
|
13631
13931
|
* @type {Array<VariantType>}
|
|
@@ -13822,6 +14122,12 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
13822
14122
|
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
|
|
13823
14123
|
*/
|
|
13824
14124
|
'contents': PartialRecordLanguageEnumIContentsValue;
|
|
14125
|
+
/**
|
|
14126
|
+
*
|
|
14127
|
+
* @type {Array<string>}
|
|
14128
|
+
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
|
|
14129
|
+
*/
|
|
14130
|
+
'languages': Array<string>;
|
|
13825
14131
|
/**
|
|
13826
14132
|
*
|
|
13827
14133
|
* @type {Array<VariantType>}
|
|
@@ -13844,12 +14150,6 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
13844
14150
|
'attributes'?: {
|
|
13845
14151
|
[key: string]: string;
|
|
13846
14152
|
};
|
|
13847
|
-
/**
|
|
13848
|
-
*
|
|
13849
|
-
* @type {string}
|
|
13850
|
-
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFieldsOrKeyofIContentsValue
|
|
13851
|
-
*/
|
|
13852
|
-
'publishedAt': string;
|
|
13853
14153
|
}
|
|
13854
14154
|
/**
|
|
13855
14155
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -20560,6 +20860,96 @@ export declare const GetContactFormsDateFieldEnum: {
|
|
|
20560
20860
|
readonly UPDATED_AT: "updatedAt";
|
|
20561
20861
|
};
|
|
20562
20862
|
export type GetContactFormsDateFieldEnum = typeof GetContactFormsDateFieldEnum[keyof typeof GetContactFormsDateFieldEnum];
|
|
20863
|
+
/**
|
|
20864
|
+
* ContentApi - axios parameter creator
|
|
20865
|
+
* @export
|
|
20866
|
+
*/
|
|
20867
|
+
export declare const ContentApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20868
|
+
/**
|
|
20869
|
+
* 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.
|
|
20870
|
+
* @param {string} slug
|
|
20871
|
+
* @param {string} [companyId]
|
|
20872
|
+
* @param {string} [domain]
|
|
20873
|
+
* @param {*} [options] Override http request option.
|
|
20874
|
+
* @throws {RequiredError}
|
|
20875
|
+
*/
|
|
20876
|
+
getContentBySlug: (slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20877
|
+
};
|
|
20878
|
+
/**
|
|
20879
|
+
* ContentApi - functional programming interface
|
|
20880
|
+
* @export
|
|
20881
|
+
*/
|
|
20882
|
+
export declare const ContentApiFp: (configuration?: Configuration) => {
|
|
20883
|
+
/**
|
|
20884
|
+
* 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.
|
|
20885
|
+
* @param {string} slug
|
|
20886
|
+
* @param {string} [companyId]
|
|
20887
|
+
* @param {string} [domain]
|
|
20888
|
+
* @param {*} [options] Override http request option.
|
|
20889
|
+
* @throws {RequiredError}
|
|
20890
|
+
*/
|
|
20891
|
+
getContentBySlug(slug: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
20892
|
+
[key: string]: any;
|
|
20893
|
+
}>>;
|
|
20894
|
+
};
|
|
20895
|
+
/**
|
|
20896
|
+
* ContentApi - factory interface
|
|
20897
|
+
* @export
|
|
20898
|
+
*/
|
|
20899
|
+
export declare const ContentApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20900
|
+
/**
|
|
20901
|
+
* 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.
|
|
20902
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
20903
|
+
* @param {*} [options] Override http request option.
|
|
20904
|
+
* @throws {RequiredError}
|
|
20905
|
+
*/
|
|
20906
|
+
getContentBySlug(requestParameters: ContentApiGetContentBySlugRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
20907
|
+
[key: string]: any;
|
|
20908
|
+
}>;
|
|
20909
|
+
};
|
|
20910
|
+
/**
|
|
20911
|
+
* Request parameters for getContentBySlug operation in ContentApi.
|
|
20912
|
+
* @export
|
|
20913
|
+
* @interface ContentApiGetContentBySlugRequest
|
|
20914
|
+
*/
|
|
20915
|
+
export interface ContentApiGetContentBySlugRequest {
|
|
20916
|
+
/**
|
|
20917
|
+
*
|
|
20918
|
+
* @type {string}
|
|
20919
|
+
* @memberof ContentApiGetContentBySlug
|
|
20920
|
+
*/
|
|
20921
|
+
readonly slug: string;
|
|
20922
|
+
/**
|
|
20923
|
+
*
|
|
20924
|
+
* @type {string}
|
|
20925
|
+
* @memberof ContentApiGetContentBySlug
|
|
20926
|
+
*/
|
|
20927
|
+
readonly companyId?: string;
|
|
20928
|
+
/**
|
|
20929
|
+
*
|
|
20930
|
+
* @type {string}
|
|
20931
|
+
* @memberof ContentApiGetContentBySlug
|
|
20932
|
+
*/
|
|
20933
|
+
readonly domain?: string;
|
|
20934
|
+
}
|
|
20935
|
+
/**
|
|
20936
|
+
* ContentApi - object-oriented interface
|
|
20937
|
+
* @export
|
|
20938
|
+
* @class ContentApi
|
|
20939
|
+
* @extends {BaseAPI}
|
|
20940
|
+
*/
|
|
20941
|
+
export declare class ContentApi extends BaseAPI {
|
|
20942
|
+
/**
|
|
20943
|
+
* 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.
|
|
20944
|
+
* @param {ContentApiGetContentBySlugRequest} requestParameters Request parameters.
|
|
20945
|
+
* @param {*} [options] Override http request option.
|
|
20946
|
+
* @throws {RequiredError}
|
|
20947
|
+
* @memberof ContentApi
|
|
20948
|
+
*/
|
|
20949
|
+
getContentBySlug(requestParameters: ContentApiGetContentBySlugRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
20950
|
+
[key: string]: any;
|
|
20951
|
+
}, any>>;
|
|
20952
|
+
}
|
|
20563
20953
|
/**
|
|
20564
20954
|
* ContentPlanApi - axios parameter creator
|
|
20565
20955
|
* @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.66",
|
|
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": "4e5a12f5b56f7b405659f0edcb758d9abad1d8e5"
|
|
41
41
|
}
|