BasisTheoryClient 4.1.0__tar.gz → 4.2.0__tar.gz

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 (293) hide show
  1. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/PKG-INFO +1 -1
  2. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/pyproject.toml +1 -1
  3. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/__init__.py +4 -2
  4. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/client.py +14 -2
  5. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/raw_client.py +8 -0
  6. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/session/client.py +16 -2
  7. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/session/raw_client.py +8 -0
  8. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/reactors/client.py +13 -37
  9. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/reactors/raw_client.py +25 -49
  10. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/__init__.py +4 -2
  11. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/additional_card_detail.py +6 -0
  12. basistheoryclient-4.2.0/src/basis_theory/types/card_bin_range.py +22 -0
  13. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/card_details_response.py +6 -0
  14. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/proxy_transform_options.py +2 -6
  15. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/reactor.py +2 -3
  16. basistheoryclient-4.1.0/src/basis_theory/types/runtime_options.py → basistheoryclient-4.2.0/src/basis_theory/types/runtime.py +2 -1
  17. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/LICENSE +0 -0
  18. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/README.md +0 -0
  19. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/__init__.py +0 -0
  20. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/client.py +0 -0
  21. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/jobs/__init__.py +0 -0
  22. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/jobs/client.py +0 -0
  23. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/jobs/raw_client.py +0 -0
  24. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/raw_client.py +0 -0
  25. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/real_time/__init__.py +0 -0
  26. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/real_time/client.py +0 -0
  27. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/account_updater/real_time/raw_client.py +0 -0
  28. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/__init__.py +0 -0
  29. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/domain/__init__.py +0 -0
  30. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/domain/client.py +0 -0
  31. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/domain/raw_client.py +0 -0
  32. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/merchant/__init__.py +0 -0
  33. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/merchant/certificates/__init__.py +0 -0
  34. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/merchant/certificates/client.py +0 -0
  35. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/merchant/certificates/raw_client.py +0 -0
  36. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/merchant/client.py +0 -0
  37. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/merchant/raw_client.py +0 -0
  38. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/apple_pay/session/__init__.py +0 -0
  39. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/application_keys/__init__.py +0 -0
  40. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/application_keys/client.py +0 -0
  41. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/application_keys/raw_client.py +0 -0
  42. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/application_templates/__init__.py +0 -0
  43. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/application_templates/client.py +0 -0
  44. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/application_templates/raw_client.py +0 -0
  45. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/applications/__init__.py +0 -0
  46. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/applications/client.py +0 -0
  47. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/applications/raw_client.py +0 -0
  48. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/client.py +0 -0
  49. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/__init__.py +0 -0
  50. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/api_error.py +0 -0
  51. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/client_wrapper.py +0 -0
  52. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/datetime_utils.py +0 -0
  53. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/file.py +0 -0
  54. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/force_multipart.py +0 -0
  55. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/http_client.py +0 -0
  56. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/http_response.py +0 -0
  57. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/jsonable_encoder.py +0 -0
  58. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/pagination.py +0 -0
  59. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/pydantic_utilities.py +0 -0
  60. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/query_encoder.py +0 -0
  61. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/remove_none_from_dict.py +0 -0
  62. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/request_options.py +0 -0
  63. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/core/serialization.py +0 -0
  64. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/documents/__init__.py +0 -0
  65. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/documents/client.py +0 -0
  66. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/documents/data/__init__.py +0 -0
  67. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/documents/data/client.py +0 -0
  68. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/documents/data/raw_client.py +0 -0
  69. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/documents/raw_client.py +0 -0
  70. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/enrichments/__init__.py +0 -0
  71. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/enrichments/client.py +0 -0
  72. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/enrichments/raw_client.py +0 -0
  73. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/environment.py +0 -0
  74. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/__init__.py +0 -0
  75. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/bad_request_error.py +0 -0
  76. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/conflict_error.py +0 -0
  77. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/forbidden_error.py +0 -0
  78. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/internal_server_error.py +0 -0
  79. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/not_found_error.py +0 -0
  80. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/service_unavailable_error.py +0 -0
  81. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/unauthorized_error.py +0 -0
  82. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/errors/unprocessable_entity_error.py +0 -0
  83. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/__init__.py +0 -0
  84. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/client.py +0 -0
  85. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/merchant/__init__.py +0 -0
  86. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/merchant/certificates/__init__.py +0 -0
  87. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/merchant/certificates/client.py +0 -0
  88. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/merchant/certificates/raw_client.py +0 -0
  89. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/merchant/client.py +0 -0
  90. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/merchant/raw_client.py +0 -0
  91. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/google_pay/raw_client.py +0 -0
  92. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/keys/__init__.py +0 -0
  93. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/keys/client.py +0 -0
  94. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/keys/raw_client.py +0 -0
  95. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/logs/__init__.py +0 -0
  96. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/logs/client.py +0 -0
  97. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/logs/raw_client.py +0 -0
  98. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/network_tokens/__init__.py +0 -0
  99. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/network_tokens/client.py +0 -0
  100. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/network_tokens/raw_client.py +0 -0
  101. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/permissions/__init__.py +0 -0
  102. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/permissions/client.py +0 -0
  103. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/permissions/raw_client.py +0 -0
  104. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/proxies/__init__.py +0 -0
  105. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/proxies/client.py +0 -0
  106. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/proxies/raw_client.py +0 -0
  107. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/py.typed +0 -0
  108. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/reactors/__init__.py +0 -0
  109. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/reactors/results/__init__.py +0 -0
  110. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/reactors/results/client.py +0 -0
  111. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/reactors/results/raw_client.py +0 -0
  112. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/roles/__init__.py +0 -0
  113. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/roles/client.py +0 -0
  114. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/roles/raw_client.py +0 -0
  115. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/sessions/__init__.py +0 -0
  116. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/sessions/client.py +0 -0
  117. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/sessions/raw_client.py +0 -0
  118. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/__init__.py +0 -0
  119. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/client.py +0 -0
  120. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/connections/__init__.py +0 -0
  121. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/connections/client.py +0 -0
  122. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/connections/raw_client.py +0 -0
  123. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/invitations/__init__.py +0 -0
  124. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/invitations/client.py +0 -0
  125. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/invitations/raw_client.py +0 -0
  126. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/members/__init__.py +0 -0
  127. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/members/client.py +0 -0
  128. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/members/raw_client.py +0 -0
  129. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/owner/__init__.py +0 -0
  130. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/owner/client.py +0 -0
  131. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/owner/raw_client.py +0 -0
  132. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/raw_client.py +0 -0
  133. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/self_/__init__.py +0 -0
  134. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/self_/client.py +0 -0
  135. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tenants/self_/raw_client.py +0 -0
  136. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/threeds/__init__.py +0 -0
  137. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/threeds/client.py +0 -0
  138. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/threeds/raw_client.py +0 -0
  139. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/threeds/sessions/__init__.py +0 -0
  140. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/threeds/sessions/client.py +0 -0
  141. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/threeds/sessions/raw_client.py +0 -0
  142. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/token_intents/__init__.py +0 -0
  143. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/token_intents/client.py +0 -0
  144. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/token_intents/raw_client.py +0 -0
  145. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tokens/__init__.py +0 -0
  146. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tokens/client.py +0 -0
  147. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/tokens/raw_client.py +0 -0
  148. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/access_rule.py +0 -0
  149. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/account_updater_job.py +0 -0
  150. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/account_updater_job_list.py +0 -0
  151. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/account_updater_job_list_pagination.py +0 -0
  152. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/account_updater_job_status.py +0 -0
  153. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/account_updater_real_time_response.py +0 -0
  154. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/additional_card_details.py +0 -0
  155. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/address.py +0 -0
  156. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_create_response.py +0 -0
  157. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_domain_registration_response.py +0 -0
  158. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_merchant.py +0 -0
  159. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_merchant_certificates.py +0 -0
  160. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_method_token.py +0 -0
  161. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_token.py +0 -0
  162. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_tokenize_request.py +0 -0
  163. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/apple_pay_tokenize_response.py +0 -0
  164. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/application.py +0 -0
  165. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/application_key.py +0 -0
  166. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/application_paginated_list.py +0 -0
  167. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/application_template.py +0 -0
  168. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/assurance_details.py +0 -0
  169. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/async_react_response.py +0 -0
  170. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/authenticate_three_ds_session_request.py +0 -0
  171. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/authentication.py +0 -0
  172. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/authentication_response.py +0 -0
  173. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/bank_details.py +0 -0
  174. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/bank_verification_response.py +0 -0
  175. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/bin_details.py +0 -0
  176. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/bin_details_bank.py +0 -0
  177. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/bin_details_country.py +0 -0
  178. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/bin_details_product.py +0 -0
  179. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/card.py +0 -0
  180. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/card_details.py +0 -0
  181. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/card_issuer.py +0 -0
  182. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/card_issuer_country.py +0 -0
  183. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/card_issuer_details.py +0 -0
  184. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/cardholder_info.py +0 -0
  185. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/client_encryption_key_metadata_response.py +0 -0
  186. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/client_encryption_key_response.py +0 -0
  187. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/condition.py +0 -0
  188. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_account_updater_job_request.py +0 -0
  189. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_document_request.py +0 -0
  190. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_reactor_formula_request.py +0 -0
  191. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_session_response.py +0 -0
  192. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_tenant_connection_response.py +0 -0
  193. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_three_ds_session_response.py +0 -0
  194. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_token_intent_response.py +0 -0
  195. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/create_token_request.py +0 -0
  196. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/cursor_pagination.py +0 -0
  197. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/document.py +0 -0
  198. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/domain_registration_response.py +0 -0
  199. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/event_types.py +0 -0
  200. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_applications.py +0 -0
  201. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_logs.py +0 -0
  202. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_permissions.py +0 -0
  203. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_proxies.py +0 -0
  204. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_reactor_formulas.py +0 -0
  205. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_reactors.py +0 -0
  206. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_tenant_invitations.py +0 -0
  207. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_tenant_members.py +0 -0
  208. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/get_tokens_v2.py +0 -0
  209. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/google_pay_create_response.py +0 -0
  210. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/google_pay_merchant.py +0 -0
  211. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/google_pay_merchant_certificates.py +0 -0
  212. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/google_pay_method_token.py +0 -0
  213. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/google_pay_token.py +0 -0
  214. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/google_pay_tokenize_request.py +0 -0
  215. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/google_pay_tokenize_response.py +0 -0
  216. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/header.py +0 -0
  217. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/intermediate_signing_key.py +0 -0
  218. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/log.py +0 -0
  219. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/log_entity_type.py +0 -0
  220. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/log_paginated_list.py +0 -0
  221. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/network_token.py +0 -0
  222. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/network_token_cryptogram.py +0 -0
  223. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/network_token_extras.py +0 -0
  224. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/pagination.py +0 -0
  225. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/payment_data.py +0 -0
  226. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/permission.py +0 -0
  227. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/privacy.py +0 -0
  228. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/problem_details.py +0 -0
  229. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/proxy.py +0 -0
  230. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/proxy_paginated_list.py +0 -0
  231. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/proxy_transform.py +0 -0
  232. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/public_key.py +0 -0
  233. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/react_response.py +0 -0
  234. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/reactor_formula.py +0 -0
  235. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/reactor_formula_configuration.py +0 -0
  236. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/reactor_formula_paginated_list.py +0 -0
  237. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/reactor_formula_request_parameter.py +0 -0
  238. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/reactor_paginated_list.py +0 -0
  239. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/role.py +0 -0
  240. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/string_string_key_value_pair.py +0 -0
  241. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/submerchant_authentication_response.py +0 -0
  242. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant.py +0 -0
  243. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant_connection_options.py +0 -0
  244. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant_invitation_response.py +0 -0
  245. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant_invitation_response_paginated_list.py +0 -0
  246. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant_invitation_status.py +0 -0
  247. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant_member_response.py +0 -0
  248. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant_member_response_paginated_list.py +0 -0
  249. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/tenant_usage_report.py +0 -0
  250. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_acs_rendering_type.py +0 -0
  251. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_address.py +0 -0
  252. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_authentication.py +0 -0
  253. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_branding_options.py +0 -0
  254. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_callback_urls.py +0 -0
  255. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_cardholder_account_info.py +0 -0
  256. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_cardholder_authentication_info.py +0 -0
  257. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_cardholder_info.py +0 -0
  258. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_cardholder_phone_number.py +0 -0
  259. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_device_info.py +0 -0
  260. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_merchant_info.py +0 -0
  261. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_merchant_risk_info.py +0 -0
  262. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_message_extension.py +0 -0
  263. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_method.py +0 -0
  264. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_mobile_sdk_render_options.py +0 -0
  265. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_prior_authentication_info.py +0 -0
  266. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_purchase_info.py +0 -0
  267. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_requestor_info.py +0 -0
  268. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_session.py +0 -0
  269. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/three_ds_version.py +0 -0
  270. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token.py +0 -0
  271. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_authentication.py +0 -0
  272. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_cursor_paginated_list.py +0 -0
  273. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_enrichments.py +0 -0
  274. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_enrichments_card_details.py +0 -0
  275. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_extras.py +0 -0
  276. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_intent.py +0 -0
  277. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_intent_extras.py +0 -0
  278. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/token_service_provider_details.py +0 -0
  279. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/update_privacy.py +0 -0
  280. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/update_reactor_formula_request.py +0 -0
  281. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/user.py +0 -0
  282. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/validation_problem_details.py +0 -0
  283. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/webhook.py +0 -0
  284. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/webhook_list.py +0 -0
  285. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/webhook_list_pagination.py +0 -0
  286. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/types/webhook_status.py +0 -0
  287. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/version.py +0 -0
  288. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/webhooks/__init__.py +0 -0
  289. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/webhooks/client.py +0 -0
  290. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/webhooks/events/__init__.py +0 -0
  291. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/webhooks/events/client.py +0 -0
  292. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/webhooks/events/raw_client.py +0 -0
  293. {basistheoryclient-4.1.0 → basistheoryclient-4.2.0}/src/basis_theory/webhooks/raw_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: BasisTheoryClient
