cloudbeds-fiscal-document 1.17.0__py3-none-any.whl → 1.18.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 +1 -1
- cloudbeds_fiscal_document/api_client.py +1 -1
- cloudbeds_fiscal_document/configuration.py +1 -1
- cloudbeds_fiscal_document/models/creation_method.py +5 -0
- cloudbeds_fiscal_document/models/document_action.py +5 -0
- cloudbeds_fiscal_document/models/document_trigger_event.py +5 -0
- cloudbeds_fiscal_document/models/fiscal_document_kind.py +5 -0
- cloudbeds_fiscal_document/models/fiscal_document_status.py +5 -0
- cloudbeds_fiscal_document/models/fiscal_document_transaction_response.py +4 -3
- cloudbeds_fiscal_document/models/guest_document_type.py +5 -0
- cloudbeds_fiscal_document/models/guest_gender.py +5 -0
- cloudbeds_fiscal_document/models/integration_signature.py +4 -3
- cloudbeds_fiscal_document/models/linked_document.py +4 -3
- cloudbeds_fiscal_document/models/manual_recipient_request.py +4 -3
- cloudbeds_fiscal_document/models/pro_forma_status_update_request.py +4 -3
- cloudbeds_fiscal_document/models/recipient_request.py +8 -6
- cloudbeds_fiscal_document/models/recipient_type.py +5 -0
- cloudbeds_fiscal_document/models/source_kind.py +5 -0
- cloudbeds_fiscal_document/models/transaction_status.py +5 -0
- {cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.0.dist-info}/METADATA +2 -2
- {cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.0.dist-info}/RECORD +24 -24
- {cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.0.dist-info}/WHEEL +0 -0
- {cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.0.dist-info}/licenses/LICENSE +0 -0
- {cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.0.dist-info}/top_level.txt +0 -0
|
@@ -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.18.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.18.0".\
|
|
508
508
|
format(env=sys.platform, pyversion=sys.version)
|
|
509
509
|
|
|
510
510
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -28,10 +28,15 @@ class CreationMethod(str, Enum):
|
|
|
28
28
|
"""
|
|
29
29
|
VOID = 'VOID'
|
|
30
30
|
ADJUSTMENT = 'ADJUSTMENT'
|
|
31
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
31
32
|
|
|
32
33
|
@classmethod
|
|
33
34
|
def from_json(cls, json_str: str) -> Self:
|
|
34
35
|
"""Create an instance of CreationMethod from a JSON string"""
|
|
35
36
|
return cls(json.loads(json_str))
|
|
36
37
|
|
|
38
|
+
@classmethod
|
|
39
|
+
def _missing_(cls, value):
|
|
40
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
41
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
37
42
|
|
|
@@ -35,10 +35,15 @@ class DocumentAction(str, Enum):
|
|
|
35
35
|
VOID_AND_REFUND = 'VOID_AND_REFUND'
|
|
36
36
|
ADD_PAYMENT = 'ADD_PAYMENT'
|
|
37
37
|
APPLY_TO_INVOICE = 'APPLY_TO_INVOICE'
|
|
38
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
38
39
|
|
|
39
40
|
@classmethod
|
|
40
41
|
def from_json(cls, json_str: str) -> Self:
|
|
41
42
|
"""Create an instance of DocumentAction from a JSON string"""
|
|
42
43
|
return cls(json.loads(json_str))
|
|
43
44
|
|
|
45
|
+
@classmethod
|
|
46
|
+
def _missing_(cls, value):
|
|
47
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
48
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
44
49
|
|
|
@@ -31,10 +31,15 @@ class DocumentTriggerEvent(str, Enum):
|
|
|
31
31
|
ON_RESERVATION_CREATED = 'on_reservation_created'
|
|
32
32
|
ON_PAYMENT_CREATION = 'on_payment_creation'
|
|
33
33
|
ON_ALLOCATION_CREATION = 'on_allocation_creation'
|
|
34
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
34
35
|
|
|
35
36
|
@classmethod
|
|
36
37
|
def from_json(cls, json_str: str) -> Self:
|
|
37
38
|
"""Create an instance of DocumentTriggerEvent from a JSON string"""
|
|
38
39
|
return cls(json.loads(json_str))
|
|
39
40
|
|
|
41
|
+
@classmethod
|
|
42
|
+
def _missing_(cls, value):
|
|
43
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
44
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
40
45
|
|
|
@@ -33,10 +33,15 @@ class FiscalDocumentKind(str, Enum):
|
|
|
33
33
|
PRO_FORMA_INVOICE = 'PRO_FORMA_INVOICE'
|
|
34
34
|
REFUND_RECEIPT = 'REFUND_RECEIPT'
|
|
35
35
|
INVOICE_RECEIPT = 'INVOICE_RECEIPT'
|
|
36
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
36
37
|
|
|
37
38
|
@classmethod
|
|
38
39
|
def from_json(cls, json_str: str) -> Self:
|
|
39
40
|
"""Create an instance of FiscalDocumentKind from a JSON string"""
|
|
40
41
|
return cls(json.loads(json_str))
|
|
41
42
|
|
|
43
|
+
@classmethod
|
|
44
|
+
def _missing_(cls, value):
|
|
45
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
46
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
42
47
|
|
|
@@ -45,10 +45,15 @@ class FiscalDocumentStatus(str, Enum):
|
|
|
45
45
|
ACCEPTED = 'ACCEPTED'
|
|
46
46
|
PENDING_TRANSACTION = 'PENDING_TRANSACTION'
|
|
47
47
|
ALLOCATED = 'ALLOCATED'
|
|
48
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
48
49
|
|
|
49
50
|
@classmethod
|
|
50
51
|
def from_json(cls, json_str: str) -> Self:
|
|
51
52
|
"""Create an instance of FiscalDocumentStatus from a JSON string"""
|
|
52
53
|
return cls(json.loads(json_str))
|
|
53
54
|
|
|
55
|
+
@classmethod
|
|
56
|
+
def _missing_(cls, value):
|
|
57
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
58
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
54
59
|
|
|
@@ -48,12 +48,13 @@ class FiscalDocumentTransactionResponse(BaseModel):
|
|
|
48
48
|
|
|
49
49
|
@field_validator('status')
|
|
50
50
|
def status_validate_enum(cls, value):
|
|
51
|
-
"""Validates the enum"""
|
|
51
|
+
"""Validates the enum, returning unknown_default_open_api for unrecognized values"""
|
|
52
52
|
if value is None:
|
|
53
53
|
return value
|
|
54
54
|
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
_allowed_values = set(['PENDING', 'POSTED', 'unknown_default_open_api'])
|
|
56
|
+
if value not in _allowed_values:
|
|
57
|
+
return 'unknown_default_open_api'
|
|
57
58
|
return value
|
|
58
59
|
|
|
59
60
|
model_config = ConfigDict(
|
|
@@ -32,10 +32,15 @@ class GuestDocumentType(str, Enum):
|
|
|
32
32
|
PASSPORT = 'passport'
|
|
33
33
|
DNI = 'dni'
|
|
34
34
|
NIE = 'nie'
|
|
35
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
35
36
|
|
|
36
37
|
@classmethod
|
|
37
38
|
def from_json(cls, json_str: str) -> Self:
|
|
38
39
|
"""Create an instance of GuestDocumentType from a JSON string"""
|
|
39
40
|
return cls(json.loads(json_str))
|
|
40
41
|
|
|
42
|
+
@classmethod
|
|
43
|
+
def _missing_(cls, value):
|
|
44
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
45
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
41
46
|
|
|
@@ -29,10 +29,15 @@ class GuestGender(str, Enum):
|
|
|
29
29
|
M = 'M'
|
|
30
30
|
F = 'F'
|
|
31
31
|
N_SLASH_A = 'N/A'
|
|
32
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
32
33
|
|
|
33
34
|
@classmethod
|
|
34
35
|
def from_json(cls, json_str: str) -> Self:
|
|
35
36
|
"""Create an instance of GuestGender from a JSON string"""
|
|
36
37
|
return cls(json.loads(json_str))
|
|
37
38
|
|
|
39
|
+
@classmethod
|
|
40
|
+
def _missing_(cls, value):
|
|
41
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
42
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
38
43
|
|
|
@@ -36,12 +36,13 @@ class IntegrationSignature(BaseModel):
|
|
|
36
36
|
|
|
37
37
|
@field_validator('format')
|
|
38
38
|
def format_validate_enum(cls, value):
|
|
39
|
-
"""Validates the enum"""
|
|
39
|
+
"""Validates the enum, returning unknown_default_open_api for unrecognized values"""
|
|
40
40
|
if value is None:
|
|
41
41
|
return value
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
_allowed_values = set(['TEXT', 'BASE64', 'HEX', 'URL', 'UNKNOWN', 'unknown_default_open_api'])
|
|
44
|
+
if value not in _allowed_values:
|
|
45
|
+
return 'unknown_default_open_api'
|
|
45
46
|
return value
|
|
46
47
|
|
|
47
48
|
model_config = ConfigDict(
|
|
@@ -40,12 +40,13 @@ class LinkedDocument(BaseModel):
|
|
|
40
40
|
|
|
41
41
|
@field_validator('relationship_type')
|
|
42
42
|
def relationship_type_validate_enum(cls, value):
|
|
43
|
-
"""Validates the enum"""
|
|
43
|
+
"""Validates the enum, returning unknown_default_open_api for unrecognized values"""
|
|
44
44
|
if value is None:
|
|
45
45
|
return value
|
|
46
46
|
|
|
47
|
-
|
|
48
|
-
|
|
47
|
+
_allowed_values = set(['PARENT', 'CHILD', 'unknown_default_open_api'])
|
|
48
|
+
if value not in _allowed_values:
|
|
49
|
+
return 'unknown_default_open_api'
|
|
49
50
|
return value
|
|
50
51
|
|
|
51
52
|
model_config = ConfigDict(
|
|
@@ -44,9 +44,10 @@ class ManualRecipientRequest(BaseModel):
|
|
|
44
44
|
|
|
45
45
|
@field_validator('type')
|
|
46
46
|
def type_validate_enum(cls, value):
|
|
47
|
-
"""Validates the enum"""
|
|
48
|
-
|
|
49
|
-
|
|
47
|
+
"""Validates the enum, returning unknown_default_open_api for unrecognized values"""
|
|
48
|
+
_allowed_values = set(['PERSON', 'COMPANY', 'unknown_default_open_api'])
|
|
49
|
+
if value not in _allowed_values:
|
|
50
|
+
return 'unknown_default_open_api'
|
|
50
51
|
return value
|
|
51
52
|
|
|
52
53
|
model_config = ConfigDict(
|
|
@@ -31,9 +31,10 @@ class ProFormaStatusUpdateRequest(BaseModel):
|
|
|
31
31
|
|
|
32
32
|
@field_validator('status')
|
|
33
33
|
def status_validate_enum(cls, value):
|
|
34
|
-
"""Validates the enum"""
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
"""Validates the enum, returning unknown_default_open_api for unrecognized values"""
|
|
35
|
+
_allowed_values = set(['ACCEPTED', 'REJECTED', 'CANCELED', 'unknown_default_open_api'])
|
|
36
|
+
if value not in _allowed_values:
|
|
37
|
+
return 'unknown_default_open_api'
|
|
37
38
|
return value
|
|
38
39
|
|
|
39
40
|
model_config = ConfigDict(
|
|
@@ -34,19 +34,21 @@ class RecipientRequest(BaseModel):
|
|
|
34
34
|
|
|
35
35
|
@field_validator('type')
|
|
36
36
|
def type_validate_enum(cls, value):
|
|
37
|
-
"""Validates the enum"""
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
"""Validates the enum, returning unknown_default_open_api for unrecognized values"""
|
|
38
|
+
_allowed_values = set(['GUEST', 'CONTACT', 'GROUP', 'COMPANY', 'GROUP_PROFILE', 'GROUP_PROFILE_CONTACT', 'unknown_default_open_api'])
|
|
39
|
+
if value not in _allowed_values:
|
|
40
|
+
return 'unknown_default_open_api'
|
|
40
41
|
return value
|
|
41
42
|
|
|
42
43
|
@field_validator('tax_document_source')
|
|
43
44
|
def tax_document_source_validate_enum(cls, value):
|
|
44
|
-
"""Validates the enum"""
|
|
45
|
+
"""Validates the enum, returning unknown_default_open_api for unrecognized values"""
|
|
45
46
|
if value is None:
|
|
46
47
|
return value
|
|
47
48
|
|
|
48
|
-
|
|
49
|
-
|
|
49
|
+
_allowed_values = set(['GUEST_TAX_ID', 'GUEST_DOCUMENT_NUMBER', 'unknown_default_open_api'])
|
|
50
|
+
if value not in _allowed_values:
|
|
51
|
+
return 'unknown_default_open_api'
|
|
50
52
|
return value
|
|
51
53
|
|
|
52
54
|
model_config = ConfigDict(
|
|
@@ -29,10 +29,15 @@ class RecipientType(str, Enum):
|
|
|
29
29
|
COMPANY = 'COMPANY'
|
|
30
30
|
PERSON = 'PERSON'
|
|
31
31
|
MANUAL = 'MANUAL'
|
|
32
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
32
33
|
|
|
33
34
|
@classmethod
|
|
34
35
|
def from_json(cls, json_str: str) -> Self:
|
|
35
36
|
"""Create an instance of RecipientType from a JSON string"""
|
|
36
37
|
return cls(json.loads(json_str))
|
|
37
38
|
|
|
39
|
+
@classmethod
|
|
40
|
+
def _missing_(cls, value):
|
|
41
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
42
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
38
43
|
|
|
@@ -30,10 +30,15 @@ class SourceKind(str, Enum):
|
|
|
30
30
|
RESERVATION = 'RESERVATION'
|
|
31
31
|
HOUSE_ACCOUNT = 'HOUSE_ACCOUNT'
|
|
32
32
|
ACCOUNTS_RECEIVABLE_LEDGER = 'ACCOUNTS_RECEIVABLE_LEDGER'
|
|
33
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
33
34
|
|
|
34
35
|
@classmethod
|
|
35
36
|
def from_json(cls, json_str: str) -> Self:
|
|
36
37
|
"""Create an instance of SourceKind from a JSON string"""
|
|
37
38
|
return cls(json.loads(json_str))
|
|
38
39
|
|
|
40
|
+
@classmethod
|
|
41
|
+
def _missing_(cls, value):
|
|
42
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
43
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
39
44
|
|
|
@@ -28,10 +28,15 @@ class TransactionStatus(str, Enum):
|
|
|
28
28
|
"""
|
|
29
29
|
POSTED = 'POSTED'
|
|
30
30
|
PENDING = 'PENDING'
|
|
31
|
+
UNKNOWN_DEFAULT_OPEN_API = 'unknown_default_open_api'
|
|
31
32
|
|
|
32
33
|
@classmethod
|
|
33
34
|
def from_json(cls, json_str: str) -> Self:
|
|
34
35
|
"""Create an instance of TransactionStatus from a JSON string"""
|
|
35
36
|
return cls(json.loads(json_str))
|
|
36
37
|
|
|
38
|
+
@classmethod
|
|
39
|
+
def _missing_(cls, value):
|
|
40
|
+
"""Handle unknown enum values by returning the unknown default case."""
|
|
41
|
+
return cls.UNKNOWN_DEFAULT_OPEN_API
|
|
37
42
|
|
{cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.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.18.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.18.0
|
|
61
61
|
- Generator version: 7.11.0
|
|
62
62
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
63
63
|
|
{cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.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=WrYHVBVpFd9HTXLzFr8vNTgGmEFNQuJTtk8UuorYtbs,7402
|
|
2
|
+
cloudbeds_fiscal_document/api_client.py,sha256=SFyMBLDoqdl7n-QIBuPKCAeJCtKNzlFYmiqByyvLMZo,27558
|
|
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=lYtvarupKbk0StLygI4dB8DBMqPUnY8tmRog2MqyLdY,19339
|
|
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
|
|
@@ -22,20 +22,20 @@ cloudbeds_fiscal_document/models/create_credit_note_request.py,sha256=MUi-gNI7w-
|
|
|
22
22
|
cloudbeds_fiscal_document/models/create_invoice_request.py,sha256=93mLzJti1XppoVB4447eiFUoemHc7SYRR4LxKtw0koI,6745
|
|
23
23
|
cloudbeds_fiscal_document/models/create_receipt_request.py,sha256=_lkQZ3VJ_L7IXqa1wXNIWSEFEqAhjQhWdqrKzpMCdnc,6929
|
|
24
24
|
cloudbeds_fiscal_document/models/create_simple_receipt_request.py,sha256=DQldwvU4TwYdPIu7FwxUXGV1d1rZsNANt71tMEoaLKI,4866
|
|
25
|
-
cloudbeds_fiscal_document/models/creation_method.py,sha256=
|
|
26
|
-
cloudbeds_fiscal_document/models/document_action.py,sha256=
|
|
27
|
-
cloudbeds_fiscal_document/models/document_trigger_event.py,sha256=
|
|
25
|
+
cloudbeds_fiscal_document/models/creation_method.py,sha256=8B6c0ubHWDvlHEz2zpALA0E5oq-8nzqRsFc9gODuzDY,1006
|
|
26
|
+
cloudbeds_fiscal_document/models/document_action.py,sha256=jgO7zU_My8xODmNPbGCXTBoHKlTvG0ltJ2XL5a2cDb8,1279
|
|
27
|
+
cloudbeds_fiscal_document/models/document_trigger_event.py,sha256=qhjJwaND2Ubrrwa_Q00saCMzRT0yBhRw84OGXMA1LIM,1188
|
|
28
28
|
cloudbeds_fiscal_document/models/fiscal_document_detailed_response.py,sha256=qpGqBTkI7aMZQk8hRJCQoHyn-k_xkoX-GKy-MYbQlrI,9748
|
|
29
29
|
cloudbeds_fiscal_document/models/fiscal_document_email_request.py,sha256=ytVW_0v_7II2SbX7ZypkcLc6M6xUtArpDutwnRUspkM,2645
|
|
30
30
|
cloudbeds_fiscal_document/models/fiscal_document_filters.py,sha256=6pMIeIWJ5jXWjRe21dkuMgbpYjUTT2fZi2c72LqVC6o,7255
|
|
31
|
-
cloudbeds_fiscal_document/models/fiscal_document_kind.py,sha256=
|
|
31
|
+
cloudbeds_fiscal_document/models/fiscal_document_kind.py,sha256=L2PmtmiuY0D-MYBA_-_wBVCTDrG_fAEEVyecAUtUU9k,1217
|
|
32
32
|
cloudbeds_fiscal_document/models/fiscal_document_paginated.py,sha256=I-K13zc33S1m0sI5A1u9_6Ojd2k1Oq5G2gjh0eihAgo,3500
|
|
33
33
|
cloudbeds_fiscal_document/models/fiscal_document_patch_request.py,sha256=HVM8jUUR9-StJoJJDeBbs8R1rY3N7QFUFQMS5RsZgSk,3431
|
|
34
34
|
cloudbeds_fiscal_document/models/fiscal_document_recipient.py,sha256=beNutHuZnKJtQtSJf0YDgSjbTbZ2418MoMBl-PErp2A,5555
|
|
35
|
-
cloudbeds_fiscal_document/models/fiscal_document_status.py,sha256=
|
|
35
|
+
cloudbeds_fiscal_document/models/fiscal_document_status.py,sha256=8gUvJdCQ684XMvL_wczGXUFOaNkyDULq3jhreNiluIo,1631
|
|
36
36
|
cloudbeds_fiscal_document/models/fiscal_document_summary_response.py,sha256=hI-UMNN_tSAMAhqXHzDjkMb1xAF-dy3a3jtSOFM7NIs,3683
|
|
37
37
|
cloudbeds_fiscal_document/models/fiscal_document_transaction_allocation.py,sha256=PJgrP5Pp0LL9hfvKbbSXFeTMQwkA3lk4PVewy3HC1es,2682
|
|
38
|
-
cloudbeds_fiscal_document/models/fiscal_document_transaction_response.py,sha256=
|
|
38
|
+
cloudbeds_fiscal_document/models/fiscal_document_transaction_response.py,sha256=gz2JSeePzxWeAgT0qRLUObbUb9IXW2dXPt-0QIRu0Qs,5947
|
|
39
39
|
cloudbeds_fiscal_document/models/fiscal_document_transactions_for_allocation_paginated.py,sha256=E_UWdxrwpHorIx1eINyE4v1RcYhNI8ABs_3u9eqBXbI,3525
|
|
40
40
|
cloudbeds_fiscal_document/models/fiscal_document_transactions_paginated.py,sha256=tyumvukW0nI7tgKBYxXu_1wP4NMFTwd-AuRZkIGRgq0,3477
|
|
41
41
|
cloudbeds_fiscal_document/models/fiscal_document_transactions_summary.py,sha256=kzncs_ojUBQ_cEQKM0ul7As7-giYUHC5ET4tiJsBOJM,3674
|
|
@@ -47,20 +47,20 @@ cloudbeds_fiscal_document/models/get_logo_response.py,sha256=N0ACeqAlmxXYP3fm0m2
|
|
|
47
47
|
cloudbeds_fiscal_document/models/get_rectify_invoice_note_preview_request.py,sha256=NGq70CB3fsaW_hNiRas3r62crcfGA-l4WR4gip15PlA,5704
|
|
48
48
|
cloudbeds_fiscal_document/models/government_integration.py,sha256=pz9baLjwlWe9aOUOynJtq92oZH7LKargMLFu_1zk-S4,5339
|
|
49
49
|
cloudbeds_fiscal_document/models/government_integration_qr.py,sha256=GBgifWUH3KjcF--7d-WcOWjOedAauLJbbuGDdlnSPGk,2638
|
|
50
|
-
cloudbeds_fiscal_document/models/guest_document_type.py,sha256=
|
|
51
|
-
cloudbeds_fiscal_document/models/guest_gender.py,sha256=
|
|
52
|
-
cloudbeds_fiscal_document/models/integration_signature.py,sha256=
|
|
50
|
+
cloudbeds_fiscal_document/models/guest_document_type.py,sha256=LnX8UVuqGZAXiwG15WbXuNko7UAyH7y1lo7P9Tf8dWE,1127
|
|
51
|
+
cloudbeds_fiscal_document/models/guest_gender.py,sha256=I4QRkB9-3u0i1TJwJ7FdItAiP_62wW1knte-XB9WCyE,1003
|
|
52
|
+
cloudbeds_fiscal_document/models/integration_signature.py,sha256=Fvp0ksGY181cmK6SrIMKl9-Zkaw8iiY_TVX0KIvR1gs,3996
|
|
53
53
|
cloudbeds_fiscal_document/models/invoice_allocations_response.py,sha256=B7StG6vhmEOwVIwJaIqHqwhOSURvsowvmVFOzdHXGYE,3173
|
|
54
54
|
cloudbeds_fiscal_document/models/invoice_transaction_allocation.py,sha256=dKpu6xNXyWnFE8zImaNG97NU5TH1pgu94E3EXVy6jTs,2962
|
|
55
55
|
cloudbeds_fiscal_document/models/latest_linked_document.py,sha256=alMqlYHkrAVOSapwUtGZ7_ypuoxvYKaIA5nBNd-xUSw,3392
|
|
56
|
-
cloudbeds_fiscal_document/models/linked_document.py,sha256=
|
|
57
|
-
cloudbeds_fiscal_document/models/manual_recipient_request.py,sha256=
|
|
56
|
+
cloudbeds_fiscal_document/models/linked_document.py,sha256=JCwBwhIImCz-PddljNDKN7p33e7dn8zNkAU-o-gL0lg,4366
|
|
57
|
+
cloudbeds_fiscal_document/models/manual_recipient_request.py,sha256=eYb7goklmr7ret8F8tD7-FPHGyRqoXgPyVSL7edFasI,6632
|
|
58
58
|
cloudbeds_fiscal_document/models/manual_recipient_request_address.py,sha256=Cpo1Y9NSTjyGv_VGuLdYhthFvD_WRtFxQ6e3WgzgbVA,4555
|
|
59
59
|
cloudbeds_fiscal_document/models/manual_recipient_request_document.py,sha256=3h_Zz74zb6C3S9ArHVuDThkBtLQoi2JsW16HsKNBdtA,4327
|
|
60
60
|
cloudbeds_fiscal_document/models/preview_request.py,sha256=4OuP4Kprgs2cKKG2SD636OeoOVFc5mMHnEdbsI0o8sw,4248
|
|
61
61
|
cloudbeds_fiscal_document/models/pro_forma_invoice_preview_request.py,sha256=1NcZMKudLaW6wFvpAHXkQHQ3qK7SAMo9F0z45jvveFU,6347
|
|
62
62
|
cloudbeds_fiscal_document/models/pro_forma_invoice_request.py,sha256=6LXECoJY_WomZXhnmQLCvfy3BZq1zDq8Is2obDVIMKY,6319
|
|
63
|
-
cloudbeds_fiscal_document/models/pro_forma_status_update_request.py,sha256=
|
|
63
|
+
cloudbeds_fiscal_document/models/pro_forma_status_update_request.py,sha256=UWRE02D417SvBQNOOhv9dXS-aK2IRglufhBq3GpySDc,3004
|
|
64
64
|
cloudbeds_fiscal_document/models/property_configs_response.py,sha256=9HO3Uui3ZGixDMbDhz3YO0iVP5JQMrdqlIlPUhLYJOw,3291
|
|
65
65
|
cloudbeds_fiscal_document/models/receipt_transaction_allocation.py,sha256=6-0sVsKjGigFBRwKQvTCICxszOMZ4iiUC5xmukassk8,2733
|
|
66
66
|
cloudbeds_fiscal_document/models/recipient_address.py,sha256=BP7Y8uioaVJeN2JpSFb7T-glDXxdtjIv-UfyDHQEm0s,3034
|
|
@@ -68,14 +68,14 @@ cloudbeds_fiscal_document/models/recipient_company.py,sha256=Zp9P7fyAjyrdjEDozsp
|
|
|
68
68
|
cloudbeds_fiscal_document/models/recipient_contact_details.py,sha256=__wf3yyHf7LacpXtO_xQutlHTXtI8fJtqWAgL9lNyLQ,2917
|
|
69
69
|
cloudbeds_fiscal_document/models/recipient_details.py,sha256=1tU8uihhoGB93gL38f6TxfZk4pn2Sc65jzxcs5NtK-4,3264
|
|
70
70
|
cloudbeds_fiscal_document/models/recipient_document.py,sha256=BNyN2z3WGguS_BrR5yB6jO0vS6lrzn5WvgO4ugcTZVg,3114
|
|
71
|
-
cloudbeds_fiscal_document/models/recipient_request.py,sha256=
|
|
71
|
+
cloudbeds_fiscal_document/models/recipient_request.py,sha256=YARM_5v0aatUORHndjo1DRY50Z5m9MwlcG-0z7_0zOE,3908
|
|
72
72
|
cloudbeds_fiscal_document/models/recipient_tax_info.py,sha256=iqc90nHy2mH-YN9XxzlOUq0h2Ra1VR6OAF-vp6w_CN4,2670
|
|
73
|
-
cloudbeds_fiscal_document/models/recipient_type.py,sha256=
|
|
73
|
+
cloudbeds_fiscal_document/models/recipient_type.py,sha256=5h50BS-ZmQt8AgAWFWwYXP80NE4Rc6Pquak3TyxtsXk,1023
|
|
74
74
|
cloudbeds_fiscal_document/models/rectify_invoice_note_request.py,sha256=VeUr0togZ1o_LjqB5YQnyESJQpTQ7trQjgu2Cm5Ol74,5674
|
|
75
75
|
cloudbeds_fiscal_document/models/single_allocation.py,sha256=0PocG0xMX5l02PmoCd1yqT1va3rKLOQJGMhmPwKDf8o,2734
|
|
76
|
-
cloudbeds_fiscal_document/models/source_kind.py,sha256=
|
|
76
|
+
cloudbeds_fiscal_document/models/source_kind.py,sha256=P6FtTndYWkKJK98wCoIPO8dh5kuvqnBjsNy-AAaT7zc,1127
|
|
77
77
|
cloudbeds_fiscal_document/models/transaction_for_allocation_response.py,sha256=HGneX9Lnm1xo401iSfDO43ynk_tA3rJapW5hAeqVi4o,4678
|
|
78
|
-
cloudbeds_fiscal_document/models/transaction_status.py,sha256=
|
|
78
|
+
cloudbeds_fiscal_document/models/transaction_status.py,sha256=xIKZEkVMU4BMExtvhv6eTjq0aepwSu2SF62m_qob8So,1019
|
|
79
79
|
cloudbeds_fiscal_document/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
80
|
cloudbeds_fiscal_document/test/test_action.py,sha256=LHNxQwu-6zA7PfrF7_cskWfXeZRws3N58wKh1LJ6Rzk,1318
|
|
81
81
|
cloudbeds_fiscal_document/test/test_allocate_receipt_payment_request.py,sha256=UmHw55BA4Nn2J6DXBcgg8l8fFwtM7BiyPt7GY1kK1fE,2144
|
|
@@ -146,8 +146,8 @@ cloudbeds_fiscal_document/test/test_single_allocation.py,sha256=Rt_83Z9sOzX021xE
|
|
|
146
146
|
cloudbeds_fiscal_document/test/test_source_kind.py,sha256=Om-4SlTOpzbQNLcHIU6B0OwZ9vmVbRoRRd0KJUKUccY,711
|
|
147
147
|
cloudbeds_fiscal_document/test/test_transaction_for_allocation_response.py,sha256=ziAZ8Qi_50EBl9PtgZPasRuSUL9GPMTkun6YTcfJBE0,2723
|
|
148
148
|
cloudbeds_fiscal_document/test/test_transaction_status.py,sha256=XTzZUsjAoojQ1elLGJoe5CbUU-rxoTdiM8Q5uxv2vW8,760
|
|
149
|
-
cloudbeds_fiscal_document-1.
|
|
150
|
-
cloudbeds_fiscal_document-1.
|
|
151
|
-
cloudbeds_fiscal_document-1.
|
|
152
|
-
cloudbeds_fiscal_document-1.
|
|
153
|
-
cloudbeds_fiscal_document-1.
|
|
149
|
+
cloudbeds_fiscal_document-1.18.0.dist-info/licenses/LICENSE,sha256=noTWyG8XyfILgKHVxo6Z6mWjsXnUZ6AsqRY4pNTdBmg,1093
|
|
150
|
+
cloudbeds_fiscal_document-1.18.0.dist-info/METADATA,sha256=J05mQ_GuUblz_Hq2HMuk9uk_fSV5HgZyS_OajBJKBqU,18631
|
|
151
|
+
cloudbeds_fiscal_document-1.18.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
152
|
+
cloudbeds_fiscal_document-1.18.0.dist-info/top_level.txt,sha256=xDhbzDUymHSRPf7_v5yTWqDdIimGk-7zkWu1zHiL7kc,26
|
|
153
|
+
cloudbeds_fiscal_document-1.18.0.dist-info/RECORD,,
|
{cloudbeds_fiscal_document-1.17.0.dist-info → cloudbeds_fiscal_document-1.18.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|