Skip to content

Commit affb69f

Browse files
authored
Merge pull request #81 from fattureincloud/devel-2.1.1
Updating SDK to 2.1.1
2 parents 32a73ae + 737e6c9 commit affb69f

File tree

353 files changed

+2658
-1087
lines changed

Some content is hidden

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

353 files changed

+2658
-1087
lines changed

.openapi-generator/FILES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ docs/GetReceiptsMonthlyTotalsResponse.md
9696
docs/GetReceivedDocumentPreCreateInfoResponse.md
9797
docs/GetReceivedDocumentResponse.md
9898
docs/GetSupplierResponse.md
99+
docs/GetTaxProfileResponse.md
99100
docs/GetUserInfoResponse.md
100101
docs/GetUserInfoResponseEmailConfirmationState.md
101102
docs/GetUserInfoResponseInfo.md
@@ -227,6 +228,7 @@ docs/ShowTotalsMode.md
227228
docs/Supplier.md
228229
docs/SupplierType.md
229230
docs/SuppliersApi.md
231+
docs/TaxProfile.md
230232
docs/TaxesApi.md
231233
docs/TransformIssuedDocumentResponse.md
232234
docs/UploadArchiveAttachmentResponse.md
@@ -363,6 +365,7 @@ fattureincloud_python_sdk/models/get_receipts_monthly_totals_response.py
363365
fattureincloud_python_sdk/models/get_received_document_pre_create_info_response.py
364366
fattureincloud_python_sdk/models/get_received_document_response.py
365367
fattureincloud_python_sdk/models/get_supplier_response.py
368+
fattureincloud_python_sdk/models/get_tax_profile_response.py
366369
fattureincloud_python_sdk/models/get_user_info_response.py
367370
fattureincloud_python_sdk/models/get_user_info_response_email_confirmation_state.py
368371
fattureincloud_python_sdk/models/get_user_info_response_info.py
@@ -486,6 +489,7 @@ fattureincloud_python_sdk/models/sender_email.py
486489
fattureincloud_python_sdk/models/show_totals_mode.py
487490
fattureincloud_python_sdk/models/supplier.py
488491
fattureincloud_python_sdk/models/supplier_type.py
492+
fattureincloud_python_sdk/models/tax_profile.py
489493
fattureincloud_python_sdk/models/transform_issued_document_response.py
490494
fattureincloud_python_sdk/models/upload_archive_attachment_response.py
491495
fattureincloud_python_sdk/models/upload_f24_attachment_response.py
@@ -513,3 +517,5 @@ setup.cfg
513517
setup.py
514518
test-requirements.txt
515519
test/__init__.py
520+
test/test_get_tax_profile_response.py
521+
test/test_tax_profile.py

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.6.0
1+
7.9.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.7"
54
- "3.8"
65
- "3.9"
76
- "3.10"
87
- "3.11"
8+
- "3.12"
99
# uncomment the following if needed
10-
#- "3.11-dev" # 3.11 development branch
10+
#- "3.12-dev" # 3.12 development branch
1111
#- "nightly" # nightly build
1212
# command to install dependencies
1313
install:

README.md