3
- Version: 4.1.0
3
+ Version: 4.2.0
4
4
  Summary:
5
5
  License: Apache-2.0
6
6
  Requires-Python: >=3.8,<4.0
@@ -3,7 +3,7 @@ name = "BasisTheoryClient"
3
3
 
4
4
  [tool.poetry]
5
5
  name = "BasisTheoryClient"
6
- version = "4.1.0"
6
+ version = "4.2.0"
7
7
  description = ""
8
8
  readme = "README.md"
9
9
  authors = []
@@ -36,6 +36,7 @@ from .types import (
36
36
  BinDetailsCountry,
37
37
  BinDetailsProduct,
38
38
  Card,
39
+ CardBinRange,
39
40
  CardDetails,
40
41
  CardDetailsResponse,
41
42
  CardIssuer,
@@ -99,7 +100,7 @@ from .types import (
99
100
  ReactorFormulaRequestParameter,
100
101
  ReactorPaginatedList,
101
102
  Role,
102
- RuntimeOptions,
103
+ Runtime,
103
104
  StringStringKeyValuePair,
104
105
  SubmerchantAuthenticationResponse,
105
106
  Tenant,
@@ -223,6 +224,7 @@ __all__ = [
223
224
  "BinDetailsCountry",
224
225
  "BinDetailsProduct",
225
226
  "Card",
227
+ "CardBinRange",
226
228
  "CardDetails",
227
229
  "CardDetailsResponse",
228
230
  "CardIssuer",
@@ -290,7 +292,7 @@ __all__ = [
290
292
  "ReactorFormulaRequestParameter",
291
293
  "ReactorPaginatedList",
292
294
  "Role",
293
- "RuntimeOptions",
295
+ "Runtime",
294
296
  "ServiceUnavailableError",
295
297
  "StringStringKeyValuePair",
296
298
  "SubmerchantAuthenticationResponse",
@@ -41,6 +41,7 @@ class ApplePayClient:
41
41
  *,
42
42
  expires_at: typing.Optional[str] = OMIT,
43
43
  apple_payment_data: typing.Optional[ApplePayMethodToken] = OMIT,
44
+ merchant_registration_id: typing.Optional[str] = OMIT,
44
45
  request_options: typing.Optional[RequestOptions] = None,
45
46
  ) -> ApplePayCreateResponse:
46
47
  """
@@ -50,6 +51,8 @@ class ApplePayClient:
50
51
 
51
52
  apple_payment_data : typing.Optional[ApplePayMethodToken]
52
53
 
54
+ merchant_registration_id : typing.Optional[str]
55
+
53
56
  request_options : typing.Optional[RequestOptions]
54
57
  Request-specific configuration.
55
58
 
@@ -69,7 +72,10 @@ class ApplePayClient:
69
72
  client.apple_pay.create()
70
73
  """
71
74
  _response = self._raw_client.create(
72
- expires_at=expires_at, apple_payment_data=apple_payment_data, request_options=request_options
75
+ expires_at=expires_at,
76
+ apple_payment_data=apple_payment_data,
77
+ merchant_registration_id=merchant_registration_id,
78
+ request_options=request_options,
73
79
  )
74
80
  return _response.data
75
81
 
@@ -157,6 +163,7 @@ class AsyncApplePayClient:
157
163
  *,
158
164
  expires_at: typing.Optional[str] = OMIT,
159
165
  apple_payment_data: typing.Optional[ApplePayMethodToken] = OMIT,
166
+ merchant_registration_id: typing.Optional[str] = OMIT,
160
167
  request_options: typing.Optional[RequestOptions] = None,
161
168
  ) -> ApplePayCreateResponse:
162
169
  """
@@ -166,6 +173,8 @@ class AsyncApplePayClient:
166
173
 
167
174
  apple_payment_data : typing.Optional[ApplePayMethodToken]
168
175
 
176
+ merchant_registration_id : typing.Optional[str]
177
+
169
178
  request_options : typing.Optional[RequestOptions]
170
179
  Request-specific configuration.
171
180
 
@@ -193,7 +202,10 @@ class AsyncApplePayClient:
193
202
  asyncio.run(main())
194
203
  """
195
204
  _response = await self._raw_client.create(
196
- expires_at=expires_at, apple_payment_data=apple_payment_data, request_options=request_options
205
+ expires_at=expires_at,
206
+ apple_payment_data=apple_payment_data,
207
+ merchant_registration_id=merchant_registration_id,
208
+ request_options=request_options,
197
209
  )
198
210
  return _response.data
199
211
 
@@ -34,6 +34,7 @@ class RawApplePayClient:
34
34
  *,
35
35
  expires_at: typing.Optional[str] = OMIT,
36
36
  apple_payment_data: typing.Optional[ApplePayMethodToken] = OMIT,
37
+ merchant_registration_id: typing.Optional[str] = OMIT,
37
38
  request_options: typing.Optional[RequestOptions] = None,
38
39
  ) -> HttpResponse[ApplePayCreateResponse]:
39
40
  """
@@ -43,6 +44,8 @@ class RawApplePayClient:
43
44
 
44
45
  apple_payment_data : typing.Optional[ApplePayMethodToken]
45
46
 
47
+ merchant_registration_id : typing.Optional[str]
48
+
46
49
  request_options : typing.Optional[RequestOptions]
47
50
  Request-specific configuration.
48
51
 
@@ -59,6 +62,7 @@ class RawApplePayClient:
59
62
  "apple_payment_data": convert_and_respect_annotation_metadata(
60
63
  object_=apple_payment_data, annotation=ApplePayMethodToken, direction="write"
61
64
  ),
65
+ "merchant_registration_id": merchant_registration_id,
62
66
  },
63
67
  headers={
64
68
  "content-type": "application/json",
@@ -269,6 +273,7 @@ class AsyncRawApplePayClient:
269
273
  *,
270
274
  expires_at: typing.Optional[str] = OMIT,
271
275
  apple_payment_data: typing.Optional[ApplePayMethodToken] = OMIT,
276
+ merchant_registration_id: typing.Optional[str] = OMIT,
272
277
  request_options: typing.Optional[RequestOptions] = None,
273
278
  ) -> AsyncHttpResponse[ApplePayCreateResponse]:
274
279
  """
@@ -278,6 +283,8 @@ class AsyncRawApplePayClient:
278
283
 
279
284
  apple_payment_data : typing.Optional[ApplePayMethodToken]
280
285
 
286
+ merchant_registration_id : typing.Optional[str]
287
+
281
288
  request_options : typing.Optional[RequestOptions]
282
289
  Request-specific configuration.
283
290
 
@@ -294,6 +301,7 @@ class AsyncRawApplePayClient:
294
301
  "apple_payment_data": convert_and_respect_annotation_metadata(
295
302
  object_=apple_payment_data, annotation=ApplePayMethodToken, direction="write"
296
303
  ),
304
+ "merchant_registration_id": merchant_registration_id,
297
305
  },
