cloudbeds-fiscal-document 1.10.0__py3-none-any.whl → 1.11.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.
Files changed (37) hide show
  1. cloudbeds_fiscal_document/__init__.py +2 -1
  2. cloudbeds_fiscal_document/api/fiscal_documents_api.py +22 -388
  3. cloudbeds_fiscal_document/api_client.py +1 -1
  4. cloudbeds_fiscal_document/configuration.py +1 -1
  5. cloudbeds_fiscal_document/models/__init__.py +1 -0
  6. cloudbeds_fiscal_document/models/configs_update_request.py +8 -2
  7. cloudbeds_fiscal_document/models/create_receipt_request.py +3 -5
  8. cloudbeds_fiscal_document/models/fiscal_document_kind.py +0 -1
  9. cloudbeds_fiscal_document/models/government_integration.py +3 -5
  10. cloudbeds_fiscal_document/models/transaction_for_allocation_response.py +4 -1
  11. cloudbeds_fiscal_document/models/transaction_status.py +37 -0
  12. cloudbeds_fiscal_document/test/test_configs_api.py +28 -0
  13. cloudbeds_fiscal_document/test/test_configs_response.py +9 -1
  14. cloudbeds_fiscal_document/test/test_configs_update_request.py +12 -4
  15. cloudbeds_fiscal_document/test/test_create_credit_note_request.py +13 -6
  16. cloudbeds_fiscal_document/test/test_create_invoice_request.py +22 -8
  17. cloudbeds_fiscal_document/test/test_fiscal_document_detailed_response.py +32 -5
  18. cloudbeds_fiscal_document/test/test_fiscal_document_paginated.py +29 -7
  19. cloudbeds_fiscal_document/test/test_fiscal_document_patch_request.py +3 -1
  20. cloudbeds_fiscal_document/test/test_fiscal_document_recipient.py +25 -3
  21. cloudbeds_fiscal_document/test/test_fiscal_document_summary_response.py +2 -1
  22. cloudbeds_fiscal_document/test/test_fiscal_document_transaction_response.py +7 -1
  23. cloudbeds_fiscal_document/test/test_fiscal_document_transactions_for_allocation_paginated.py +1 -0
  24. cloudbeds_fiscal_document/test/test_fiscal_document_transactions_paginated.py +7 -1
  25. cloudbeds_fiscal_document/test/test_fiscal_documents_api.py +113 -1
  26. cloudbeds_fiscal_document/test/test_get_invoice_preview_request.py +2 -1
  27. cloudbeds_fiscal_document/test/test_government_integration.py +2 -1
  28. cloudbeds_fiscal_document/test/test_recipient_details.py +4 -2
  29. cloudbeds_fiscal_document/test/test_recipient_tax_info.py +2 -1
  30. cloudbeds_fiscal_document/test/test_rectify_invoice_note_request.py +9 -0
  31. cloudbeds_fiscal_document/test/test_transaction_for_allocation_response.py +3 -1
  32. cloudbeds_fiscal_document/test/test_transaction_status.py +33 -0
  33. {cloudbeds_fiscal_document-1.10.0.dist-info → cloudbeds_fiscal_document-1.11.0.dist-info}/METADATA +3 -3
  34. {cloudbeds_fiscal_document-1.10.0.dist-info → cloudbeds_fiscal_document-1.11.0.dist-info}/RECORD +37 -35
  35. {cloudbeds_fiscal_document-1.10.0.dist-info → cloudbeds_fiscal_document-1.11.0.dist-info}/WHEEL +0 -0
  36. {cloudbeds_fiscal_document-1.10.0.dist-info → cloudbeds_fiscal_document-1.11.0.dist-info}/licenses/LICENSE +0 -0
  37. {cloudbeds_fiscal_document-1.10.0.dist-info → cloudbeds_fiscal_document-1.11.0.dist-info}/top_level.txt +0 -0
@@ -26,6 +26,13 @@ class TestFiscalDocumentsApi(unittest.TestCase):
26
26
  def tearDown(self) -> None:
27
27
  pass
28
28
 
29
+ def test_allocate_receipt_payment(self) -> None:
30
+ """Test case for allocate_receipt_payment
31
+
32
+ Allocate payment associated with receipt to charge transactions.
33
+ """
34
+ pass
35
+
29
36
  def test_create_credit_note(self) -> None:
30
37
  """Test case for create_credit_note
31
38
 
@@ -40,6 +47,34 @@ class TestFiscalDocumentsApi(unittest.TestCase):
40
47
  """
41
48
  pass
42
49
 
50
+ def test_create_pro_forma_invoice(self) -> None:
51
+ """Test case for create_pro_forma_invoice
52
+
53
+ Create a fiscal document of the type pro forma invoice
54
+ """
55
+ pass
56
+
57
+ def test_create_receipt(self) -> None:
58
+ """Test case for create_receipt
59
+
60
+ Create receipt for a payment.
61
+ """
62
+ pass
63
+
64
+ def test_create_rectify_invoice(self) -> None:
65
+ """Test case for create_rectify_invoice
66
+
67
+ Create a fiscal document of the type rectify invoice
68
+ """
69
+ pass
70
+
71
+ def test_create_simple_receipt(self) -> None:
72
+ """Test case for create_simple_receipt
73
+
74
+ Create simple receipts.
75
+ """
76
+ pass
77
+
43
78
  def test_download_fiscal_document(self) -> None:
