File tree Expand file tree Collapse file tree 4 files changed +33
-2
lines changed Expand file tree Collapse file tree 4 files changed +33
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.1.41 - 2024-02-14
4
+ * update journal entries creation (Accounting): add possibility to create draft entries
5
+
3
6
## 0.1.40 - 2024-02-06
4
7
* update orders model (eCommerce): add gift card detail
5
8
Original file line number Diff line number Diff line change 9246
9246
"format": "date"
9247
9247
}
9248
9248
},
9249
+ {
9250
+ "name": "updated_after",
9251
+ "in": "query",
9252
+ "required": false,
9253
+ "schema": {
9254
+ "title": "Updated After",
9255
+ "type": "string",
9256
+ "format": "date"
9257
+ }
9258
+ },
9249
9259
{
9250
9260
"name": "page",
9251
9261
"in": "query",
13671
13681
"title": "Pdf",
13672
13682
"type": "string",
13673
13683
"description": "Base 64 string representing the PDF attached to the item."
13684
+ },
13685
+ "posted": {
13686
+ "title": "Posted",
13687
+ "type": "boolean",
13688
+ "default": true
13674
13689
}
13675
13690
}
13676
13691
},
14324
14339
}
14325
14340
],
14326
14341
"description": "Journal"
14342
+ },
14343
+ "last_updated_on": {
14344
+ "title": "Last Updated On",
14345
+ "type": "string",
14346
+ "format": "date-time"
14327
14347
}
14328
14348
}
14329
14349
},
14651
14671
],
14652
14672
"description": "Journal"
14653
14673
},
14674
+ "last_updated_on": {
14675
+ "title": "Last Updated On",
14676
+ "type": "string",
14677
+ "format": "date-time"
14678
+ },
14654
14679
"pdf": {
14655
14680
"title": "Pdf",
14656
14681
"type": "string",
Original file line number Diff line number Diff line change 1
1
# generated by datamodel-codegen:
2
2
# filename: openapi.json
3
- # timestamp: 2024-02-06T19:29:41 +00:00
3
+ # timestamp: 2024-02-14T15:31:50 +00:00
4
4
5
5
from __future__ import annotations
6
6
@@ -2069,6 +2069,7 @@ class InvoiceItemOut(BaseModel):
2069
2069
journal_ref : Optional [FieldRef ] = Field (
2070
2070
None , description = "Journal" , title = "Journal Ref"
2071
2071
)
2072
+ last_updated_on : Optional [datetime ] = Field (None , title = "Last Updated On" )
2072
2073
2073
2074
2074
2075
class InvoiceItemOutMonoAnalyticPlan (BaseModel ):
@@ -2149,6 +2150,7 @@ class InvoiceItemOutSingle(BaseModel):
2149
2150
journal_ref : Optional [FieldRef ] = Field (
2150
2151
None , description = "Journal" , title = "Journal Ref"
2151
2152
)
2153
+ last_updated_on : Optional [datetime ] = Field (None , title = "Last Updated On" )
2152
2154
pdf : Optional [str ] = Field (None , description = "PDF document in base64" , title = "Pdf" )
2153
2155
2154
2156
@@ -3062,6 +3064,7 @@ class GenericJournalEntry(BaseModel):
3062
3064
description = "Base 64 string representing the PDF attached to the item." ,
3063
3065
title = "Pdf" ,
3064
3066
)
3067
+ posted : Optional [bool ] = Field (True , title = "Posted" )
3065
3068
3066
3069
3067
3070
class InvoiceItemInMultiAnalyticPlans (BaseModel ):
Original file line number Diff line number Diff line change 1
- VERSION = "0.1.40 "
1
+ VERSION = "0.1.41 "
You can’t perform that action at this time.
0 commit comments