298
306
  headers={
299
307
  "content-type": "application/json",
@@ -31,6 +31,7 @@ class SessionClient:
31
31
  validation_url: typing.Optional[str] = OMIT,
32
32
  display_name: typing.Optional[str] = OMIT,
33
33
  domain: typing.Optional[str] = OMIT,
34
+ merchant_registration_id: typing.Optional[str] = OMIT,
34
35
  request_options: typing.Optional[RequestOptions] = None,
35
36
  ) -> str:
36
37
  """
@@ -42,6 +43,8 @@ class SessionClient:
42
43
 
43
44
  domain : typing.Optional[str]
44
45
 
46
+ merchant_registration_id : typing.Optional[str]
47
+
45
48
  request_options : typing.Optional[RequestOptions]
46
49
  Request-specific configuration.
47
50
 
@@ -61,7 +64,11 @@ class SessionClient:
61
64
  client.apple_pay.session.create()
62
65
  """
63
66
  _response = self._raw_client.create(
64
- validation_url=validation_url, display_name=display_name, domain=domain, request_options=request_options
67
+ validation_url=validation_url,
68
+ display_name=display_name,
69
+ domain=domain,
70
+ merchant_registration_id=merchant_registration_id,
71
+ request_options=request_options,
65
72
  )
66
73
  return _response.data
