cloudbeds-fiscal-document 1.8.0__py3-none-any.whl → 1.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cloudbeds_fiscal_document/__init__.py +2 -1
- cloudbeds_fiscal_document/api_client.py +1 -1
- cloudbeds_fiscal_document/configuration.py +1 -1
- cloudbeds_fiscal_document/models/__init__.py +1 -0
- cloudbeds_fiscal_document/models/fiscal_document_detailed_response.py +4 -1
- cloudbeds_fiscal_document/models/fiscal_document_recipient.py +7 -1
- cloudbeds_fiscal_document/models/recipient_company.py +103 -0
- cloudbeds_fiscal_document/test/test_recipient_company.py +59 -0
- {cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/METADATA +3 -2
- {cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/RECORD +13 -11
- {cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/WHEEL +0 -0
- {cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/licenses/LICENSE +0 -0
- {cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "1.
|
|
17
|
+
__version__ = "1.9.0"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from cloudbeds_fiscal_document.api.configs_api import ConfigsApi
|
|
@@ -72,6 +72,7 @@ from cloudbeds_fiscal_document.models.pro_forma_invoice_request import ProFormaI
|
|
|
72
72
|
from cloudbeds_fiscal_document.models.pro_forma_status_update_request import ProFormaStatusUpdateRequest
|
|
73
73
|
from cloudbeds_fiscal_document.models.receipt_transaction_allocation import ReceiptTransactionAllocation
|
|
74
74
|
from cloudbeds_fiscal_document.models.recipient_address import RecipientAddress
|
|
75
|
+
from cloudbeds_fiscal_document.models.recipient_company import RecipientCompany
|
|
75
76
|
from cloudbeds_fiscal_document.models.recipient_contact_details import RecipientContactDetails
|
|
76
77
|
from cloudbeds_fiscal_document.models.recipient_details import RecipientDetails
|
|
77
78
|
from cloudbeds_fiscal_document.models.recipient_document import RecipientDocument
|
|
@@ -90,7 +90,7 @@ class ApiClient:
|
|
|
90
90
|
self.default_headers[header_name] = header_value
|
|
91
91
|
self.cookie = cookie
|
|
92
92
|
# Set default User-Agent.
|
|
93
|
-
self.user_agent = 'OpenAPI-Generator/1.
|
|
93
|
+
self.user_agent = 'OpenAPI-Generator/1.9.0/python'
|
|
94
94
|
self.client_side_validation = configuration.client_side_validation
|
|
95
95
|
|
|
96
96
|
def __enter__(self):
|
|
@@ -504,7 +504,7 @@ class Configuration:
|
|
|
504
504
|
"OS: {env}\n"\
|
|
505
505
|
"Python Version: {pyversion}\n"\
|
|
506
506
|
"Version of the API: v1\n"\
|
|
507
|
-
"SDK Package Version: 1.
|
|
507
|
+
"SDK Package Version: 1.9.0".\
|
|
508
508
|
format(env=sys.platform, pyversion=sys.version)
|
|
509
509
|
|
|
510
510
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -53,6 +53,7 @@ from cloudbeds_fiscal_document.models.pro_forma_invoice_request import ProFormaI
|
|
|
53
53
|
from cloudbeds_fiscal_document.models.pro_forma_status_update_request import ProFormaStatusUpdateRequest
|
|
54
54
|
from cloudbeds_fiscal_document.models.receipt_transaction_allocation import ReceiptTransactionAllocation
|
|
55
55
|
from cloudbeds_fiscal_document.models.recipient_address import RecipientAddress
|
|
56
|
+
from cloudbeds_fiscal_document.models.recipient_company import RecipientCompany
|
|
56
57
|
from cloudbeds_fiscal_document.models.recipient_contact_details import RecipientContactDetails
|
|
57
58
|
from cloudbeds_fiscal_document.models.recipient_details import RecipientDetails
|
|
58
59
|
from cloudbeds_fiscal_document.models.recipient_document import RecipientDocument
|
|
@@ -21,6 +21,7 @@ from datetime import date, datetime
|
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
23
23
|
from cloudbeds_fiscal_document.models.action import Action
|
|
24
|
+
from cloudbeds_fiscal_document.models.creation_method import CreationMethod
|
|
24
25
|
from cloudbeds_fiscal_document.models.fiscal_document_kind import FiscalDocumentKind
|
|
25
26
|
from cloudbeds_fiscal_document.models.fiscal_document_status import FiscalDocumentStatus
|
|
26
27
|
from cloudbeds_fiscal_document.models.government_integration import GovernmentIntegration
|
|
@@ -56,6 +57,7 @@ class FiscalDocumentDetailedResponse(BaseModel):
|
|
|
56
57
|
origin: Optional[StrictStr] = None
|
|
57
58
|
external_id: Optional[StrictStr] = Field(default=None, alias="externalId")
|
|
58
59
|
fail_reason: Optional[StrictStr] = Field(default=None, alias="failReason")
|
|
60
|
+
method: Optional[CreationMethod] = None
|
|
59
61
|
created_at: Optional[datetime] = Field(default=None, alias="createdAt")
|
|
60
62
|
parent_id: Optional[StrictStr] = Field(default=None, alias="parentId")
|
|
61
63
|
updated_at: Optional[datetime] = Field(default=None, alias="updatedAt")
|
|
@@ -64,7 +66,7 @@ class FiscalDocumentDetailedResponse(BaseModel):
|
|
|
64
66
|
linked_documents: Optional[List[LinkedDocument]] = Field(default=None, description="List of documents linked to this fiscal document (both parent and child relationships)", alias="linkedDocuments")
|
|
65
67
|
actions: Optional[List[Action]] = Field(default=None, description="Returns the list of actions available for the transaction")
|
|
66
68
|
source_identifier: Optional[StrictStr] = Field(default=None, description="Reservation Identifier or a group code", alias="sourceIdentifier")
|
|
67
|
-
__properties: ClassVar[List[str]] = ["id", "number", "propertyId", "userId", "userFullName", "sourceName", "sourceId", "sourceKind", "kind", "invoiceDate", "invoiceDatePropertyTimezone", "fileName", "amount", "balance", "dueDate", "dueDatePropertyTimezone", "recipients", "status", "origin", "externalId", "failReason", "createdAt", "parentId", "updatedAt", "governmentIntegration", "latestLinkedDocument", "linkedDocuments", "actions", "sourceIdentifier"]
|
|
69
|
+
__properties: ClassVar[List[str]] = ["id", "number", "propertyId", "userId", "userFullName", "sourceName", "sourceId", "sourceKind", "kind", "invoiceDate", "invoiceDatePropertyTimezone", "fileName", "amount", "balance", "dueDate", "dueDatePropertyTimezone", "recipients", "status", "origin", "externalId", "failReason", "method", "createdAt", "parentId", "updatedAt", "governmentIntegration", "latestLinkedDocument", "linkedDocuments", "actions", "sourceIdentifier"]
|
|
68
70
|
|
|
69
71
|
model_config = ConfigDict(
|
|
70
72
|
populate_by_name=True,
|
|
@@ -165,6 +167,7 @@ class FiscalDocumentDetailedResponse(BaseModel):
|
|
|
165
167
|
"origin": obj.get("origin"),
|
|
166
168
|
"externalId": obj.get("externalId"),
|
|
167
169
|
"failReason": obj.get("failReason"),
|
|
170
|
+
"method": obj.get("method"),
|
|
168
171
|
"createdAt": obj.get("createdAt"),
|
|
169
172
|
"parentId": obj.get("parentId"),
|
|
170
173
|
"updatedAt": obj.get("updatedAt"),
|
|
@@ -21,6 +21,7 @@ from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from cloudbeds_fiscal_document.models.recipient_address import RecipientAddress
|
|
24
|
+
from cloudbeds_fiscal_document.models.recipient_company import RecipientCompany
|
|
24
25
|
from cloudbeds_fiscal_document.models.recipient_contact_details import RecipientContactDetails
|
|
25
26
|
from cloudbeds_fiscal_document.models.recipient_document import RecipientDocument
|
|
26
27
|
from cloudbeds_fiscal_document.models.recipient_tax_info import RecipientTaxInfo
|
|
@@ -38,11 +39,12 @@ class FiscalDocumentRecipient(BaseModel):
|
|
|
38
39
|
email: Optional[StrictStr] = None
|
|
39
40
|
type: Optional[RecipientType] = None
|
|
40
41
|
address: Optional[RecipientAddress] = None
|
|
42
|
+
company: Optional[RecipientCompany] = None
|
|
41
43
|
tax: Optional[RecipientTaxInfo] = None
|
|
42
44
|
contact_details: Optional[RecipientContactDetails] = Field(default=None, alias="contactDetails")
|
|
43
45
|
document: Optional[RecipientDocument] = None
|
|
44
46
|
country_data: Optional[Dict[str, Any]] = Field(default=None, description="Arbitrary country-specific fields from guest requirements. ", alias="countryData")
|
|
45
|
-
__properties: ClassVar[List[str]] = ["id", "firstName", "lastName", "email", "type", "address", "tax", "contactDetails", "document", "countryData"]
|
|
47
|
+
__properties: ClassVar[List[str]] = ["id", "firstName", "lastName", "email", "type", "address", "company", "tax", "contactDetails", "document", "countryData"]
|
|
46
48
|
|
|
47
49
|
model_config = ConfigDict(
|
|
48
50
|
populate_by_name=True,
|
|
@@ -86,6 +88,9 @@ class FiscalDocumentRecipient(BaseModel):
|
|
|
86
88
|
# override the default output from pydantic by calling `to_dict()` of address
|
|
87
89
|
if self.address:
|
|
88
90
|
_dict['address'] = self.address.to_dict()
|
|
91
|
+
# override the default output from pydantic by calling `to_dict()` of company
|
|
92
|
+
if self.company:
|
|
93
|
+
_dict['company'] = self.company.to_dict()
|
|
89
94
|
# override the default output from pydantic by calling `to_dict()` of tax
|
|
90
95
|
if self.tax:
|
|
91
96
|
_dict['tax'] = self.tax.to_dict()
|
|
@@ -113,6 +118,7 @@ class FiscalDocumentRecipient(BaseModel):
|
|
|
113
118
|
"email": obj.get("email"),
|
|
114
119
|
"type": obj.get("type"),
|
|
115
120
|
"address": RecipientAddress.from_dict(obj["address"]) if obj.get("address") is not None else None,
|
|
121
|
+
"company": RecipientCompany.from_dict(obj["company"]) if obj.get("company") is not None else None,
|
|
116
122
|
"tax": RecipientTaxInfo.from_dict(obj["tax"]) if obj.get("tax") is not None else None,
|
|
117
123
|
"contactDetails": RecipientContactDetails.from_dict(obj["contactDetails"]) if obj.get("contactDetails") is not None else None,
|
|
118
124
|
"document": RecipientDocument.from_dict(obj["document"]) if obj.get("document") is not None else None,
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Fiscal document service API
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class RecipientCompany(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
RecipientCompany
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
name: Optional[StrictStr] = None
|
|
30
|
+
tax_id: Optional[StrictStr] = Field(default=None, alias="taxId")
|
|
31
|
+
tax_id_type: Optional[StrictStr] = Field(default=None, alias="taxIdType")
|
|
32
|
+
address1: Optional[StrictStr] = None
|
|
33
|
+
address2: Optional[StrictStr] = None
|
|
34
|
+
city: Optional[StrictStr] = None
|
|
35
|
+
state: Optional[StrictStr] = None
|
|
36
|
+
zip_code: Optional[StrictStr] = Field(default=None, alias="zipCode")
|
|
37
|
+
country: Optional[StrictStr] = None
|
|
38
|
+
__properties: ClassVar[List[str]] = ["name", "taxId", "taxIdType", "address1", "address2", "city", "state", "zipCode", "country"]
|
|
39
|
+
|
|
40
|
+
model_config = ConfigDict(
|
|
41
|
+
populate_by_name=True,
|
|
42
|
+
validate_assignment=True,
|
|
43
|
+
protected_namespaces=(),
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
def to_str(self) -> str:
|
|
48
|
+
"""Returns the string representation of the model using alias"""
|
|
49
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
50
|
+
|
|
51
|
+
def to_json(self) -> str:
|
|
52
|
+
"""Returns the JSON representation of the model using alias"""
|
|
53
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
54
|
+
return json.dumps(self.to_dict())
|
|
55
|
+
|
|
56
|
+
@classmethod
|
|
57
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
58
|
+
"""Create an instance of RecipientCompany from a JSON string"""
|
|
59
|
+
return cls.from_dict(json.loads(json_str))
|
|
60
|
+
|
|
61
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
62
|
+
"""Return the dictionary representation of the model using alias.
|
|
63
|
+
|
|
64
|
+
This has the following differences from calling pydantic's
|
|
65
|
+
`self.model_dump(by_alias=True)`:
|
|
66
|
+
|
|
67
|
+
* `None` is only added to the output dict for nullable fields that
|
|
68
|
+
were set at model initialization. Other fields with value `None`
|
|
69
|
+
are ignored.
|
|
70
|
+
"""
|
|
71
|
+
excluded_fields: Set[str] = set([
|
|
72
|
+
])
|
|
73
|
+
|
|
74
|
+
_dict = self.model_dump(
|
|
75
|
+
by_alias=True,
|
|
76
|
+
exclude=excluded_fields,
|
|
77
|
+
exclude_none=True,
|
|
78
|
+
)
|
|
79
|
+
return _dict
|
|
80
|
+
|
|
81
|
+
@classmethod
|
|
82
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
83
|
+
"""Create an instance of RecipientCompany from a dict"""
|
|
84
|
+
if obj is None:
|
|
85
|
+
return None
|
|
86
|
+
|
|
87
|
+
if not isinstance(obj, dict):
|
|
88
|
+
return cls.model_validate(obj)
|
|
89
|
+
|
|
90
|
+
_obj = cls.model_validate({
|
|
91
|
+
"name": obj.get("name"),
|
|
92
|
+
"taxId": obj.get("taxId"),
|
|
93
|
+
"taxIdType": obj.get("taxIdType"),
|
|
94
|
+
"address1": obj.get("address1"),
|
|
95
|
+
"address2": obj.get("address2"),
|
|
96
|
+
"city": obj.get("city"),
|
|
97
|
+
"state": obj.get("state"),
|
|
98
|
+
"zipCode": obj.get("zipCode"),
|
|
99
|
+
"country": obj.get("country")
|
|
100
|
+
})
|
|
101
|
+
return _obj
|
|
102
|
+
|
|
103
|
+
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Fiscal document service API
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import unittest
|
|
16
|
+
|
|
17
|
+
from cloudbeds_fiscal_document.models.recipient_company import RecipientCompany
|
|
18
|
+
|
|
19
|
+
class TestRecipientCompany(unittest.TestCase):
|
|
20
|
+
"""RecipientCompany unit test stubs"""
|
|
21
|
+
|
|
22
|
+
def setUp(self):
|
|
23
|
+
pass
|
|
24
|
+
|
|
25
|
+
def tearDown(self):
|
|
26
|
+
pass
|
|
27
|
+
|
|
28
|
+
def make_instance(self, include_optional) -> RecipientCompany:
|
|
29
|
+
"""Test RecipientCompany
|
|
30
|
+
include_optional is a boolean, when False only required
|
|
31
|
+
params are included, when True both required and
|
|
32
|
+
optional params are included """
|
|
33
|
+
# uncomment below to create an instance of `RecipientCompany`
|
|
34
|
+
"""
|
|
35
|
+
model = RecipientCompany()
|
|
36
|
+
if include_optional:
|
|
37
|
+
return RecipientCompany(
|
|
38
|
+
name = '',
|
|
39
|
+
tax_id = '',
|
|
40
|
+
tax_id_type = '',
|
|
41
|
+
address1 = '',
|
|
42
|
+
address2 = '',
|
|
43
|
+
city = '',
|
|
44
|
+
state = '',
|
|
45
|
+
zip_code = '',
|
|
46
|
+
country = ''
|
|
47
|
+
)
|
|
48
|
+
else:
|
|
49
|
+
return RecipientCompany(
|
|
50
|
+
)
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
def testRecipientCompany(self):
|
|
54
|
+
"""Test RecipientCompany"""
|
|
55
|
+
# inst_req_only = self.make_instance(include_optional=False)
|
|
56
|
+
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
57
|
+
|
|
58
|
+
if __name__ == '__main__':
|
|
59
|
+
unittest.main()
|
{cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudbeds_fiscal_document
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.9.0
|
|
4
4
|
Summary: OpenAPI client for Cloudbeds Fiscal Document API.
|
|
5
5
|
Author: Cloudbeds
|
|
6
6
|
License: The MIT License
|
|
@@ -57,7 +57,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
57
57
|
The `cloudbeds_fiscal_document` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
58
58
|
|
|
59
59
|
- API version: v1
|
|
60
|
-
- Package version: 1.
|
|
60
|
+
- Package version: 1.9.0
|
|
61
61
|
- Generator version: 7.11.0
|
|
62
62
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
63
63
|
|
|
@@ -196,6 +196,7 @@ Class | Method | HTTP request | Description
|
|
|
196
196
|
- [ProFormaStatusUpdateRequest](cloudbeds_fiscal_document/docs/ProFormaStatusUpdateRequest.md)
|
|
197
197
|
- [ReceiptTransactionAllocation](cloudbeds_fiscal_document/docs/ReceiptTransactionAllocation.md)
|
|
198
198
|
- [RecipientAddress](cloudbeds_fiscal_document/docs/RecipientAddress.md)
|
|
199
|
+
- [RecipientCompany](cloudbeds_fiscal_document/docs/RecipientCompany.md)
|
|
199
200
|
- [RecipientContactDetails](cloudbeds_fiscal_document/docs/RecipientContactDetails.md)
|
|
200
201
|
- [RecipientDetails](cloudbeds_fiscal_document/docs/RecipientDetails.md)
|
|
201
202
|
- [RecipientDocument](cloudbeds_fiscal_document/docs/RecipientDocument.md)
|
{cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
cloudbeds_fiscal_document/__init__.py,sha256=
|
|
2
|
-
cloudbeds_fiscal_document/api_client.py,sha256=
|
|
1
|
+
cloudbeds_fiscal_document/__init__.py,sha256=Adp8Ie16BpW07y-wgBVRSyG4i7zFoZ8I98H_c8NnFmo,5878
|
|
2
|
+
cloudbeds_fiscal_document/api_client.py,sha256=1NjhwGity2ikIYz1O5xR_y90dzVrnJr6bwFB8IXKkoc,27557
|
|
3
3
|
cloudbeds_fiscal_document/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
cloudbeds_fiscal_document/configuration.py,sha256=
|
|
4
|
+
cloudbeds_fiscal_document/configuration.py,sha256=hn7nJ3HzUCl9x1WsMnS4_Qs86QhlxwWbqj4NCTPMDYc,19338
|
|
5
5
|
cloudbeds_fiscal_document/exceptions.py,sha256=oEYMmCX9U9BE8E32jNQfoh1N1TKYTWLtLRDTaWXkr-Q,6488
|
|
6
6
|
cloudbeds_fiscal_document/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
cloudbeds_fiscal_document/rest.py,sha256=2KoCf_WOxpyTU8HalDgwquQdIqjXmhFqU3_NpWsmdn8,9440
|
|
@@ -9,7 +9,7 @@ cloudbeds_fiscal_document/api/__init__.py,sha256=Wwz734y2sXXISY2DrXD6haW-RUAG5df
|
|
|
9
9
|
cloudbeds_fiscal_document/api/configs_api.py,sha256=wzekLqTa7bDoNJtxLfU9hEvqketW8yTzDsUazuwW-Hk,34099
|
|
10
10
|
cloudbeds_fiscal_document/api/features_api.py,sha256=u_OO8wEoAcNxd18dN-PaLxrNEhB94Wv4M6DnLgGGWaM,11623
|
|
11
11
|
cloudbeds_fiscal_document/api/fiscal_documents_api.py,sha256=etp_S-96XSAgJ7MxnN3tyvxoP2Yitr75sRV5oae_y6w,315026
|
|
12
|
-
cloudbeds_fiscal_document/models/__init__.py,sha256=
|
|
12
|
+
cloudbeds_fiscal_document/models/__init__.py,sha256=rhxsTdosVrQGNnb2fZqx9cRaTmJK5QVFxE5xZJhe-oY,5021
|
|
13
13
|
cloudbeds_fiscal_document/models/action.py,sha256=_56GB3RiA9LOB2v3g433XOYfzq8Va3SoS4PqN1Hi0GU,2554
|
|
14
14
|
cloudbeds_fiscal_document/models/allocate_receipt_payment_request.py,sha256=49955YQ2-Y7dckSNYEMx2KdXLduJNdi3H_NYDBnL5so,3396
|
|
15
15
|
cloudbeds_fiscal_document/models/allocations_summary.py,sha256=O5y-LaC117ixAdOy99FcuEvXgTZA2YPegY97RKxoN0w,2826
|
|
@@ -23,13 +23,13 @@ cloudbeds_fiscal_document/models/create_simple_receipt_request.py,sha256=FpsSZ_E
|
|
|
23
23
|
cloudbeds_fiscal_document/models/creation_method.py,sha256=vZD9e9cnodeE8MXhudSC_GxRUSnLVle4QjoYw_aHPyE,776
|
|
24
24
|
cloudbeds_fiscal_document/models/document_action.py,sha256=dN-YXEQWrSIiDww9s3WHKeiDhf7Zw2S9Qml95LLEj-A,917
|
|
25
25
|
cloudbeds_fiscal_document/models/document_trigger_event.py,sha256=PzPMkjIRaERZpq13rh3Ua0PUaitcS8RGxgalMqm4MLk,904
|
|
26
|
-
cloudbeds_fiscal_document/models/fiscal_document_detailed_response.py,sha256=
|
|
26
|
+
cloudbeds_fiscal_document/models/fiscal_document_detailed_response.py,sha256=3SkHurYIxzOg_T5YFxwqtHcT6FebZ3dEPZteKghNFFQ,9573
|
|
27
27
|
cloudbeds_fiscal_document/models/fiscal_document_email_request.py,sha256=ytVW_0v_7II2SbX7ZypkcLc6M6xUtArpDutwnRUspkM,2645
|
|
28
28
|
cloudbeds_fiscal_document/models/fiscal_document_filters.py,sha256=6pMIeIWJ5jXWjRe21dkuMgbpYjUTT2fZi2c72LqVC6o,7255
|
|
29
29
|
cloudbeds_fiscal_document/models/fiscal_document_kind.py,sha256=2-MVbDJWyoSFab8em8YYwVnzwxECqxWY9w430Sr6QLw,955
|
|
30
30
|
cloudbeds_fiscal_document/models/fiscal_document_paginated.py,sha256=I-K13zc33S1m0sI5A1u9_6Ojd2k1Oq5G2gjh0eihAgo,3500
|
|
31
31
|
cloudbeds_fiscal_document/models/fiscal_document_patch_request.py,sha256=HVM8jUUR9-StJoJJDeBbs8R1rY3N7QFUFQMS5RsZgSk,3431
|
|
32
|
-
cloudbeds_fiscal_document/models/fiscal_document_recipient.py,sha256=
|
|
32
|
+
cloudbeds_fiscal_document/models/fiscal_document_recipient.py,sha256=beNutHuZnKJtQtSJf0YDgSjbTbZ2418MoMBl-PErp2A,5555
|
|
33
33
|
cloudbeds_fiscal_document/models/fiscal_document_status.py,sha256=tIRy-16mlMSGRR1_nIedU_xtu_bkaseXjUJF8ywNhqA,1373
|
|
34
34
|
cloudbeds_fiscal_document/models/fiscal_document_summary_response.py,sha256=hI-UMNN_tSAMAhqXHzDjkMb1xAF-dy3a3jtSOFM7NIs,3683
|
|
35
35
|
cloudbeds_fiscal_document/models/fiscal_document_transaction_response.py,sha256=8szpxMvB80IQgnv08kk9_9aipWW7muUXvoPgLZfLZ-8,5465
|
|
@@ -49,6 +49,7 @@ cloudbeds_fiscal_document/models/pro_forma_invoice_request.py,sha256=CgkNUoDpA64
|
|
|
49
49
|
cloudbeds_fiscal_document/models/pro_forma_status_update_request.py,sha256=POhhENdYGJiFy8-yFXmEgag4zRn6BQ1KJHDwZFzYXEM,2924
|
|
50
50
|
cloudbeds_fiscal_document/models/receipt_transaction_allocation.py,sha256=6-0sVsKjGigFBRwKQvTCICxszOMZ4iiUC5xmukassk8,2733
|
|
51
51
|
cloudbeds_fiscal_document/models/recipient_address.py,sha256=BP7Y8uioaVJeN2JpSFb7T-glDXxdtjIv-UfyDHQEm0s,3034
|
|
52
|
+
cloudbeds_fiscal_document/models/recipient_company.py,sha256=Zp9P7fyAjyrdjEDozspUq30j3Ga9E1S6U2jCn5A7Ids,3371
|
|
52
53
|
cloudbeds_fiscal_document/models/recipient_contact_details.py,sha256=__wf3yyHf7LacpXtO_xQutlHTXtI8fJtqWAgL9lNyLQ,2917
|
|
53
54
|
cloudbeds_fiscal_document/models/recipient_details.py,sha256=1tU8uihhoGB93gL38f6TxfZk4pn2Sc65jzxcs5NtK-4,3264
|
|
54
55
|
cloudbeds_fiscal_document/models/recipient_document.py,sha256=BNyN2z3WGguS_BrR5yB6jO0vS6lrzn5WvgO4ugcTZVg,3114
|
|
@@ -101,6 +102,7 @@ cloudbeds_fiscal_document/test/test_pro_forma_invoice_request.py,sha256=vWjzUDnI
|
|
|
101
102
|
cloudbeds_fiscal_document/test/test_pro_forma_status_update_request.py,sha256=dq6QghHBjN1OSlQLFDA0jXlHpyA48C4A15_1dpHJI_Q,1615
|
|
102
103
|
cloudbeds_fiscal_document/test/test_receipt_transaction_allocation.py,sha256=nCIA7H7rWTiYwvsALbT9RFToaWnUK9I5T-3UtKkTxxU,1689
|
|
103
104
|
cloudbeds_fiscal_document/test/test_recipient_address.py,sha256=l_uRjcBO8zmmw1Ie9kFqMgLhfQa12vrHINBTrOIsUv8,1584
|
|
105
|
+
cloudbeds_fiscal_document/test/test_recipient_company.py,sha256=TVfDlHW7SVvyfwuQLZQ6o0Jn09WjuBVqYA6IW8mbqP8,1674
|
|
104
106
|
cloudbeds_fiscal_document/test/test_recipient_contact_details.py,sha256=gdyM8mTtIILq_aAR9s8_HM-oeqSIR5WYtldzGtlWyWk,1686
|
|
105
107
|
cloudbeds_fiscal_document/test/test_recipient_details.py,sha256=pqRRiYHrBxflODhlSyH4Cuf1H4on0dm57WZDZ106z9A,1524
|
|
106
108
|
cloudbeds_fiscal_document/test/test_recipient_document.py,sha256=4gmEd1juh8RFeBYgnee7J81ZD8mRFU_QcJ-c2NmxWts,1731
|
|
@@ -110,8 +112,8 @@ cloudbeds_fiscal_document/test/test_recipient_type.py,sha256=SxhGt0jOU_ZCZanauuY
|
|
|
110
112
|
cloudbeds_fiscal_document/test/test_rectify_invoice_note_request.py,sha256=otxuP5tiGrS4b7PzAwUujh8XmKDZxIKIpYX4aJ08ztw,1788
|
|
111
113
|
cloudbeds_fiscal_document/test/test_source_kind.py,sha256=Om-4SlTOpzbQNLcHIU6B0OwZ9vmVbRoRRd0KJUKUccY,711
|
|
112
114
|
cloudbeds_fiscal_document/test/test_transaction_for_allocation_response.py,sha256=8YWz4HEPCpe5LmxBb1rd9vVrxOdvaH0AzpAjpj3WazM,2644
|
|
113
|
-
cloudbeds_fiscal_document-1.
|
|
114
|
-
cloudbeds_fiscal_document-1.
|
|
115
|
-
cloudbeds_fiscal_document-1.
|
|
116
|
-
cloudbeds_fiscal_document-1.
|
|
117
|
-
cloudbeds_fiscal_document-1.
|
|
115
|
+
cloudbeds_fiscal_document-1.9.0.dist-info/licenses/LICENSE,sha256=noTWyG8XyfILgKHVxo6Z6mWjsXnUZ6AsqRY4pNTdBmg,1093
|
|
116
|
+
cloudbeds_fiscal_document-1.9.0.dist-info/METADATA,sha256=Y9BgfTl5umfnnTCRj63qZ6aCsU_cFXjJ5aJyms5aV6Y,16030
|
|
117
|
+
cloudbeds_fiscal_document-1.9.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
118
|
+
cloudbeds_fiscal_document-1.9.0.dist-info/top_level.txt,sha256=xDhbzDUymHSRPf7_v5yTWqDdIimGk-7zkWu1zHiL7kc,26
|
|
119
|
+
cloudbeds_fiscal_document-1.9.0.dist-info/RECORD,,
|
{cloudbeds_fiscal_document-1.8.0.dist-info → cloudbeds_fiscal_document-1.9.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|