@infisale-client/api 1.2.56 → 1.2.57
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 +85 -30
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -5087,6 +5087,87 @@ export interface IOrderPatchRequest {
|
|
|
5087
5087
|
* @memberof IOrderPatchRequest
|
|
5088
5088
|
*/
|
|
5089
5089
|
'cargoUrl'?: string;
|
|
5090
|
+
/**
|
|
5091
|
+
*
|
|
5092
|
+
* @type {Array<IOrderPatchRequestShippedInner>}
|
|
5093
|
+
* @memberof IOrderPatchRequest
|
|
5094
|
+
*/
|
|
5095
|
+
'shipped'?: Array<IOrderPatchRequestShippedInner>;
|
|
5096
|
+
}
|
|
5097
|
+
/**
|
|
5098
|
+
*
|
|
5099
|
+
* @export
|
|
5100
|
+
* @interface IOrderPatchRequestShippedInner
|
|
5101
|
+
*/
|
|
5102
|
+
export interface IOrderPatchRequestShippedInner {
|
|
5103
|
+
/**
|
|
5104
|
+
*
|
|
5105
|
+
* @type {OrderReturnStatusEnum}
|
|
5106
|
+
* @memberof IOrderPatchRequestShippedInner
|
|
5107
|
+
*/
|
|
5108
|
+
'status': OrderReturnStatusEnum;
|
|
5109
|
+
/**
|
|
5110
|
+
*
|
|
5111
|
+
* @type {string}
|
|
5112
|
+
* @memberof IOrderPatchRequestShippedInner
|
|
5113
|
+
*/
|
|
5114
|
+
'zoneRateId': string;
|
|
5115
|
+
/**
|
|
5116
|
+
*
|
|
5117
|
+
* @type {string}
|
|
5118
|
+
* @memberof IOrderPatchRequestShippedInner
|
|
5119
|
+
*/
|
|
5120
|
+
'warehouse': string;
|
|
5121
|
+
/**
|
|
5122
|
+
*
|
|
5123
|
+
* @type {string}
|
|
5124
|
+
* @memberof IOrderPatchRequestShippedInner
|
|
5125
|
+
*/
|
|
5126
|
+
'cargoUrl'?: string;
|
|
5127
|
+
/**
|
|
5128
|
+
*
|
|
5129
|
+
* @type {string}
|
|
5130
|
+
* @memberof IOrderPatchRequestShippedInner
|
|
5131
|
+
*/
|
|
5132
|
+
'cargoCode'?: string;
|
|
5133
|
+
/**
|
|
5134
|
+
*
|
|
5135
|
+
* @type {Array<IOrderPatchRequestShippedInnerProductsInner>}
|
|
5136
|
+
* @memberof IOrderPatchRequestShippedInner
|
|
5137
|
+
*/
|
|
5138
|
+
'products': Array<IOrderPatchRequestShippedInnerProductsInner>;
|
|
5139
|
+
/**
|
|
5140
|
+
*
|
|
5141
|
+
* @type {string}
|
|
5142
|
+
* @memberof IOrderPatchRequestShippedInner
|
|
5143
|
+
*/
|
|
5144
|
+
'_id': string;
|
|
5145
|
+
}
|
|
5146
|
+
/**
|
|
5147
|
+
*
|
|
5148
|
+
* @export
|
|
5149
|
+
* @interface IOrderPatchRequestShippedInnerProductsInner
|
|
5150
|
+
*/
|
|
5151
|
+
export interface IOrderPatchRequestShippedInnerProductsInner {
|
|
5152
|
+
/**
|
|
5153
|
+
*
|
|
5154
|
+
* @type {number}
|
|
5155
|
+
* @memberof IOrderPatchRequestShippedInnerProductsInner
|
|
5156
|
+
*/
|
|
5157
|
+
'amount': number;
|
|
5158
|
+
/**
|
|
5159
|
+
*
|
|
5160
|
+
* @type {IOrderPatchRequestShippedInnerProductsInnerId}
|
|
5161
|
+
* @memberof IOrderPatchRequestShippedInnerProductsInner
|
|
5162
|
+
*/
|
|
5163
|
+
'_id': IOrderPatchRequestShippedInnerProductsInnerId;
|
|
5164
|
+
}
|
|
5165
|
+
/**
|
|
5166
|
+
*
|
|
5167
|
+
* @export
|
|
5168
|
+
* @interface IOrderPatchRequestShippedInnerProductsInnerId
|
|
5169
|
+
*/
|
|
5170
|
+
export interface IOrderPatchRequestShippedInnerProductsInnerId {
|
|
5090
5171
|
}
|
|
5091
5172
|
/**
|
|
5092
5173
|
*
|
|
@@ -5332,10 +5413,10 @@ export interface IOrderResponse {
|
|
|
5332
5413
|
export interface IOrderReturnAdminPostRequest {
|
|
5333
5414
|
/**
|
|
5334
5415
|
*
|
|
5335
|
-
* @type {Array<
|
|
5416
|
+
* @type {Array<IOrderPatchRequestShippedInnerProductsInner>}
|
|
5336
5417
|
* @memberof IOrderReturnAdminPostRequest
|
|
5337
5418
|
*/
|
|
5338
|
-
'products': Array<
|
|
5419
|
+
'products': Array<IOrderPatchRequestShippedInnerProductsInner>;
|
|
5339
5420
|
/**
|
|
5340
5421
|
*
|
|
5341
5422
|
* @type {number}
|
|
@@ -5369,36 +5450,10 @@ export interface IOrderReturnAdminPostRequest {
|
|
|
5369
5450
|
export interface IOrderReturnPostRequest {
|
|
5370
5451
|
/**
|
|
5371
5452
|
*
|
|
5372
|
-
* @type {Array<
|
|
5453
|
+
* @type {Array<IOrderPatchRequestShippedInnerProductsInner>}
|
|
5373
5454
|
* @memberof IOrderReturnPostRequest
|
|
5374
5455
|
*/
|
|
5375
|
-
'products': Array<
|
|
5376
|
-
}
|
|
5377
|
-
/**
|
|
5378
|
-
*
|
|
5379
|
-
* @export
|
|
5380
|
-
* @interface IOrderReturnPostRequestProductsInner
|
|
5381
|
-
*/
|
|
5382
|
-
export interface IOrderReturnPostRequestProductsInner {
|
|
5383
|
-
/**
|
|
5384
|
-
*
|
|
5385
|
-
* @type {number}
|
|
5386
|
-
* @memberof IOrderReturnPostRequestProductsInner
|
|
5387
|
-
*/
|
|
5388
|
-
'amount': number;
|
|
5389
|
-
/**
|
|
5390
|
-
*
|
|
5391
|
-
* @type {IOrderReturnPostRequestProductsInnerId}
|
|
5392
|
-
* @memberof IOrderReturnPostRequestProductsInner
|
|
5393
|
-
*/
|
|
5394
|
-
'_id': IOrderReturnPostRequestProductsInnerId;
|
|
5395
|
-
}
|
|
5396
|
-
/**
|
|
5397
|
-
*
|
|
5398
|
-
* @export
|
|
5399
|
-
* @interface IOrderReturnPostRequestProductsInnerId
|
|
5400
|
-
*/
|
|
5401
|
-
export interface IOrderReturnPostRequestProductsInnerId {
|
|
5456
|
+
'products': Array<IOrderPatchRequestShippedInnerProductsInner>;
|
|
5402
5457
|
}
|
|
5403
5458
|
/**
|
|
5404
5459
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.57",
|
|
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": "d4ef2e63d269d5a543801d21d954d3a00f8b4e4c"
|
|
41
41
|
}
|