67
74
 
@@ -87,6 +94,7 @@ class AsyncSessionClient:
87
94
  validation_url: typing.Optional[str] = OMIT,
88
95
  display_name: typing.Optional[str] = OMIT,
89
96
  domain: typing.Optional[str] = OMIT,
97
+ merchant_registration_id: typing.Optional[str] = OMIT,
90
98
  request_options: typing.Optional[RequestOptions] = None,
91
99
  ) -> str:
92
100
  """
@@ -98,6 +106,8 @@ class AsyncSessionClient:
98
106
 
99
107
  domain : typing.Optional[str]
100
108
 
109
+ merchant_registration_id : typing.Optional[str]
110
+
101
111
  request_options : typing.Optional[RequestOptions]
102
112
  Request-specific configuration.
103
113
 
@@ -125,6 +135,10 @@ class AsyncSessionClient:
125
135
  asyncio.run(main())
126
136
  """
127
137
  _response = await self._raw_client.create(
128
- validation_url=validation_url, display_name=display_name, domain=domain, request_options=request_options
138
+ validation_url=validation_url,
139
+ display_name=display_name,
140
+ domain=domain,
141
+ merchant_registration_id=merchant_registration_id,
142
+ request_options=request_options,
129
143
  )
130
144
  return _response.data
@@ -29,6 +29,7 @@ class RawSessionClient:
29
29
  validation_url: typing.Optional[str] = OMIT,
