checkout-intents 0.3.2__py3-none-any.whl → 0.4.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1247,9 +1247,12 @@ class SyncAPIClient(BaseClient[httpx.Client, Stream[Any]]):
1247
1247
  *,
1248
1248
  cast_to: Type[ResponseT],
1249
1249
  body: Body | None = None,
1250
+ files: RequestFiles | None = None,
1250
1251
  options: RequestOptions = {},
1251
1252
  ) -> ResponseT:
1252
- opts = FinalRequestOptions.construct(method="patch", url=path, json_data=body, **options)
1253
+ opts = FinalRequestOptions.construct(
1254
+ method="patch", url=path, json_data=body, files=to_httpx_files(files), **options
1255
+ )
1253
1256
  return self.request(cast_to, opts)
1254
1257
 
1255
1258
  def put(
@@ -1767,9 +1770,12 @@ class AsyncAPIClient(BaseClient[httpx.AsyncClient, AsyncStream[Any]]):
1767
1770
  *,
1768
1771
  cast_to: Type[ResponseT],
1769
1772
  body: Body | None = None,
1773
+ files: RequestFiles | None = None,
1770
1774
  options: RequestOptions = {},
1771
1775
  ) -> ResponseT:
1772
- opts = FinalRequestOptions.construct(method="patch", url=path, json_data=body, **options)
1776
+ opts = FinalRequestOptions.construct(
1777
+ method="patch", url=path, json_data=body, files=await async_to_httpx_files(files), **options
1778
+ )
1773
1779
  return await self.request(cast_to, opts)
1774
1780
 
