@infisale-client/api 1.2.9 → 1.2.10
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 +43 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -696,6 +696,12 @@ export interface IBasketResponse {
|
|
|
696
696
|
* @memberof IBasketResponse
|
|
697
697
|
*/
|
|
698
698
|
'items': Array<IBasketResponseItemsInner>;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {IBasketSummary}
|
|
702
|
+
* @memberof IBasketResponse
|
|
703
|
+
*/
|
|
704
|
+
'summary': IBasketSummary;
|
|
699
705
|
}
|
|
700
706
|
/**
|
|
701
707
|
*
|
|
@@ -734,6 +740,43 @@ export interface IBasketResponseItemsInner {
|
|
|
734
740
|
*/
|
|
735
741
|
'_id': string;
|
|
736
742
|
}
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @export
|
|
746
|
+
* @interface IBasketSummary
|
|
747
|
+
*/
|
|
748
|
+
export interface IBasketSummary {
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @type {number}
|
|
752
|
+
* @memberof IBasketSummary
|
|
753
|
+
*/
|
|
754
|
+
'subtotal': number;
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @type {number}
|
|
758
|
+
* @memberof IBasketSummary
|
|
759
|
+
*/
|
|
760
|
+
'discount': number;
|
|
761
|
+
/**
|
|
762
|
+
*
|
|
763
|
+
* @type {number}
|
|
764
|
+
* @memberof IBasketSummary
|
|
765
|
+
*/
|
|
766
|
+
'tax': number;
|
|
767
|
+
/**
|
|
768
|
+
*
|
|
769
|
+
* @type {number}
|
|
770
|
+
* @memberof IBasketSummary
|
|
771
|
+
*/
|
|
772
|
+
'shipping': number;
|
|
773
|
+
/**
|
|
774
|
+
*
|
|
775
|
+
* @type {number}
|
|
776
|
+
* @memberof IBasketSummary
|
|
777
|
+
*/
|
|
778
|
+
'total': number;
|
|
779
|
+
}
|
|
737
780
|
/**
|
|
738
781
|
*
|
|
739
782
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.10",
|
|
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": "8d992d3fdcd4636855c7ba46fd45be19847a7fab"
|
|
41
41
|
}
|