Skip to content

Commit 83dfb90

Browse files
chore: bumping version to 2.1.2
1 parent 7f4f8f3 commit 83dfb90

File tree

264 files changed

+459
-465
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

264 files changed

+459
-465
lines changed

.openapi-generator/FILES

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,5 +517,3 @@ setup.cfg
517517
setup.py
518518
test-requirements.txt
519519
test/__init__.py
520-
test/test_get_tax_profile_response.py
521-
test/test_tax_profile.py

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ The Fatture in Cloud API is based on REST, and makes possible to interact with t
99

1010
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1111

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

docs/EventType.md

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

docs/IssuedDocumentsApi.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ Name | Type | Description | Notes
650650
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
651651

652652
# **join_issued_documents**
653-
> JoinIssuedDocumentsResponse join_issued_documents(company_id, ids, group=group, parameter=parameter)
653+
> JoinIssuedDocumentsResponse join_issued_documents(company_id, ids, group=group, type=type)
654654
655655
Join Issued Documents
656656

@@ -686,11 +686,11 @@ with fattureincloud_python_sdk.ApiClient(configuration) as api_client:
686686
company_id = 12345 # int | The ID of the company.
687687
ids = '1,2,3,4' # str | Ids of the documents.
688688
group = 56 # int | Group items. (optional)
689-
parameter = 'delivery_notes, orders, quotes, work_reports' # str | Type of the parameters to be joined (optional)
689+
type = 'delivery_notes, orders, quotes, work_reports' # str | Type of the documents to be joined (optional)
690690

691691
try:
692692
# Join Issued Documents
693-
api_response = api_instance.join_issued_documents(company_id, ids, group=group, parameter=parameter)
693+
api_response = api_instance.join_issued_documents(company_id, ids, group=group, type=type)
694694
print("The response of IssuedDocumentsApi->join_issued_documents:\n")
695695
pprint(api_response)
696696
except Exception as e:
@@ -707,7 +707,7 @@ Name | Type | Description | Notes
707707
**company_id** | **int**| The ID of the company. |
708708
**ids** | **str**| Ids of the documents. |
709709
**group** | **int**| Group items. | [optional]
710-
**parameter** | **str**| Type of the parameters to be joined | [optional]
710+
**type** | **str**| Type of the documents to be joined | [optional]
711711

712712
### Return type
713713

@@ -985,7 +985,7 @@ void (empty response body)
985985
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
986986

987987
# **transform_issued_document**
988-
> TransformIssuedDocumentResponse transform_issued_document(company_id, original_document_id, new_type, parameter=parameter, e_invoice=e_invoice, transform_keep_copy=transform_keep_copy)
988+
> TransformIssuedDocumentResponse transform_issued_document(company_id, original_document_id, new_type, type=type, e_invoice=e_invoice, transform_keep_copy=transform_keep_copy)
989989
990990
Transform Issued Document
991991

@@ -1021,13 +1021,13 @@ with fattureincloud_python_sdk.ApiClient(configuration) as api_client:
10211021
company_id = 12345 # int | The ID of the company.
10221022
original_document_id = 56 # int | Original document id.
10231023
new_type = 'new_type_example' # str | New document type.
1024-
parameter = 'parameter_example' # str | Old document type. (optional)
1024+
type = 'type_example' # str | Current document type. (optional)
10251025
e_invoice = 56 # int | New document e_invoice. (optional)
10261026
transform_keep_copy = 56 # int | Keep the old document. (optional)
10271027

10281028
try:
10291029
# Transform Issued Document
1030-
api_response = api_instance.transform_issued_document(company_id, original_document_id, new_type, parameter=parameter, e_invoice=e_invoice, transform_keep_copy=transform_keep_copy)
1030+
api_response = api_instance.transform_issued_document(company_id, original_document_id, new_type, type=type, e_invoice=e_invoice, transform_keep_copy=transform_keep_copy)
10311031
print("The response of IssuedDocumentsApi->transform_issued_document:\n")
10321032
pprint(api_response)
10331033
except Exception as e:
@@ -1044,7 +1044,7 @@ Name | Type | Description | Notes
10441044
**company_id** | **int**| The ID of the company. |
10451045
**original_document_id** | **int**| Original document id. |
10461046
**new_type** | **str**| New document type. |
1047-
**parameter** | **str**| Old document type. | [optional]
1047+
**type** | **str**| Current document type. | [optional]
10481048
**e_invoice** | **int**| New document e_invoice. | [optional]
10491049
**transform_keep_copy** | **int**| Keep the old document. | [optional]
10501050

fattureincloud_python_sdk/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
88
Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
99
10-
The version of the OpenAPI document: 2.1.2
10+
The version of the OpenAPI document: 2.1.3
1111
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313
1414
Do not edit the class manually.
1515
""" # noqa: E501
1616

1717

18-
__version__ = "2.1.1"
18+
__version__ = "2.1.2"
1919

2020
# import apis into sdk package
2121
from fattureincloud_python_sdk.api.archive_api import ArchiveApi

fattureincloud_python_sdk/api/archive_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
77
8-
The version of the OpenAPI document: 2.1.2
8+
The version of the OpenAPI document: 2.1.3
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

fattureincloud_python_sdk/api/cashbook_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
77
8-
The version of the OpenAPI document: 2.1.2
8+
The version of the OpenAPI document: 2.1.3
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

fattureincloud_python_sdk/api/clients_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
77
8-
The version of the OpenAPI document: 2.1.2
8+
The version of the OpenAPI document: 2.1.3
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

fattureincloud_python_sdk/api/companies_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
77
8-
The version of the OpenAPI document: 2.1.2
8+
The version of the OpenAPI document: 2.1.3
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

fattureincloud_python_sdk/api/emails_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Connect your software with Fatture in Cloud, the invoicing platform chosen by more than 500.000 businesses in Italy. The Fatture in Cloud API is based on REST, and makes possible to interact with the user related data prior authorization via OAuth2 protocol.
77
8-
The version of the OpenAPI document: 2.1.2
8+
The version of the OpenAPI document: 2.1.3
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)