yellowgrid-api-ts 3.2.235-dev.0 → 3.2.236-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 +8 -0
- package/dist/api.d.ts +8 -0
- package/docs/CreditNoteDTO.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2025,6 +2025,14 @@ export interface CreditAccountEntity {
|
|
|
2025
2025
|
* Credit Note
|
|
2026
2026
|
*/
|
|
2027
2027
|
export interface CreditNoteDTO {
|
|
2028
|
+
/**
|
|
2029
|
+
* Reference
|
|
2030
|
+
*/
|
|
2031
|
+
'reference': string;
|
|
2032
|
+
/**
|
|
2033
|
+
* Total
|
|
2034
|
+
*/
|
|
2035
|
+
'total': number;
|
|
2028
2036
|
/**
|
|
2029
2037
|
* Items
|
|
2030
2038
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -1987,6 +1987,14 @@ export interface CreditAccountEntity {
|
|
|
1987
1987
|
* Credit Note
|
|
1988
1988
|
*/
|
|
1989
1989
|
export interface CreditNoteDTO {
|
|
1990
|
+
/**
|
|
1991
|
+
* Reference
|
|
1992
|
+
*/
|
|
1993
|
+
'reference': string;
|
|
1994
|
+
/**
|
|
1995
|
+
* Total
|
|
1996
|
+
*/
|
|
1997
|
+
'total': number;
|
|
1990
1998
|
/**
|
|
1991
1999
|
* Items
|
|
1992
2000
|
*/
|
package/docs/CreditNoteDTO.md
CHANGED
|
@@ -6,6 +6,8 @@ Credit Note
|
|
|
6
6
|
|
|
7
7
|
Name | Type | Description | Notes
|
|
8
8
|
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**reference** | **string** | Reference | [default to undefined]
|
|
10
|
+
**total** | **number** | Total | [default to undefined]
|
|
9
11
|
**items** | [**Array<CreditNoteItemDTO>**](CreditNoteItemDTO.md) | Items | [default to undefined]
|
|
10
12
|
|
|
11
13
|
## Example
|
|
@@ -14,6 +16,8 @@ Name | Type | Description | Notes
|
|
|
14
16
|
import { CreditNoteDTO } from 'yellowgrid-api-ts';
|
|
15
17
|
|
|
16
18
|
const instance: CreditNoteDTO = {
|
|
19
|
+
reference,
|
|
20
|
+
total,
|
|
17
21
|
items,
|
|
18
22
|
};
|
|
19
23
|
```
|