44
79
  """Test case for download_fiscal_document
45
80
 
@@ -54,6 +89,34 @@ class TestFiscalDocumentsApi(unittest.TestCase):
54
89
  """
55
90
  pass
56
91
 
92
+ def test_get_allocations(self) -> None:
93
+ """Test case for get_allocations
94
+
95
+ Get payment allocation transactions
96
+ """
97
+ pass
98
+
99
+ def test_get_allocations_summary(self) -> None:
100
+ """Test case for get_allocations_summary
101
+
102
+ Get allocations summary
103
+ """
104
+ pass
105
+
106
+ def test_get_credit_note_preview(self) -> None:
107
+ """Test case for get_credit_note_preview
108
+
109
+ Get fiscal document preview of the type credit note
110
+ """
111
+ pass
112
+
113
+ def test_get_document_preview(self) -> None:
114
+ """Test case for get_document_preview
115
+
116
+ Get fiscal document preview of the type invoice
117
+ """
118
+ pass
119
+
57
120
  def test_get_fiscal_document_recipients_by_id(self) -> None:
58
121
  """Test case for get_fiscal_document_recipients_by_id
59
122
 
@@ -64,7 +127,7 @@ class TestFiscalDocumentsApi(unittest.TestCase):
64
127
  def test_get_fiscal_document_transactions(self) -> None:
65
128
  """Test case for get_fiscal_document_transactions
66
129
 
67
- Get list of fiscal documents
130
+ Get available transactions for fiscal documents
68
131
  """
69
132
  pass
70
133
 
@@ -75,6 +138,13 @@ class TestFiscalDocumentsApi(unittest.TestCase):
75
138
  """
76
139
  pass
77
140
 
141
+ def test_get_fiscal_document_transactions_for_allocation(self) -> None:
142
+ """Test case for get_fiscal_document_transactions_for_allocation
143
+
144
+ Get available transactions for allocations
145
+ """
146
+ pass
147
+
78
148
  def test_get_fiscal_documents(self) -> None:
79
149
  """Test case for get_fiscal_documents
80
150
 
@@ -82,6 +152,34 @@ class TestFiscalDocumentsApi(unittest.TestCase):
82
152
  """
83
153
  pass
84
154
 
155
+ def test_get_pro_forma_preview(self) -> None:
156
+ """Test case for get_pro_forma_preview
157
+
158
+ Create a fiscal document of the type pro forma invoice
159
+ """
160
+ pass
161
+
162
+ def test_get_rectify_invoice_preview(self) -> None:
163
+ """Test case for get_rectify_invoice_preview
164
+
165
+ Get fiscal document preview of the type rectify invoice
166
+ """
167
+ pass
168
+
169
+ def test_get_selected_transactions_summary(self) -> None:
170
+ """Test case for get_selected_transactions_summary
171
+
172
+ Get totals of selected available transactions for fiscal documents
173
+ """
174
+ pass
175
+
176
+ def test_get_transactions_summary_by_document_id(self) -> None:
177
+ """Test case for get_transactions_summary_by_document_id
178
+
179
+ Get totals of transactions for a given fiscal document id
180
+ """
181
+ pass
182
+
85
183
  def test_put_fiscal_document(self) -> None:
86
184
  """Test case for put_fiscal_document
87
185
 
@@ -89,6 +187,20 @@ class TestFiscalDocumentsApi(unittest.TestCase):
89
187
  """
90
188
  pass
91
189
 
190
+ def test_update_pro_forma_invoice_status(self) -> None:
191
+ """Test case for update_pro_forma_invoice_status
192
+
193
+ Update pro forma invoice status
194
+ """
195
+ pass
196
+
197
+ def test_void_receipt(self) -> None:
198
+ """Test case for void_receipt
199
+
200
+ Void a receipt
201
+ """
202
+ pass
203
+
92
204
 
93
205
  if __name__ == '__main__':
94
206
  unittest.main()
@@ -53,7 +53,8 @@ class TestGetInvoicePreviewRequest(unittest.TestCase):
53
53
  ],
54
54
  include_transaction_ids = [
55
55
  1
56
- ]
56
+ ],
57
+ simplified = True
57
58
  )
58
59
  else:
59
60
  return GetInvoicePreviewRequest(
@@ -44,7 +44,8 @@ class TestGovernmentIntegration(unittest.TestCase):
44
44
  url = '',
45
45
  official_id = '',
46
46
  external_id = '',
47
- rectifying_invoice_type = ''
47
+ rectifying_invoice_type = '',
48
+ cancellation_failed_fallback_status = 'COMPLETED'
48
49
  )
49
50
  else:
