yellowgrid-api-ts 3.2.53-dev.0 → 3.2.55-dev.0
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/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/docs/OrderDetailsDTO.md +2 -0
- package/docs/OrderItemDTO.md +2 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4290,6 +4290,12 @@ export interface OrderDetailsDTO {
|
|
|
4290
4290
|
* @memberof OrderDetailsDTO
|
|
4291
4291
|
*/
|
|
4292
4292
|
'credits'?: Array<CreditNoteModel>;
|
|
4293
|
+
/**
|
|
4294
|
+
* Customer Email
|
|
4295
|
+
* @type {string}
|
|
4296
|
+
* @memberof OrderDetailsDTO
|
|
4297
|
+
*/
|
|
4298
|
+
'customerEmail'?: string;
|
|
4293
4299
|
}
|
|
4294
4300
|
/**
|
|
4295
4301
|
* OrdersEntity
|
|
@@ -4748,6 +4754,12 @@ export interface OrderItemDTO {
|
|
|
4748
4754
|
* @memberof OrderItemDTO
|
|
4749
4755
|
*/
|
|
4750
4756
|
'suppliers'?: Array<SupplierModel>;
|
|
4757
|
+
/**
|
|
4758
|
+
* Allocated
|
|
4759
|
+
* @type {number}
|
|
4760
|
+
* @memberof OrderItemDTO
|
|
4761
|
+
*/
|
|
4762
|
+
'allocated'?: number | null;
|
|
4751
4763
|
}
|
|
4752
4764
|
/**
|
|
4753
4765
|
* EdTechPro Order Request
|
package/dist/api.d.ts
CHANGED
|
@@ -4255,6 +4255,12 @@ export interface OrderDetailsDTO {
|
|
|
4255
4255
|
* @memberof OrderDetailsDTO
|
|
4256
4256
|
*/
|
|
4257
4257
|
'credits'?: Array<CreditNoteModel>;
|
|
4258
|
+
/**
|
|
4259
|
+
* Customer Email
|
|
4260
|
+
* @type {string}
|
|
4261
|
+
* @memberof OrderDetailsDTO
|
|
4262
|
+
*/
|
|
4263
|
+
'customerEmail'?: string;
|
|
4258
4264
|
}
|
|
4259
4265
|
/**
|
|
4260
4266
|
* OrdersEntity
|
|
@@ -4713,6 +4719,12 @@ export interface OrderItemDTO {
|
|
|
4713
4719
|
* @memberof OrderItemDTO
|
|
4714
4720
|
*/
|
|
4715
4721
|
'suppliers'?: Array<SupplierModel>;
|
|
4722
|
+
/**
|
|
4723
|
+
* Allocated
|
|
4724
|
+
* @type {number}
|
|
4725
|
+
* @memberof OrderItemDTO
|
|
4726
|
+
*/
|
|
4727
|
+
'allocated'?: number | null;
|
|
4716
4728
|
}
|
|
4717
4729
|
/**
|
|
4718
4730
|
* EdTechPro Order Request
|
package/docs/OrderDetailsDTO.md
CHANGED
|
@@ -27,6 +27,7 @@ Name | Type | Description | Notes
|
|
|
27
27
|
**logEntries** | [**Array<AuditLogEntity>**](AuditLogEntity.md) | Audit Log | [optional] [default to undefined]
|
|
28
28
|
**paymentLink** | **string** | Card Payment Link | [optional] [default to undefined]
|
|
29
29
|
**credits** | [**Array<CreditNoteModel>**](CreditNoteModel.md) | Credits | [optional] [default to undefined]
|
|
30
|
+
**customerEmail** | **string** | Customer Email | [optional] [default to undefined]
|
|
30
31
|
|
|
31
32
|
## Example
|
|
32
33
|
|
|
@@ -55,6 +56,7 @@ const instance: OrderDetailsDTO = {
|
|
|
55
56
|
logEntries,
|
|
56
57
|
paymentLink,
|
|
57
58
|
credits,
|
|
59
|
+
customerEmail,
|
|
58
60
|
};
|
|
59
61
|
```
|
|
60
62
|
|
package/docs/OrderItemDTO.md
CHANGED
|
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
|
|
|
22
22
|
**readonly** | **boolean** | Readonly | [optional] [default to undefined]
|
|
23
23
|
**tcxSalesCode** | **string** | 3CX Sales Code | [optional] [default to undefined]
|
|
24
24
|
**suppliers** | [**Array<SupplierModel>**](SupplierModel.md) | Suppliers | [optional] [default to undefined]
|
|
25
|
+
**allocated** | **number** | Allocated | [optional] [default to undefined]
|
|
25
26
|
|
|
26
27
|
## Example
|
|
27
28
|
|
|
@@ -45,6 +46,7 @@ const instance: OrderItemDTO = {
|
|
|
45
46
|
readonly,
|
|
46
47
|
tcxSalesCode,
|
|
47
48
|
suppliers,
|
|
49
|
+
allocated,
|
|
48
50
|
};
|
|
49
51
|
```
|
|
50
52
|
|