30
30
  display_name: typing.Optional[str] = OMIT,
31
31
  domain: typing.Optional[str] = OMIT,
32
+ merchant_registration_id: typing.Optional[str] = OMIT,
32
33
  request_options: typing.Optional[RequestOptions] = None,
33
34
  ) -> HttpResponse[str]:
34
35
  """
@@ -40,6 +41,8 @@ class RawSessionClient:
40
41
 
41
42
  domain : typing.Optional[str]
42
43
 
44
+ merchant_registration_id : typing.Optional[str]
45
+
43
46
  request_options : typing.Optional[RequestOptions]
44
47
  Request-specific configuration.
45
48
 
@@ -55,6 +58,7 @@ class RawSessionClient:
55
58
  "validation_url": validation_url,
56
59
  "display_name": display_name,
57
60
  "domain": domain,
61
+ "merchant_registration_id": merchant_registration_id,
58
62
  },
59
63
  headers={
60
64
  "content-type": "application/json",
@@ -132,6 +136,7 @@ class AsyncRawSessionClient:
132
136
  validation_url: typing.Optional[str] = OMIT,
133
137
  display_name: typing.Optional[str] = OMIT,
134
138
  domain: typing.Optional[str] = OMIT,
139
+ merchant_registration_id: typing.Optional[str] = OMIT,
135
140
  request_options: typing.Optional[RequestOptions] = None,
136
141
  ) -> AsyncHttpResponse[str]:
137
142
  """
@@ -143,6 +148,8 @@ class AsyncRawSessionClient:
143
148
 
144
149
  domain : typing.Optional[str]
145
150
 
151
+ merchant_registration_id : typing.Optional[str]
152
+
146
153
  request_options : typing.Optional[RequestOptions]
147
154
  Request-specific configuration.
148
155
 
@@ -158,6 +165,7 @@ class AsyncRawSessionClient:
158
165
  "validation_url": validation_url,
159
166
  "display_name": display_name,
160
167
  "domain": domain,
168
+ "merchant_registration_id": merchant_registration_id,
161
169
  },
162
170
  headers={
163
171
  "content-type": "application/json",
@@ -9,7 +9,7 @@ from ..types.application import Application
9
9
  from ..types.async_react_response import AsyncReactResponse
10
10
  from ..types.react_response import ReactResponse
11
11
  from ..types.reactor import Reactor
12
- from ..types.runtime_options import RuntimeOptions
12
+ from ..types.runtime import Runtime
13
13
  from .raw_client import AsyncRawReactorsClient, RawReactorsClient
14
14
  from .results.client import AsyncResultsClient, ResultsClient
15
15
 
@@ -90,8 +90,7 @@ class ReactorsClient:
90
90
  code: str,
91
91
  application: typing.Optional[Application] = OMIT,
92
92
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
93
- runtime: typing.Optional[str] = OMIT,
94
- options: typing.Optional[RuntimeOptions] = OMIT,
93
+ runtime: typing.Optional[Runtime] = OMIT,
95
94
  idempotency_key: typing.Optional[str] = None,
96
95
  request_options: typing.Optional[RequestOptions] = None,
97
96
  ) -> Reactor:
@@ -106,9 +105,7 @@ class ReactorsClient:
106
105
 
107
106
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
108
107
 
109
- runtime : typing.Optional[str]
110
-
111
- options : typing.Optional[RuntimeOptions]
108
+ runtime : typing.Optional[Runtime]
112
109
 
113
110
  idempotency_key : typing.Optional[str]
114
111
 
@@ -139,7 +136,6 @@ class ReactorsClient:
139
136
  application=application,
140
137
  configuration=configuration,
141
138
  runtime=runtime,
142
- options=options,
143
139
  idempotency_key=idempotency_key,
144
140
  request_options=request_options,
145
141
  )
@@ -182,8 +178,7 @@ class ReactorsClient:
182
178
  code: str,
183
179
  application: typing.Optional[Application] = OMIT,
184
180
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
185
- runtime: typing.Optional[str] = OMIT,
186
- options: typing.Optional[RuntimeOptions] = OMIT,
181
+ runtime: typing.Optional[Runtime] = OMIT,
187
182
  idempotency_key: typing.Optional[str] = None,
