gr4vy 1.2.6__py3-none-any.whl → 1.2.8__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.
gr4vy/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "gr4vy"
6
- __version__: str = "1.2.6"
6
+ __version__: str = "1.2.8"
7
7
  __openapi_doc_version__: str = "1.0.0"
8
8
  __gen_version__: str = "2.698.4"
9
- __user_agent__: str = "speakeasy-sdk/python 1.2.6 2.698.4 1.0.0 gr4vy"
9
+ __user_agent__: str = "speakeasy-sdk/python 1.2.8 2.698.4 1.0.0 gr4vy"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -1304,7 +1304,7 @@ class BuyersShippingDetails(BaseSDK):
1304
1304
  server_url: Optional[str] = None,
1305
1305
  timeout_ms: Optional[int] = None,
1306
1306
  http_headers: Optional[Mapping[str, str]] = None,
1307
- ) -> Any:
1307
+ ):
1308
1308
  r"""Delete a buyer's shipping details
1309
1309
 
1310
1310
  Delete the shipping details associated to a specific buyer.
@@ -1391,8 +1391,8 @@ class BuyersShippingDetails(BaseSDK):
1391
1391
  )
1392
1392
 
1393
1393
  response_data: Any = None
1394
- if utils.match_response(http_res, "200", "application/json"):
1395
- return unmarshal_json_response(Any, http_res)
1394
+ if utils.match_response(http_res, "204", "*"):
1395
+ return
1396
1396
  if utils.match_response(http_res, "400", "application/json"):
1397
1397
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1398
1398
  raise errors.Error400(response_data, http_res)
@@ -1450,7 +1450,7 @@ class BuyersShippingDetails(BaseSDK):
1450
1450
  server_url: Optional[str] = None,
1451
1451
  timeout_ms: Optional[int] = None,
1452
1452
  http_headers: Optional[Mapping[str, str]] = None,
1453
- ) -> Any:
1453
+ ):
1454
1454
  r"""Delete a buyer's shipping details
1455
1455
 
1456
1456
  Delete the shipping details associated to a specific buyer.
@@ -1537,8 +1537,8 @@ class BuyersShippingDetails(BaseSDK):
1537
1537
  )
1538
1538
 
1539
1539
  response_data: Any = None
1540
- if utils.match_response(http_res, "200", "application/json"):
1541
- return unmarshal_json_response(Any, http_res)
1540
+ if utils.match_response(http_res, "204", "*"):
1541
+ return
1542
1542
  if utils.match_response(http_res, "400", "application/json"):
1543
1543
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1544
1544
  raise errors.Error400(response_data, http_res)
@@ -958,7 +958,7 @@ class DigitalWalletsSDK(BaseSDK):
958
958
  server_url: Optional[str] = None,
959
959
  timeout_ms: Optional[int] = None,
960
960
  http_headers: Optional[Mapping[str, str]] = None,
961
- ) -> Any:
961
+ ):
962
962
  r"""Delete digital wallet
963
963
 
964
964
  Delete a configured digital wallet.
@@ -1043,8 +1043,8 @@ class DigitalWalletsSDK(BaseSDK):
1043
1043
  )
1044
1044
 
1045
1045
  response_data: Any = None
1046
- if utils.match_response(http_res, "200", "application/json"):
1047
- return unmarshal_json_response(Any, http_res)
1046
+ if utils.match_response(http_res, "204", "*"):
1047
+ return
1048
1048
  if utils.match_response(http_res, "400", "application/json"):
1049
1049
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1050
1050
  raise errors.Error400(response_data, http_res)
@@ -1101,7 +1101,7 @@ class DigitalWalletsSDK(BaseSDK):
1101
1101
  server_url: Optional[str] = None,
1102
1102
  timeout_ms: Optional[int] = None,
1103
1103
  http_headers: Optional[Mapping[str, str]] = None,
1104
- ) -> Any:
1104
+ ):
1105
1105
  r"""Delete digital wallet
1106
1106
 
1107
1107
  Delete a configured digital wallet.
@@ -1186,8 +1186,8 @@ class DigitalWalletsSDK(BaseSDK):
1186
1186
  )