50
51
  return GovernmentIntegration(
@@ -35,10 +35,12 @@ class TestRecipientDetails(unittest.TestCase):
35
35
  model = RecipientDetails()
36
36
  if include_optional:
37
37
  return RecipientDetails(
38
- id = '',
38
+ id = '0',
39
39
  first_name = '',
40
40
  last_name = '',
41
- email = ''
41
+ email = '',
42
+ type = 'COMPANY',
43
+ company_name = ''
42
44
  )
43
45
  else:
44
46
  return RecipientDetails(
@@ -35,7 +35,8 @@ class TestRecipientTaxInfo(unittest.TestCase):
35
35
  model = RecipientTaxInfo()
36
36
  if include_optional:
37
37
  return RecipientTaxInfo(
38
- id = ''
38
+ id = '',
39
+ company_name = ''
39
40
  )
40
41
  else:
41
42
  return RecipientTaxInfo(
@@ -40,6 +40,15 @@ class TestRectifyInvoiceNoteRequest(unittest.TestCase):
40
40
  user_id = 56,
41
41
  method = 'VOID',
42
42
  transaction_ids = [
43
+ 1
44
+ ],
45
+ folio_ids = [
46
+ 1
47
+ ],
48
+ exclude_transaction_ids = [
49
+ 1
50
+ ],
51
+ include_transaction_ids = [
43
52
  1
44
53
  ]
45
54
  )
@@ -44,6 +44,7 @@ class TestTransactionForAllocationResponse(unittest.TestCase):
44
44
  internal_code = '',
45
45
  amount = 1.337,
46
46
  allocated_amount = 1.337,
47
+ status = 'POSTED',
47
48
  taxes = [
48
49
  cloudbeds_fiscal_document.models.transaction_for_allocation_response.TransactionForAllocationResponse(
49
50
  id = '',
@@ -54,7 +55,8 @@ class TestTransactionForAllocationResponse(unittest.TestCase):
54
55
  description = '',
55
56
  internal_code = '',
56
57
  amount = 1.337,
57
- allocated_amount = 1.337, )
58
+ allocated_amount = 1.337,
59
+ status = 'POSTED', )
58
60
  ]
59
61
  )
60
62
  else:
@@ -0,0 +1,33 @@
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.transaction_status import TransactionStatus
18
+
19
+ class TestTransactionStatus(unittest.TestCase):
20
+ """TransactionStatus unit test stubs"""
21
+
22
+ def setUp(self):
23
+ pass
24
+
25
+ def tearDown(self):
26
+ pass
27
+
28
+ def testTransactionStatus(self):
29
+ """Test TransactionStatus"""
30
+ # inst = TransactionStatus()
31
+
32
+ if __name__ == '__main__':
33
+ unittest.main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cloudbeds_fiscal_document
3
- Version: 1.10.0
3
+ Version: 1.11.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.10.0
60
+ - Package version: 1.11.0
61
61
  - Generator version: 7.11.0
62
62
  - Build package: org.openapitools.codegen.languages.PythonClientCodegen
63
63
 
