@infisale-client/api-client 1.2.82 → 1.2.84
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 +49 -66
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -6440,18 +6440,12 @@ export interface IProductPatchRequest {
|
|
|
6440
6440
|
'photos'?: Array<IImage>;
|
|
6441
6441
|
/**
|
|
6442
6442
|
*
|
|
6443
|
-
* @type {{ [key: string]:
|
|
6443
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
6444
6444
|
* @memberof IProductPatchRequest
|
|
6445
6445
|
*/
|
|
6446
6446
|
'stock'?: {
|
|
6447
|
-
[key: string]:
|
|
6447
|
+
[key: string]: StockTypeValue;
|
|
6448
6448
|
};
|
|
6449
|
-
/**
|
|
6450
|
-
*
|
|
6451
|
-
* @type {boolean}
|
|
6452
|
-
* @memberof IProductPatchRequest
|
|
6453
|
-
*/
|
|
6454
|
-
'unlimitedStock'?: boolean;
|
|
6455
6449
|
/**
|
|
6456
6450
|
*
|
|
6457
6451
|
* @type {PriceType}
|
|
@@ -6531,18 +6525,12 @@ export interface IProductPostRequest {
|
|
|
6531
6525
|
'photos': Array<IImage>;
|
|
6532
6526
|
/**
|
|
6533
6527
|
*
|
|
6534
|
-
* @type {{ [key: string]:
|
|
6528
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
6535
6529
|
* @memberof IProductPostRequest
|
|
6536
6530
|
*/
|
|
6537
|
-
'stock'
|
|
6538
|
-
[key: string]:
|
|
6531
|
+
'stock': {
|
|
6532
|
+
[key: string]: StockTypeValue;
|
|
6539
6533
|
};
|
|
6540
|
-
/**
|
|
6541
|
-
*
|
|
6542
|
-
* @type {boolean}
|
|
6543
|
-
* @memberof IProductPostRequest
|
|
6544
|
-
*/
|
|
6545
|
-
'unlimitedStock'?: boolean;
|
|
6546
6534
|
/**
|
|
6547
6535
|
*
|
|
6548
6536
|
* @type {PriceType}
|
|
@@ -6690,18 +6678,12 @@ export interface IProductResponse {
|
|
|
6690
6678
|
'photos': Array<IImage>;
|
|
6691
6679
|
/**
|
|
6692
6680
|
*
|
|
6693
|
-
* @type {{ [key: string]:
|
|
6681
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
6694
6682
|
* @memberof IProductResponse
|
|
6695
6683
|
*/
|
|
6696
|
-
'stock'
|
|
6697
|
-
[key: string]:
|
|
6684
|
+
'stock': {
|
|
6685
|
+
[key: string]: StockTypeValue;
|
|
6698
6686
|
};
|
|
6699
|
-
/**
|
|
6700
|
-
*
|
|
6701
|
-
* @type {boolean}
|
|
6702
|
-
* @memberof IProductResponse
|
|
6703
|
-
*/
|
|
6704
|
-
'unlimitedStock'?: boolean;
|
|
6705
6687
|
/**
|
|
6706
6688
|
*
|
|
6707
6689
|
* @type {PriceType}
|
|
@@ -6804,19 +6786,6 @@ export interface IProductResponseReviewCounts {
|
|
|
6804
6786
|
*/
|
|
6805
6787
|
'5': number;
|
|
6806
6788
|
}
|
|
6807
|
-
/**
|
|
6808
|
-
*
|
|
6809
|
-
* @export
|
|
6810
|
-
* @interface IProductResponseStockValue
|
|
6811
|
-
*/
|
|
6812
|
-
export interface IProductResponseStockValue {
|
|
6813
|
-
/**
|
|
6814
|
-
*
|
|
6815
|
-
* @type {number}
|
|
6816
|
-
* @memberof IProductResponseStockValue
|
|
6817
|
-
*/
|
|
6818
|
-
'quantity': number;
|
|
6819
|
-
}
|
|
6820
6789
|
/**
|
|
6821
6790
|
*
|
|
6822
6791
|
* @export
|
|
@@ -10204,18 +10173,12 @@ export interface PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttr
|
|
|
10204
10173
|
'photos': Array<IImage>;
|
|
10205
10174
|
/**
|
|
10206
10175
|
*
|
|
10207
|
-
* @type {{ [key: string]:
|
|
10176
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
10208
10177
|
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10209
10178
|
*/
|
|
10210
|
-
'stock'
|
|
10211
|
-
[key: string]:
|
|
10179
|
+
'stock': {
|
|
10180
|
+
[key: string]: StockTypeValue;
|
|
10212
10181
|
};
|
|
10213
|
-
/**
|
|
10214
|
-
*
|
|
10215
|
-
* @type {boolean}
|
|
10216
|
-
* @memberof PickIProductExcludeKeyofIProductCategoryOrBrandOrTemplateOrAttributesFieldsOrSearchFields
|
|
10217
|
-
*/
|
|
10218
|
-
'unlimitedStock'?: boolean;
|
|
10219
10182
|
/**
|
|
10220
10183
|
*
|
|
10221
10184
|
* @type {PriceType}
|
|
@@ -10338,18 +10301,12 @@ export interface PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPo
|
|
|
10338
10301
|
'photos': Array<IImage>;
|
|
10339
10302
|
/**
|
|
10340
10303
|
*
|
|
10341
|
-
* @type {{ [key: string]:
|
|
10304
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
10342
10305
|
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
10343
10306
|
*/
|
|
10344
|
-
'stock'
|
|
10345
|
-
[key: string]:
|
|
10307
|
+
'stock': {
|
|
10308
|
+
[key: string]: StockTypeValue;
|
|
10346
10309
|
};
|
|
10347
|
-
/**
|
|
10348
|
-
*
|
|
10349
|
-
* @type {boolean}
|
|
10350
|
-
* @memberof PickIProductResponseExcludeKeyofIProductResponseKeyofICompanyPostRequestOmitFields
|
|
10351
|
-
*/
|
|
10352
|
-
'unlimitedStock'?: boolean;
|
|
10353
10310
|
/**
|
|
10354
10311
|
*
|
|
10355
10312
|
* @type {PriceType}
|
|
@@ -10665,6 +10622,12 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
|
|
|
10665
10622
|
* @interface PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
10666
10623
|
*/
|
|
10667
10624
|
export interface PickIThemeExcludeKeyofIThemeTemplateConfig {
|
|
10625
|
+
/**
|
|
10626
|
+
*
|
|
10627
|
+
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigTypography}
|
|
10628
|
+
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfig
|
|
10629
|
+
*/
|
|
10630
|
+
'typography': PickIThemeExcludeKeyofIThemeTemplateConfigTypography;
|
|
10668
10631
|
/**
|
|
10669
10632
|
*
|
|
10670
10633
|
* @type {PickIThemeExcludeKeyofIThemeTemplateConfigBlogCard}
|
|
@@ -10895,6 +10858,19 @@ export interface PickIThemeExcludeKeyofIThemeTemplateConfigLayout {
|
|
|
10895
10858
|
*/
|
|
10896
10859
|
'containerWidth': number;
|
|
10897
10860
|
}
|
|
10861
|
+
/**
|
|
10862
|
+
*
|
|
10863
|
+
* @export
|
|
10864
|
+
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography
|
|
10865
|
+
*/
|
|
10866
|
+
export interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography {
|
|
10867
|
+
/**
|
|
10868
|
+
*
|
|
10869
|
+
* @type {string}
|
|
10870
|
+
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigTypography
|
|
10871
|
+
*/
|
|
10872
|
+
'fontFamily': string;
|
|
10873
|
+
}
|
|
10898
10874
|
/**
|
|
10899
10875
|
* From T, pick a set of properties whose keys are in the union K
|
|
10900
10876
|
* @export
|
|
@@ -11387,6 +11363,19 @@ export declare const SitemapTypeEnum: {
|
|
|
11387
11363
|
readonly BLOG: "blog";
|
|
11388
11364
|
};
|
|
11389
11365
|
export type SitemapTypeEnum = typeof SitemapTypeEnum[keyof typeof SitemapTypeEnum];
|
|
11366
|
+
/**
|
|
11367
|
+
*
|
|
11368
|
+
* @export
|
|
11369
|
+
* @interface StockTypeValue
|
|
11370
|
+
*/
|
|
11371
|
+
export interface StockTypeValue {
|
|
11372
|
+
/**
|
|
11373
|
+
*
|
|
11374
|
+
* @type {number}
|
|
11375
|
+
* @memberof StockTypeValue
|
|
11376
|
+
*/
|
|
11377
|
+
'quantity': number;
|
|
11378
|
+
}
|
|
11390
11379
|
/**
|
|
11391
11380
|
*
|
|
11392
11381
|
* @export
|
|
@@ -11526,11 +11515,11 @@ export interface VariantType {
|
|
|
11526
11515
|
'sku'?: string;
|
|
11527
11516
|
/**
|
|
11528
11517
|
*
|
|
11529
|
-
* @type {{ [key: string]:
|
|
11518
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
11530
11519
|
* @memberof VariantType
|
|
11531
11520
|
*/
|
|
11532
|
-
'stock'
|
|
11533
|
-
[key: string]:
|
|
11521
|
+
'stock': {
|
|
11522
|
+
[key: string]: StockTypeValue;
|
|
11534
11523
|
};
|
|
11535
11524
|
/**
|
|
11536
11525
|
*
|
|
@@ -11538,12 +11527,6 @@ export interface VariantType {
|
|
|
11538
11527
|
* @memberof VariantType
|
|
11539
11528
|
*/
|
|
11540
11529
|
'photos': Array<IImage>;
|
|
11541
|
-
/**
|
|
11542
|
-
*
|
|
11543
|
-
* @type {boolean}
|
|
11544
|
-
* @memberof VariantType
|
|
11545
|
-
*/
|
|
11546
|
-
'unlimitedStock'?: boolean;
|
|
11547
11530
|
/**
|
|
11548
11531
|
*
|
|
11549
11532
|
* @type {PriceType}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.84",
|
|
4
4
|
"description": "api-client-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "dd5429a66ce41ef718fa120e43c279592e0b345b"
|
|
41
41
|
}
|