Lines changed: 9 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.0
13-
- Package version: 2.1.0
12+
- API version: 2.1.2
13+
- Package version: 2.1.1
1414
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1515
For more information, please visit [https://www.fattureincloud.it](https://www.fattureincloud.it)
1616

@@ -33,6 +33,10 @@ Then import the package:
3333
import fattureincloud_python_sdk
3434
```
3535

36+
### Tests
37+
38+
Execute `pytest` to run the tests.
39+
3640
## Getting Started
3741

3842
Please follow the [installation procedure](#installation--usage) and then run the following:
@@ -163,6 +167,7 @@ Class | Method | HTTP request | Description
163167
*SettingsApi* | [**delete_vat_type**](docs/SettingsApi.md#delete_vat_type) | **DELETE** /c/{company_id}/settings/vat_types/{vat_type_id} | Delete Vat Type
164168
*SettingsApi* | [**get_payment_account**](docs/SettingsApi.md#get_payment_account) | **GET** /c/{company_id}/settings/payment_accounts/{payment_account_id} | Get Payment Account
165169
*SettingsApi* | [**get_payment_method**](docs/SettingsApi.md#get_payment_method) | **GET** /c/{company_id}/settings/payment_methods/{payment_method_id} | Get Payment Method
170+
*SettingsApi* | [**get_tax_profile**](docs/SettingsApi.md#get_tax_profile) | **GET** /c/{company_id}/settings/tax_profile | Get Tax Profile
166171
*SettingsApi* | [**get_vat_type**](docs/SettingsApi.md#get_vat_type) | **GET** /c/{company_id}/settings/vat_types/{vat_type_id} | Get Vat Type
167172
*SettingsApi* | [**modify_payment_account**](docs/SettingsApi.md#modify_payment_account) | **PUT** /c/{company_id}/settings/payment_accounts/{payment_account_id} | Modify Payment Account
168173
*SettingsApi* | [**modify_payment_method**](docs/SettingsApi.md#modify_payment_method) | **PUT** /c/{company_id}/settings/payment_methods/{payment_method_id} | Modify Payment Method
@@ -281,6 +286,7 @@ Class | Method | HTTP request | Description
281286
- [GetReceivedDocumentPreCreateInfoResponse](docs/GetReceivedDocumentPreCreateInfoResponse.md)
282287
- [GetReceivedDocumentResponse](docs/GetReceivedDocumentResponse.md)
283288
- [GetSupplierResponse](docs/GetSupplierResponse.md)
289+
- [GetTaxProfileResponse](docs/GetTaxProfileResponse.md)
284290
- [GetUserInfoResponse](docs/GetUserInfoResponse.md)
285291
- [GetUserInfoResponseEmailConfirmationState](docs/GetUserInfoResponseEmailConfirmationState.md)
286292
- [GetUserInfoResponseInfo](docs/GetUserInfoResponseInfo.md)
@@ -404,6 +410,7 @@ Class | Method | HTTP request | Description
404410
- [ShowTotalsMode](docs/ShowTotalsMode.md)
405411
- [Supplier](docs/Supplier.md)
406412
- [SupplierType](docs/SupplierType.md)
413+
- [TaxProfile](docs/TaxProfile.md)
407414
- [TransformIssuedDocumentResponse](docs/TransformIssuedDocumentResponse.md)
408415
- [UploadArchiveAttachmentResponse](docs/UploadArchiveAttachmentResponse.md)
409416
- [UploadF24AttachmentResponse](docs/UploadF24AttachmentResponse.md)

docs/CashbookEntryKind.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22

33
Cashbook kind
44

5-
## Properties
5+
## Enum
66

7-
Name | Type | Description | Notes
8-
------------ | ------------- | ------------- | -------------
7+
* `CASHBOOK` (value: `'cashbook'`)
8+
9+
* `ISSUED_DOCUMENT` (value: `'issued_document'`)
10+
11+
* `RECEIVED_DOCUMENT` (value: `'received_document'`)
12+
13+
* `TAX` (value: `'tax'`)
14+
15+
* `RECEIPT` (value: `'receipt'`)
916

1017
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1118

docs/CashbookEntryType.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
Cashbook type
44

5-
## Properties
5+
## Enum
66

7-
Name | Type | Description | Notes
8-
------------ | ------------- | ------------- | -------------
7+
* `IN` (value: `'in'`)
8+
9+
* `OUT` (value: `'out'`)
910

1011
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1112

docs/Client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Name | Type | Description | Notes
2828
**notes** | **str** | Client extra | [optional]
2929
**default_vat** | [**VatType**](VatType.md) | | [optional]
3030
**default_payment_terms** | **int** | Client default payment terms | [optional]
31-
**default_payment_terms_type** | [**PaymentTermsType**](PaymentTermsType.md) | | [optional]
31+
**default_payment_terms_type** | [**PaymentTermsType**](PaymentTermsType.md) | | [optional] [default to PaymentTermsType.STANDARD]
3232
**default_payment_method** | [**PaymentMethod**](PaymentMethod.md) | | [optional]
3333
**bank_name** | **str** | Client bank name | [optional]
3434
**bank_iban** | **str** | Client bank iban | [optional]

docs/ClientType.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
Client type
44

5-
## Properties
5+
## Enum
66

7-
Name | Type | Description | Notes
8-
------------ | ------------- | ------------- | -------------
7+
* `COMPANY` (value: `'company'`)
8+
9+
* `PERSON` (value: `'person'`)
10+
11+
* `PA` (value: `'pa'`)
12+
13+
* `CONDO` (value: `'condo'`)
914

1015
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1116

docs/CompanyType.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
Company type
44

5-
## Properties
5+
## Enum
66

7-
Name | Type | Description | Notes
8-
------------ | ------------- | ------------- | -------------
7+
* `COMPANY` (value: `'company'`)
8+
9+
* `ACCOUNTANT` (value: `'accountant'`)
910

1011
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1112

docs/Email.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
88
**id** | **int** | Email id | [optional]
99
**status** | [**EmailStatus**](EmailStatus.md) | | [optional]
10-
**sent_date** | **datetime** | Email sent date | [optional]
10+
**sent_date** | **str** | Email sent date | [optional]
1111
**errors_count** | **int** | Email errors count | [optional]
1212
**error_log** | **str** | Email errors log | [optional]
1313
**from_email** | **str** | Email sender email | [optional]

0 commit comments

Comments
 (0)