1775
1781
  async def put(
@@ -3,7 +3,7 @@
3
3
  from __future__ import annotations
4
4
 
5
5
  import os
6
- from typing import Any, Dict, Mapping, cast
6
+ from typing import TYPE_CHECKING, Any, Dict, Mapping, cast
7
7
  from typing_extensions import Self, Literal, override
8
8
 
9
9
  import httpx
@@ -20,8 +20,8 @@ from ._types import (
20
20
  not_given,
21
21
  )
22
22
  from ._utils import is_given, get_async_library
23
+ from ._compat import cached_property
23
24
  from ._version import __version__
24
- from .resources import brands, checkout_intents
25
25
  from ._streaming import Stream as Stream, AsyncStream as AsyncStream
26
26
  from ._exceptions import APIStatusError, CheckoutIntentsError
27
27
  from ._base_client import (
@@ -30,6 +30,11 @@ from ._base_client import (
30
30
  AsyncAPIClient,
31
31
  )
32
32
 
33
+ if TYPE_CHECKING:
34
+ from .resources import brands, checkout_intents
35
+ from .resources.brands import BrandsResource, AsyncBrandsResource
36
+ from .resources.checkout_intents import CheckoutIntentsResource, AsyncCheckoutIntentsResource
37
+
33
38
  __all__ = [
34
39
  "ENVIRONMENTS",
35
40
  "Timeout",
@@ -66,11 +71,6 @@ def _extract_environment_from_api_key(api_key: str) -> Literal["staging", "produ
66
71
 
67
72
 
68
73
  class CheckoutIntents(SyncAPIClient):
69
- checkout_intents: checkout_intents.CheckoutIntentsResource
70
- brands: brands.BrandsResource
71
- with_raw_response: CheckoutIntentsWithRawResponse
72
- with_streaming_response: CheckoutIntentsWithStreamedResponse
73
-
74
74
  # client options
75
75
  api_key: str
76
76
 
@@ -166,10 +166,25 @@ class CheckoutIntents(SyncAPIClient):
166
166
  _strict_response_validation=_strict_response_validation,
167
167
  )
168
168
 
169
- self.checkout_intents = checkout_intents.CheckoutIntentsResource(self)
170
- self.brands = brands.BrandsResource(self)
171
- self.with_raw_response = CheckoutIntentsWithRawResponse(self)
172
- self.with_streaming_response = CheckoutIntentsWithStreamedResponse(self)
169
+ @cached_property
170
+ def checkout_intents(self) -> CheckoutIntentsResource:
171
+ from .resources.checkout_intents import CheckoutIntentsResource
172
+
173
+ return CheckoutIntentsResource(self)
174
+
175
+ @cached_property
176
+ def brands(self) -> BrandsResource:
177
+ from .resources.brands import BrandsResource
178
+
179
+ return BrandsResource(self)
180
+
181
+ @cached_property
182
+ def with_raw_response(self) -> CheckoutIntentsWithRawResponse:
183
+ return CheckoutIntentsWithRawResponse(self)
184
+
185
+ @cached_property
186
+ def with_streaming_response(self) -> CheckoutIntentsWithStreamedResponse:
187
+ return CheckoutIntentsWithStreamedResponse(self)
173
188
 
174
189
  @property
175
190
  @override
@@ -279,11 +294,6 @@ class CheckoutIntents(SyncAPIClient):
279
294
 
280
295
 
281
296
  class AsyncCheckoutIntents(AsyncAPIClient):
282
- checkout_intents: checkout_intents.AsyncCheckoutIntentsResource
283
- brands: brands.AsyncBrandsResource
284
- with_raw_response: AsyncCheckoutIntentsWithRawResponse
285
- with_streaming_response: AsyncCheckoutIntentsWithStreamedResponse
286
-
287
297
  # client options
288
298
  api_key: str
289
299
 
@@ -379,10 +389,25 @@ class AsyncCheckoutIntents(AsyncAPIClient):
379
389
  _strict_response_validation=_strict_response_validation,
380
390
  )
381
391
 
382
- self.checkout_intents = checkout_intents.AsyncCheckoutIntentsResource(self)
383
- self.brands = brands.AsyncBrandsResource(self)
384
- self.with_raw_response = AsyncCheckoutIntentsWithRawResponse(self)
385
- self.with_streaming_response = AsyncCheckoutIntentsWithStreamedResponse(self)
392
+ @cached_property
393
+ def checkout_intents(self) -> AsyncCheckoutIntentsResource:
394
+ from .resources.checkout_intents import AsyncCheckoutIntentsResource
395
+
396
+ return AsyncCheckoutIntentsResource(self)
397
+
398
+ @cached_property
399
+ def brands(self) -> AsyncBrandsResource:
400
+ from .resources.brands import AsyncBrandsResource
401
+
402
+ return AsyncBrandsResource(self)
403
+
404
+ @cached_property
405
+ def with_raw_response(self) -> AsyncCheckoutIntentsWithRawResponse:
406
+ return AsyncCheckoutIntentsWithRawResponse(self)
407
+
408
+ @cached_property
409
+ def with_streaming_response(self) -> AsyncCheckoutIntentsWithStreamedResponse:
410
+ return AsyncCheckoutIntentsWithStreamedResponse(self)
386
411
 
387
412
  @property
388
413
  @override
@@ -492,29 +517,79 @@ class AsyncCheckoutIntents(AsyncAPIClient):
492
517
 
493
518
 
494
519
  class CheckoutIntentsWithRawResponse:
520
+ _client: CheckoutIntents
521
+
495
522
  def __init__(self, client: CheckoutIntents) -> None:
496
- self.checkout_intents = checkout_intents.CheckoutIntentsResourceWithRawResponse(client.checkout_intents)
497
- self.brands = brands.BrandsResourceWithRawResponse(client.brands)
523
+ self._client = client
524
+
525
+ @cached_property
526
+ def checkout_intents(self) -> checkout_intents.CheckoutIntentsResourceWithRawResponse:
527
+ from .resources.checkout_intents import CheckoutIntentsResourceWithRawResponse
528
+
529
+ return CheckoutIntentsResourceWithRawResponse(self._client.checkout_intents)
530
+
531
+ @cached_property
532
+ def brands(self) -> brands.BrandsResourceWithRawResponse:
533
+ from .resources.brands import BrandsResourceWithRawResponse
534
+
535
+ return BrandsResourceWithRawResponse(self._client.brands)
498
536
 
499
537
 
500
538
  class AsyncCheckoutIntentsWithRawResponse:
539
+ _client: AsyncCheckoutIntents
540
+
501
541
  def __init__(self, client: AsyncCheckoutIntents) -> None:
502
- self.checkout_intents = checkout_intents.AsyncCheckoutIntentsResourceWithRawResponse(client.checkout_intents)
503
- self.brands = brands.AsyncBrandsResourceWithRawResponse(client.brands)
542
+ self._client = client
543
+
544
+ @cached_property
545
+ def checkout_intents(self) -> checkout_intents.AsyncCheckoutIntentsResourceWithRawResponse:
546
+ from .resources.checkout_intents import AsyncCheckoutIntentsResourceWithRawResponse
547
+
548
+ return AsyncCheckoutIntentsResourceWithRawResponse(self._client.checkout_intents)
549
+
550
+ @cached_property
551
+ def brands(self) -> brands.AsyncBrandsResourceWithRawResponse:
552
+ from .resources.brands import AsyncBrandsResourceWithRawResponse
553
+
554
+ return AsyncBrandsResourceWithRawResponse(self._client.brands)
504
555
 
505
556
 
506
557
  class CheckoutIntentsWithStreamedResponse:
558
+ _client: CheckoutIntents
559
+
507
560
  def __init__(self, client: CheckoutIntents) -> None:
508
- self.checkout_intents = checkout_intents.CheckoutIntentsResourceWithStreamingResponse(client.checkout_intents)
509
- self.brands = brands.BrandsResourceWithStreamingResponse(client.brands)
561
+ self._client = client
562
+
563
+ @cached_property
564
+ def checkout_intents(self) -> checkout_intents.CheckoutIntentsResourceWithStreamingResponse:
565
+ from .resources.checkout_intents import CheckoutIntentsResourceWithStreamingResponse
566
+
567
+ return CheckoutIntentsResourceWithStreamingResponse(self._client.checkout_intents)
568
+
569
+ @cached_property
570
+ def brands(self) -> brands.BrandsResourceWithStreamingResponse:
571
+ from .resources.brands import BrandsResourceWithStreamingResponse
572
+
573
+ return BrandsResourceWithStreamingResponse(self._client.brands)
510
574
 
511
575
 
512
576
  class AsyncCheckoutIntentsWithStreamedResponse:
577
+ _client: AsyncCheckoutIntents
578
+
513
579
  def __init__(self, client: AsyncCheckoutIntents) -> None:
514
- self.checkout_intents = checkout_intents.AsyncCheckoutIntentsResourceWithStreamingResponse(
515
- client.checkout_intents
516
- )
517
- self.brands = brands.AsyncBrandsResourceWithStreamingResponse(client.brands)
580
+ self._client = client
581
+
582
+ @cached_property
583
+ def checkout_intents(self) -> checkout_intents.AsyncCheckoutIntentsResourceWithStreamingResponse:
584
+ from .resources.checkout_intents import AsyncCheckoutIntentsResourceWithStreamingResponse
585
+
586
+ return AsyncCheckoutIntentsResourceWithStreamingResponse(self._client.checkout_intents)
587
+
588
+ @cached_property
589
+ def brands(self) -> brands.AsyncBrandsResourceWithStreamingResponse:
590
+ from .resources.brands import AsyncBrandsResourceWithStreamingResponse
591
+
592
+ return AsyncBrandsResourceWithStreamingResponse(self._client.brands)
518
593
 
519
594
 
520
595
  Client = CheckoutIntents
@@ -243,6 +243,9 @@ _T_co = TypeVar("_T_co", covariant=True)
243
243
  if TYPE_CHECKING:
244
244
  # This works because str.__contains__ does not accept object (either in typeshed or at runtime)
245
245
  # https://github.com/hauntsaninja/useful_types/blob/5e9710f3875107d068e7679fd7fec9cfab0eff3b/useful_types/__init__.py#L285
246
+ #
247
+ # Note: index() and count() methods are intentionally omitted to allow pyright to properly
248
+ # infer TypedDict types when dict literals are used in lists assigned to SequenceNotStr.
246
249
  class SequenceNotStr(Protocol[_T_co]):
247
250
  @overload
248
251
  def __getitem__(self, index: SupportsIndex, /) -> _T_co: ...
@@ -251,8 +254,6 @@ if TYPE_CHECKING:
251
254
  def __contains__(self, value: object, /) -> bool: ...
252
255
  def __len__(self) -> int: ...
253
256
  def __iter__(self) -> Iterator[_T_co]: ...
254
- def index(self, value: Any, start: int = 0, stop: int = ..., /) -> int: ...
255
- def count(self, value: Any, /) -> int: ...
256
257
  def __reversed__(self) -> Iterator[_T_co]: ...
257
258
  else:
258
259
  # just point this to a normal `Sequence` at runtime to avoid having to special case
@@ -1,4 +1,4 @@
1
1
  # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
 
3
3
  __title__ = "checkout_intents"
4
- __version__ = "0.3.2" # x-release-please-version
4
+ __version__ = "0.4.0" # x-release-please-version
@@ -70,6 +70,7 @@ class CheckoutIntentsResource(SyncAPIResource):
70
70
  buyer: BuyerParam,
71
71
  product_url: str,
72
72
  quantity: float,
73
+ promo_codes: SequenceNotStr[str] | Omit = omit,
73
74
  variant_selections: Iterable[VariantSelectionParam] | Omit = omit,
74
75
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
75
76
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -99,6 +100,7 @@ class CheckoutIntentsResource(SyncAPIResource):
99
100
  "buyer": buyer,
100
101
  "product_url": product_url,
101
102
  "quantity": quantity,
103
+ "promo_codes": promo_codes,
102
104
  "variant_selections": variant_selections,
103
105
  },
104
106
  checkout_intent_create_params.CheckoutIntentCreateParams,
@@ -671,6 +673,7 @@ class AsyncCheckoutIntentsResource(AsyncAPIResource):
671
673
  buyer: BuyerParam,
672
674
  product_url: str,
673
675
  quantity: float,
676
+ promo_codes: SequenceNotStr[str] | Omit = omit,
674
677
  variant_selections: Iterable[VariantSelectionParam] | Omit = omit,
675
678
  # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
676
679
  # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -700,6 +703,7 @@ class AsyncCheckoutIntentsResource(AsyncAPIResource):
700
703
  "buyer": buyer,
701
704
  "product_url": product_url,
702
705
  "quantity": quantity,
706
+ "promo_codes": promo_codes,
703
707
  "variant_selections": variant_selections,
704
708
  },
