@infisale-client/api-client 1.2.95 → 1.2.96
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 +74 -18
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -5206,24 +5206,6 @@ export interface IOrderPatchRequest {
|
|
|
5206
5206
|
* @memberof IOrderPatchRequest
|
|
5207
5207
|
*/
|
|
5208
5208
|
'paymentStatus'?: OrderPaymentStatusEnum;
|
|
5209
|
-
/**
|
|
5210
|
-
*
|
|
5211
|
-
* @type {string}
|
|
5212
|
-
* @memberof IOrderPatchRequest
|
|
5213
|
-
*/
|
|
5214
|
-
'cargoCode'?: string;
|
|
5215
|
-
/**
|
|
5216
|
-
*
|
|
5217
|
-
* @type {string}
|
|
5218
|
-
* @memberof IOrderPatchRequest
|
|
5219
|
-
*/
|
|
5220
|
-
'cargoUrl'?: string;
|
|
5221
|
-
/**
|
|
5222
|
-
*
|
|
5223
|
-
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>}
|
|
5224
|
-
* @memberof IOrderPatchRequest
|
|
5225
|
-
*/
|
|
5226
|
-
'shipped'?: Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>;
|
|
5227
5209
|
}
|
|
5228
5210
|
/**
|
|
5229
5211
|
*
|
|
@@ -5658,6 +5640,80 @@ export interface IOrderReviewPostRequest {
|
|
|
5658
5640
|
*/
|
|
5659
5641
|
'comment': string;
|
|
5660
5642
|
}
|
|
5643
|
+
/**
|
|
5644
|
+
*
|
|
5645
|
+
* @export
|
|
5646
|
+
* @interface IOrderShippedPostRequest
|
|
5647
|
+
*/
|
|
5648
|
+
export interface IOrderShippedPostRequest {
|
|
5649
|
+
/**
|
|
5650
|
+
*
|
|
5651
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>}
|
|
5652
|
+
* @memberof IOrderShippedPostRequest
|
|
5653
|
+
*/
|
|
5654
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>;
|
|
5655
|
+
/**
|
|
5656
|
+
*
|
|
5657
|
+
* @type {string}
|
|
5658
|
+
* @memberof IOrderShippedPostRequest
|
|
5659
|
+
*/
|
|
5660
|
+
'cargoCode'?: string;
|
|
5661
|
+
/**
|
|
5662
|
+
*
|
|
5663
|
+
* @type {string}
|
|
5664
|
+
* @memberof IOrderShippedPostRequest
|
|
5665
|
+
*/
|
|
5666
|
+
'cargoUrl'?: string;
|
|
5667
|
+
/**
|
|
5668
|
+
*
|
|
5669
|
+
* @type {string}
|
|
5670
|
+
* @memberof IOrderShippedPostRequest
|
|
5671
|
+
*/
|
|
5672
|
+
'warehouse'?: string;
|
|
5673
|
+
/**
|
|
5674
|
+
*
|
|
5675
|
+
* @type {string}
|
|
5676
|
+
* @memberof IOrderShippedPostRequest
|
|
5677
|
+
*/
|
|
5678
|
+
'note'?: string;
|
|
5679
|
+
}
|
|
5680
|
+
/**
|
|
5681
|
+
*
|
|
5682
|
+
* @export
|
|
5683
|
+
* @interface IOrderShippedUpdatePatchRequest
|
|
5684
|
+
*/
|
|
5685
|
+
export interface IOrderShippedUpdatePatchRequest {
|
|
5686
|
+
/**
|
|
5687
|
+
*
|
|
5688
|
+
* @type {string}
|
|
5689
|
+
* @memberof IOrderShippedUpdatePatchRequest
|
|
5690
|
+
*/
|
|
5691
|
+
'cargoCode'?: string;
|
|
5692
|
+
/**
|
|
5693
|
+
*
|
|
5694
|
+
* @type {string}
|
|
5695
|
+
* @memberof IOrderShippedUpdatePatchRequest
|
|
5696
|
+
*/
|
|
5697
|
+
'cargoUrl'?: string;
|
|
5698
|
+
/**
|
|
5699
|
+
*
|
|
5700
|
+
* @type {string}
|
|
5701
|
+
* @memberof IOrderShippedUpdatePatchRequest
|
|
5702
|
+
*/
|
|
5703
|
+
'warehouse'?: string;
|
|
5704
|
+
/**
|
|
5705
|
+
*
|
|
5706
|
+
* @type {string}
|
|
5707
|
+
* @memberof IOrderShippedUpdatePatchRequest
|
|
5708
|
+
*/
|
|
5709
|
+
'note'?: string;
|
|
5710
|
+
/**
|
|
5711
|
+
*
|
|
5712
|
+
* @type {OrderShippedStatusEnum}
|
|
5713
|
+
* @memberof IOrderShippedUpdatePatchRequest
|
|
5714
|
+
*/
|
|
5715
|
+
'status'?: OrderShippedStatusEnum;
|
|
5716
|
+
}
|
|
5661
5717
|
/**
|
|
5662
5718
|
*
|
|
5663
5719
|
* @export
|
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.96",
|
|
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": "3558c050d3c68d3111fa3856bb9d66171750c39b"
|
|
41
41
|
}
|