@@ -144,7 +144,6 @@ Class | Method | HTTP request | Description
144
144
  *FiscalDocumentsApi* | [**get_allocations_summary**](cloudbeds_fiscal_document/docs/FiscalDocumentsApi.md#get_allocations_summary) | **GET** /fiscal-document/v1/fiscal-documents/allocations/summary | Get allocations summary
145
145
  *FiscalDocumentsApi* | [**get_credit_note_preview**](cloudbeds_fiscal_document/docs/FiscalDocumentsApi.md#get_credit_note_preview) | **POST** /fiscal-document/v1/fiscal-documents/credit-note/preview | Get fiscal document preview of the type credit note
146
146
  *FiscalDocumentsApi* | [**get_document_preview**](cloudbeds_fiscal_document/docs/FiscalDocumentsApi.md#get_document_preview) | **POST** /fiscal-document/v1/fiscal-documents/invoice/preview | Get fiscal document preview of the type invoice
147
- *FiscalDocumentsApi* | [**get_fiscal_document_pending_transactions_for_allocation**](cloudbeds_fiscal_document/docs/FiscalDocumentsApi.md#get_fiscal_document_pending_transactions_for_allocation) | **GET** /fiscal-document/v1/fiscal-documents/allocations/pending-transactions | Get available pending transactions for allocations
148
147
  *FiscalDocumentsApi* | [**get_fiscal_document_recipients_by_id**](cloudbeds_fiscal_document/docs/FiscalDocumentsApi.md#get_fiscal_document_recipients_by_id) | **GET** /fiscal-document/v1/fiscal-documents/{id}/recipients | Get list of recipients associated to the fiscal document
149
148
  *FiscalDocumentsApi* | [**get_fiscal_document_transactions**](cloudbeds_fiscal_document/docs/FiscalDocumentsApi.md#get_fiscal_document_transactions) | **GET** /fiscal-document/v1/fiscal-documents/transactions | Get available transactions for fiscal documents
150
149
  *FiscalDocumentsApi* | [**get_fiscal_document_transactions_by_id**](cloudbeds_fiscal_document/docs/FiscalDocumentsApi.md#get_fiscal_document_transactions_by_id) | **GET** /fiscal-document/v1/fiscal-documents/{id}/transactions | Get list of transactions for a given fiscal document id
@@ -216,6 +215,7 @@ Class | Method | HTTP request | Description
216
215
  - [SingleAllocation](cloudbeds_fiscal_document/docs/SingleAllocation.md)
217
216
  - [SourceKind](cloudbeds_fiscal_document/docs/SourceKind.md)
218
217
  - [TransactionForAllocationResponse](cloudbeds_fiscal_document/docs/TransactionForAllocationResponse.md)
218
+ - [TransactionStatus](cloudbeds_fiscal_document/docs/TransactionStatus.md)
219
219
 
220
220
 
221
221
  <a id="documentation-for-authorization"></a>
@@ -1,25 +1,25 @@
1
- cloudbeds_fiscal_document/__init__.py,sha256=ptxNoHCdflpzL2iwbpwtLVpYla4R0RcEn55KF35pUyI,6407
2
- cloudbeds_fiscal_document/api_client.py,sha256=y3KTm1ravV3VVOhP7YEVeueFDwxFP3Ajg_AXQGWnFUk,27558
1
+ cloudbeds_fiscal_document/__init__.py,sha256=29n5UMvF8hh5uLzi2EP8HLRSKU8drROvoHiNoX6TwkU,6489
2
+ cloudbeds_fiscal_document/api_client.py,sha256=Y_hfGuhsfVxgF_nFXNYPRqhgaJCJGNMi3OFRmTwORL0,27558
3
3
  cloudbeds_fiscal_document/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- cloudbeds_fiscal_document/configuration.py,sha256=l8-cJFlWOn1pGoEAFrUF46beHDALXcX_TelVHd70Dzc,19339
4
+ cloudbeds_fiscal_document/configuration.py,sha256=yD_x0kn43Ktkn-DX7vRMKyZXGMwTlVQ0ZVK9M6j8zdE,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
8
8
  cloudbeds_fiscal_document/api/__init__.py,sha256=Wwz734y2sXXISY2DrXD6haW-RUAG5dfXVXhNy9OwoY0,262
9
9
  cloudbeds_fiscal_document/api/configs_api.py,sha256=gcPSv27YnTDhlblF6k5r_D9PpOG4ZIgtUrbskIGLdDQ,67338
10
10
  cloudbeds_fiscal_document/api/features_api.py,sha256=u_OO8wEoAcNxd18dN-PaLxrNEhB94Wv4M6DnLgGGWaM,11623
11
- cloudbeds_fiscal_document/api/fiscal_documents_api.py,sha256=wyWkktE9-Y--4k4tNXcluCO8q3f1C9aDZDsU3_pJsbc,358725
12
- cloudbeds_fiscal_document/models/__init__.py,sha256=PvdWggjKqrmmj2ljE7ZVvBhfpi8JS9eBgtGLUzemdbc,5549
11
+ cloudbeds_fiscal_document/api/fiscal_documents_api.py,sha256=L8rqQt98ktuU6npu7zLR_Nq05epJnJttiCApIStxj4Y,342824
12
+ cloudbeds_fiscal_document/models/__init__.py,sha256=EbO_yHwabUBCa5IzbEc_H4lbimj6lxDpvZ9fCOw6fWI,5631
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_data.py,sha256=SrXu1LA3xeCpEhz83mw1dmxd7b6EZ7Oplw-tFZTk1yA,3623
16
16
  cloudbeds_fiscal_document/models/allocations_summary.py,sha256=O5y-LaC117ixAdOy99FcuEvXgTZA2YPegY97RKxoN0w,2826
17
17
  cloudbeds_fiscal_document/models/api_error.py,sha256=pU4rS-VJvFb-iyYEiCT1UxyjY5_VWINExfRpSrJX8aQ,2911
18
18
  cloudbeds_fiscal_document/models/configs_response.py,sha256=nKAv1uR_CXMK2ww3DIwz-anQYOYry4o10B6zbHHTcj0,6845
19
- cloudbeds_fiscal_document/models/configs_update_request.py,sha256=XhOFw8XfL9z1gIfJF6MjPj1O4aqkZN-XO2107GauB1M,9336
19
+ cloudbeds_fiscal_document/models/configs_update_request.py,sha256=5tfCrzsFCWvmRIdCIhj0SdjkyL7V2mHHXxElFTfbPg4,9622
20
20
  cloudbeds_fiscal_document/models/create_credit_note_request.py,sha256=MUi-gNI7w-elxviSz9uFVUJxb1xuLQlfl-99MUfBeIE,4895
21
21
  cloudbeds_fiscal_document/models/create_invoice_request.py,sha256=cdq6FxywoFNWHy3A_dlO5hBWXCBJC7bkiHV4ZlvlfUk,5275
22
- cloudbeds_fiscal_document/models/create_receipt_request.py,sha256=LCP-YGA6JSgQDmd07edVH-SrNEojhpuZWbwHK2Prr_E,6014
22
+ cloudbeds_fiscal_document/models/create_receipt_request.py,sha256=tOuxVOnVuSgTG3-94qU3MkhsAdH3XzdOS4gvas_Rdb8,5639
23
23
  cloudbeds_fiscal_document/models/create_simple_receipt_request.py,sha256=FpsSZ_EExF8vs0euBmf9EjGKpCDEg5hKSjaX0uz-sdM,3967
24
24
  cloudbeds_fiscal_document/models/creation_method.py,sha256=vZD9e9cnodeE8MXhudSC_GxRUSnLVle4QjoYw_aHPyE,776
25
25
  cloudbeds_fiscal_document/models/document_action.py,sha256=ZLmuXvQAvEzYBi_zihT28LsEMv30yupWr7riRI4mt5E,999
@@ -27,7 +27,7 @@ cloudbeds_fiscal_document/models/document_trigger_event.py,sha256=PzPMkjIRaERZpq
27
27
  cloudbeds_fiscal_document/models/fiscal_document_detailed_response.py,sha256=qpGqBTkI7aMZQk8hRJCQoHyn-k_xkoX-GKy-MYbQlrI,9748
28
28
  cloudbeds_fiscal_document/models/fiscal_document_email_request.py,sha256=ytVW_0v_7II2SbX7ZypkcLc6M6xUtArpDutwnRUspkM,2645
29
29
  cloudbeds_fiscal_document/models/fiscal_document_filters.py,sha256=6pMIeIWJ5jXWjRe21dkuMgbpYjUTT2fZi2c72LqVC6o,7255
30
- cloudbeds_fiscal_document/models/fiscal_document_kind.py,sha256=EuCKUCCB3JNIDvC_u4WmzGUFh6P3rdaCMWt1znA9be8,993
30
+ cloudbeds_fiscal_document/models/fiscal_document_kind.py,sha256=mhBxebOdArSu1E42anKLX9BlK2xb573Sgh0bsWUyQp4,947
31
31
  cloudbeds_fiscal_document/models/fiscal_document_paginated.py,sha256=I-K13zc33S1m0sI5A1u9_6Ojd2k1Oq5G2gjh0eihAgo,3500
32
32
  cloudbeds_fiscal_document/models/fiscal_document_patch_request.py,sha256=HVM8jUUR9-StJoJJDeBbs8R1rY3N7QFUFQMS5RsZgSk,3431
33
33
  cloudbeds_fiscal_document/models/fiscal_document_recipient.py,sha256=beNutHuZnKJtQtSJf0YDgSjbTbZ2418MoMBl-PErp2A,5555
@@ -43,7 +43,7 @@ cloudbeds_fiscal_document/models/get_credit_note_preview_request.py,sha256=nAZxA
43
43
  cloudbeds_fiscal_document/models/get_invoice_preview_request.py,sha256=HGsH56_smHsIOqzvjlO1BCuOUkWsy_as0rEPGhg5k-I,5291
44
44
  cloudbeds_fiscal_document/models/get_logo_response.py,sha256=N0ACeqAlmxXYP3fm0m2-5XUS7LEWaXstg07XVAfzfoo,2625
45
45
  cloudbeds_fiscal_document/models/get_rectify_invoice_note_preview_request.py,sha256=NGq70CB3fsaW_hNiRas3r62crcfGA-l4WR4gip15PlA,5704
46
- cloudbeds_fiscal_document/models/government_integration.py,sha256=AcaY2ulUlz9LxQNACllN_U05wkF5aM9fBn13QWgDXEo,4308
46
+ cloudbeds_fiscal_document/models/government_integration.py,sha256=yQTpQxlJFXIIgzUj5r2zXbhWYRL8tO1JYd6dAfKHPFs,4051
47
47
  cloudbeds_fiscal_document/models/government_integration_qr.py,sha256=GBgifWUH3KjcF--7d-WcOWjOedAauLJbbuGDdlnSPGk,2638
48
48
  cloudbeds_fiscal_document/models/latest_linked_document.py,sha256=alMqlYHkrAVOSapwUtGZ7_ypuoxvYKaIA5nBNd-xUSw,3392
49
49
  cloudbeds_fiscal_document/models/linked_document.py,sha256=XnJA3aUm7TT6g-lXv_lmKes1ZOh_fWRR07vH1zGKXYo,4269
@@ -64,45 +64,46 @@ cloudbeds_fiscal_document/models/recipient_type.py,sha256=L-LIQwW_vD3zTJZV-DrKAT
64
64
  cloudbeds_fiscal_document/models/rectify_invoice_note_request.py,sha256=VeUr0togZ1o_LjqB5YQnyESJQpTQ7trQjgu2Cm5Ol74,5674
65
65
  cloudbeds_fiscal_document/models/single_allocation.py,sha256=0PocG0xMX5l02PmoCd1yqT1va3rKLOQJGMhmPwKDf8o,2734
66
66
  cloudbeds_fiscal_document/models/source_kind.py,sha256=nizJ67cMNlS0pXxQtmhHkWalHBwR3U9goU9ebsnSgJA,897
67
- cloudbeds_fiscal_document/models/transaction_for_allocation_response.py,sha256=22HwK8WhTCFSeIyaJwTQ6XL9JjCPhBiHRMYWq3SvU0c,4498
67
+ cloudbeds_fiscal_document/models/transaction_for_allocation_response.py,sha256=HGneX9Lnm1xo401iSfDO43ynk_tA3rJapW5hAeqVi4o,4678
68
+ cloudbeds_fiscal_document/models/transaction_status.py,sha256=kCtWgYU6Fzu4BD0589S8xcvZ4jIpxPNeUTHK7CdPy8E,789
68
69
  cloudbeds_fiscal_document/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
70
  cloudbeds_fiscal_document/test/test_action.py,sha256=LHNxQwu-6zA7PfrF7_cskWfXeZRws3N58wKh1LJ6Rzk,1318
70
71
  cloudbeds_fiscal_document/test/test_allocate_receipt_payment_request.py,sha256=UmHw55BA4Nn2J6DXBcgg8l8fFwtM7BiyPt7GY1kK1fE,2144
71
72
  cloudbeds_fiscal_document/test/test_allocations_data.py,sha256=vHfdXunoHkM12Td1ah7WxtQcEqAgQ9UkjBlBu9iRJog,1826
72
73
  cloudbeds_fiscal_document/test/test_allocations_summary.py,sha256=GI0bFzdbXdR7h1A_J00fHG7qDON2w0KsS3c9VX8g39I,1509
73
74
  cloudbeds_fiscal_document/test/test_api_error.py,sha256=9sOehEiYyuaR2KZ-WAyvV5a6nIsAhrE5-qWyUCInDQs,1510
74
- cloudbeds_fiscal_document/test/test_configs_api.py,sha256=K4mVkJm49YhLlbNDentvWXt-9m_p-zQNEX4zi-POymE,957
75
- cloudbeds_fiscal_document/test/test_configs_response.py,sha256=zPjQVcii3w9_IMsdUv0v8k_3VfcgcHouylBoHBv84Fk,2177
76
- cloudbeds_fiscal_document/test/test_configs_update_request.py,sha256=4Wz9GttFhYqIAjLmRbbF6J_8W-2xgzZ9oOiDYgUbIKI,2458
77
- cloudbeds_fiscal_document/test/test_create_credit_note_request.py,sha256=5UnQFqdJDIGmKqkZbxuDxza5KUy2mtesErICZthL07A,1861
78
- cloudbeds_fiscal_document/test/test_create_invoice_request.py,sha256=HwedooqwiQpq_xGtl9-lRFd1mxhxz8MmqlDCTvpkFSk,1903
75
+ cloudbeds_fiscal_document/test/test_configs_api.py,sha256=kCsl8gvLbVs3dKxr8M4PtvjKK1BsLinAbjaZat23xFk,1546
76
+ cloudbeds_fiscal_document/test/test_configs_response.py,sha256=1xlKvSqESaRU9TrTVLEYBeUdDG-Cr8ql4TA4cErY_dc,2538
77
+ cloudbeds_fiscal_document/test/test_configs_update_request.py,sha256=kJXNyPBmk5cSYWQ6sgs5lCTJ_ZacWI2KhasK3AzCxV0,2869
78
+ cloudbeds_fiscal_document/test/test_create_credit_note_request.py,sha256=oPVyoh0jgVqC99fuHZQ2c_WA08TElmMuIF0tyA96RJ4,2051
79
+ cloudbeds_fiscal_document/test/test_create_invoice_request.py,sha256=6_xdwOVQiyeqQAQH30BGw68dv6J4jbiK60SlNp80EBs,2453
79
80
  cloudbeds_fiscal_document/test/test_create_receipt_request.py,sha256=pyH0x2BVYaAy4SfBBVImLx1_XbIfltBfRi9Q5vuE73w,2362
80
81
  cloudbeds_fiscal_document/test/test_create_simple_receipt_request.py,sha256=6J8ToKWeqXLNXWfGA8qzHYCqjrquXqQEgBWrvujQGzY,2272
81
82
  cloudbeds_fiscal_document/test/test_creation_method.py,sha256=QsvJTAVO42HJGxwZXbG_92mIW-Qh5WeHD6OH1bPOMjI,739
82
83
  cloudbeds_fiscal_document/test/test_document_action.py,sha256=PdLHn8nFOCNyUmVzLxTHPz77X5oyv6fwdUf4LHT0ZNw,739
83
84
  cloudbeds_fiscal_document/test/test_document_trigger_event.py,sha256=ffmC02-VfHl_KYLuF2zk5tMCWEaSfWfclWQnAriRCos,782
84
85
  cloudbeds_fiscal_document/test/test_features_api.py,sha256=pS-DtRaMJ5DoTgySMys6PP95oA-4Y0PV-ruTcnWOsBU,846
85
- cloudbeds_fiscal_document/test/test_fiscal_document_detailed_response.py,sha256=sds3mM9KOkbwonucwWTUN6m553_mWoVtpGv2pmKSX1w,3475
86
+ cloudbeds_fiscal_document/test/test_fiscal_document_detailed_response.py,sha256=aQ9wreQy5Q-G9_SsAXsfP59iSoDhirNJ5bc-rZhshlE,4951
86
87
  cloudbeds_fiscal_document/test/test_fiscal_document_email_request.py,sha256=_-jeMSFaxkoz0J_NqAGkLzJIYachmQ7gSujdd2aicWA,1674
87
88
  cloudbeds_fiscal_document/test/test_fiscal_document_filters.py,sha256=BNDvykJgedpVFAdNuyoIK483yvoxmlwxFDOIHM2CHdE,3084
88
89
  cloudbeds_fiscal_document/test/test_fiscal_document_kind.py,sha256=Q5RzQqZMRalXOkX6y0214EeiLe8Zt7j9bjk2VKzwKjE,768
89
- cloudbeds_fiscal_document/test/test_fiscal_document_paginated.py,sha256=Xcmic3pfZYw21D2toT8vPELVG7JTg4PNOAVTpX9pL-4,3907
90
- cloudbeds_fiscal_document/test/test_fiscal_document_patch_request.py,sha256=zrHl-rzwlndrhLTYQbvhPlWLLpT1j0jkALV9R-pLprA,2136
91
- cloudbeds_fiscal_document/test/test_fiscal_document_recipient.py,sha256=FMaKUWRJobSBfHQq1XW7gR0V6tXIwi3U4NLmmGQclb8,2161
90
+ cloudbeds_fiscal_document/test/test_fiscal_document_paginated.py,sha256=lAQ33UAXs2ywYEZ-lIuHwaetQYC0QUBeN9PBuoyRgW0,5355
91
+ cloudbeds_fiscal_document/test/test_fiscal_document_patch_request.py,sha256=NcgFhYs6Ex10x0I7KG45nAJwjovMBSpHgUIJU0aphig,2242
92
+ cloudbeds_fiscal_document/test/test_fiscal_document_recipient.py,sha256=VnREb55BnerDk4s_vJmysg3AjWbeO5N1uWRFobANL3I,3385
92
93
  cloudbeds_fiscal_document/test/test_fiscal_document_status.py,sha256=58sLMnQ2aPXAH7VecAIWqEs6m0RJd7WbSICEprOR0wA,782
93
- cloudbeds_fiscal_document/test/test_fiscal_document_summary_response.py,sha256=H0-bppX1h8slLpMbmIh5jGDqNp-iGIs7yG947ZuLL28,2263
94
+ cloudbeds_fiscal_document/test/test_fiscal_document_summary_response.py,sha256=JCPm0S8pLgulFs4YCRYF_HMulYejFpiZr0NWuEl0-2M,2335
94
95
  cloudbeds_fiscal_document/test/test_fiscal_document_transaction_allocation.py,sha256=2afwMmb78D61T7xpba7RsH2hx47ntud1eBrSIxbi6nc,1673
95
- cloudbeds_fiscal_document/test/test_fiscal_document_transaction_response.py,sha256=Be2UUaQfFkKL73z1kSU1lIWVTS8K_05pR2TZ_1XJMTM,2029
96
- cloudbeds_fiscal_document/test/test_fiscal_document_transactions_for_allocation_paginated.py,sha256=zFHayt46uAPAL07Yv9dnlLluGjnzHa5PSHM54v83XFA,3170
97
- cloudbeds_fiscal_document/test/test_fiscal_document_transactions_paginated.py,sha256=8SH1YS8lz2uSy7MYTvy0s923cKa-brw9D9N438OPe5c,2363
96
+ cloudbeds_fiscal_document/test/test_fiscal_document_transaction_response.py,sha256=-YrgafJL4W7nR6y8sVWkf7t9MdaUcaaoSc5e_jk-2BE,2333
97
+ cloudbeds_fiscal_document/test/test_fiscal_document_transactions_for_allocation_paginated.py,sha256=aL5NlzaZbD6B_D3KiIsPnwp9c4Jb1UlabG9lCQSiGOk,3214
98
+ cloudbeds_fiscal_document/test/test_fiscal_document_transactions_paginated.py,sha256=bWT-HX_mgWNlwyVohRr-EykFM7aB4mE8ATPx2_QIjeY,2718
98
99
  cloudbeds_fiscal_document/test/test_fiscal_document_transactions_summary.py,sha256=UKIQ3pIK5vtxsfsZg3ZOlGFyYM_pyr1XrL26jzCCHSM,2017
99
100
  cloudbeds_fiscal_document/test/test_fiscal_document_transactions_summary_taxes_inner.py,sha256=h01QaeR1d8JlTxT_AZKNrXfxk6AfWplvIJO3O6TKth8,1790
100
- cloudbeds_fiscal_document/test/test_fiscal_documents_api.py,sha256=1Frcw1MsPv0Ko81vp165RrANTbS_vUwjSuE6AQj0eJ8,2294
101
+ cloudbeds_fiscal_document/test/test_fiscal_documents_api.py,sha256=I4t_cTd-Tjl8X_F1t0DEPvYUYpeYwgPtC63597MWKV8,5258
101
102
  cloudbeds_fiscal_document/test/test_get_credit_note_preview_request.py,sha256=lZHAdCUW8j9EbuxOzhXnjfMuV2f2u_-CeQP0UmZ_lWc,2100
102
- cloudbeds_fiscal_document/test/test_get_invoice_preview_request.py,sha256=jnCsoJPCCF-q3384dv4A0vTE6GYYeliHgYMPKQdEezQ,2467
103
+ cloudbeds_fiscal_document/test/test_get_invoice_preview_request.py,sha256=-s2nJGQYwAD6xlcGzMgtLv-Zl1dCOnhzz4G4Di3PfTE,2502
103
104
  cloudbeds_fiscal_document/test/test_get_logo_response.py,sha256=ZsEbZ4OEGPD0UVLcjksTDsC4lHL_-IsivR0lKyYmMME,1426
104
105
  cloudbeds_fiscal_document/test/test_get_rectify_invoice_note_preview_request.py,sha256=22rbOSZEkjNaknkM-KDyQKOX4HbdXU1S316fGasdVMc,2163
105
- cloudbeds_fiscal_document/test/test_government_integration.py,sha256=elYaNrzon04zY3uiKhez9w9pFRV9WzmWj78xYFHlCfg,1866
106
+ cloudbeds_fiscal_document/test/test_government_integration.py,sha256=73ZnPWQNI2daKRjgUmY5g9si0ijEh7A-5AEdoSLgZvg,1933
106
107
  cloudbeds_fiscal_document/test/test_government_integration_qr.py,sha256=UmMtFUyw_MRK61ehch5SOh1IfQWsCyo25sBAdzHQaCc,1546
107
108
  cloudbeds_fiscal_document/test/test_latest_linked_document.py,sha256=lLZMJlzSJWYEkyoYE3l1znOwG68DL5H2WKypY51hMBk,1688
108
109
  cloudbeds_fiscal_document/test/test_linked_document.py,sha256=sQACh20uixUFq5kKAHX3Xs-oi05W_URsrQkanr1q0K8,1695
@@ -115,17 +116,18 @@ cloudbeds_fiscal_document/test/test_receipt_transaction_allocation.py,sha256=nCI
115
116
  cloudbeds_fiscal_document/test/test_recipient_address.py,sha256=l_uRjcBO8zmmw1Ie9kFqMgLhfQa12vrHINBTrOIsUv8,1584
116
117
  cloudbeds_fiscal_document/test/test_recipient_company.py,sha256=TVfDlHW7SVvyfwuQLZQ6o0Jn09WjuBVqYA6IW8mbqP8,1674
117
118
  cloudbeds_fiscal_document/test/test_recipient_contact_details.py,sha256=gdyM8mTtIILq_aAR9s8_HM-oeqSIR5WYtldzGtlWyWk,1686
118
- cloudbeds_fiscal_document/test/test_recipient_details.py,sha256=pqRRiYHrBxflODhlSyH4Cuf1H4on0dm57WZDZ106z9A,1524
119
+ cloudbeds_fiscal_document/test/test_recipient_details.py,sha256=YNGzZnZPdX_Lz578Fb6CMHnf28rrX5aBoESCDQSQ6s0,1594
119
120
  cloudbeds_fiscal_document/test/test_recipient_document.py,sha256=4gmEd1juh8RFeBYgnee7J81ZD8mRFU_QcJ-c2NmxWts,1731
120
121
  cloudbeds_fiscal_document/test/test_recipient_request.py,sha256=r633H7TUyZlfm4Vl-qaI77EUSRset5_sHyA7kIJGvd0,1518
121
- cloudbeds_fiscal_document/test/test_recipient_tax_info.py,sha256=taTaups6r0Z7RwiLHVbavUWF8ylVhTw0p1Nx_npQLi4,1432
122
+ cloudbeds_fiscal_document/test/test_recipient_tax_info.py,sha256=WXYdGNLPmtqh0yOfLoreU4XXDY1VEAX4HmgT23HawU0,1467
122
123
  cloudbeds_fiscal_document/test/test_recipient_type.py,sha256=SxhGt0jOU_ZCZanauuYIK4r8RRlXXKx732oJuKWSA4U,732
123
- cloudbeds_fiscal_document/test/test_rectify_invoice_note_request.py,sha256=otxuP5tiGrS4b7PzAwUujh8XmKDZxIKIpYX4aJ08ztw,1788
124
+ cloudbeds_fiscal_document/test/test_rectify_invoice_note_request.py,sha256=u46fJqCxt0WXn3wxWifseGv3_Rm-EMh4ALdi99pKedU,2041
124
125
  cloudbeds_fiscal_document/test/test_single_allocation.py,sha256=Rt_83Z9sOzX021xEghaDmuLjg2dTiUP9Oe5RcA_Gnjg,1495
125
126
  cloudbeds_fiscal_document/test/test_source_kind.py,sha256=Om-4SlTOpzbQNLcHIU6B0OwZ9vmVbRoRRd0KJUKUccY,711
126
- cloudbeds_fiscal_document/test/test_transaction_for_allocation_response.py,sha256=8YWz4HEPCpe5LmxBb1rd9vVrxOdvaH0AzpAjpj3WazM,2644
127
- cloudbeds_fiscal_document-1.10.0.dist-info/licenses/LICENSE,sha256=noTWyG8XyfILgKHVxo6Z6mWjsXnUZ6AsqRY4pNTdBmg,1093
128
- cloudbeds_fiscal_document-1.10.0.dist-info/METADATA,sha256=11kAapiDvA7AkNcLrWHOplYjeYw-vWkEUDoW2wwEodQ,17678
129
- cloudbeds_fiscal_document-1.10.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
130
- cloudbeds_fiscal_document-1.10.0.dist-info/top_level.txt,sha256=xDhbzDUymHSRPf7_v5yTWqDdIimGk-7zkWu1zHiL7kc,26
131
- cloudbeds_fiscal_document-1.10.0.dist-info/RECORD,,
127
+ cloudbeds_fiscal_document/test/test_transaction_for_allocation_response.py,sha256=ziAZ8Qi_50EBl9PtgZPasRuSUL9GPMTkun6YTcfJBE0,2723
128
+ cloudbeds_fiscal_document/test/test_transaction_status.py,sha256=XTzZUsjAoojQ1elLGJoe5CbUU-rxoTdiM8Q5uxv2vW8,760
129
+ cloudbeds_fiscal_document-1.11.0.dist-info/licenses/LICENSE,sha256=noTWyG8XyfILgKHVxo6Z6mWjsXnUZ6AsqRY4pNTdBmg,1093
130
+ cloudbeds_fiscal_document-1.11.0.dist-info/METADATA,sha256=BWNnTFkbQsVeBC7PkZjIDJrwtD7m3vDcbWVWBXz0v3A,17426
131
+ cloudbeds_fiscal_document-1.11.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
132
+ cloudbeds_fiscal_document-1.11.0.dist-info/top_level.txt,sha256=xDhbzDUymHSRPf7_v5yTWqDdIimGk-7zkWu1zHiL7kc,26
133
+ cloudbeds_fiscal_document-1.11.0.dist-info/RECORD,,