188
183
  request_options: typing.Optional[RequestOptions] = None,
189
184
  ) -> Reactor:
@@ -200,9 +195,7 @@ class ReactorsClient:
200
195
 
201
196
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
202
197
 
203
- runtime : typing.Optional[str]
204
-
205
- options : typing.Optional[RuntimeOptions]
198
+ runtime : typing.Optional[Runtime]
206
199
 
207
200
  idempotency_key : typing.Optional[str]
208
201
 
@@ -235,7 +228,6 @@ class ReactorsClient:
235
228
  application=application,
236
229
  configuration=configuration,
237
230
  runtime=runtime,
238
- options=options,
239
231
  idempotency_key=idempotency_key,
240
232
  request_options=request_options,
241
233
  )
@@ -277,8 +269,7 @@ class ReactorsClient:
277
269
  application: typing.Optional[Application] = OMIT,
278
270
  code: typing.Optional[str] = OMIT,
279
271
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
280
- runtime: typing.Optional[str] = OMIT,
281
- options: typing.Optional[RuntimeOptions] = OMIT,
272
+ runtime: typing.Optional[Runtime] = OMIT,
282
273
  idempotency_key: typing.Optional[str] = None,
283
274
  request_options: typing.Optional[RequestOptions] = None,
284
275
  ) -> None:
@@ -295,9 +286,7 @@ class ReactorsClient:
295
286
 
296
287
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
297
288
 
298
- runtime : typing.Optional[str]
299
-
300
- options : typing.Optional[RuntimeOptions]
289
+ runtime : typing.Optional[Runtime]
301
290
 
302
291
  idempotency_key : typing.Optional[str]
303
292
 
@@ -327,7 +316,6 @@ class ReactorsClient:
327
316
  code=code,
328
317
  configuration=configuration,
329
318
  runtime=runtime,
330
- options=options,
331
319
  idempotency_key=idempotency_key,
332
320
  request_options=request_options,
333
321
  )
@@ -493,8 +481,7 @@ class AsyncReactorsClient:
493
481
  code: str,
494
482
  application: typing.Optional[Application] = OMIT,
495
483
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
496
- runtime: typing.Optional[str] = OMIT,
497
- options: typing.Optional[RuntimeOptions] = OMIT,
484
+ runtime: typing.Optional[Runtime] = OMIT,
498
485
  idempotency_key: typing.Optional[str] = None,
499
486
  request_options: typing.Optional[RequestOptions] = None,
500
487
  ) -> Reactor:
@@ -509,9 +496,7 @@ class AsyncReactorsClient:
509
496
 
510
497
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
511
498
 
512
- runtime : typing.Optional[str]
513
-
514
- options : typing.Optional[RuntimeOptions]
499
+ runtime : typing.Optional[Runtime]
515
500
 
516
501
  idempotency_key : typing.Optional[str]
517
502
 
@@ -550,7 +535,6 @@ class AsyncReactorsClient:
550
535
  application=application,
551
536
  configuration=configuration,
552
537
  runtime=runtime,
553
- options=options,
554
538
  idempotency_key=idempotency_key,
555
539
  request_options=request_options,
556
540
  )
@@ -601,8 +585,7 @@ class AsyncReactorsClient:
601
585
  code: str,
602
586
  application: typing.Optional[Application] = OMIT,
603
587
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
604
- runtime: typing.Optional[str] = OMIT,
605
- options: typing.Optional[RuntimeOptions] = OMIT,
588
+ runtime: typing.Optional[Runtime] = OMIT,
606
589
  idempotency_key: typing.Optional[str] = None,
607
590
  request_options: typing.Optional[RequestOptions] = None,
608
591
  ) -> Reactor:
@@ -619,9 +602,7 @@ class AsyncReactorsClient:
619
602
 
620
603
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
621
604
 
622
- runtime : typing.Optional[str]
623
-
624
- options : typing.Optional[RuntimeOptions]
605
+ runtime : typing.Optional[Runtime]
625
606
 
626
607
  idempotency_key : typing.Optional[str]
627
608
 
@@ -662,7 +643,6 @@ class AsyncReactorsClient:
662
643
  application=application,
663
644
  configuration=configuration,
664
645
  runtime=runtime,
665
- options=options,
666
646
  idempotency_key=idempotency_key,
667
647
  request_options=request_options,
668
648
  )
@@ -712,8 +692,7 @@ class AsyncReactorsClient:
712
692
  application: typing.Optional[Application] = OMIT,
713
693
  code: typing.Optional[str] = OMIT,
714
694
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
715
- runtime: typing.Optional[str] = OMIT,
716
- options: typing.Optional[RuntimeOptions] = OMIT,
695
+ runtime: typing.Optional[Runtime] = OMIT,
717
696
  idempotency_key: typing.Optional[str] = None,
718
697
  request_options: typing.Optional[RequestOptions] = None,
719
698
  ) -> None:
@@ -730,9 +709,7 @@ class AsyncReactorsClient:
730
709
 
731
710
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
732
711
 
733
- runtime : typing.Optional[str]
734
-
735
- options : typing.Optional[RuntimeOptions]
712
+ runtime : typing.Optional[Runtime]
736
713
 
737
714
  idempotency_key : typing.Optional[str]
738
715
 
@@ -770,7 +747,6 @@ class AsyncReactorsClient:
770
747
  code=code,
771
748
  configuration=configuration,
772
749
  runtime=runtime,
773
- options=options,
774
750
  idempotency_key=idempotency_key,
775
751
  request_options=request_options,
776
752
  )
@@ -22,7 +22,7 @@ from ..types.problem_details import ProblemDetails
22
22
  from ..types.react_response import ReactResponse
