@infisale-client/api 1.2.9 → 1.2.11
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 -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,49 @@ 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 {boolean}
|
|
776
|
+
* @memberof IBasketSummary
|
|
777
|
+
*/
|
|
778
|
+
'freeShipping': boolean;
|
|
779
|
+
/**
|
|
780
|
+
*
|
|
781
|
+
* @type {number}
|
|
782
|
+
* @memberof IBasketSummary
|
|
783
|
+
*/
|
|
784
|
+
'total': number;
|
|
785
|
+
}
|
|
737
786
|
/**
|
|
738
787
|
*
|
|
739
788
|
* @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.11",
|
|
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": "fac742bf156c1272b8557f12afc438f42ea2e9bc"
|
|
41
41
|
}
|