Skip to content

Commit 6831a5d

Browse files
chore: bumping version to 2.1.5 (#101)
1 parent 894d783 commit 6831a5d

34 files changed

Lines changed: 174 additions & 2010 deletions

.openapi-generator/FILES

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -573,15 +573,3 @@ setup.cfg
573573
setup.py
574574
test-requirements.txt
575575
test/__init__.py
576-
test/test_attachment.py
577-
test/test_get_pending_received_document_response.py
578-
test/test_get_templates_response.py
579-
test/test_list_pending_received_documents_response.py
580-
test/test_list_pending_received_documents_response_page.py
581-
test/test_pending_received_document.py
582-
test/test_pending_received_document_extracted_data.py
583-
test/test_pending_received_document_extracted_data_mining.py
584-
test/test_pending_received_document_payments_list_item.py
585-
test/test_pending_received_document_payments_list_item_payment_terms.py
586-
test/test_pending_received_document_type.py
587-
test/test_template_type.py

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.20.0
1+
7.22.0

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# ref: https://docs.travis-ci.com/user/languages/python
22
language: python
33
python:
4-
- "3.9"
54
- "3.10"
65
- "3.11"
76
- "3.12"
87
- "3.13"
8+
- "3.14"
99
# uncomment the following if needed
10-
#- "3.13-dev" # 3.13 development branch
10+
#- "3.14-dev" # 3.14 development branch
1111
#- "nightly" # nightly build
1212
# command to install dependencies
1313
install:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The Fatture in Cloud API is based on REST, and makes possible to interact with t
1010
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1111

1212
- API version: 2.1.8
13-
- Package version: 2.1.4
13+
- Package version: 2.1.5
1414
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1515
For more information, please visit [https://www.fattureincloud.it](https://www.fattureincloud.it)
1616

docs/ArchiveApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ with fattureincloud_python_sdk.ApiClient(configuration) as api_client:
493493
api_instance = fattureincloud_python_sdk.ArchiveApi(api_client)
494494
company_id = 12345 # int | The ID of the company.
495495
filename = 'filename_example' # str | Attachment file name (optional)
496-
attachment = None # bytearray | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] (optional)
496+
attachment = None # bytes | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] (optional)
497497

498498
try:
499499
# Upload Archive Document Attachment
@@ -513,7 +513,7 @@ Name | Type | Description | Notes
513513
------------- | ------------- | ------------- | -------------
514514
**company_id** | **int**| The ID of the company. |
515515
**filename** | **str**| Attachment file name | [optional]
516-
**attachment** | **bytearray**| Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
516+
**attachment** | **bytes**| Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
517517

518518
### Return type
519519

docs/Attachment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**filename** | **str** | Attachment file name | [optional]
9-
**attachment** | **bytearray** | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
9+
**attachment** | **bytes** | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
1010

1111
## Example
1212

docs/EventType.md

Lines changed: 80 additions & 78 deletions
Large diffs are not rendered by default.

docs/IssuedDocumentsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,7 +1547,7 @@ with fattureincloud_python_sdk.ApiClient(configuration) as api_client:
15471547
api_instance = fattureincloud_python_sdk.IssuedDocumentsApi(api_client)
15481548
company_id = 12345 # int | The ID of the company.
15491549
filename = 'filename_example' # str | Attachment file name (optional)
1550-
attachment = None # bytearray | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] (optional)
1550+
attachment = None # bytes | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] (optional)
15511551

15521552
try:
15531553
# Upload Issued Document Attachment
@@ -1567,7 +1567,7 @@ Name | Type | Description | Notes
15671567
------------- | ------------- | ------------- | -------------
15681568
**company_id** | **int**| The ID of the company. |
15691569
**filename** | **str**| Attachment file name | [optional]
1570-
**attachment** | **bytearray**| Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
1570+
**attachment** | **bytes**| Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
15711571

15721572
### Return type
15731573

docs/PriceListsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ with fattureincloud_python_sdk.ApiClient(configuration) as api_client:
4343
# Create an instance of the API class
4444
api_instance = fattureincloud_python_sdk.PriceListsApi(api_client)
4545
company_id = 12345 # int | The ID of the company.
46-
price_list_id = 'price_list_id_example' # str | The ID of the price
46+
price_list_id = 'price_list_id_example' # str | The price list ID
4747

4848
try:
4949
# Get PriceList Items List
@@ -62,7 +62,7 @@ with fattureincloud_python_sdk.ApiClient(configuration) as api_client:
6262
Name | Type | Description | Notes
6363
------------- | ------------- | ------------- | -------------
6464
**company_id** | **int**| The ID of the company. |
65-
**price_list_id** | **str**| The ID of the price |
65+
**price_list_id** | **str**| The price list ID |
6666

6767
### Return type
6868

docs/ReceivedDocumentsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ with fattureincloud_python_sdk.ApiClient(configuration) as api_client:
13741374
api_instance = fattureincloud_python_sdk.ReceivedDocumentsApi(api_client)
13751375
company_id = 12345 # int | The ID of the company.
13761376
filename = 'filename_example' # str | Attachment file name (optional)
1377-
attachment = None # bytearray | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] (optional)
1377+
attachment = None # bytes | Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] (optional)
13781378

13791379
try:
13801380
# Upload Received Document Attachment
@@ -1394,7 +1394,7 @@ Name | Type | Description | Notes
13941394
------------- | ------------- | ------------- | -------------
13951395
**company_id** | **int**| The ID of the company. |
13961396
**filename** | **str**| Attachment file name | [optional]
1397-
**attachment** | **bytearray**| Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
1397+
**attachment** | **bytes**| Attachment file [.png, .jpg, .gif, .pdf, .zip, .xls, .xlsx, .doc, .docx] | [optional]
13981398

13991399
### Return type
14001400

0 commit comments

Comments
 (0)