705
709
  checkout_intent_create_params.CheckoutIntentCreateParams,
@@ -23,4 +23,6 @@ class BaseCheckoutIntent(BaseModel):
23
23
 
24
24
  quantity: float
25
25
 
26
+ promo_codes: Optional[List[str]] = FieldInfo(alias="promoCodes", default=None)
27
+
26
28
  variant_selections: Optional[List[VariantSelection]] = FieldInfo(alias="variantSelections", default=None)
@@ -11,7 +11,7 @@ class BrandRetrieveResponse(BaseModel):
11
11
  id: str
12
12
  """A unique identifier for the brand."""
13
13
 
14
- marketplace: Literal["AMAZON", "SHOPIFY", "UNKNOWN"]
14
+ marketplace: Literal["AMAZON", "SHOPIFY", "BESTBUY", "UNKNOWN"]
15
15
  """Indicates what ecommerce platform the brand uses."""
16
16
 
17
17
  supported: bool
@@ -63,8 +63,17 @@ class FailedCheckoutIntentFailureReason(BaseModel):
63
63
  "missing_shipping_method",
64
64
  "unsupported_currency",
65
65
  "invalid_input",
66
+ "incorrect_cost_breakdown",
66
67
  "unsupported_store_no_guest_checkout",
68
+ "workflow_invocation_failed",
69
+ "variant_selections_invalid",
70
+ "variant_selections_required",
71
+ "form_validation_error",
72
+ "captcha_blocked",
73
+ "bot_protection_blocked",
74
+ "unknown",
67
75
  ]