1187
1187
 
1188
1188
  response_data: Any = None
1189
- if utils.match_response(http_res, "200", "application/json"):
1190
- return unmarshal_json_response(Any, http_res)
1189
+ if utils.match_response(http_res, "204", "*"):
1190
+ return
1191
1191
  if utils.match_response(http_res, "400", "application/json"):
1192
1192
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1193
1193
  raise errors.Error400(response_data, http_res)
gr4vy/domains.py CHANGED
@@ -330,7 +330,7 @@ class Domains(BaseSDK):
330
330
  server_url: Optional[str] = None,
331
331
  timeout_ms: Optional[int] = None,
332
332
  http_headers: Optional[Mapping[str, str]] = None,
333
- ) -> Any:
333
+ ):
334
334
  r"""Remove a digital wallet domain
335
335
 
336
336
  Remove a digital wallet domain (Apple Pay only).
@@ -426,8 +426,8 @@ class Domains(BaseSDK):
426
426
  )
427
427
 
428
428
  response_data: Any = None
429
- if utils.match_response(http_res, "200", "application/json"):
430
- return unmarshal_json_response(Any, http_res)
429
+ if utils.match_response(http_res, "204", "*"):
430
+ return
431
431
  if utils.match_response(http_res, "400", "application/json"):
432
432
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
433
433
  raise errors.Error400(response_data, http_res)
@@ -485,7 +485,7 @@ class Domains(BaseSDK):
485
485
  server_url: Optional[str] = None,
486
486
  timeout_ms: Optional[int] = None,
487
487
  http_headers: Optional[Mapping[str, str]] = None,
488
- ) -> Any:
488
+ ):
489
489
  r"""Remove a digital wallet domain
490
490
 
491
491
  Remove a digital wallet domain (Apple Pay only).
@@ -581,8 +581,8 @@ class Domains(BaseSDK):
581
581
  )
582
582
 
583
583
  response_data: Any = None
584
- if utils.match_response(http_res, "200", "application/json"):
585
- return unmarshal_json_response(Any, http_res)
584
+ if utils.match_response(http_res, "204", "*"):
585
+ return
586
586
  if utils.match_response(http_res, "400", "application/json"):
587
587
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
588
588
  raise errors.Error400(response_data, http_res)
gr4vy/gift_cards_sdk.py CHANGED
@@ -328,7 +328,7 @@ class GiftCardsSDK(BaseSDK):
328
328
  server_url: Optional[str] = None,
329
329
  timeout_ms: Optional[int] = None,
330
330
  http_headers: Optional[Mapping[str, str]] = None,
331
- ) -> Any:
331
+ ):
332
332
  r"""Delete a gift card
333
333
 
334
334
  Removes a gift card from our system.
@@ -413,8 +413,8 @@ class GiftCardsSDK(BaseSDK):
413
413
  )
414
414
 
415
415
  response_data: Any = None
416
- if utils.match_response(http_res, "200", "application/json"):
417
- return unmarshal_json_response(Any, http_res)
416
+ if utils.match_response(http_res, "204", "*"):
417
+ return
418
418
  if utils.match_response(http_res, "400", "application/json"):
419
419
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
420
420
  raise errors.Error400(response_data, http_res)
@@ -471,7 +471,7 @@ class GiftCardsSDK(BaseSDK):
471
471
  server_url: Optional[str] = None,
472
472
  timeout_ms: Optional[int] = None,
473
473
  http_headers: Optional[Mapping[str, str]] = None,
474
- ) -> Any:
474
+ ):
475
475
  r"""Delete a gift card
476
476
 
477
477
  Removes a gift card from our system.
@@ -556,8 +556,8 @@ class GiftCardsSDK(BaseSDK):
556
556
  )
557
557
 
558
558
  response_data: Any = None
559
- if utils.match_response(http_res, "200", "application/json"):
560
- return unmarshal_json_response(Any, http_res)
559
+ if utils.match_response(http_res, "204", "*"):
560
+ return
561
561
  if utils.match_response(http_res, "400", "application/json"):
