@infisale-client/api 1.2.17 → 1.2.18
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 +9 -3
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -591,6 +591,12 @@ export interface IAddProductToBasketResponse {
|
|
|
591
591
|
* @interface IAddress
|
|
592
592
|
*/
|
|
593
593
|
export interface IAddress {
|
|
594
|
+
/**
|
|
595
|
+
*
|
|
596
|
+
* @type {string}
|
|
597
|
+
* @memberof IAddress
|
|
598
|
+
*/
|
|
599
|
+
'_id': string;
|
|
594
600
|
/**
|
|
595
601
|
*
|
|
596
602
|
* @type {string}
|
|
@@ -4982,13 +4988,13 @@ export interface IOrderResponse {
|
|
|
4982
4988
|
* @type {string}
|
|
4983
4989
|
* @memberof IOrderResponse
|
|
4984
4990
|
*/
|
|
4985
|
-
'user'
|
|
4991
|
+
'user'?: string;
|
|
4986
4992
|
/**
|
|
4987
4993
|
*
|
|
4988
4994
|
* @type {string}
|
|
4989
4995
|
* @memberof IOrderResponse
|
|
4990
4996
|
*/
|
|
4991
|
-
'email'
|
|
4997
|
+
'email'?: string;
|
|
4992
4998
|
/**
|
|
4993
4999
|
*
|
|
4994
5000
|
* @type {Array<IOrderResponseProductsInner>}
|
|
@@ -5006,7 +5012,7 @@ export interface IOrderResponse {
|
|
|
5006
5012
|
* @type {IAddress}
|
|
5007
5013
|
* @memberof IOrderResponse
|
|
5008
5014
|
*/
|
|
5009
|
-
'billingAddress'
|
|
5015
|
+
'billingAddress'?: IAddress;
|
|
5010
5016
|
/**
|
|
5011
5017
|
*
|
|
5012
5018
|
* @type {PaymentMethodEnum}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.18",
|
|
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": "a347d0f69c1f5c8d2e51fb3920aadd35a96bcd74"
|
|
41
41
|
}
|