Skip to content

Commit

Permalink
Automated update by SDK Generator version:3.4.0 commit:bf6a001
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 20, 2024
1 parent e5e6ec7 commit dd07e62
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/gen/docs/apis/AccountingApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1185,6 +1185,7 @@ const params = {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -1620,6 +1621,7 @@ const params = {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -3295,6 +3297,7 @@ const params = {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -3749,6 +3752,7 @@ const params = {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -6144,6 +6148,7 @@ const params = {
tax_inclusive: true,
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -6575,6 +6580,7 @@ const params = {
tax_inclusive: true,
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down
3 changes: 2 additions & 1 deletion src/gen/models/InvoiceLineItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface InvoiceLineItem {
* @type {string}
* @memberof InvoiceLineItem
*/
readonly id?: string
id?: string | null
/**
* Row ID
* @type {string}
Expand Down Expand Up @@ -251,6 +251,7 @@ export function InvoiceLineItemToJSON(value?: InvoiceLineItem | null): any {
return null
}
return {
id: value.id,
row_id: value.row_id,
code: value.code,
line_number: value.line_number,
Expand Down
6 changes: 6 additions & 0 deletions src/gen/tests/apis/AccountingApiTest.api.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1240,6 +1240,7 @@ describe('AccountingApi', () => {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -1896,6 +1897,7 @@ describe('AccountingApi', () => {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -3571,6 +3573,7 @@ describe('AccountingApi', () => {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -4286,6 +4289,7 @@ describe('AccountingApi', () => {
},
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -6847,6 +6851,7 @@ describe('AccountingApi', () => {
tax_inclusive: true,
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down Expand Up @@ -7497,6 +7502,7 @@ describe('AccountingApi', () => {
tax_inclusive: true,
line_items: [
{
id: '12345',
row_id: '12345',
code: '120-C',
line_number: 1,
Expand Down

0 comments on commit dd07e62

Please sign in to comment.