562
562
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
563
563
  raise errors.Error400(response_data, http_res)
gr4vy/models/cartitem.py CHANGED
@@ -24,7 +24,7 @@ class CartItemTypedDict(TypedDict):
24
24
  external_identifier: NotRequired[Nullable[str]]
25
25
  r"""An external identifier for the cart item. This can be set to any value and is not sent to the payment service."""
26
26
  sku: NotRequired[Nullable[str]]
27
- r"""The SKU for the item."""
27
+ r"""The SKU or product code for the item."""
28
28
  product_url: NotRequired[Nullable[str]]
29
29
  r"""The product URL for the item."""
30
30
  image_url: NotRequired[Nullable[str]]
@@ -35,6 +35,18 @@ class CartItemTypedDict(TypedDict):
35
35
  r"""The product type of the cart item."""
36
36
  seller_country: NotRequired[Nullable[str]]
37
37
  r"""The seller country of the cart item."""
38
+ tax_exempt: NotRequired[Nullable[bool]]
39
+ r"""Whether the item is exempt of tax."""
40
+ unit_of_measure: NotRequired[Nullable[str]]
41
+ r"""The unit of measure or the unit of measure code."""
42
+ commodity_code: NotRequired[Nullable[str]]
43
+ r"""Item commodity code. Generally a UNSPSC code."""
44
+ description: NotRequired[Nullable[str]]
45
+ r"""Brief item description."""
46
+ duty_amount: NotRequired[Nullable[int]]
47
+ r"""Item import or export duties represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
48
+ shipping_amount: NotRequired[Nullable[int]]
49
+ r"""Freight/shipping amount represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
38
50
 
39
51
 
40
52
  class CartItem(BaseModel):
@@ -57,7 +69,7 @@ class CartItem(BaseModel):
57
69
  r"""An external identifier for the cart item. This can be set to any value and is not sent to the payment service."""
58
70
 
59
71
  sku: OptionalNullable[str] = UNSET
60
- r"""The SKU for the item."""
72
+ r"""The SKU or product code for the item."""
61
73
 
62
74
  product_url: OptionalNullable[str] = UNSET
63
75
  r"""The product URL for the item."""
@@ -76,6 +88,24 @@ class CartItem(BaseModel):
76
88
  seller_country: OptionalNullable[str] = UNSET
77
89
  r"""The seller country of the cart item."""
78
90
 
91
+ tax_exempt: OptionalNullable[bool] = UNSET
92
+ r"""Whether the item is exempt of tax."""
93
+
94
+ unit_of_measure: OptionalNullable[str] = UNSET
95
+ r"""The unit of measure or the unit of measure code."""
96
+
97
+ commodity_code: OptionalNullable[str] = UNSET
98
+ r"""Item commodity code. Generally a UNSPSC code."""
99
+
100
+ description: OptionalNullable[str] = UNSET
101
+ r"""Brief item description."""
102
+
103
+ duty_amount: OptionalNullable[int] = UNSET
104
+ r"""Item import or export duties represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
105
+
106
+ shipping_amount: OptionalNullable[int] = UNSET
107
+ r"""Freight/shipping amount represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
108
+
79
109
  @model_serializer(mode="wrap")
80
110
  def serialize_model(self, handler):
81
111
  optional_fields = [
@@ -88,6 +118,12 @@ class CartItem(BaseModel):
88
118
  "categories",
89
119
  "product_type",
90
120
  "seller_country",
121
+ "tax_exempt",
122
+ "unit_of_measure",
123
+ "commodity_code",
124
+ "description",
125
+ "duty_amount",
126
+ "shipping_amount",
91
127
  ]
92
128
  nullable_fields = [
93
129
  "discount_amount",
@@ -99,6 +135,12 @@ class CartItem(BaseModel):
99
135
  "categories",
100
136
  "product_type",
101
137
  "seller_country",
138
+ "tax_exempt",
139
+ "unit_of_measure",
140
+ "commodity_code",
141
+ "description",
142
+ "duty_amount",
143
+ "shipping_amount",
102
144
  ]
103
145
  null_default_fields = []
104
146
 