23
23
  from ..types.reactor import Reactor
24
24
  from ..types.reactor_paginated_list import ReactorPaginatedList
25
- from ..types.runtime_options import RuntimeOptions
25
+ from ..types.runtime import Runtime
26
26
  from ..types.validation_problem_details import ValidationProblemDetails
27
27
 
28
28
  # this is used as the default value for optional parameters
@@ -145,8 +145,7 @@ class RawReactorsClient:
145
145
  code: str,
146
146
  application: typing.Optional[Application] = OMIT,
147
147
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
148
- runtime: typing.Optional[str] = OMIT,
149
- options: typing.Optional[RuntimeOptions] = OMIT,
148
+ runtime: typing.Optional[Runtime] = OMIT,
150
149
  idempotency_key: typing.Optional[str] = None,
151
150
  request_options: typing.Optional[RequestOptions] = None,
152
151
  ) -> HttpResponse[Reactor]:
@@ -161,9 +160,7 @@ class RawReactorsClient:
161
160
 
162
161
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
163
162
 
164
- runtime : typing.Optional[str]
165
-
166
- options : typing.Optional[RuntimeOptions]
163
+ runtime : typing.Optional[Runtime]
167
164
 
168
165
  idempotency_key : typing.Optional[str]
169
166
 
@@ -185,9 +182,8 @@ class RawReactorsClient:
185
182
  object_=application, annotation=Application, direction="write"
186
183
  ),
187
184
  "configuration": configuration,
188
- "runtime": runtime,
189
- "options": convert_and_respect_annotation_metadata(
190
- object_=options, annotation=RuntimeOptions, direction="write"
185
+ "runtime": convert_and_respect_annotation_metadata(
186
+ object_=runtime, annotation=Runtime, direction="write"
191
187
  ),
192
188
  },
193
189
  headers={
@@ -320,8 +316,7 @@ class RawReactorsClient:
320
316
  code: str,
321
317
  application: typing.Optional[Application] = OMIT,
322
318
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
323
- runtime: typing.Optional[str] = OMIT,
324
- options: typing.Optional[RuntimeOptions] = OMIT,
319
+ runtime: typing.Optional[Runtime] = OMIT,
325
320
  idempotency_key: typing.Optional[str] = None,
326
321
  request_options: typing.Optional[RequestOptions] = None,
327
322
  ) -> HttpResponse[Reactor]:
@@ -338,9 +333,7 @@ class RawReactorsClient:
338
333
 
339
334
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
340
335
 
341
- runtime : typing.Optional[str]
342
-
343
- options : typing.Optional[RuntimeOptions]
336
+ runtime : typing.Optional[Runtime]
344
337
 
345
338
  idempotency_key : typing.Optional[str]
346
339
 
@@ -362,9 +355,8 @@ class RawReactorsClient:
362
355
  ),
363
356
  "code": code,
364
357
  "configuration": configuration,
365
- "runtime": runtime,
366
- "options": convert_and_respect_annotation_metadata(
367
- object_=options, annotation=RuntimeOptions, direction="write"
358
+ "runtime": convert_and_respect_annotation_metadata(
359
+ object_=runtime, annotation=Runtime, direction="write"
368
360
  ),
369
361
  },
370
362
  headers={
@@ -500,8 +492,7 @@ class RawReactorsClient:
500
492
  application: typing.Optional[Application] = OMIT,
501
493
  code: typing.Optional[str] = OMIT,
502
494
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
503
- runtime: typing.Optional[str] = OMIT,
504
- options: typing.Optional[RuntimeOptions] = OMIT,
495
+ runtime: typing.Optional[Runtime] = OMIT,
505
496
  idempotency_key: typing.Optional[str] = None,
506
497
  request_options: typing.Optional[RequestOptions] = None,
507
498
  ) -> HttpResponse[None]:
@@ -518,9 +509,7 @@ class RawReactorsClient:
518
509
 
519
510
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
520
511
 
521
- runtime : typing.Optional[str]
522
-
523
- options : typing.Optional[RuntimeOptions]
512
+ runtime : typing.Optional[Runtime]
524
513
 
525
514
  idempotency_key : typing.Optional[str]
526
515
 
@@ -541,9 +530,8 @@ class RawReactorsClient:
541
530
  ),
542
531
  "code": code,
543
532
  "configuration": configuration,
544
- "runtime": runtime,
545
- "options": convert_and_respect_annotation_metadata(
546
- object_=options, annotation=RuntimeOptions, direction="write"
533
+ "runtime": convert_and_respect_annotation_metadata(
534
+ object_=runtime, annotation=Runtime, direction="write"
547
535
  ),
548
536
  },
549
537
  headers={
@@ -937,8 +925,7 @@ class AsyncRawReactorsClient:
937
925
  code: str,
938
926
  application: typing.Optional[Application] = OMIT,
939
927
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
940
- runtime: typing.Optional[str] = OMIT,
941
- options: typing.Optional[RuntimeOptions] = OMIT,
928
+ runtime: typing.Optional[Runtime] = OMIT,
942
929
  idempotency_key: typing.Optional[str] = None,
943
930
  request_options: typing.Optional[RequestOptions] = None,
944
931
  ) -> AsyncHttpResponse[Reactor]:
@@ -953,9 +940,7 @@ class AsyncRawReactorsClient:
953
940
 
954
941
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
955
942
 
956
- runtime : typing.Optional[str]
957
-
958
- options : typing.Optional[RuntimeOptions]
943
+ runtime : typing.Optional[Runtime]
959
944
 
960
945
  idempotency_key : typing.Optional[str]