76
+ """Type derived from runtime array - always in sync"""
68
77
 
69
78
  message: str
70
79
 
@@ -5,6 +5,7 @@ from __future__ import annotations
5
5
  from typing import Iterable
6
6
  from typing_extensions import Required, Annotated, TypedDict
7
7
 
8
+ from .._types import SequenceNotStr
8
9
  from .._utils import PropertyInfo
9
10
  from .buyer_param import BuyerParam
10
11
  from .variant_selection_param import VariantSelectionParam
@@ -19,4 +20,6 @@ class CheckoutIntentCreateParams(TypedDict, total=False):
19
20
 
20
21
  quantity: Required[float]
21
22
 
23
+ promo_codes: Annotated[SequenceNotStr[str], PropertyInfo(alias="promoCodes")]
24
+
22
25
  variant_selections: Annotated[Iterable[VariantSelectionParam], PropertyInfo(alias="variantSelections")]
@@ -19,6 +19,8 @@ class Cost(BaseModel):
19
19
 
20
20
  shipping: Optional[Money] = None
21
21
 
22
+ surcharge: Optional[Money] = None
23
+
22
24
  tax: Optional[Money] = None
23
25
 
24
26
 
@@ -27,6 +29,8 @@ class ShippingAvailableOption(BaseModel):
27
29
 