@@ -1492,7 +1492,7 @@ class PaymentServicesSDK(BaseSDK):
1492
1492
  server_url: Optional[str] = None,
1493
1493
  timeout_ms: Optional[int] = None,
1494
1494
  http_headers: Optional[Mapping[str, str]] = None,
1495
- ) -> Any:
1495
+ ):
1496
1496
  r"""Delete a configured payment service
1497
1497
 
1498
1498
  Deletes all the configuration of a payment service.
@@ -1577,8 +1577,8 @@ class PaymentServicesSDK(BaseSDK):
1577
1577
  )
1578
1578
 
1579
1579
  response_data: Any = None
1580
- if utils.match_response(http_res, "200", "application/json"):
1581
- return unmarshal_json_response(Any, http_res)
1580
+ if utils.match_response(http_res, "204", "*"):
1581
+ return
1582
1582
  if utils.match_response(http_res, "400", "application/json"):
1583
1583
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1584
1584
  raise errors.Error400(response_data, http_res)
@@ -1635,7 +1635,7 @@ class PaymentServicesSDK(BaseSDK):
1635
1635
  server_url: Optional[str] = None,
1636
1636
  timeout_ms: Optional[int] = None,
1637
1637
  http_headers: Optional[Mapping[str, str]] = None,
1638
- ) -> Any:
1638
+ ):
1639
1639
  r"""Delete a configured payment service
1640
1640
 
1641
1641
  Deletes all the configuration of a payment service.
@@ -1720,8 +1720,8 @@ class PaymentServicesSDK(BaseSDK):
1720
1720
  )
1721
1721
 
1722
1722
  response_data: Any = None
1723
- if utils.match_response(http_res, "200", "application/json"):
1724
- return unmarshal_json_response(Any, http_res)
1723
+ if utils.match_response(http_res, "204", "*"):
1724
+ return
1725
1725
  if utils.match_response(http_res, "400", "application/json"):
1726
1726
  response_data = unmarshal_json_response(errors.Error400Data, http_res)
1727
1727
  raise errors.Error400(response_data, http_res)
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: gr4vy
3
- Version: 1.2.6
3
+ Version: 1.2.8
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Gr4vy
6
6
  Requires-Python: >=3.9.2
@@ -9,6 +9,7 @@ Classifier: Programming Language :: Python :: 3.10
9
9
  Classifier: Programming Language :: Python :: 3.11
10
10
  Classifier: Programming Language :: Python :: 3.12
11
11
  Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: Programming Language :: Python :: 3.14
12
13
  Requires-Dist: PyJWT (>=2.10.1,<3.0.0)
13
14
  Requires-Dist: cryptography (>=45.0.7,<46.0.0)
14
15
  Requires-Dist: httpcore (>=1.0.9)
@@ -2,7 +2,7 @@ gr4vy/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
2
2
  gr4vy/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
3
3
  gr4vy/_hooks/sdkhooks.py,sha256=3jKTs2B1lcAxBMJge9C-qL0RGbKGLcrHvikzi67Tbdo,2493
4
4
  gr4vy/_hooks/types.py,sha256=0O7dbbolkiFAnHkNULvwoLsiXJu0_Wmhev163bvZbW8,3039
5
- gr4vy/_version.py,sha256=ELOtV-VVQ99or_-3rl283R7AOp_waDfETodu_bX4e80,452
5
+ gr4vy/_version.py,sha256=ba6zR3-SvLEf1pmXOfpdc-ifMm3zvGKh3NMsNL82Kuc,452
6
6
  gr4vy/account_updater.py,sha256=mmTd25Oap80PBqQ3p4MvZ_buT5VS0zWc8s8cqfI7iyA,607
7
7
  gr4vy/all.py,sha256=WwnLoNn3RgXNpf4Xoz12ct94JD7NMpLz-kzesHHh4m8,15172
8
8
  gr4vy/audit_logs.py,sha256=duh_c9mO8vIcpCnB-c77EYn1tkuCp1cRT6a7l0VdZqc,17083