961
946
 
@@ -977,9 +962,8 @@ class AsyncRawReactorsClient:
977
962
  object_=application, annotation=Application, direction="write"
978
963
  ),
979
964
  "configuration": configuration,
980
- "runtime": runtime,
981
- "options": convert_and_respect_annotation_metadata(
982
- object_=options, annotation=RuntimeOptions, direction="write"
965
+ "runtime": convert_and_respect_annotation_metadata(
966
+ object_=runtime, annotation=Runtime, direction="write"
983
967
  ),
984
968
  },
985
969
  headers={
@@ -1114,8 +1098,7 @@ class AsyncRawReactorsClient:
1114
1098
  code: str,
1115
1099
  application: typing.Optional[Application] = OMIT,
1116
1100
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
1117
- runtime: typing.Optional[str] = OMIT,
1118
- options: typing.Optional[RuntimeOptions] = OMIT,
1101
+ runtime: typing.Optional[Runtime] = OMIT,
1119
1102
  idempotency_key: typing.Optional[str] = None,
1120
1103
  request_options: typing.Optional[RequestOptions] = None,
1121
1104
  ) -> AsyncHttpResponse[Reactor]:
@@ -1132,9 +1115,7 @@ class AsyncRawReactorsClient:
1132
1115
 
1133
1116
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
1134
1117
 
1135
- runtime : typing.Optional[str]
1136
-
1137
- options : typing.Optional[RuntimeOptions]
1118
+ runtime : typing.Optional[Runtime]
1138
1119
 
1139
1120
  idempotency_key : typing.Optional[str]
1140
1121
 
@@ -1156,9 +1137,8 @@ class AsyncRawReactorsClient:
1156
1137
  ),
1157
1138
  "code": code,
1158
1139
  "configuration": configuration,
1159
- "runtime": runtime,
1160
- "options": convert_and_respect_annotation_metadata(
1161
- object_=options, annotation=RuntimeOptions, direction="write"
1140
+ "runtime": convert_and_respect_annotation_metadata(
1141
+ object_=runtime, annotation=Runtime, direction="write"
1162
1142
  ),
1163
1143
  },
1164
1144
  headers={
@@ -1296,8 +1276,7 @@ class AsyncRawReactorsClient:
1296
1276
  application: typing.Optional[Application] = OMIT,
1297
1277
  code: typing.Optional[str] = OMIT,
1298
1278
  configuration: typing.Optional[typing.Dict[str, typing.Optional[str]]] = OMIT,
1299
- runtime: typing.Optional[str] = OMIT,
1300
- options: typing.Optional[RuntimeOptions] = OMIT,
1279
+ runtime: typing.Optional[Runtime] = OMIT,
1301
1280
  idempotency_key: typing.Optional[str] = None,
1302
1281
  request_options: typing.Optional[RequestOptions] = None,
1303
1282
  ) -> AsyncHttpResponse[None]:
@@ -1314,9 +1293,7 @@ class AsyncRawReactorsClient:
1314
1293
 
1315
1294
  configuration : typing.Optional[typing.Dict[str, typing.Optional[str]]]
1316
1295
 
1317
- runtime : typing.Optional[str]
1318
-
1319
- options : typing.Optional[RuntimeOptions]
1296
+ runtime : typing.Optional[Runtime]
1320
1297
 
1321
1298
  idempotency_key : typing.Optional[str]
1322
1299
 
@@ -1337,9 +1314,8 @@ class AsyncRawReactorsClient:
1337
1314
  ),
1338
1315
  "code": code,
1339
1316
  "configuration": configuration,
1340
- "runtime": runtime,
1341
- "options": convert_and_respect_annotation_metadata(
1342
- object_=options, annotation=RuntimeOptions, direction="write"
1317
+ "runtime": convert_and_respect_annotation_metadata(
1318
+ object_=runtime, annotation=Runtime, direction="write"
1343
1319
  ),
1344
1320
  },
1345
1321
  headers={
@@ -35,6 +35,7 @@ from .bin_details_bank import BinDetailsBank
35
35
  from .bin_details_country import BinDetailsCountry
36
36
  from .bin_details_product import BinDetailsProduct
37
37
  from .card import Card
38
+ from .card_bin_range import CardBinRange
38
39
  from .card_details import CardDetails
39
40
  from .card_details_response import CardDetailsResponse
40
41
  from .card_issuer import CardIssuer
@@ -98,7 +99,7 @@ from .reactor_formula_paginated_list import ReactorFormulaPaginatedList
98
99
  from .reactor_formula_request_parameter import ReactorFormulaRequestParameter
99
100
  from .reactor_paginated_list import ReactorPaginatedList
100
101
  from .role import Role
101
- from .runtime_options import RuntimeOptions
102
+ from .runtime import Runtime
102
103
  from .string_string_key_value_pair import StringStringKeyValuePair
103
104
  from .submerchant_authentication_response import SubmerchantAuthenticationResponse
104
105
  from .tenant import Tenant
@@ -181,6 +182,7 @@ __all__ = [
181
182
  "BinDetailsCountry",
182
183
  "BinDetailsProduct",
183
184
  "Card",
185
+ "CardBinRange",
184
186
  "CardDetails",
185
187
  "CardDetailsResponse",
186
188
  "CardIssuer",
@@ -244,7 +246,7 @@ __all__ = [
244
246
  "ReactorFormulaRequestParameter",
245
247
  "ReactorPaginatedList",
246
248
  "Role",
247
- "RuntimeOptions",
249
+ "Runtime",
248
250
  "StringStringKeyValuePair",
249
251
  "SubmerchantAuthenticationResponse",
250
252
  "Tenant",