28
30
  cost: Money
29
31
 
32
+ discount: Optional[Money] = None
33
+
30
34
 
31
35
  class Shipping(BaseModel):
32
36
  available_options: List[ShippingAvailableOption] = FieldInfo(alias="availableOptions")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: checkout-intents
3
- Version: 0.3.2
3
+ Version: 0.4.0
4
4
  Summary: The official Python library for the Checkout Intents API
5
5
  Project-URL: Homepage, https://github.com/rye-com/checkout-intents-python
6
6
  Project-URL: Repository, https://github.com/rye-com/checkout-intents-python
@@ -236,6 +236,7 @@ pip install checkout-intents[aiohttp]
236
236
  Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
237
237
 
238
238
  ```python
239
+ import os
239
240
  import asyncio
240
241
  from checkout_intents import DefaultAioHttpClient
241
242
  from checkout_intents import AsyncCheckoutIntents
@@ -243,7 +244,9 @@ from checkout_intents import AsyncCheckoutIntents
243
244
 
244
245
  async def main() -> None:
245
246
  async with AsyncCheckoutIntents(
246
- api_key="My API Key",
247
+ api_key=os.environ.get(
248
+ "CHECKOUT_INTENTS_API_KEY"
249
+ ), # This is the default and can be omitted
247
250
  http_client=DefaultAioHttpClient(),
248
251
  ) as client:
249
252
  checkout_intent = await client.checkout_intents.create(
@@ -1,6 +1,6 @@
1
1
  checkout_intents/__init__.py,sha256=5m0_Ktnyya4CJ0vdWZbAv7qZMeR1VnXqN_MJtH3RJTM,2833
2
- checkout_intents/_base_client.py,sha256=eB43s-6F0_5tyH_e9uX-HAovJJu6D9DdMGVcI2zP4qc,67057
3
- checkout_intents/_client.py,sha256=px36nDPT8_lNISKkVjZhI_AZvFJ5KwRyVjQjPycia0s,21798
2
+ checkout_intents/_base_client.py,sha256=ve_gIFHs2dgQ-FduM6A7GxMihxAowCXVcsBYzf_k5_4,67257
3
+ checkout_intents/_client.py,sha256=l4Pa_x5hI16yMF3hrMIJTkXEv2i3F61QF7N9OdQVSIA,23941
4
4
  checkout_intents/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
5
  checkout_intents/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
6
  checkout_intents/_exceptions.py,sha256=oQn7Y6LzccgRDOtdg20l68bXtgf2tgVNKIrufJPDsuk,4252
@@ -10,8 +10,8 @@ checkout_intents/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
10
  checkout_intents/_resource.py,sha256=X-eWffEBAgzTZvakLqNUjwgidMKfBFRmCeeOiuko4lg,1154
11
11
  checkout_intents/_response.py,sha256=sLqxWBxzmVqPsdr2x5z6d87h8jb1U-Huvh2YFg-U6nE,28876
12
12
  checkout_intents/_streaming.py,sha256=y8SjBVAw2SDdVczQsP1T3dufnx4040C5fQqz-jGSvmg,10257
13
- checkout_intents/_types.py,sha256=4l2pVH65co-2pua9stzq-WV2VcGg9Hl4nRHd0lz5cko,7246
14
- checkout_intents/_version.py,sha256=yTndv8Wif2hvQeYLtvgbHX6MGN5Ho15hPk2Zz6i1EEg,168
13
+ checkout_intents/_types.py,sha256=PTRxqWPBW57h6JvfwcVuR42gIMpY4nwSZbqAtv85Ado,7305
14
+ checkout_intents/_version.py,sha256=q5x-gNLeFmdAlSifoTUgwwFsiIX-72k110WhIro20ko,168
15
15
  checkout_intents/pagination.py,sha256=VMe3ftq-qqAku2ERRTOz7iZOoMQ_KKp2HIUl_I8oAXE,2908
16
16
  checkout_intents/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  checkout_intents/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
@@ -29,24 +29,24 @@ checkout_intents/_utils/_utils.py,sha256=g9ftElB09kVT6EVfCIlD_nUfANhDX5_vZO61FDW
29
29
  checkout_intents/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
30
30
  checkout_intents/resources/__init__.py,sha256=sHRW0nwo1GnFBFPoTNohkEbvOk7au-R3MdfVn_yb8Ds,1120
31
31
  checkout_intents/resources/brands.py,sha256=jJ5Jn2GG3MPkdKSg6_OG89dSQTaSGM9e7lBtovn-ABE,6389
32
- checkout_intents/resources/checkout_intents.py,sha256=C59jKLf-FxbtNfuSSxxCtp6Ona7hP4S26kV342xAlic,54375
32
+ checkout_intents/resources/checkout_intents.py,sha256=yK_dauwDI6rqHU187FqLQyU9yrdUwJD6Ziubs_keVFU,54591
33
33
  checkout_intents/types/__init__.py,sha256=bcfwLNTB5CbPquNwxpMRoJkL5LM6HckISeGRPlVX2js,1192
34
- checkout_intents/types/base_checkout_intent.py,sha256=56Qp3ssWYmcdu6A9Z0pvL3ewm1LTvQHiboiJ7Aogx2M,644
35
- checkout_intents/types/brand_retrieve_response.py,sha256=1Z7yjrXl3NO1u9NFO5lDBJ-sucpEH501MUfUS_XeqbY,550
34
+ checkout_intents/types/base_checkout_intent.py,sha256=i31jUBw1fFlFQI4pUxLhiHAM82k3dDWiK3puTlKO5VE,728
35
+ checkout_intents/types/brand_retrieve_response.py,sha256=c8DCAJvHFHcrIOW6onHj5Y51Yba7zyOrRXZuGfqYkBc,561
36
36
  checkout_intents/types/buyer.py,sha256=Ov6mVD-Hjm9A-i9p2dWCXtniLhYpG_6jvy9DReC54YQ,530
37
37
  checkout_intents/types/buyer_param.py,sha256=DAtEoK4VSzv2qDBBlC4RRE4FbHd87pieTOlfRntbjqg,695
38
- checkout_intents/types/checkout_intent.py,sha256=Vkn0Q3fXr5a776luw06mjl6AkL8geBOdpIVTIvO7Quk,2315
38
+ checkout_intents/types/checkout_intent.py,sha256=c7Geo_oT9ARDz8ZC5Kq6DxdOB-WlhSlxVlx9VuU95-Q,2638
39
39
  checkout_intents/types/checkout_intent_add_payment_params.py,sha256=s8KKWVM3XainGTLCwdfUjb5vgS80o2_W0wwUwRCFbk0,479
40
40
  checkout_intents/types/checkout_intent_confirm_params.py,sha256=v_fcmuH5GoEwUJLbV7N9BDti63dg8z1nmhpcr4-1qcs,473
41
- checkout_intents/types/checkout_intent_create_params.py,sha256=nQ5l74ABrn7t-nE7Hnw50hQ8VKyvu54LYia2hnp1twE,693
41
+ checkout_intents/types/checkout_intent_create_params.py,sha256=DEfM_bAsMijLAtGTZpC0RjnwvJc3rQDd_H9jEgjFc28,812
42
42
  checkout_intents/types/checkout_intent_list_params.py,sha256=zc8_xwBHChOcl7bTMSjU7ZbHKIyQGYeUy5UrxeloJj0,521
43
43
  checkout_intents/types/money.py,sha256=-AfFFrfnUy6cAaFykF_gWZQxDGlzA1r_dJzJZRxhUto,328
44
- checkout_intents/types/offer.py,sha256=pxem4nhE9pMd-o9sfKipPuxyZg5WWur1w46oBfwHpB8,809
44
+ checkout_intents/types/offer.py,sha256=gtjQtU0w7m3jVwtykNaFxkYD4s_3Z2son1c0I_XRSVg,886
45
45
  checkout_intents/types/payment_method.py,sha256=-v5-L5RPojm8IDrdAhIMGmhVb89vwqT1jhgb-ZWOG7Q,1069
46
46
  checkout_intents/types/payment_method_param.py,sha256=_yzwZ5nw7bStK4U2-1ybtpjdJz5funCOMN7MALtF0xk,1225
47
47
  checkout_intents/types/variant_selection.py,sha256=y6mlU-qGwDfE77mU-x1GTXkDsmn6vuPpy5lBYXqXCBw,259
48
48
  checkout_intents/types/variant_selection_param.py,sha256=ahwTmDVIUMV8jvpggEo2jDUTIm9xvXbntDxmIZqT2_k,355
49
- checkout_intents-0.3.2.dist-info/METADATA,sha256=zIXtE8BSVtCgbHGDUkiwfH_IpQuqzG2Q2GLpTTeS8kk,23677
50
- checkout_intents-0.3.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
51
- checkout_intents-0.3.2.dist-info/licenses/LICENSE,sha256=dRDmL6lFnLaphTaman8kAc21qY1IQ_qsAETk1F-b6jY,1056
52
- checkout_intents-0.3.2.dist-info/RECORD,,
49
+ checkout_intents-0.4.0.dist-info/METADATA,sha256=mtCjHkGVvNhRvcqnkHFRvUD8NzhW2UaSUXmSDJnPfE8,23781
50
+ checkout_intents-0.4.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
51
+ checkout_intents-0.4.0.dist-info/licenses/LICENSE,sha256=dRDmL6lFnLaphTaman8kAc21qY1IQ_qsAETk1F-b6jY,1056
52
+ checkout_intents-0.4.0.dist-info/RECORD,,