@@ -12,11 +12,11 @@ gr4vy/basesdk.py,sha256=blX6OgKfbCxGZ93GxJuXZaAOmfdIoi-yLHe8Zo5Wg1o,12173
12
12
  gr4vy/buyers_gift_cards.py,sha256=TRQD2w-J82928Q8htFgnJ-Ulr7_1K4EsGayL-9NO84U,14114
13
13
  gr4vy/buyers_payment_methods.py,sha256=lhYTmPxRo0b5_wvotz9NtfAJjfqd8fJ9pOvDdHv7PlY,15591
14
14
  gr4vy/buyers_sdk.py,sha256=wM3pV27ggMN-eHfAmYQZGZJDdhg595feT0PKSYA-mkc,73594
15
- gr4vy/buyers_shipping_details.py,sha256=BPnFwoJNXU8F6ChOctILxHfQY8vJvK218Am6nUnhckA,73399
15
+ gr4vy/buyers_shipping_details.py,sha256=wEy-lJMgkWWejfDFZF7HiqCMXbqfz5AczmVVjNdRG_0,73277
16
16
  gr4vy/card_scheme_definitions_sdk.py,sha256=qwoymeumRGbAi1G3rGPh-BRqsCaXEB-IQcTN0MNaekc,13639
17
17
  gr4vy/checkout_sessions.py,sha256=njjoKuvOUSH09Rhw0vfrwbvBTPUYzLcoP-DE-NOZn34,57130
18
- gr4vy/digital_wallets_sdk.py,sha256=W4QNFKk3N4xtoiUPpEcrVJGN62aZnuHrPQIpppw3ZN0,71233
19
- gr4vy/domains.py,sha256=fzBmPm5fA9rwO8smhC2ob7TrnkT1o1rnyc9Y9x6j_uA,28586
18
+ gr4vy/digital_wallets_sdk.py,sha256=ulzlFA1S3z0FNEwNaWiz6ircxyMUzedl1OH40zXLU0A,71111
19
+ gr4vy/domains.py,sha256=woz1r5DIqIo_Jd3J3Dbi1-Eths-k7f0R5Y5QBhMZ_Qw,28464
20
20
  gr4vy/errors/__init__.py,sha256=ZDz7v86-UM-FLysIfPwSWRu-TH_1Xfu8xo8SCpVeFY8,3697
21
21
  gr4vy/errors/apierror.py,sha256=X02Mmcfuc3odGA3Z5jU2Y1kIBeOfJ5jiady0f7xMBTQ,1273
22
22
  gr4vy/errors/error400.py,sha256=SHVmNY_b_CrCU_yWu_I_CeCM_NW4gPFPOmRgWJmm1IQ,1532
@@ -36,7 +36,7 @@ gr4vy/errors/no_response_error.py,sha256=Kb7hmMtDo72KrLSjUEDNeQxvzZiVxUjOZym8TPd
36
36
  gr4vy/errors/responsevalidationerror.py,sha256=qPWwBjicfLUExXdnpczJtnM0dxvIypEz2xoIF3SWlPM,740
37
37
  gr4vy/events.py,sha256=BIMBWIzunyVMD86pj2zzWaUd_o5WY1MQZN77uxHe7es,14735
38
38
  gr4vy/executions.py,sha256=fd0PCYJAMMoqisRSKoEdPVfMetgrHzVVhJFI8UCzKsM,43128
39
- gr4vy/gift_cards_sdk.py,sha256=aYvoWaBuJybmKfBCSXHbmIlqVxjdWYspCc4JbDB3uSc,57533
39
+ gr4vy/gift_cards_sdk.py,sha256=vAyP-0LNSYKvgLQ0k6QQ-cj-cW2NN7cu2ekj5b3zJkI,57411
40
40
  gr4vy/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
41
41
  gr4vy/jobs.py,sha256=WHx0epnlxOMHFSXTJPwuI5dhOO_acGTX72Lbz6fvD8A,14565
42
42
  gr4vy/merchant_accounts_sdk.py,sha256=bBvTwaPNmv46GZ91OqJOunoJU0SIytaHPAcC2j-Tii0,80975
