kard-financial-sdk 0.0.82__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.
- kard/__init__.py +579 -0
- kard/auth/__init__.py +34 -0
- kard/auth/client.py +121 -0
- kard/auth/raw_client.py +108 -0
- kard/auth/types/__init__.py +34 -0
- kard/auth/types/token_response.py +25 -0
- kard/client.py +416 -0
- kard/commons/__init__.py +120 -0
- kard/commons/errors/__init__.py +44 -0
- kard/commons/errors/conflict_error.py +11 -0
- kard/commons/errors/does_not_exist_error.py +11 -0
- kard/commons/errors/internal_server_error.py +11 -0
- kard/commons/errors/invalid_request.py +11 -0
- kard/commons/errors/unauthorized_error.py +11 -0
- kard/commons/types/__init__.py +107 -0
- kard/commons/types/category_option.py +26 -0
- kard/commons/types/commission_type.py +5 -0
- kard/commons/types/commission_value.py +28 -0
- kard/commons/types/commission_value_type.py +5 -0
- kard/commons/types/empty_object.py +17 -0
- kard/commons/types/enrolled_rewards_type.py +5 -0
- kard/commons/types/error_object.py +43 -0
- kard/commons/types/error_response.py +20 -0
- kard/commons/types/error_source.py +32 -0
- kard/commons/types/job.py +24 -0
- kard/commons/types/job_response.py +27 -0
- kard/commons/types/job_status.py +5 -0
- kard/commons/types/links.py +27 -0
- kard/commons/types/mongo_id.py +3 -0
- kard/commons/types/notification_type.py +19 -0
- kard/commons/types/organization_id.py +3 -0
- kard/commons/types/purchase_channel.py +5 -0
- kard/commons/types/relationship_data.py +24 -0
- kard/commons/types/relationship_multiple.py +20 -0
- kard/commons/types/relationship_single.py +20 -0
- kard/commons/types/resource_type.py +3 -0
- kard/commons/types/state.py +68 -0
- kard/commons/types/subscription_id.py +3 -0
- kard/commons/types/user_id.py +3 -0
- kard/core/__init__.py +105 -0
- kard/core/api_error.py +23 -0
- kard/core/client_wrapper.py +97 -0
- kard/core/datetime_utils.py +28 -0
- kard/core/file.py +67 -0
- kard/core/force_multipart.py +18 -0
- kard/core/http_client.py +613 -0
- kard/core/http_response.py +55 -0
- kard/core/http_sse/__init__.py +42 -0
- kard/core/http_sse/_api.py +112 -0
- kard/core/http_sse/_decoders.py +61 -0
- kard/core/http_sse/_exceptions.py +7 -0
- kard/core/http_sse/_models.py +17 -0
- kard/core/jsonable_encoder.py +100 -0
- kard/core/oauth_token_provider.py +73 -0
- kard/core/pydantic_utilities.py +260 -0
- kard/core/query_encoder.py +58 -0
- kard/core/remove_none_from_dict.py +11 -0
- kard/core/request_options.py +35 -0
- kard/core/serialization.py +276 -0
- kard/environment.py +8 -0
- kard/files/__init__.py +58 -0
- kard/files/client.py +213 -0
- kard/files/errors/__init__.py +34 -0
- kard/files/errors/forbidden_error.py +11 -0
- kard/files/raw_client.py +278 -0
- kard/files/types/__init__.py +53 -0
- kard/files/types/file_metadata_attribute.py +39 -0
- kard/files/types/file_metadata_with_url.py +34 -0
- kard/files/types/file_type.py +13 -0
- kard/files/types/files_metadata_sort_options.py +5 -0
- kard/files/types/get_files_metadata_response.py +71 -0
- kard/files/types/pagination_meta.py +29 -0
- kard/notifications/__init__.py +279 -0
- kard/notifications/client.py +63 -0
- kard/notifications/raw_client.py +13 -0
- kard/notifications/subscriptions/__init__.py +97 -0
- kard/notifications/subscriptions/client.py +372 -0
- kard/notifications/subscriptions/raw_client.py +581 -0
- kard/notifications/subscriptions/types/__init__.py +94 -0
- kard/notifications/subscriptions/types/create_subscription_union.py +27 -0
- kard/notifications/subscriptions/types/create_subscriptions_response_object.py +43 -0
- kard/notifications/subscriptions/types/created_subscription.py +23 -0
- kard/notifications/subscriptions/types/subscription.py +25 -0
- kard/notifications/subscriptions/types/subscription_attributes.py +35 -0
- kard/notifications/subscriptions/types/subscription_request.py +20 -0
- kard/notifications/subscriptions/types/subscription_request_attributes.py +35 -0
- kard/notifications/subscriptions/types/subscription_request_body.py +42 -0
- kard/notifications/subscriptions/types/subscription_request_union.py +26 -0
- kard/notifications/subscriptions/types/subscription_union.py +27 -0
- kard/notifications/subscriptions/types/subscriptions_response_object.py +43 -0
- kard/notifications/subscriptions/types/update_subscription_request.py +20 -0
- kard/notifications/subscriptions/types/update_subscription_request_attributes.py +39 -0
- kard/notifications/subscriptions/types/update_subscription_request_body.py +40 -0
- kard/notifications/subscriptions/types/update_subscription_request_union.py +26 -0
- kard/notifications/subscriptions/types/update_subscriptions_response_object.py +41 -0
- kard/notifications/types/__init__.py +214 -0
- kard/notifications/types/audit_update_attributes.py +88 -0
- kard/notifications/types/audit_update_data.py +27 -0
- kard/notifications/types/audit_update_relationships.py +21 -0
- kard/notifications/types/broker_amount.py +28 -0
- kard/notifications/types/broker_amount_type.py +5 -0
- kard/notifications/types/broker_asset.py +33 -0
- kard/notifications/types/broker_asset_type.py +5 -0
- kard/notifications/types/broker_operation_hours.py +30 -0
- kard/notifications/types/broker_operation_period.py +28 -0
- kard/notifications/types/broker_purchase_channel.py +5 -0
- kard/notifications/types/broker_reward.py +28 -0
- kard/notifications/types/broker_reward_type.py +5 -0
- kard/notifications/types/clawback_data.py +27 -0
- kard/notifications/types/earned_reward_approved_data.py +27 -0
- kard/notifications/types/earned_reward_attributes.py +18 -0
- kard/notifications/types/earned_reward_relationships.py +21 -0
- kard/notifications/types/earned_reward_settled_attributes.py +23 -0
- kard/notifications/types/earned_reward_settled_data.py +27 -0
- kard/notifications/types/failed_transaction_attributes.py +41 -0
- kard/notifications/types/failed_transaction_data.py +27 -0
- kard/notifications/types/failed_transaction_relationships.py +22 -0
- kard/notifications/types/location_address.py +39 -0
- kard/notifications/types/location_coordinates.py +27 -0
- kard/notifications/types/location_status.py +5 -0
- kard/notifications/types/merchant_source.py +5 -0
- kard/notifications/types/notification_data_union.py +203 -0
- kard/notifications/types/notification_metadata.py +22 -0
- kard/notifications/types/notification_payload.py +65 -0
- kard/notifications/types/offer_status.py +5 -0
- kard/notifications/types/offer_type.py +5 -0
- kard/notifications/types/reward_notification_attributes.py +48 -0
- kard/notifications/types/time_period.py +27 -0
- kard/notifications/types/transaction_relationships.py +22 -0
- kard/notifications/types/user_offer_status.py +5 -0
- kard/notifications/types/valid_transaction_attributes.py +25 -0
- kard/notifications/types/valid_transaction_commission_earned.py +21 -0
- kard/notifications/types/valid_transaction_data.py +27 -0
- kard/notifications/types/webhook_locations_attributes.py +71 -0
- kard/notifications/types/webhook_locations_data.py +27 -0
- kard/notifications/types/webhook_locations_relationships.py +20 -0
- kard/notifications/types/webhook_merchant_attributes.py +67 -0
- kard/notifications/types/webhook_merchant_data.py +27 -0
- kard/notifications/types/webhook_merchant_relationships.py +20 -0
- kard/notifications/types/webhook_offer_attributes.py +143 -0
- kard/notifications/types/webhook_offer_data.py +27 -0
- kard/notifications/types/webhook_offer_relationships.py +20 -0
- kard/notifications/types/webhook_user_offer_attributes.py +41 -0
- kard/notifications/types/webhook_user_offer_data.py +27 -0
- kard/notifications/types/webhook_user_offer_relationships.py +21 -0
- kard/ping/__init__.py +39 -0
- kard/ping/client.py +100 -0
- kard/ping/errors/__init__.py +34 -0
- kard/ping/errors/network_blocked_error.py +11 -0
- kard/ping/raw_client.py +113 -0
- kard/ping/types/__init__.py +38 -0
- kard/ping/types/network_blocked_error_body.py +34 -0
- kard/ping/types/ping_response_object.py +46 -0
- kard/py.typed +0 -0
- kard/transactions/__init__.py +212 -0
- kard/transactions/client.py +639 -0
- kard/transactions/errors/__init__.py +40 -0
- kard/transactions/errors/create_audit_multi_status.py +11 -0
- kard/transactions/errors/create_incoming_transactions_multi_status.py +11 -0
- kard/transactions/errors/fraud_multi_status.py +11 -0
- kard/transactions/raw_client.py +925 -0
- kard/transactions/types/__init__.py +199 -0
- kard/transactions/types/audit_attributes.py +44 -0
- kard/transactions/types/audit_request_data.py +20 -0
- kard/transactions/types/audit_response_attributes.py +24 -0
- kard/transactions/types/audit_response_data.py +25 -0
- kard/transactions/types/audit_status.py +5 -0
- kard/transactions/types/card_network.py +5 -0
- kard/transactions/types/commission_earned_details.py +21 -0
- kard/transactions/types/create_audit_multi_status_response.py +21 -0
- kard/transactions/types/create_audit_request_body.py +43 -0
- kard/transactions/types/create_audit_request_data_union.py +26 -0
- kard/transactions/types/create_audit_response_body.py +41 -0
- kard/transactions/types/create_audit_response_data_union.py +27 -0
- kard/transactions/types/direction_type.py +5 -0
- kard/transactions/types/fraudulent_transaction_attributes.py +24 -0
- kard/transactions/types/fraudulent_transaction_data.py +30 -0
- kard/transactions/types/fraudulent_transaction_object.py +42 -0
- kard/transactions/types/fraudulent_transaction_request_body.py +45 -0
- kard/transactions/types/fraudulent_transaction_response.py +21 -0
- kard/transactions/types/get_earned_rewards_response.py +133 -0
- kard/transactions/types/matched_transactions_attributes.py +156 -0
- kard/transactions/types/matched_transactions_request.py +25 -0
- kard/transactions/types/merchant.py +82 -0
- kard/transactions/types/payment_status.py +5 -0
- kard/transactions/types/payment_type.py +5 -0
- kard/transactions/types/processor_mid.py +26 -0
- kard/transactions/types/receipt_medium_type.py +5 -0
- kard/transactions/types/rewarded_transaction.py +27 -0
- kard/transactions/types/rewarded_transaction_attributes.py +74 -0
- kard/transactions/types/rewarded_transaction_relationships.py +22 -0
- kard/transactions/types/rewarded_transaction_status.py +5 -0
- kard/transactions/types/rewarded_transaction_union.py +29 -0
- kard/transactions/types/states.py +68 -0
- kard/transactions/types/transaction_included_resource.py +47 -0
- kard/transactions/types/transaction_merchant_attributes.py +22 -0
- kard/transactions/types/transaction_merchant_resource.py +28 -0
- kard/transactions/types/transaction_offer_attributes.py +26 -0
- kard/transactions/types/transaction_offer_resource.py +28 -0
- kard/transactions/types/transaction_payment_type.py +5 -0
- kard/transactions/types/transaction_status.py +5 -0
- kard/transactions/types/transactions.py +46 -0
- kard/transactions/types/transactions_attributes.py +198 -0
- kard/transactions/types/transactions_multi_response.py +21 -0
- kard/transactions/types/transactions_request.py +25 -0
- kard/transactions/types/transactions_request_body.py +90 -0
- kard/transactions/types/transactions_response.py +38 -0
- kard/transactions/types/transactions_response_data.py +27 -0
- kard/transactions/types/visa_mid.py +23 -0
- kard/transactions/types/visa_mid_details.py +27 -0
- kard/users/__init__.py +293 -0
- kard/users/attributions/__init__.py +73 -0
- kard/users/attributions/client.py +229 -0
- kard/users/attributions/raw_client.py +215 -0
- kard/users/attributions/types/__init__.py +73 -0
- kard/users/attributions/types/create_attribution_request_object.py +75 -0
- kard/users/attributions/types/create_attribution_request_union.py +45 -0
- kard/users/attributions/types/create_attribution_response.py +38 -0
- kard/users/attributions/types/event_code.py +5 -0
- kard/users/attributions/types/notification_attribution_attributes.py +35 -0
- kard/users/attributions/types/notification_attribution_request.py +20 -0
- kard/users/attributions/types/notification_medium.py +5 -0
- kard/users/attributions/types/offer_attribution_attributes.py +35 -0
- kard/users/attributions/types/offer_attribution_request.py +20 -0
- kard/users/attributions/types/offer_medium.py +5 -0
- kard/users/client.py +512 -0
- kard/users/errors/__init__.py +34 -0
- kard/users/errors/multi_status.py +11 -0
- kard/users/raw_client.py +783 -0
- kard/users/rewards/__init__.py +133 -0
- kard/users/rewards/client.py +448 -0
- kard/users/rewards/raw_client.py +587 -0
- kard/users/rewards/types/__init__.py +130 -0
- kard/users/rewards/types/amount.py +21 -0
- kard/users/rewards/types/amount_type.py +5 -0
- kard/users/rewards/types/asset.py +28 -0
- kard/users/rewards/types/category_data.py +18 -0
- kard/users/rewards/types/category_fields.py +23 -0
- kard/users/rewards/types/category_identifier.py +24 -0
- kard/users/rewards/types/category_included.py +21 -0
- kard/users/rewards/types/category_relationship.py +20 -0
- kard/users/rewards/types/category_relationship_object.py +20 -0
- kard/users/rewards/types/commission.py +21 -0
- kard/users/rewards/types/coordinates.py +20 -0
- kard/users/rewards/types/eligibility_location_address.py +24 -0
- kard/users/rewards/types/eligibility_location_included.py +8 -0
- kard/users/rewards/types/eligibility_offer_included.py +7 -0
- kard/users/rewards/types/eligibility_offer_relationship.py +7 -0
- kard/users/rewards/types/location_attributes.py +28 -0
- kard/users/rewards/types/location_data.py +32 -0
- kard/users/rewards/types/location_relationships.py +18 -0
- kard/users/rewards/types/location_sort_options.py +5 -0
- kard/users/rewards/types/locations_response_object.py +215 -0
- kard/users/rewards/types/offer_common_fields.py +103 -0
- kard/users/rewards/types/offer_data_union.py +30 -0
- kard/users/rewards/types/offer_relationship.py +21 -0
- kard/users/rewards/types/offer_sort_options.py +7 -0
- kard/users/rewards/types/offers_response_object.py +130 -0
- kard/users/rewards/types/operation_hours.py +23 -0
- kard/users/rewards/types/operation_period.py +21 -0
- kard/users/rewards/types/operation_time.py +20 -0
- kard/users/rewards/types/standard_offer.py +21 -0
- kard/users/rewards/types/standard_offer_core.py +26 -0
- kard/users/rewards/types/standard_offer_fields.py +18 -0
- kard/users/types/__init__.py +66 -0
- kard/users/types/create_users_multi_status_response.py +21 -0
- kard/users/types/create_users_object.py +42 -0
- kard/users/types/delete_user_response_object.py +34 -0
- kard/users/types/update_user_object.py +40 -0
- kard/users/types/user_request_attributes.py +60 -0
- kard/users/types/user_request_data.py +22 -0
- kard/users/types/user_request_data_union.py +28 -0
- kard/users/types/user_response_no_data.py +22 -0
- kard/users/types/user_response_union_no_data.py +28 -0
- kard/users/uploads/__init__.py +112 -0
- kard/users/uploads/client.py +484 -0
- kard/users/uploads/errors/__init__.py +34 -0
- kard/users/uploads/errors/upload_part_multi_status.py +13 -0
- kard/users/uploads/raw_client.py +625 -0
- kard/users/uploads/types/__init__.py +119 -0
- kard/users/uploads/types/create_upload_part_data_union.py +27 -0
- kard/users/uploads/types/create_upload_part_multi_status_response.py +21 -0
- kard/users/uploads/types/create_upload_part_request_object.py +74 -0
- kard/users/uploads/types/create_upload_part_response_data.py +25 -0
- kard/users/uploads/types/create_upload_part_response_data_union.py +27 -0
- kard/users/uploads/types/create_upload_part_response_object.py +39 -0
- kard/users/uploads/types/create_upload_request_data_union.py +26 -0
- kard/users/uploads/types/create_upload_request_object.py +36 -0
- kard/users/uploads/types/create_upload_response_data.py +25 -0
- kard/users/uploads/types/create_upload_response_data_union.py +27 -0
- kard/users/uploads/types/create_upload_response_object.py +37 -0
- kard/users/uploads/types/historical_transaction_complete_no_data.py +25 -0
- kard/users/uploads/types/start_historical_upload_no_data.py +20 -0
- kard/users/uploads/types/update_upload_request_data_union.py +27 -0
- kard/users/uploads/types/update_upload_request_object.py +37 -0
- kard/users/uploads/types/update_upload_response_data.py +25 -0
- kard/users/uploads/types/update_upload_response_data_union.py +27 -0
- kard/users/uploads/types/update_upload_response_object.py +37 -0
- kard/version.py +3 -0
- kard_financial_sdk-0.0.82.dist-info/METADATA +238 -0
- kard_financial_sdk-0.0.82.dist-info/RECORD +302 -0
- kard_financial_sdk-0.0.82.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
|
|
5
|
+
import pydantic
|
|
6
|
+
from ....core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
|
|
7
|
+
from .update_upload_response_data_union import UpdateUploadResponseDataUnion
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class UpdateUploadResponseObject(UniversalBaseModel):
|
|
11
|
+
"""
|
|
12
|
+
Examples
|
|
13
|
+
--------
|
|
14
|
+
from kard.commons import EmptyObject
|
|
15
|
+
from kard.users.uploads import (
|
|
16
|
+
UpdateUploadResponseDataUnion_HistoricalTransactionComplete,
|
|
17
|
+
UpdateUploadResponseObject,
|
|
18
|
+
)
|
|
19
|
+
|
|
20
|
+
UpdateUploadResponseObject(
|
|
21
|
+
data=UpdateUploadResponseDataUnion_HistoricalTransactionComplete(
|
|
22
|
+
id="7e382223-b9a5-4825-91fb-436c8957a2e7",
|
|
23
|
+
attributes=EmptyObject(),
|
|
24
|
+
),
|
|
25
|
+
)
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
data: UpdateUploadResponseDataUnion
|
|
29
|
+
|
|
30
|
+
if IS_PYDANTIC_V2:
|
|
31
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
32
|
+
else:
|
|
33
|
+
|
|
34
|
+
class Config:
|
|
35
|
+
frozen = True
|
|
36
|
+
smart_union = True
|
|
37
|
+
extra = pydantic.Extra.allow
|
kard/version.py
ADDED
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: kard-financial-sdk
|
|
3
|
+
Version: 0.0.82
|
|
4
|
+
Summary:
|
|
5
|
+
Requires-Python: >=3.8,<4.0
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: Operating System :: MacOS
|
|
8
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Operating System :: POSIX
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Classifier: Programming Language :: Python
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Dist: httpx (>=0.21.2)
|
|
22
|
+
Requires-Dist: pydantic (>=1.9.2)
|
|
23
|
+
Requires-Dist: pydantic-core (>=2.18.2)
|
|
24
|
+
Requires-Dist: typing_extensions (>=4.0.0)
|
|
25
|
+
Project-URL: Repository, https://github.com/KardFinancial/kard-python-sdk
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
|
+
|
|
28
|
+
# Kard Python Library
|
|
29
|
+
|
|
30
|
+
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FKardFinancial%2Fkard-python-sdk)
|
|
31
|
+
[](https://pypi.python.org/pypi/kard-financial-sdk)
|
|
32
|
+
|
|
33
|
+
The Kard Python library provides convenient access to the Kard APIs from Python.
|
|
34
|
+
|
|
35
|
+
## Table of Contents
|
|
36
|
+
|
|
37
|
+
- [Installation](#installation)
|
|
38
|
+
- [Reference](#reference)
|
|
39
|
+
- [Usage](#usage)
|
|
40
|
+
- [Async Client](#async-client)
|
|
41
|
+
- [Exception Handling](#exception-handling)
|
|
42
|
+
- [Oauth Token Override](#oauth-token-override)
|
|
43
|
+
- [Advanced](#advanced)
|
|
44
|
+
- [Access Raw Response Data](#access-raw-response-data)
|
|
45
|
+
- [Retries](#retries)
|
|
46
|
+
- [Timeouts](#timeouts)
|
|
47
|
+
- [Custom Client](#custom-client)
|
|
48
|
+
- [Contributing](#contributing)
|
|
49
|
+
|
|
50
|
+
## Installation
|
|
51
|
+
|
|
52
|
+
```sh
|
|
53
|
+
pip install kard-financial-sdk
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## Reference
|
|
57
|
+
|
|
58
|
+
A full reference for this library is available [here](https://github.com/KardFinancial/kard-python-sdk/blob/HEAD/./reference.md).
|
|
59
|
+
|
|
60
|
+
## Usage
|
|
61
|
+
|
|
62
|
+
Instantiate and use the client with the following:
|
|
63
|
+
|
|
64
|
+
```python
|
|
65
|
+
from kard import KardApi
|
|
66
|
+
from kard.users import UserRequestAttributes, UserRequestDataUnion_User
|
|
67
|
+
|
|
68
|
+
client = KardApi(
|
|
69
|
+
client_id="YOUR_CLIENT_ID",
|
|
70
|
+
client_secret="YOUR_CLIENT_SECRET",
|
|
71
|
+
)
|
|
72
|
+
client.users.create(
|
|
73
|
+
organization_id="organization-123",
|
|
74
|
+
data=[
|
|
75
|
+
UserRequestDataUnion_User(
|
|
76
|
+
id="1234567890",
|
|
77
|
+
attributes=UserRequestAttributes(
|
|
78
|
+
zip_code="11238",
|
|
79
|
+
enrolled_rewards=["CARDLINKED"],
|
|
80
|
+
),
|
|
81
|
+
)
|
|
82
|
+
],
|
|
83
|
+
)
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## Async Client
|
|
87
|
+
|
|
88
|
+
The SDK also exports an `async` client so that you can make non-blocking calls to our API. Note that if you are constructing an Async httpx client class to pass into this client, use `httpx.AsyncClient()` instead of `httpx.Client()` (e.g. for the `httpx_client` parameter of this client).
|
|
89
|
+
|
|
90
|
+
```python
|
|
91
|
+
import asyncio
|
|
92
|
+
|
|
93
|
+
from kard import AsyncKardApi
|
|
94
|
+
from kard.users import UserRequestAttributes, UserRequestDataUnion_User
|
|
95
|
+
|
|
96
|
+
client = AsyncKardApi(
|
|
97
|
+
client_id="YOUR_CLIENT_ID",
|
|
98
|
+
client_secret="YOUR_CLIENT_SECRET",
|
|
99
|
+
)
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
async def main() -> None:
|
|
103
|
+
await client.users.create(
|
|
104
|
+
organization_id="organization-123",
|
|
105
|
+
data=[
|
|
106
|
+
UserRequestDataUnion_User(
|
|
107
|
+
id="1234567890",
|
|
108
|
+
attributes=UserRequestAttributes(
|
|
109
|
+
zip_code="11238",
|
|
110
|
+
enrolled_rewards=["CARDLINKED"],
|
|
111
|
+
),
|
|
112
|
+
)
|
|
113
|
+
],
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
asyncio.run(main())
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## Exception Handling
|
|
121
|
+
|
|
122
|
+
When the API returns a non-success status code (4xx or 5xx response), a subclass of the following error
|
|
123
|
+
will be thrown.
|
|
124
|
+
|
|
125
|
+
```python
|
|
126
|
+
from kard.core.api_error import ApiError
|
|
127
|
+
|
|
128
|
+
try:
|
|
129
|
+
client.users.create(...)
|
|
130
|
+
except ApiError as e:
|
|
131
|
+
print(e.status_code)
|
|
132
|
+
print(e.body)
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
## Oauth Token Override
|
|
136
|
+
|
|
137
|
+
This SDK supports two authentication methods: OAuth client credentials flow (automatic token management) or direct bearer token authentication. You can choose between these options when initializing the client:
|
|
138
|
+
|
|
139
|
+
```python
|
|
140
|
+
from kard import KardApi
|
|
141
|
+
|
|
142
|
+
# Option 1: Direct bearer token (bypass OAuth flow)
|
|
143
|
+
client = KardApi(..., token="my-pre-generated-bearer-token")
|
|
144
|
+
|
|
145
|
+
from kard import KardApi
|
|
146
|
+
|
|
147
|
+
# Option 2: OAuth client credentials flow (automatic token management)
|
|
148
|
+
client = KardApi(
|
|
149
|
+
..., client_id="your-client-id", client_secret="your-client-secret"
|
|
150
|
+
)
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
## Advanced
|
|
154
|
+
|
|
155
|
+
### Access Raw Response Data
|
|
156
|
+
|
|
157
|
+
The SDK provides access to raw response data, including headers, through the `.with_raw_response` property.
|
|
158
|
+
The `.with_raw_response` property returns a "raw" client that can be used to access the `.headers` and `.data` attributes.
|
|
159
|
+
|
|
160
|
+
```python
|
|
161
|
+
from kard import KardApi
|
|
162
|
+
|
|
163
|
+
client = KardApi(
|
|
164
|
+
...,
|
|
165
|
+
)
|
|
166
|
+
response = client.users.with_raw_response.create(...)
|
|
167
|
+
print(response.headers) # access the response headers
|
|
168
|
+
print(response.data) # access the underlying object
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### Retries
|
|
172
|
+
|
|
173
|
+
The SDK is instrumented with automatic retries with exponential backoff. A request will be retried as long
|
|
174
|
+
as the request is deemed retryable and the number of retry attempts has not grown larger than the configured
|
|
175
|
+
retry limit (default: 2).
|
|
176
|
+
|
|
177
|
+
A request is deemed retryable when any of the following HTTP status codes is returned:
|
|
178
|
+
|
|
179
|
+
- [408](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/408) (Timeout)
|
|
180
|
+
- [429](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/429) (Too Many Requests)
|
|
181
|
+
- [5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
|
|
182
|
+
|
|
183
|
+
Use the `max_retries` request option to configure this behavior.
|
|
184
|
+
|
|
185
|
+
```python
|
|
186
|
+
client.users.create(..., request_options={
|
|
187
|
+
"max_retries": 1
|
|
188
|
+
})
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
### Timeouts
|
|
192
|
+
|
|
193
|
+
The SDK defaults to a 60 second timeout. You can configure this with a timeout option at the client or request level.
|
|
194
|
+
|
|
195
|
+
```python
|
|
196
|
+
|
|
197
|
+
from kard import KardApi
|
|
198
|
+
|
|
199
|
+
client = KardApi(
|
|
200
|
+
...,
|
|
201
|
+
timeout=20.0,
|
|
202
|
+
)
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
# Override timeout for a specific method
|
|
206
|
+
client.users.create(..., request_options={
|
|
207
|
+
"timeout_in_seconds": 1
|
|
208
|
+
})
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
### Custom Client
|
|
212
|
+
|
|
213
|
+
You can override the `httpx` client to customize it for your use-case. Some common use-cases include support for proxies
|
|
214
|
+
and transports.
|
|
215
|
+
|
|
216
|
+
```python
|
|
217
|
+
import httpx
|
|
218
|
+
from kard import KardApi
|
|
219
|
+
|
|
220
|
+
client = KardApi(
|
|
221
|
+
...,
|
|
222
|
+
httpx_client=httpx.Client(
|
|
223
|
+
proxy="http://my.test.proxy.example.com",
|
|
224
|
+
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
|
|
225
|
+
),
|
|
226
|
+
)
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
## Contributing
|
|
230
|
+
|
|
231
|
+
While we value open-source contributions to this SDK, this library is generated programmatically.
|
|
232
|
+
Additions made directly to this library would have to be moved over to our generation code,
|
|
233
|
+
otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
|
|
234
|
+
a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
|
|
235
|
+
an issue first to discuss with us!
|
|
236
|
+
|
|
237
|
+
On the other hand, contributions to the README are always very welcome!
|
|
238
|
+
|
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
kard/__init__.py,sha256=aj4jdGsuIj-Jsrx4ZbrJj_QAh-px_vy1m4-Qq3cHOnE,19462
|
|
2
|
+
kard/auth/__init__.py,sha256=qVfktOVFYNFWLm_hT0aYOYYycuaLbv2Vr3Lj_t_3yJo,1059
|
|
3
|
+
kard/auth/client.py,sha256=WJUArdGVm6Pb3jkQEXgdokQkLogXPU6-ZkH3Mg0qkzY,3224
|
|
4
|
+
kard/auth/raw_client.py,sha256=mWze0QBDqpb47fCjiIwylj96jM32KlOFSl9WxCH5bnM,3775
|
|
5
|
+
kard/auth/types/__init__.py,sha256=8qUy9K8UkxtibeFFzs6uQst0sD6PJZiyUzK7_pCIujc,1077
|
|
6
|
+
kard/auth/types/token_response.py,sha256=xxYa8i53uIORpGhpLMB50Am2cnhN2tUlDc8E-55Au0Y,615
|
|
7
|
+
kard/client.py,sha256=okIT1DEGt6-gVLp0E1KDzDfyG2unoyMirVNbD8DFva8,17177
|
|
8
|
+
kard/commons/__init__.py,sha256=62ojNZyUi4LHxU-6DKwlPSl4xV2CewEC-Q17XM4gRDk,3181
|
|
9
|
+
kard/commons/errors/__init__.py,sha256=dbVza4kwdWGH7EOtnQhfkjdkGgxYxubQ3JwyVKr3Cr0,1577
|
|
10
|
+
kard/commons/errors/conflict_error.py,sha256=kUj5lmb4YRFSlA_wc2LKYZgsdfs-UPimVsETuGrR408,372
|
|
11
|
+
kard/commons/errors/does_not_exist_error.py,sha256=lTtn_ioAZ0zC9IGxwz_OfMY0LKtoOg8_o9e_jpR4m74,376
|
|
12
|
+
kard/commons/errors/internal_server_error.py,sha256=f0Qkxv9mrcp2BjOvAThx6ONRcJZPitOMvBZTsJpXl88,378
|
|
13
|
+
kard/commons/errors/invalid_request.py,sha256=mxF0wO7qncV70zuuGUf5IJ0bSNS0QMg2eHiPbsJBtW8,373
|
|
14
|
+
kard/commons/errors/unauthorized_error.py,sha256=by7qM6wUgZxLlRaJkOFEI0BI44RjVNY6ck30rFylAq4,376
|
|
15
|
+
kard/commons/types/__init__.py,sha256=hMDzWo5yCR0xassaZn2dkW9c8RKa4pBuDrzPRo2OhKk,3480
|
|
16
|
+
kard/commons/types/category_option.py,sha256=PiUrxZwZ9_9TBq0R2UWcZEnWvyzqTerX6qyEIk8AHo0,630
|
|
17
|
+
kard/commons/types/commission_type.py,sha256=_cJij10LY3lbz0PkAvqrOP2oDgljU7-Urz4VQ6XD3EI,157
|
|
18
|
+
kard/commons/types/commission_value.py,sha256=EevanxLZLEYXBlh3yskryiRIy1kaw-FbpmN1qUrejQ4,733
|
|
19
|
+
kard/commons/types/commission_value_type.py,sha256=B1le0Mf5fPBfjAVWIvoyzVx1nJa0BC_ptasm_R59jB4,152
|
|
20
|
+
kard/commons/types/empty_object.py,sha256=_T2S7tAIIUKAvke30URuL8KIQCuZikYg2QK7ZBMCSFk,504
|
|
21
|
+
kard/commons/types/enrolled_rewards_type.py,sha256=vF2bH67iFgjOangdCkkPMaXWVMJYsZLcfDHhkaCBjTg,157
|
|
22
|
+
kard/commons/types/error_object.py,sha256=x-ZxZAgAftREr2NYh-5nd0xD6HvMcT8MD3cYnDytYEs,1142
|
|
23
|
+
kard/commons/types/error_response.py,sha256=UF7ZqtJTZB0Q02_6zaKch0Nz4sbqNpttrvlYhmpNCdw,582
|
|
24
|
+
kard/commons/types/error_source.py,sha256=GomZcdMqt0GnrmK78YyZUpQt3fPlnN2v9lgg-4wd_pM,979
|
|
25
|
+
kard/commons/types/job.py,sha256=xjk7d6kXE4S9sww4RMCcpyf_mnohdPx2bjO6K4FYV7U,657
|
|
26
|
+
kard/commons/types/job_response.py,sha256=IU29EXSIoc6B6EBrFZjoawFMwkOrZuQ9LwvuzrONNes,695
|
|
27
|
+
kard/commons/types/job_status.py,sha256=dfQznJoX6GNQ7QgutSu7WVzvI19bnSinRndhhiCJfQ0,143
|
|
28
|
+
kard/commons/types/links.py,sha256=lyQjoVW1BeEl_cb6Ura_oKdY7cxQmrfo4-8xe3jWNWg,772
|
|
29
|
+
kard/commons/types/mongo_id.py,sha256=UWDCyt-ZmpJn5wBnl6qLo9rEnymdo1dEP_igFLytaAE,79
|
|
30
|
+
kard/commons/types/notification_type.py,sha256=vt4QRIF0XqLYL2JocLbwVW2o-sNFBjR024phYNvzfys,399
|
|
31
|
+
kard/commons/types/organization_id.py,sha256=om7A-i5nDP6knUTj4cPrnTp6IMc7UlvmRX7yL86Fjzk,86
|
|
32
|
+
kard/commons/types/purchase_channel.py,sha256=Xi8LSiNwWcUI45PkyFqrilhKmKg4Pt_dLZW90aKUXrs,160
|
|
33
|
+
kard/commons/types/relationship_data.py,sha256=LesjdYuT1mmW5QMnkT67cp7E4M2pYaQlcssyq5JVyHc,655
|
|
34
|
+
kard/commons/types/relationship_multiple.py,sha256=IHzif2CnVXwOd8P51NhhEuOurHb6gQSp9VgCb4ssJBU,602
|
|
35
|
+
kard/commons/types/relationship_single.py,sha256=mRAZzBOZegYALdrE1Cr7fzGARyZkVoY0mTDBqcf8u4U,587
|
|
36
|
+
kard/commons/types/resource_type.py,sha256=tkA8bAxHqwugyXMuZ4CAAPu7PA8AwocZEHq2Cbj_Agc,84
|
|
37
|
+
kard/commons/types/state.py,sha256=QLVm1c-8gVrgJZs4kN3812QFYMJva8jxv7JKz8keQng,973
|
|
38
|
+
kard/commons/types/subscription_id.py,sha256=ftC0pKiUnQhd0vuGIjrK9NDTQeAjPALtrYbDbxMtYzk,86
|
|
39
|
+
kard/commons/types/user_id.py,sha256=S2yE4rCRcapLUQ4_49O2n-Ph5Bm8uywFdnSXSz-otCU,78
|
|
40
|
+
kard/core/__init__.py,sha256=GkNNgA0CeqvpCzo2vVtAafE8YcnGV-VGtbU5op93lbc,3624
|
|
41
|
+
kard/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
|
|
42
|
+
kard/core/client_wrapper.py,sha256=iLgx9O4A_yTdAIFrTIXr5YwyC01DlpvLNBpIr4n0OQs,3287
|
|
43
|
+
kard/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
44
|
+
kard/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
|
|
45
|
+
kard/core/force_multipart.py,sha256=cH981xLy0kZVKiZZkFoeUjgJ2Zuq7KXB2aRAnmHzRDc,477
|
|
46
|
+
kard/core/http_client.py,sha256=XhgedTo8NYCxN_pOtUptwuf0MaXvlPCodGLYU4xCVz0,23801
|
|
47
|
+
kard/core/http_response.py,sha256=A6URkoTBCiryctAA-m9EiDWOsHgM5oYAlcYVc_YOiiI,1330
|
|
48
|
+
kard/core/http_sse/__init__.py,sha256=vE7RxBmzIfV9SmFDw4YCuDN9DaPuJb3FAnoFDo7bqww,1350
|
|
49
|
+
kard/core/http_sse/_api.py,sha256=v7bcIkdawmL6Y39HxrM5OiEB1Ci3wzIdu21kCZII-mU,3920
|
|
50
|
+
kard/core/http_sse/_decoders.py,sha256=tY3L5TZ0y-pgz0Lu1q8ro5Ljz43q4lYyuec73u9WfNw,1733
|
|
51
|
+
kard/core/http_sse/_exceptions.py,sha256=o8Tp-e8Lvmtn_5MVSYbkW9rVrpwFg5pnKbOcHfrHH14,127
|
|
52
|
+
kard/core/http_sse/_models.py,sha256=kKvCCm8e6gCilulJpiHv4f2OPVxo9CydLboEqMhplPI,397
|
|
53
|
+
kard/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
|
|
54
|
+
kard/core/oauth_token_provider.py,sha256=3TY6ce_ZX2JcCTB9wXl-s_7QMqcF3vL4wpjh7gp14zM,3157
|
|
55
|
+
kard/core/pydantic_utilities.py,sha256=fxp1jeDn1YbKXbVabl0hI9YeC3LtN8ZQ4HIICyFS8xg,10966
|
|
56
|
+
kard/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
|
|
57
|
+
kard/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
58
|
+
kard/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
|
|
59
|
+
kard/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
|
|
60
|
+
kard/environment.py,sha256=MVdAh4TGRHoxKoDRZxmHro7RSUVmDG4pGb9OCWh1pOs,220
|
|
61
|
+
kard/files/__init__.py,sha256=TqBYl1ADUHF_HiiGwMLVXrz2IWuQwrSTRAJVI7ukvnA,1655
|
|
62
|
+
kard/files/client.py,sha256=yv2P1FGw7nxt3oGAqGLzJ7XZBVfIUNUwypIk4dAGtkk,7778
|
|
63
|
+
kard/files/errors/__init__.py,sha256=Ea1TlNUqmz3bkvBCItSpN1dJGgcNiTgV-Fxv-2Nguto,1082
|
|
64
|
+
kard/files/errors/forbidden_error.py,sha256=pcVfZY0cDD34ftoyGeJXig1iOMD_OV-EZSd5GQO65-s,382
|
|
65
|
+
kard/files/raw_client.py,sha256=W0KCtQYXNsPXb8Vx0qc5Fte-FnLpMnatsce0GOLJLVI,11825
|
|
66
|
+
kard/files/types/__init__.py,sha256=xDn3prLkZeYuy0t0pnkj6HvL-pvpJ9pmY7ilkQM5j30,1800
|
|
67
|
+
kard/files/types/file_metadata_attribute.py,sha256=pzgFTQKfhzHD_NRlZVylOeEMR4MXtd6ReV500SHbFhk,1316
|
|
68
|
+
kard/files/types/file_metadata_with_url.py,sha256=fpiSnky70-6Wbk9PRmGr_6vlpbTFpn-OyXPTzh-_tTY,882
|
|
69
|
+
kard/files/types/file_type.py,sha256=_DiYPfED35xyyXQOQFJjd5tgtp61lv3ZsCwaJiLyKxo,351
|
|
70
|
+
kard/files/types/files_metadata_sort_options.py,sha256=jIGMvsxciTW6GD7wFwuMyj0dz3ejnc7t6cFrGNfeCXc,173
|
|
71
|
+
kard/files/types/get_files_metadata_response.py,sha256=tkJv0YxmE7aHJKTxxq6mUAdqLsq39L63k_wkh_i1UV8,2663
|
|
72
|
+
kard/files/types/pagination_meta.py,sha256=BWLyaOZB4b03vbW7FPhCWzNgmxhY2nGZiHSY_DGvm8Q,923
|
|
73
|
+
kard/notifications/__init__.py,sha256=641zBT2i11LaZalawS4YcD2Js0_2OBApbm1_KR72rTQ,9808
|
|
74
|
+
kard/notifications/client.py,sha256=fVxF93RMdzSwBPexxiADrBwKRxFlK1bcneD3eeTQ8Hc,2126
|
|
75
|
+
kard/notifications/raw_client.py,sha256=krLfdO77p7TzCu5gM9K1KteYVff4rnFiHFWg9w3QsEE,423
|
|
76
|
+
kard/notifications/subscriptions/__init__.py,sha256=FxxuxFO8r9HWdoS8WrzlEP6cyIcQVuuMxPkFSFRyt2U,3373
|
|
77
|
+
kard/notifications/subscriptions/client.py,sha256=BwQmcgVaB65QObj0s7fUhrSQvvMmJ8qOjvw1QbiuUi4,11668
|
|
78
|
+
kard/notifications/subscriptions/raw_client.py,sha256=ulIwYHpozsd67sHGOlPOPxwzqmuiK-iZ34WJjIY8_e8,23222
|
|
79
|
+
kard/notifications/subscriptions/types/__init__.py,sha256=1l5PD4Kr9Ud8gLNsNtdfpcwfWM58SFu1n8WQd24DXhg,4343
|
|
80
|
+
kard/notifications/subscriptions/types/create_subscription_union.py,sha256=1J5loTCGW3nZJszRlYLw9u7VB9ahrvLPg0MbSpL6B2E,823
|
|
81
|
+
kard/notifications/subscriptions/types/create_subscriptions_response_object.py,sha256=NjScs34vL8s2SyY0EKJ-sLKfh8CaXASkGgzYwFCZhxY,1290
|
|
82
|
+
kard/notifications/subscriptions/types/created_subscription.py,sha256=rl8VTYc1xRlG4ILI-3Wb6ZFpduFlBcWTz19ftaushY0,627
|
|
83
|
+
kard/notifications/subscriptions/types/subscription.py,sha256=FIi5qZWYd1q1Z3Syk1Uv93L2Z6W6w-sQFsJ4r8u-kzs,685
|
|
84
|
+
kard/notifications/subscriptions/types/subscription_attributes.py,sha256=Lca9HZg4w8XU15y8WZdmhIWRBUActxpDs3cKmVexMfU,1085
|
|
85
|
+
kard/notifications/subscriptions/types/subscription_request.py,sha256=L1SclXiJ4WePHxwNJXWcmsDEeFcMNN4vALOCntmKXP4,635
|
|
86
|
+
kard/notifications/subscriptions/types/subscription_request_attributes.py,sha256=q6Eq9JKGPM9HAGFECJsiqJZ1jYaNBaLtv0y1HZyLWq0,1115
|
|
87
|
+
kard/notifications/subscriptions/types/subscription_request_body.py,sha256=_BFAKWd3bGOL3kVJUP3DFmr3MQuoMm_ndtf5Bzn_G-4,1206
|
|
88
|
+
kard/notifications/subscriptions/types/subscription_request_union.py,sha256=fV6339WTxZ-MZ2JmQqZA_EnzT-Klx9vTSnU9TgUwbTE,814
|
|
89
|
+
kard/notifications/subscriptions/types/subscription_union.py,sha256=Y4EkINUNg_mcZJ4BMcbQ3QIt3eRWt4QjbDsZr0i_yAc,783
|
|
90
|
+
kard/notifications/subscriptions/types/subscriptions_response_object.py,sha256=0IllJb5Nr9BPdH7sTsOTu1ubfnZUUcCOIxVv2g0BHtU,1227
|
|
91
|
+
kard/notifications/subscriptions/types/update_subscription_request.py,sha256=4-JoNEX42-ZiRrrUU7YlS_8g04BHOlJQI-Co5dERGC0,660
|
|
92
|
+
kard/notifications/subscriptions/types/update_subscription_request_attributes.py,sha256=4qsa82Sgsl9z-MLFHbG9sUP2beFD5rdnj6X_M21btfI,1238
|
|
93
|
+
kard/notifications/subscriptions/types/update_subscription_request_body.py,sha256=Jkqhiml8tds2E2ziEu6ulLJ_gvVFEHgT0Sibzye4tJE,1206
|
|
94
|
+
kard/notifications/subscriptions/types/update_subscription_request_union.py,sha256=Iwl0DbEhgO0UImTDakIRacMxEC700WBnFT4xr9_JuWk,851
|
|
95
|
+
kard/notifications/subscriptions/types/update_subscriptions_response_object.py,sha256=_HqAU03uKzANkax8q1eOz-4yFsimvk141kLceNBx8go,1225
|
|
96
|
+
kard/notifications/types/__init__.py,sha256=OXj1ffh8cyV6og5FTP86LZYA3KPNuMZw4qtdA0O2BFs,9701
|
|
97
|
+
kard/notifications/types/audit_update_attributes.py,sha256=fwRQ4lmu7xVBy0u7lTQzxNoIpbk1PGNzDLPpbRAj65s,3450
|
|
98
|
+
kard/notifications/types/audit_update_data.py,sha256=JdDeRoXgaDXrZ2gpEbXy2ZIOkCFdZ-beF24KN9_IGEU,803
|
|
99
|
+
kard/notifications/types/audit_update_relationships.py,sha256=4eKCgM_WhP2URviSVZb3PvKzwoMtRg3r_ZolJyMFrm0,645
|
|
100
|
+
kard/notifications/types/broker_amount.py,sha256=QTQdpx4EyW8TUmR-zQHbAxfPphobVibtAfr9TrH6zjM,704
|
|
101
|
+
kard/notifications/types/broker_amount_type.py,sha256=d0cDPS1auI6WbVs_AGDibQhSZs8tLGUqeZRhiK6YBP0,149
|
|
102
|
+
kard/notifications/types/broker_asset.py,sha256=e5D5eg6qte6NGYoLkhpDTX-utK5Ncw8D4XCG10BHaeo,806
|
|
103
|
+
kard/notifications/types/broker_asset_type.py,sha256=GC_EsHqH3NwoIkWqKEk1_UzjEZwmjsIx-xQuk5hEsgM,169
|
|
104
|
+
kard/notifications/types/broker_operation_hours.py,sha256=yscASrxldpnP3vFH0Fu9sYJQLQvSslHls1n4Sromntg,986
|
|
105
|
+
kard/notifications/types/broker_operation_period.py,sha256=cwf69YGb6BqFzoANzJ9E4LcLB7yaGvKWaYKB4HoY2pk,722
|
|
106
|
+
kard/notifications/types/broker_purchase_channel.py,sha256=ywqd2Pon0wXLgHbJh3hALlcIBWrh3YLP4QEJN_SrNaE,166
|
|
107
|
+
kard/notifications/types/broker_reward.py,sha256=VZdEcAMdIQ2uwXjlIZPU7JjvtZFPKnljRLp6omqCJLM,706
|
|
108
|
+
kard/notifications/types/broker_reward_type.py,sha256=bcNMCEHvVnhL41u62zYzvrKAf8M86fyUQgIjiYdq-MI,159
|
|
109
|
+
kard/notifications/types/clawback_data.py,sha256=gprOvlD8duR0y818Au8AFKaB9DXEwYBWjuSxMwvJj9Y,836
|
|
110
|
+
kard/notifications/types/earned_reward_approved_data.py,sha256=cOVQ0jGRHy1wX4tpx3I4i2dCtSkJsjgko0Mr5GQPC9A,818
|
|
111
|
+
kard/notifications/types/earned_reward_attributes.py,sha256=K-aoyXYe7DeJ_F3SdwB0AbEXLSK0T3mgjDL77BwizFo,578
|
|
112
|
+
kard/notifications/types/earned_reward_relationships.py,sha256=ptRIjAEL_wvcqQqoyzl3yNj8falg0E9ogyyui2ajvvE,652
|
|
113
|
+
kard/notifications/types/earned_reward_settled_attributes.py,sha256=P8GW5gBtttoQBKVYi3VnBt39s1uX4JKfduAC1dt-buo,830
|
|
114
|
+
kard/notifications/types/earned_reward_settled_data.py,sha256=BR6he2A9i1G4WKuul_Wo6XGNszdHbL_kv8rqZzNwZtM,839
|
|
115
|
+
kard/notifications/types/failed_transaction_attributes.py,sha256=5zxeehkvlZhII6g06Y6piZm2dKv7qSVM9hEjZrHzy4M,1079
|
|
116
|
+
kard/notifications/types/failed_transaction_data.py,sha256=nrGHmnpByj1EBi2q7AkAtdMyGYUgMJUjLWAkKSjNiSY,845
|
|
117
|
+
kard/notifications/types/failed_transaction_relationships.py,sha256=q9LXmzsRNnQTq4QiYn6LsLCbGDTd0-EV3MLxGwEh_Ac,687
|
|
118
|
+
kard/notifications/types/location_address.py,sha256=79DyHVPz9F7jQO51jqqs7pA1HFki2LFSybywYLBhKng,938
|
|
119
|
+
kard/notifications/types/location_coordinates.py,sha256=r_WbZajzzeFjeT9g1OmCUWB41MlunC5r115EdVg5-YQ,682
|
|
120
|
+
kard/notifications/types/location_status.py,sha256=V_ugkIxiBIXdsJq-4Fuya0j7w3vh78aMnERQQ7ULK9k,160
|
|
121
|
+
kard/notifications/types/merchant_source.py,sha256=-sCXWTdXDlzW1DOJuTYtTPgOfsQuODxsdGaYYscz1zs,159
|
|
122
|
+
kard/notifications/types/notification_data_union.py,sha256=oKBbHjoJEIU-00_zlceFLHDHwmIDqjiWdpsA4Yl49CI,7136
|
|
123
|
+
kard/notifications/types/notification_metadata.py,sha256=qzBZgOvC7tsxh8iMKzUyQvAWiDzUIEAwClUGoA0ITW8,753
|
|
124
|
+
kard/notifications/types/notification_payload.py,sha256=wAiBzWS6Q0mJD9Eb5CCAA_F9F9qclqcYwo6B0Lslc0s,2172
|
|
125
|
+
kard/notifications/types/offer_status.py,sha256=f6LJw2VH58eniw9flru7taLJ6uyAxU1yqqWJWIH1MuM,157
|
|
126
|
+
kard/notifications/types/offer_type.py,sha256=1My_xOjENE7bSet8u_ZpkZFUD2dOExfz5dsvTdO7UJA,150
|
|
127
|
+
kard/notifications/types/reward_notification_attributes.py,sha256=rqI1LCrbAsdRHXlkNMIa_WDq0nvRYp9QLC9v-nkpCFk,1460
|
|
128
|
+
kard/notifications/types/time_period.py,sha256=Os0KCrb7Cf-LvYdVKiYbe2m1oQmX7uaCExU_shjhD7w,698
|
|
129
|
+
kard/notifications/types/transaction_relationships.py,sha256=MXRf2xBbW57ua60k-Hc5OOkqY5hIBRL7gRzXH6L57xk,681
|
|
130
|
+
kard/notifications/types/user_offer_status.py,sha256=3Qgd-ZAN3sIqeTtCvyUv-yajl8QZ5d6zx0q1SRzG1_Y,161
|
|
131
|
+
kard/notifications/types/valid_transaction_attributes.py,sha256=FRhpEsiIG8rmSiVJc9F1ZYknZ97ocd4NTITVOmYeDOw,878
|
|
132
|
+
kard/notifications/types/valid_transaction_commission_earned.py,sha256=m1Eat2fZ0T7Yb7VaYeyEJ1MWgxM3Vk16wTrHpv3bGZw,642
|
|
133
|
+
kard/notifications/types/valid_transaction_data.py,sha256=JH5eOk0HUwxdWeCmEu6q5I_OaEIANBIUOBlECXcMJGA,822
|
|
134
|
+
kard/notifications/types/webhook_locations_attributes.py,sha256=Pqezh0tD5vj0vVq0hINIv7yJ18RMNW0RPYvGfjgwzlU,1981
|
|
135
|
+
kard/notifications/types/webhook_locations_data.py,sha256=DAOBmAp9HDAQwP0Y4z6ZNJ5UTHzqQEjGwW-mogZ8YF0,838
|
|
136
|
+
kard/notifications/types/webhook_locations_relationships.py,sha256=sZXNfjgskzQ4dswsl1Rag1rZElByCb4uIYLP4947FZs,624
|
|
137
|
+
kard/notifications/types/webhook_merchant_attributes.py,sha256=kioecjQbwD2GlP3M7CqXQrhSV2f2APcMQOFSWdpWu2c,1804
|
|
138
|
+
kard/notifications/types/webhook_merchant_data.py,sha256=50LJidcRLY27j_2FmR1tbe4NnESQCnjlSFhqtmpnjdA,831
|
|
139
|
+
kard/notifications/types/webhook_merchant_relationships.py,sha256=D1-_o1fvziYLJHsoRUD_l-7kpvl5rwRkIVwEA-n_Bac,650
|
|
140
|
+
kard/notifications/types/webhook_offer_attributes.py,sha256=ON3scHFcyQroRqR5ThDvYqniCbKqHDkdR_8LxqZNoPA,4421
|
|
141
|
+
kard/notifications/types/webhook_offer_data.py,sha256=VowOn18TwloFWHM9cuuJ2T6RSKgu2hsO1u8uTf46qPA,810
|
|
142
|
+
kard/notifications/types/webhook_offer_relationships.py,sha256=c6SB2Hvk9jtVz0FoHSR1TikbfasS_CMHqaqHLL_5jZc,620
|
|
143
|
+
kard/notifications/types/webhook_user_offer_attributes.py,sha256=gOVz3E_q9orINKWyHn2_Ak7s3Rvu1-LQKYuuqQvJRqA,1336
|
|
144
|
+
kard/notifications/types/webhook_user_offer_data.py,sha256=nrjz0ZgKi53RfaoG9aLN5Ov9FHO55zelQyNn6qGaOfM,840
|
|
145
|
+
kard/notifications/types/webhook_user_offer_relationships.py,sha256=pufFz-GO2IY_GQ7JSU00UyY9X8Z5D3iYJYZegUYKvJs,650
|
|
146
|
+
kard/ping/__init__.py,sha256=WiHYXiu5LLCh50stjEon4znLb7bjKCBHNYDAzPpn-Q0,1279
|
|
147
|
+
kard/ping/client.py,sha256=yqe6QrjF_rkwWfKoHtQ6INkC7sw2Af0S9uNBc4Qwmn4,2760
|
|
148
|
+
kard/ping/errors/__init__.py,sha256=FI8glx6-VDZm1fgKtYF9yc8wM3fNpujQlYFwtsYUlGs,1109
|
|
149
|
+
kard/ping/errors/network_blocked_error.py,sha256=-Ekd1TI4BhsASzP1pcbuqrTd25gFF0qthj0GX0UDHBQ,410
|
|
150
|
+
kard/ping/raw_client.py,sha256=EwP67HfYlItf4xNwx5e3uf2a-l0Bw1px8DNOb6UAcYA,4449
|
|
151
|
+
kard/ping/types/__init__.py,sha256=Uxn3iR4i0-PAn8lRr3rB25Ww6rsRG0YOnWC2nb6Ayx8,1268
|
|
152
|
+
kard/ping/types/network_blocked_error_body.py,sha256=V4hn4mW2AXPFoe244GgrNJkSy7bhn4wAQ3fUFAX-Ww0,844
|
|
153
|
+
kard/ping/types/ping_response_object.py,sha256=24U4gl0Gvv2cWyYfwEo0kUv0fzuV9C_OSinCKDHJj54,1051
|
|
154
|
+
kard/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
+
kard/transactions/__init__.py,sha256=Do6DzHv3x1g9v07IlslCVG_geZ043u0bcA93GdH_l6I,7170
|
|
156
|
+
kard/transactions/client.py,sha256=C6MzjUS4OYtPmPHA7aTaiI0K8YYLYLUCJep3dRuEgfk,23078
|
|
157
|
+
kard/transactions/errors/__init__.py,sha256=pDra_nnYhofTIIyZcKg87mt8BtkCJIZHv-q9w_IQt3Y,1482
|
|
158
|
+
kard/transactions/errors/create_audit_multi_status.py,sha256=TtiJKobLGl9-jEUeeAUb7A0YZxkjNqwmmy2ZBsFV2GY,435
|
|
159
|
+
kard/transactions/errors/create_incoming_transactions_multi_status.py,sha256=lbuakDgZZjFdqxygaN2LmbfsYd71FwC4kSswPH_WUUQ,433
|
|
160
|
+
kard/transactions/errors/fraud_multi_status.py,sha256=30x_dQncd6Wcgh95h95oS59kGNctSrnSSNHdGffrcdw,424
|
|
161
|
+
kard/transactions/raw_client.py,sha256=LXxSF4zdWE0bk6ZC14vlUmEKVKHzSqpz9uZzJtRqig0,38673
|
|
162
|
+
kard/transactions/types/__init__.py,sha256=8D5s7OHy2iLsZKwyQ0mrfGbCufh_DAfaLUCOCxDJnj4,9315
|
|
163
|
+
kard/transactions/types/audit_attributes.py,sha256=lmABmuuiEwopHO69yaROQRSpdqfLsR1LSGmuODWW7Tg,1655
|
|
164
|
+
kard/transactions/types/audit_request_data.py,sha256=UXFWKzz4mrDu8C4iTUJo14a3_YHHigDLD0RImI4ROUU,588
|
|
165
|
+
kard/transactions/types/audit_response_attributes.py,sha256=ho8lgnA5jRAcbv0SGPx9X1F4D-55ZID74bGClI8A_q4,746
|
|
166
|
+
kard/transactions/types/audit_response_data.py,sha256=xiBwr06hTtCmtwZl7iJGItXM6hGn1LbWv1NIhHCldVs,683
|
|
167
|
+
kard/transactions/types/audit_status.py,sha256=CXMje_KXwavYHmCY3iGkKMD50gAq8GPiqLPSnf64Tr8,167
|
|
168
|
+
kard/transactions/types/card_network.py,sha256=bNy8nINa2OxeGPuMSYA_4Tt2JA8fDVsDerhl9X8c1-Q,188
|
|
169
|
+
kard/transactions/types/commission_earned_details.py,sha256=LCEiFx6uuTt3DFdya3Hnox5puGo2A6ivvYK9VevpYEw,633
|
|
170
|
+
kard/transactions/types/create_audit_multi_status_response.py,sha256=2J9w-lbrb6FAnJhqxnXnnYYHYrrsn21RQY14Jn9dUBk,708
|
|
171
|
+
kard/transactions/types/create_audit_request_body.py,sha256=5-aYElqfXII8JQHgQnnxsoG97BXw9kOwq8fUZ0_odK0,1225
|
|
172
|
+
kard/transactions/types/create_audit_request_data_union.py,sha256=QskoLyuqAd_78Udl7asjSEXg2AvI7RwUH0MskUBW6LY,751
|
|
173
|
+
kard/transactions/types/create_audit_response_body.py,sha256=k0cFa3E1Ht9Q0bWrGl2r63lQ6tiFdNPTsn7AbWizJ8c,1152
|
|
174
|
+
kard/transactions/types/create_audit_response_data_union.py,sha256=ncFXxFtGZgOgsMy0wMcyU8U22FJoV-4uelTbNDx9tGg,791
|
|
175
|
+
kard/transactions/types/direction_type.py,sha256=FxBLHWguWmFhIraDfHDyulaXN-y-RXkseXQYqRiIKpY,156
|
|
176
|
+
kard/transactions/types/fraudulent_transaction_attributes.py,sha256=7ODTT7z9iRLsD_Hpbvwu9PwvU2VqEymo6P0ZflxcrSI,749
|
|
177
|
+
kard/transactions/types/fraudulent_transaction_data.py,sha256=YpY25KDfHW7pUg7HVsR2Lx9BcE2mYuQrCJGXzrP7NH0,842
|
|
178
|
+
kard/transactions/types/fraudulent_transaction_object.py,sha256=EdYj8zjrpFxaxnPnbSvdAE7uv6bjJ0UldqF45Kh1nd0,1151
|
|
179
|
+
kard/transactions/types/fraudulent_transaction_request_body.py,sha256=JmwjoDv8t2OK8R246yrRuAE1NBkQEpse1YuRECxxYUo,1251
|
|
180
|
+
kard/transactions/types/fraudulent_transaction_response.py,sha256=VEXglH_rGiATjUhq4hxjgznGElxGyF0Ld5lvgIpxS-o,672
|
|
181
|
+
kard/transactions/types/get_earned_rewards_response.py,sha256=Dyme42tdV1vue9gY0-cHWw_5Gb2aG_TVjP4cLK2hpkA,4877
|
|
182
|
+
kard/transactions/types/matched_transactions_attributes.py,sha256=2uyCisKDXgF51YbbjNahCLVW-JgfQaNAXeGg5lNMUSo,5779
|
|
183
|
+
kard/transactions/types/matched_transactions_request.py,sha256=hLj4bSrmgj7AeWVF17iW1JnsgH_bXqnsJ13p1i0VOp0,806
|
|
184
|
+
kard/transactions/types/merchant.py,sha256=_ew9dwlRw-am0Ak2YryBacKBwWsbsXCv1XCc_YlveMI,2632
|
|
185
|
+
kard/transactions/types/payment_status.py,sha256=WAPrKYxiGOYfFnrx_elHWM81caU7hsjhSkwfVm8wE_I,163
|
|
186
|
+
kard/transactions/types/payment_type.py,sha256=8kzkJHmI8AI6uStv5HqlqY77Z1RUSNxOmvlhzmfttnI,162
|
|
187
|
+
kard/transactions/types/processor_mid.py,sha256=aPt0SCW7o7V2-SlrQ1iQc7B8LKwBWDw6MTrg3xX7_8M,699
|
|
188
|
+
kard/transactions/types/receipt_medium_type.py,sha256=uytUfKPsfnewd2dUq5nwveBHOA3V2lfwUMTd7Ny50nE,167
|
|
189
|
+
kard/transactions/types/rewarded_transaction.py,sha256=M57TFpUzwTFqO6UUecDHO9Zo9TpkqB8AAMy_0Nal2ZM,849
|
|
190
|
+
kard/transactions/types/rewarded_transaction_attributes.py,sha256=oxo0885wmYIwVbHTyVwwZjYDon5eZqRjUmIgil0bsnw,2420
|
|
191
|
+
kard/transactions/types/rewarded_transaction_relationships.py,sha256=XYlCOPIETZakwAut8Wziy_3JWRx1o1whcXp2fWhfj1M,686
|
|
192
|
+
kard/transactions/types/rewarded_transaction_status.py,sha256=TSUvqKQtiLTcq4SEd1WPz5D0J6b3gohETk34iIOYcHw,160
|
|
193
|
+
kard/transactions/types/rewarded_transaction_union.py,sha256=Njqn0j_qCQhGQdPQFa4O7Uzgj7jC37m0Ruk-tmTfyrc,986
|
|
194
|
+
kard/transactions/types/states.py,sha256=HK6FmYCdFcQ7EyI46UCpHFRreeupRO_a4ji0hrn8_RA,974
|
|
195
|
+
kard/transactions/types/transaction_included_resource.py,sha256=jGKED7qa12vME5hf5v6c-4qsenmtxMo5UxES0KODtvk,1495
|
|
196
|
+
kard/transactions/types/transaction_merchant_attributes.py,sha256=xqgk1lKUJxfXXpfHOoAi0Sa3uZuhZICStQC-Vx0MWc0,590
|
|
197
|
+
kard/transactions/types/transaction_merchant_resource.py,sha256=NzLgzKb_JyQgRpcDATbp4HYm4xyJoebu12WRBcg4Wg4,773
|
|
198
|
+
kard/transactions/types/transaction_offer_attributes.py,sha256=eEQRM1yM4ZoPXjgd18eWRPaZjj0saCdn81dPs5iUcy4,774
|
|
199
|
+
kard/transactions/types/transaction_offer_resource.py,sha256=xsKhag0NHTDLNJkI2jMhReg1zXt76PZKL54Ig9cWgqQ,755
|
|
200
|
+
kard/transactions/types/transaction_payment_type.py,sha256=sjXJzFMi_ieLdJEmEuoe08lcubrxpwJzeHt1U6dWilo,154
|
|
201
|
+
kard/transactions/types/transaction_status.py,sha256=aOgqyed3BJ7ad1No0_Zt5p5GyS7f_EfcmIlQ5TrdTvI,200
|
|
202
|
+
kard/transactions/types/transactions.py,sha256=vQhplcYv5DQ7yFmVGCpZMKXCH_f7YBRRps29lUXGx7w,1466
|
|
203
|
+
kard/transactions/types/transactions_attributes.py,sha256=61O6WKkb6ZpEMOz7RVpySH5-bXnd5iSPzeg4djTsOPc,7167
|
|
204
|
+
kard/transactions/types/transactions_multi_response.py,sha256=mLapuri6ptF0QsD781Cx6WJ85EofmCkBcuan1N2DmF8,652
|
|
205
|
+
kard/transactions/types/transactions_request.py,sha256=2ScDWE8Xtb6UdanjzS6eN0KZVfsObqMq60uqrI_XJj4,777
|
|
206
|
+
kard/transactions/types/transactions_request_body.py,sha256=O8V_S09ZqkEKAGkaCD6-7Jd2_orJGDgXyWL7tkGI70Y,3286
|
|
207
|
+
kard/transactions/types/transactions_response.py,sha256=J_GYrJ3Rs8fXakrdrlzemMaFUavjYu-qqAUJzh_xl_s,1099
|
|
208
|
+
kard/transactions/types/transactions_response_data.py,sha256=nHFzk-sgUHea2c-LZ5cH5sNTUXMB2RNF5pUcNsFdwzA,740
|
|
209
|
+
kard/transactions/types/visa_mid.py,sha256=inLd8mrhQ1hmdHo7g03NYMbGtq-UGo6OuhR9IFtKVjY,658
|
|
210
|
+
kard/transactions/types/visa_mid_details.py,sha256=TKck88YVWuhUvvydkfB-xUfNa1sx3h2Q8GSsiCBLqiM,724
|
|
211
|
+
kard/users/__init__.py,sha256=iAhq11fmBfS5KxNgEGEXxT-i-SpQ7b6_jUPZ89II7iw,10400
|
|
212
|
+
kard/users/attributions/__init__.py,sha256=kKMcKJ2Sjlc-1Mi2BERYYA8VPUXSTQjDqi7VTJ82y94,2446
|
|
213
|
+
kard/users/attributions/client.py,sha256=VTEw6XP9Ey9O6gRZhgdXeY7ox21F02lLvhwsZ9HqjT4,8614
|
|
214
|
+
kard/users/attributions/raw_client.py,sha256=fqZre0qsFvgk-gWWfvvbjmH1gk21RgTakGUldNnIeBI,8999
|
|
215
|
+
kard/users/attributions/types/__init__.py,sha256=2Mhx6gaLohMQVlLy_By1tnRU7Xq5E9RMXieBmpHC0fg,3032
|
|
216
|
+
kard/users/attributions/types/create_attribution_request_object.py,sha256=5mPd08m5hbIjgKJLX32rMbzRCGsqAK5mogORmsdRGpY,2713
|
|
217
|
+
kard/users/attributions/types/create_attribution_request_union.py,sha256=-v1lbWgSiXV-Kj7-S0--2Zq1sHmBDHb-e-CeSVg_UDI,1598
|
|
218
|
+
kard/users/attributions/types/create_attribution_response.py,sha256=UkWEvJHUHhvG-GWsU1pQ93DKWjhbTN0OJUbPQufX-Eo,1054
|
|
219
|
+
kard/users/attributions/types/event_code.py,sha256=JJGVoYn1FGuI8vyiamktxKKUGR3NIw_BOZEaxG2nBew,155
|
|
220
|
+
kard/users/attributions/types/notification_attribution_attributes.py,sha256=9zoFlCIRDoqV1o2zXYx8z2axRokZ1R-_ey0QnwbrbzI,1204
|
|
221
|
+
kard/users/attributions/types/notification_attribution_request.py,sha256=gbXSdDsXoQZCeYus73WlXj5inQHITxcG2gd6uB0IXEU,658
|
|
222
|
+
kard/users/attributions/types/notification_medium.py,sha256=2ay0h6nIqf0DeolWfk9dD_6NsoXm6RgfjUCQRoR9pbw,150
|
|
223
|
+
kard/users/attributions/types/offer_attribution_attributes.py,sha256=B2FZiEgSeQbF3yHZ5rSnBLYuOTBx1zNIgO5MPYdY_9g,1169
|
|
224
|
+
kard/users/attributions/types/offer_attribution_request.py,sha256=aU4vKiuKv-YRlyKdvY-90jNUXEmvHtMll1FvPii8MFU,630
|
|
225
|
+
kard/users/attributions/types/offer_medium.py,sha256=5K3bGlrPdxFu4FSPvYRqdjSY5VD7DYnX43nUJ1IqnDQ,171
|
|
226
|
+
kard/users/client.py,sha256=uWmsS_ADD385A8_69-xJhR-VfTQIvQPZ7iaNsQTaofA,15251
|
|
227
|
+
kard/users/errors/__init__.py,sha256=BYAoqh-RDSspC-n4ilOC_7zA1XRP7cHdikIiLsD2BkU,1067
|
|
228
|
+
kard/users/errors/multi_status.py,sha256=6SScVu3LIZ_AghltI8DKd1g8l-1KJdEo9GwjP0TwmsE,424
|
|
229
|
+
kard/users/raw_client.py,sha256=vGX7EYcyivMXrf6egmpePuD6gHy6WkcQ2B9UeT9ksGg,30492
|
|
230
|
+
kard/users/rewards/__init__.py,sha256=BEYDl3K_7TF8EG8keqMsD_IoCxLKPQNDsxwd3DtgkYI,3814
|
|
231
|
+
kard/users/rewards/client.py,sha256=2-LX-WSDd4fss_qqTYhfsvXM-cjFfD8hSnIL8ALDTvU,15978
|
|
232
|
+
kard/users/rewards/raw_client.py,sha256=P4xNOWNpIaHNnOpmQGsjr_cUDCq0-kENQ4k0Fm8B5FI,24578
|
|
233
|
+
kard/users/rewards/types/__init__.py,sha256=dFe0JbQ7G8sT9cyYhXqP4jmr30MLOPuq33KZexw-veM,5032
|
|
234
|
+
kard/users/rewards/types/amount.py,sha256=mPz7D_XNus0QTEQFfUhfNiDqzhonYm2NhPJvUIfLlmo,573
|
|
235
|
+
kard/users/rewards/types/amount_type.py,sha256=Xq8ZqimlAXzz0TuMztTHKh9u16vSCk1MCFDzXxmpWrI,143
|
|
236
|
+
kard/users/rewards/types/asset.py,sha256=IG3YJ65QUNTZpyHndPdSdzuR_5AISX1BztgssI37Os0,690
|
|
237
|
+
kard/users/rewards/types/category_data.py,sha256=IoTPKWcnEhE6MDzgZJZ_LvZDkR7qVmO2KTrCdDAO7R8,538
|
|
238
|
+
kard/users/rewards/types/category_fields.py,sha256=xNs74bqbXsinMGWcAAiEuAYc4fmhpwR1dcJBoKf7yPY,655
|
|
239
|
+
kard/users/rewards/types/category_identifier.py,sha256=xde3IQIoEqcBpmar7hGwuSccXaPpqJNzYF6fFXLdlkk,634
|
|
240
|
+
kard/users/rewards/types/category_included.py,sha256=gY0g4gCtGfAgMdnqE61KHXy_k9GSlwGCrzWUn22S54Q,618
|
|
241
|
+
kard/users/rewards/types/category_relationship.py,sha256=HS43ujTD-injrJJFdPb5m13ONsClcgDJwLzt7m3NIr0,591
|
|
242
|
+
kard/users/rewards/types/category_relationship_object.py,sha256=y51if2Uc9NR8vLgYiUHnOFCxHzgUQOxnEhNHfhJ7QeY,612
|
|
243
|
+
kard/users/rewards/types/commission.py,sha256=BGn9TlcqUXt1iUq6JRr7w5nF9mqCJeGl5YFAhIcWEUo,608
|
|
244
|
+
kard/users/rewards/types/coordinates.py,sha256=lO4TMhukEP459DA3kCJkzTtXTtuBbmoEhRiVL1u14QQ,547
|
|
245
|
+
kard/users/rewards/types/eligibility_location_address.py,sha256=QQAbJrcaQGPF-JSKzuEzGSGwu5NSguQzdHUep0i7KQo,719
|
|
246
|
+
kard/users/rewards/types/eligibility_location_included.py,sha256=8JHm8tqY44Cr_PnW1zFtMedaWaQwFfrwF6VlgsxhuXE,251
|
|
247
|
+
kard/users/rewards/types/eligibility_offer_included.py,sha256=uw_eJ4Bg_qXFuvgwddof3ATUILvcQQXDRNpsyu7LviU,187
|
|
248
|
+
kard/users/rewards/types/eligibility_offer_relationship.py,sha256=EzDWXZkZGao6Q4m1wc-2Aawg1jPqfGeJO_NQfe8KzaI,222
|
|
249
|
+
kard/users/rewards/types/location_attributes.py,sha256=9NseqSj6By6ADesCVf16dcE-XKcDGPtq0PFHrOe5PZU,939
|
|
250
|
+
kard/users/rewards/types/location_data.py,sha256=UCug_tdbJiIkg2CUJ9UuOm-n_PVz3i58_0vcfOU1ILM,974
|
|
251
|
+
kard/users/rewards/types/location_relationships.py,sha256=uvpssn38o5ECEjqLaLLwAVSbA5N4JaXiM7jfbYH4mPM,544
|
|
252
|
+
kard/users/rewards/types/location_sort_options.py,sha256=f4LGu_1fDRyFfCF16mTtOW_G6hZKhFVyEMiqsXpEKPA,176
|
|
253
|
+
kard/users/rewards/types/locations_response_object.py,sha256=tJwgSah1hMU9xxhR4CJYxlxtUO_CZ_SykyyQTkjAcOA,8519
|
|
254
|
+
kard/users/rewards/types/offer_common_fields.py,sha256=8SbZy_EIiFYWyMM8Y9VpyqyWKiVqfYERecR96gaTmNM,3319
|
|
255
|
+
kard/users/rewards/types/offer_data_union.py,sha256=X25igJzii4d_l4MXzuUxYphSdFoRK9JfB6iVQTmJWE8,966
|
|
256
|
+
kard/users/rewards/types/offer_relationship.py,sha256=ELs7MTQJyiWYSxpTnuD3JHCP562eM5mZ0MhxD6ej720,653
|
|
257
|
+
kard/users/rewards/types/offer_sort_options.py,sha256=IRY5nlXqcHNc6oU0UUs9GXK3xeyi1Fa20JWaFF_xuJE,227
|
|
258
|
+
kard/users/rewards/types/offers_response_object.py,sha256=wDVKS4DYdjUX_Phb3dRrqjzEMoJ15PsD_-EtXtC8N2M,4703
|
|
259
|
+
kard/users/rewards/types/operation_hours.py,sha256=-biqs73AgMO2i1gRhl90H8lM48EYbscMP6tiJELbCtw,771
|
|
260
|
+
kard/users/rewards/types/operation_period.py,sha256=YVCnVoRbguzT7biSdL1TI0TjbKocET4qjpzgJLTmzSU,601
|
|
261
|
+
kard/users/rewards/types/operation_time.py,sha256=829hdDJdGt3Aps5JKt08TQRRtPTYR2AhK8QpZjN36S8,535
|
|
262
|
+
kard/users/rewards/types/standard_offer.py,sha256=x5plfW8Q8ObtCDnbkEEKRpItPX4M7rJK5b2CdyyrdaE,683
|
|
263
|
+
kard/users/rewards/types/standard_offer_core.py,sha256=-zAVnPdbYy2QL8nSXIjMQId31myMrq2r0dGdNW2tibI,732
|
|
264
|
+
kard/users/rewards/types/standard_offer_fields.py,sha256=I1CucaWzi-J9nbLBwB4l_UUv-7HXUKHMs1OIYCYlYhs,543
|
|
265
|
+
kard/users/types/__init__.py,sha256=pNXdcyk8MuIIgNNiG7OUGxjJNEj9E6K1tDsw0eerxMM,2569
|
|
266
|
+
kard/users/types/create_users_multi_status_response.py,sha256=wQ97mQBCKVG7kKsjPRuDVtJXSrjgxkksc3J-J3PVtos,683
|
|
267
|
+
kard/users/types/create_users_object.py,sha256=Ia99UGm5dvwFkHtyjapttUZLJF5C_xoBMzM7ovrfa_s,1086
|
|
268
|
+
kard/users/types/delete_user_response_object.py,sha256=raXq1cBidaCqsPQSiR1mcZ4bR49W2BvOiRppxa1tvig,941
|
|
269
|
+
kard/users/types/update_user_object.py,sha256=yYqyL8tb0tTwafkMdwOhfj9E-AKao22Wt5e28kUho60,1022
|
|
270
|
+
kard/users/types/user_request_attributes.py,sha256=ewOJ01OCorxHURb31UIWt2xD1Etq1FfVmKwLvZHxjGo,1849
|
|
271
|
+
kard/users/types/user_request_data.py,sha256=tOEVVQ7UKFYz0GDYxPCApX5MnA-yPdXkszM3AbQpuX8,665
|
|
272
|
+
kard/users/types/user_request_data_union.py,sha256=1w6as3KkZ0_ZH6QFvJ3WNHworhB8w0ugqLdevzzfTK4,804
|
|
273
|
+
kard/users/types/user_response_no_data.py,sha256=LbZIhgn4QlL5I-mlviW57Gf4Uy6wk_QZt0uzi-RDB5s,653
|
|
274
|
+
kard/users/types/user_response_union_no_data.py,sha256=evrxI_-1kQZYNq3yXaFgBFxZWVsslqSDczbBHUCxmVw,798
|
|
275
|
+
kard/users/uploads/__init__.py,sha256=aTzcWFv1dh1_Ae3IrJecCPtdJSSYKhWw5dB4yy_wlgA,4502
|
|
276
|
+
kard/users/uploads/client.py,sha256=s5gLlelzbNZFDFcJMs4udVLCOETngq-lDcEcP0-JEXY,17047
|
|
277
|
+
kard/users/uploads/errors/__init__.py,sha256=1CNMJtmZqj-6hL7D3spvtmwQ6M2m2y9iuOHqvhUWG24,1121
|
|
278
|
+
kard/users/uploads/errors/upload_part_multi_status.py,sha256=b18Qq6iSkrDLcaC3V8UpKYic8EhWOtgd2ujnPf6fztA,465
|
|
279
|
+
kard/users/uploads/raw_client.py,sha256=_7sExXH4etQM1ewS7lBN5g8HVIibqRp863cFdeMqx04,25506
|
|
280
|
+
kard/users/uploads/types/__init__.py,sha256=3ZgW74AvyOUod-1FP7p0HNibvYxBr2sD_dlQcUVSQ9A,5845
|
|
281
|
+
kard/users/uploads/types/create_upload_part_data_union.py,sha256=HvpA1jkLnYdg8tDaSP-9PT-2r0RjPekDOVPiraAPpvc,865
|
|
282
|
+
kard/users/uploads/types/create_upload_part_multi_status_response.py,sha256=1Qa5A5UJv_4NsszwQFrY5Q3vPI12LSH-X_RiAre2Ud4,731
|
|
283
|
+
kard/users/uploads/types/create_upload_part_request_object.py,sha256=A_1M2NE5iCqxcAYXN4TjUkkLgUOO5vtMEtyHoKOKOMY,2686
|
|
284
|
+
kard/users/uploads/types/create_upload_part_response_data.py,sha256=ofGGvVjmCdoa6i7GI4ulvPhabtoV7H3uSMY1eZpp4AA,688
|
|
285
|
+
kard/users/uploads/types/create_upload_part_response_data_union.py,sha256=r98KogjgSGrzuLnxFKkFP8i06evR4BZdVE_tQWuWGqM,851
|
|
286
|
+
kard/users/uploads/types/create_upload_part_response_object.py,sha256=rAzFp0QpSFl0aBUIT5WB3KPeB-FPF5G_AH49cKnJm2k,1125
|
|
287
|
+
kard/users/uploads/types/create_upload_request_data_union.py,sha256=OS48o7RAvOrRtf4yBjMoINExSkeXvNrcV-gecRN4ybk,844
|
|
288
|
+
kard/users/uploads/types/create_upload_request_object.py,sha256=oPpzPISyNWp8euZ26V7NhZ2_Zpae6TLMwQbzJRt93II,1018
|
|
289
|
+
kard/users/uploads/types/create_upload_response_data.py,sha256=9TjQoap3icqOvXIj77Ngww_z_gJjZ-pD4xTJIFt-xrg,706
|
|
290
|
+
kard/users/uploads/types/create_upload_response_data_union.py,sha256=ccYNfWJZQWRiSkg70MnI7BivooOFJENxFoj36_3Q-AU,859
|
|
291
|
+
kard/users/uploads/types/create_upload_response_object.py,sha256=6zmVE9mTeLRXjPOhg_prlfo2LKO3JwTefkyFcytAU4A,1081
|
|
292
|
+
kard/users/uploads/types/historical_transaction_complete_no_data.py,sha256=aLAtkoFuNc-neCoqKUz3hcnl-JbnTn2fkjRBVvelKU4,729
|
|
293
|
+
kard/users/uploads/types/start_historical_upload_no_data.py,sha256=B3X2Hs8h9FURfmVeQ1gOxcTMzoPiGwBjCPUjf3ok8sw,605
|
|
294
|
+
kard/users/uploads/types/update_upload_request_data_union.py,sha256=OKa6ODBYZxTiJ5GJhAc2GEwJqUYYnUhIOBKf5UvGKIU,868
|
|
295
|
+
kard/users/uploads/types/update_upload_request_object.py,sha256=rrwhygPGqYkxicJYHKTuEQuVowf2F4fEfrSNdw02Htk,1079
|
|
296
|
+
kard/users/uploads/types/update_upload_response_data.py,sha256=au2tb-iSvkMBDhU6sa3jiSNVzbAH7UY95EMwiRI5woc,706
|
|
297
|
+
kard/users/uploads/types/update_upload_response_data_union.py,sha256=717YqC18LeMNyAkDgYZM2Us40enHiatm3s6UXiMCMPA,871
|
|
298
|
+
kard/users/uploads/types/update_upload_response_object.py,sha256=0iwmSNlgVGPGh9BwzteN1FrhArQStYfjeBkwhOUNAMY,1087
|
|
299
|
+
kard/version.py,sha256=V9m3K1LBEp-MG1T3GWvmb-JWKp8CK-cti5N4GIfQe2I,85
|
|
300
|
+
kard_financial_sdk-0.0.82.dist-info/METADATA,sha256=68JgrNqQ5D6EdE5JJ62k9ivOTA2QeaHG2VTBL5AiPgE,7051
|
|
301
|
+
kard_financial_sdk-0.0.82.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
302
|
+
kard_financial_sdk-0.0.82.dist-info/RECORD,,
|