@infisale-client/api-client 1.2.83 → 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 +30 -72
- 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}
|
|
@@ -10907,12 +10864,6 @@ export interface PickIThemeExcludeKeyofIThemeTemplateConfigLayout {
|
|
|
10907
10864
|
* @interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography
|
|
10908
10865
|
*/
|
|
10909
10866
|
export interface PickIThemeExcludeKeyofIThemeTemplateConfigTypography {
|
|
10910
|
-
/**
|
|
10911
|
-
*
|
|
10912
|
-
* @type {string}
|
|
10913
|
-
* @memberof PickIThemeExcludeKeyofIThemeTemplateConfigTypography
|
|
10914
|
-
*/
|
|
10915
|
-
'fontFamilyUrl'?: string;
|
|
10916
10867
|
/**
|
|
10917
10868
|
*
|
|
10918
10869
|
* @type {string}
|
|
@@ -11412,6 +11363,19 @@ export declare const SitemapTypeEnum: {
|
|
|
11412
11363
|
readonly BLOG: "blog";
|
|
11413
11364
|
};
|
|
11414
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
|
+
}
|
|
11415
11379
|
/**
|
|
11416
11380
|
*
|
|
11417
11381
|
* @export
|
|
@@ -11551,11 +11515,11 @@ export interface VariantType {
|
|
|
11551
11515
|
'sku'?: string;
|
|
11552
11516
|
/**
|
|
11553
11517
|
*
|
|
11554
|
-
* @type {{ [key: string]:
|
|
11518
|
+
* @type {{ [key: string]: StockTypeValue; }}
|
|
11555
11519
|
* @memberof VariantType
|
|
11556
11520
|
*/
|
|
11557
|
-
'stock'
|
|
11558
|
-
[key: string]:
|
|
11521
|
+
'stock': {
|
|
11522
|
+
[key: string]: StockTypeValue;
|
|
11559
11523
|
};
|
|
11560
11524
|
/**
|
|
11561
11525
|
*
|
|
@@ -11563,12 +11527,6 @@ export interface VariantType {
|
|
|
11563
11527
|
* @memberof VariantType
|
|
11564
11528
|
*/
|
|
11565
11529
|
'photos': Array<IImage>;
|
|
11566
|
-
/**
|
|
11567
|
-
*
|
|
11568
|
-
* @type {boolean}
|
|
11569
|
-
* @memberof VariantType
|
|
11570
|
-
*/
|
|
11571
|
-
'unlimitedStock'?: boolean;
|
|
11572
11530
|
/**
|
|
11573
11531
|
*
|
|
11574
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
|
}
|