@@ -91,7 +91,7 @@ gr4vy/models/cardschemedefinition.py,sha256=MgFLopNSUGKdizom3RE8iJlfNk1AjB4YWEZn
91
91
  gr4vy/models/cardschemedefinitions.py,sha256=rFbZPBCYXCXltVYffBpjbck5VHSq44rALhfkaWf-WXw,578
92
92
  gr4vy/models/cardtype.py,sha256=leKYKJbtfriVyNQM6Bsl6rMXgB1L6dp9lzuUQ3olTWE,257
93
93
  gr4vy/models/cardwithurlpaymentmethodcreate.py,sha256=-wb5hnuwpgpG9PGDIapbHuqYZibKfTojiP1S0DuXL88,3934
94
- gr4vy/models/cartitem.py,sha256=hXYCflKMqjnjepVMNuW-XuU2nk8gPuKGkGmcD934n08,5726
94
+ gr4vy/models/cartitem.py,sha256=Hii-sbOSu0EaGze0P0GrSvW-Tlu2eeB_s8v_23LUtpM,7830
95
95
  gr4vy/models/checkoutpayoutoptions.py,sha256=TVvoTLsY4NYo6MJyEDEPZIU7FWodTvo-H-LfGdDiUtY,638
96
96
  gr4vy/models/checkoutsession.py,sha256=8F2605WfA_m7wZp-ifpHywytaXTMbVPEvQ7MuIP46HA,4386
97
97
  gr4vy/models/checkoutsessioncreate.py,sha256=-anN5QD3pAsvD4TBdUpKgp105_tAQ-qPwYoGDsupWH0,3043
@@ -396,7 +396,7 @@ gr4vy/payment_methods_payment_service_tokens.py,sha256=NO2Fip0_Aa3CQfvgBC9_5oZNr
396
396
  gr4vy/payment_methods_sdk.py,sha256=959dmJ4abMxFr2AUNjzIdz3VwK8Odc8ssYoDFp8sI5M,58100
397
397
  gr4vy/payment_options_sdk.py,sha256=i8_MNRvP2_0I0WK0fH_hcuORYbEWOTpNnvvvdHnLBi8,17079
398
398
  gr4vy/payment_service_definitions_sdk.py,sha256=5Y3tHmcNtdwaJuJiUnUrzoR7GnG3DiNBK8CIx7pYbRc,41314
399
- gr4vy/payment_services_sdk.py,sha256=9ca-Fahev_Xa5GPyIiay8dSPNp3wx8paPMEU9y79E-Q,113800
399
+ gr4vy/payment_services_sdk.py,sha256=aZxa9wlzYxbxe1KiaEdG_aqcjvU9L4HbGW6CLqdTyCo,113678
400
400
  gr4vy/payouts.py,sha256=1Ai0JM0K-9TdnfdxMXVRcjG5VYpLcumqXUe8GTD5gbk,47745
401
401
  gr4vy/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
402
402
  gr4vy/refunds_sdk.py,sha256=kpU3NaVMsgKxhWblTF-jfAl_Cdpw1HqARP81TypFsjs,13551
@@ -428,6 +428,6 @@ gr4vy/utils/unmarshal_json_response.py,sha256=H7jxugtMDuagdBXdpGiPf0Vr5-PWLETp8B
428
428
  gr4vy/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
429
429
  gr4vy/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
430
430
  gr4vy/webhooks.py,sha256=2L-ZhdK-XU2X0AkVqgZvhfRqDCKUVs7R4UNCmZJR78w,1359
431
- gr4vy-1.2.6.dist-info/METADATA,sha256=Y-47ImpcrBpchgm5lf-Qb6ERCvzDORohx5gEJF9J3oQ,44151
432
- gr4vy-1.2.6.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
433
- gr4vy-1.2.6.dist-info/RECORD,,
431
+ gr4vy-1.2.8.dist-info/METADATA,sha256=rzHLjiH-RQ3cOZ2UiYYXKd01-mAOjK_EongaZzREVoE,44202
432
+ gr4vy-1.2.8.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
433
+ gr4vy-1.2.8.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.3
2
+ Generator: poetry-core 2.2.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any