lark-billing 0.5.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. lark/__init__.py +92 -0
  2. lark/_base_client.py +1995 -0
  3. lark/_client.py +459 -0
  4. lark/_compat.py +219 -0
  5. lark/_constants.py +14 -0
  6. lark/_exceptions.py +108 -0
  7. lark/_files.py +123 -0
  8. lark/_models.py +857 -0
  9. lark/_qs.py +150 -0
  10. lark/_resource.py +43 -0
  11. lark/_response.py +830 -0
  12. lark/_streaming.py +333 -0
  13. lark/_types.py +261 -0
  14. lark/_utils/__init__.py +64 -0
  15. lark/_utils/_compat.py +45 -0
  16. lark/_utils/_datetime_parse.py +136 -0
  17. lark/_utils/_logs.py +25 -0
  18. lark/_utils/_proxy.py +65 -0
  19. lark/_utils/_reflection.py +42 -0
  20. lark/_utils/_resources_proxy.py +24 -0
  21. lark/_utils/_streams.py +12 -0
  22. lark/_utils/_sync.py +58 -0
  23. lark/_utils/_transform.py +457 -0
  24. lark/_utils/_typing.py +156 -0
  25. lark/_utils/_utils.py +421 -0
  26. lark/_version.py +4 -0
  27. lark/lib/.keep +4 -0
  28. lark/py.typed +0 -0
  29. lark/resources/__init__.py +117 -0
  30. lark/resources/customer_access.py +167 -0
  31. lark/resources/customer_portal.py +187 -0
  32. lark/resources/invoices.py +191 -0
  33. lark/resources/pricing_metrics.py +499 -0
  34. lark/resources/rate_cards.py +395 -0
  35. lark/resources/subjects.py +579 -0
  36. lark/resources/subscriptions.py +647 -0
  37. lark/resources/usage_events.py +221 -0
  38. lark/types/__init__.py +53 -0
  39. lark/types/amount_input_param.py +16 -0
  40. lark/types/amount_output.py +13 -0
  41. lark/types/checkout_callback_param.py +15 -0
  42. lark/types/customer_access_retrieve_billing_state_response.py +40 -0
  43. lark/types/customer_portal_create_session_params.py +18 -0
  44. lark/types/customer_portal_create_session_response.py +18 -0
  45. lark/types/flat_price_input_param.py +17 -0
  46. lark/types/flat_price_output.py +17 -0
  47. lark/types/invoice_list_params.py +16 -0
  48. lark/types/invoice_list_response.py +49 -0
  49. lark/types/package_price_input_param.py +24 -0
  50. lark/types/package_price_output.py +24 -0
  51. lark/types/period.py +18 -0
  52. lark/types/period_param.py +21 -0
  53. lark/types/pricing_metric_create_params.py +98 -0
  54. lark/types/pricing_metric_create_summary_params.py +25 -0
  55. lark/types/pricing_metric_create_summary_response.py +36 -0
  56. lark/types/pricing_metric_list_params.py +11 -0
  57. lark/types/pricing_metric_list_response.py +14 -0
  58. lark/types/pricing_metric_resource.py +72 -0
  59. lark/types/rate_card_create_params.py +148 -0
  60. lark/types/rate_card_list_params.py +13 -0
  61. lark/types/rate_card_list_response.py +14 -0
  62. lark/types/rate_card_resource.py +141 -0
  63. lark/types/subject_create_params.py +29 -0
  64. lark/types/subject_create_response.py +34 -0
  65. lark/types/subject_list_params.py +13 -0
  66. lark/types/subject_list_response.py +14 -0
  67. lark/types/subject_resource.py +34 -0
  68. lark/types/subject_update_params.py +22 -0
  69. lark/types/subscription_cancel_params.py +16 -0
  70. lark/types/subscription_change_rate_card_params.py +29 -0
  71. lark/types/subscription_change_rate_card_response.py +55 -0
  72. lark/types/subscription_create_params.py +38 -0
  73. lark/types/subscription_create_response.py +55 -0
  74. lark/types/subscription_list_params.py +26 -0
  75. lark/types/subscription_list_response.py +14 -0
  76. lark/types/subscription_resource.py +49 -0
  77. lark/types/usage_event_create_params.py +41 -0
  78. lark_billing-0.5.0.dist-info/METADATA +431 -0
  79. lark_billing-0.5.0.dist-info/RECORD +81 -0
  80. lark_billing-0.5.0.dist-info/WHEEL +4 -0
  81. lark_billing-0.5.0.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,431 @@
1
+ Metadata-Version: 2.3
2
+ Name: lark-billing
3
+ Version: 0.5.0
4
+ Summary: The official Python library for the lark API
5
+ Project-URL: Homepage, https://github.com/uselark/lark-billing-python
6
+ Project-URL: Repository, https://github.com/uselark/lark-billing-python
7
+ Author-email: Lark <team@uselark.ai>
8
+ License: Apache-2.0
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Operating System :: MacOS
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Operating System :: POSIX
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.9
25
+ Requires-Dist: anyio<5,>=3.5.0
26
+ Requires-Dist: distro<2,>=1.7.0
27
+ Requires-Dist: httpx<1,>=0.23.0
28
+ Requires-Dist: pydantic<3,>=1.9.0
29
+ Requires-Dist: sniffio
30
+ Requires-Dist: typing-extensions<5,>=4.10
31
+ Provides-Extra: aiohttp
32
+ Requires-Dist: aiohttp; extra == 'aiohttp'
33
+ Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
34
+ Description-Content-Type: text/markdown
35
+
36
+ # Lark Python API library
37
+
38
+ <!-- prettier-ignore -->
39
+ [![PyPI version](https://img.shields.io/pypi/v/lark-billing.svg?label=pypi%20(stable))](https://pypi.org/project/lark-billing/)
40
+
41
+ The Lark Python library provides convenient access to the Lark REST API from any Python 3.9+
42
+ application. The library includes type definitions for all request params and response fields,
43
+ and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
+
45
+ It is generated with [Stainless](https://www.stainless.com/).
46
+
47
+ ## Documentation
48
+
49
+ The REST API documentation can be found on [docs.uselark.ai](https://docs.uselark.ai). The full API of this library can be found in [api.md](https://github.com/uselark/lark-billing-python/tree/main/api.md).
50
+
51
+ ## Installation
52
+
53
+ ```sh
54
+ # install from PyPI
55
+ pip install lark-billing
56
+ ```
57
+
58
+ ## Usage
59
+
60
+ The full API of this library can be found in [api.md](https://github.com/uselark/lark-billing-python/tree/main/api.md).
61
+
62
+ ```python
63
+ import os
64
+ from lark import Lark
65
+
66
+ client = Lark(
67
+ api_key=os.environ.get("LARK_API_KEY"), # This is the default and can be omitted
68
+ )
69
+
70
+ subject = client.subjects.create(
71
+ email="john.doe@example.com",
72
+ external_id="user_1234567890",
73
+ name="John Doe",
74
+ )
75
+ print(subject.id)
76
+ ```
77
+
78
+ While you can provide an `api_key` keyword argument,
79
+ we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/)
80
+ to add `LARK_API_KEY="My API Key"` to your `.env` file
81
+ so that your API Key is not stored in source control.
82
+
83
+ ## Async usage
84
+
85
+ Simply import `AsyncLark` instead of `Lark` and use `await` with each API call:
86
+
87
+ ```python
88
+ import os
89
+ import asyncio
90
+ from lark import AsyncLark
91
+
92
+ client = AsyncLark(
93
+ api_key=os.environ.get("LARK_API_KEY"), # This is the default and can be omitted
94
+ )
95
+
96
+
97
+ async def main() -> None:
98
+ subject = await client.subjects.create(
99
+ email="john.doe@example.com",
100
+ external_id="user_1234567890",
101
+ name="John Doe",
102
+ )
103
+ print(subject.id)
104
+
105
+
106
+ asyncio.run(main())
107
+ ```
108
+
109
+ Functionality between the synchronous and asynchronous clients is otherwise identical.
110
+
111
+ ### With aiohttp
112
+
113
+ By default, the async client uses `httpx` for HTTP requests. However, for improved concurrency performance you may also use `aiohttp` as the HTTP backend.
114
+
115
+ You can enable this by installing `aiohttp`:
116
+
117
+ ```sh
118
+ # install from PyPI
119
+ pip install lark-billing[aiohttp]
120
+ ```
121
+
122
+ Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
123
+
124
+ ```python
125
+ import os
126
+ import asyncio
127
+ from lark import DefaultAioHttpClient
128
+ from lark import AsyncLark
129
+
130
+
131
+ async def main() -> None:
132
+ async with AsyncLark(
133
+ api_key=os.environ.get("LARK_API_KEY"), # This is the default and can be omitted
134
+ http_client=DefaultAioHttpClient(),
135
+ ) as client:
136
+ subject = await client.subjects.create(
137
+ email="john.doe@example.com",
138
+ external_id="user_1234567890",
139
+ name="John Doe",
140
+ )
141
+ print(subject.id)
142
+
143
+
144
+ asyncio.run(main())
145
+ ```
146
+
147
+ ## Using types
148
+
149
+ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
150
+
151
+ - Serializing back into JSON, `model.to_json()`
152
+ - Converting to a dictionary, `model.to_dict()`
153
+
154
+ Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
155
+
156
+ ## Nested params
157
+
158
+ Nested parameters are dictionaries, typed using `TypedDict`, for example:
159
+
160
+ ```python
161
+ from lark import Lark
162
+
163
+ client = Lark()
164
+
165
+ subscription = client.subscriptions.create(
166
+ rate_card_id="rc_AJWMxR81jxoRlli6p13uf3JB",
167
+ subject_id="subj_VyX6Q96h5avMho8O7QWlKeXE",
168
+ checkout_callback_urls={
169
+ "cancelled_url": "https://example.com/try-again",
170
+ "success_url": "https://example.com/welcome",
171
+ },
172
+ )
173
+ print(subscription.checkout_callback_urls)
174
+ ```
175
+
176
+ ## Handling errors
177
+
178
+ When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `lark.APIConnectionError` is raised.
179
+
180
+ When the API returns a non-success status code (that is, 4xx or 5xx
181
+ response), a subclass of `lark.APIStatusError` is raised, containing `status_code` and `response` properties.
182
+
183
+ All errors inherit from `lark.APIError`.
184
+
185
+ ```python
186
+ import lark
187
+ from lark import Lark
188
+
189
+ client = Lark()
190
+
191
+ try:
192
+ client.subjects.create()
193
+ except lark.APIConnectionError as e:
194
+ print("The server could not be reached")
195
+ print(e.__cause__) # an underlying Exception, likely raised within httpx.
196
+ except lark.RateLimitError as e:
197
+ print("A 429 status code was received; we should back off a bit.")
198
+ except lark.APIStatusError as e:
199
+ print("Another non-200-range status code was received")
200
+ print(e.status_code)
201
+ print(e.response)
202
+ ```
203
+
204
+ Error codes are as follows:
205
+
206
+ | Status Code | Error Type |
207
+ | ----------- | -------------------------- |
208
+ | 400 | `BadRequestError` |
209
+ | 401 | `AuthenticationError` |
210
+ | 403 | `PermissionDeniedError` |
211
+ | 404 | `NotFoundError` |
212
+ | 422 | `UnprocessableEntityError` |
213
+ | 429 | `RateLimitError` |
214
+ | >=500 | `InternalServerError` |
215
+ | N/A | `APIConnectionError` |
216
+
217
+ ### Retries
218
+
219
+ Certain errors are automatically retried 2 times by default, with a short exponential backoff.
220
+ Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict,
221
+ 429 Rate Limit, and >=500 Internal errors are all retried by default.
222
+
223
+ You can use the `max_retries` option to configure or disable retry settings:
224
+
225
+ ```python
226
+ from lark import Lark
227
+
228
+ # Configure the default for all requests:
229
+ client = Lark(
230
+ # default is 2
231
+ max_retries=0,
232
+ )
233
+
234
+ # Or, configure per-request:
235
+ client.with_options(max_retries=5).subjects.create()
236
+ ```
237
+
238
+ ### Timeouts
239
+
240
+ By default requests time out after 1 minute. You can configure this with a `timeout` option,
241
+ which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
242
+
243
+ ```python
244
+ from lark import Lark
245
+
246
+ # Configure the default for all requests:
247
+ client = Lark(
248
+ # 20 seconds (default is 1 minute)
249
+ timeout=20.0,
250
+ )
251
+
252
+ # More granular control:
253
+ client = Lark(
254
+ timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
255
+ )
256
+
257
+ # Override per-request:
258
+ client.with_options(timeout=5.0).subjects.create()
259
+ ```
260
+
261
+ On timeout, an `APITimeoutError` is thrown.
262
+
263
+ Note that requests that time out are [retried twice by default](https://github.com/uselark/lark-billing-python/tree/main/#retries).
264
+
265
+ ## Advanced
266
+
267
+ ### Logging
268
+
269
+ We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
270
+
271
+ You can enable logging by setting the environment variable `LARK_LOG` to `info`.
272
+
273
+ ```shell
274
+ $ export LARK_LOG=info
275
+ ```
276
+
277
+ Or to `debug` for more verbose logging.
278
+
279
+ ### How to tell whether `None` means `null` or missing
280
+
281
+ In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:
282
+
283
+ ```py
284
+ if response.my_field is None:
285
+ if 'my_field' not in response.model_fields_set:
286
+ print('Got json like {}, without a "my_field" key present at all.')
287
+ else:
288
+ print('Got json like {"my_field": null}.')
289
+ ```
290
+
291
+ ### Accessing raw response data (e.g. headers)
292
+
293
+ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
294
+
295
+ ```py
296
+ from lark import Lark
297
+
298
+ client = Lark()
299
+ response = client.subjects.with_raw_response.create()
300
+ print(response.headers.get('X-My-Header'))
301
+
302
+ subject = response.parse() # get the object that `subjects.create()` would have returned
303
+ print(subject.id)
304
+ ```
305
+
306
+ These methods return an [`APIResponse`](https://github.com/uselark/lark-billing-python/tree/main/src/lark/_response.py) object.
307
+
308
+ The async client returns an [`AsyncAPIResponse`](https://github.com/uselark/lark-billing-python/tree/main/src/lark/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
309
+
310
+ #### `.with_streaming_response`
311
+
312
+ The above interface eagerly reads the full response body when you make the request, which may not always be what you want.
313
+
314
+ To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
315
+
316
+ ```python
317
+ with client.subjects.with_streaming_response.create() as response:
318
+ print(response.headers.get("X-My-Header"))
319
+
320
+ for line in response.iter_lines():
321
+ print(line)
322
+ ```
323
+
324
+ The context manager is required so that the response will reliably be closed.
325
+
326
+ ### Making custom/undocumented requests
327
+
328
+ This library is typed for convenient access to the documented API.
329
+
330
+ If you need to access undocumented endpoints, params, or response properties, the library can still be used.
331
+
332
+ #### Undocumented endpoints
333
+
334
+ To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
335
+ http verbs. Options on the client will be respected (such as retries) when making this request.
336
+
337
+ ```py
338
+ import httpx
339
+
340
+ response = client.post(
341
+ "/foo",
342
+ cast_to=httpx.Response,
343
+ body={"my_param": True},
344
+ )
345
+
346
+ print(response.headers.get("x-foo"))
347
+ ```
348
+
349
+ #### Undocumented request params
350
+
351
+ If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request
352
+ options.
353
+
354
+ #### Undocumented response properties
355
+
356
+ To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You
357
+ can also get all the extra fields on the Pydantic model as a dict with
358
+ [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra).
359
+
360
+ ### Configuring the HTTP client
361
+
362
+ You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
363
+
364
+ - Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
365
+ - Custom [transports](https://www.python-httpx.org/advanced/transports/)
366
+ - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
367
+
368
+ ```python
369
+ import httpx
370
+ from lark import Lark, DefaultHttpxClient
371
+
372
+ client = Lark(
373
+ # Or use the `LARK_BASE_URL` env var
374
+ base_url="http://my.test.server.example.com:8083",
375
+ http_client=DefaultHttpxClient(
376
+ proxy="http://my.test.proxy.example.com",
377
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
378
+ ),
379
+ )
380
+ ```
381
+
382
+ You can also customize the client on a per-request basis by using `with_options()`:
383
+
384
+ ```python
385
+ client.with_options(http_client=DefaultHttpxClient(...))
386
+ ```
387
+
388
+ ### Managing HTTP resources
389
+
390
+ By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
391
+
392
+ ```py
393
+ from lark import Lark
394
+
395
+ with Lark() as client:
396
+ # make requests here
397
+ ...
398
+
399
+ # HTTP client is now closed
400
+ ```
401
+
402
+ ## Versioning
403
+
404
+ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
405
+
406
+ 1. Changes that only affect static types, without breaking runtime behavior.
407
+ 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
408
+ 3. Changes that we do not expect to impact the vast majority of users in practice.
409
+
410
+ We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
411
+
412
+ We are keen for your feedback; please open an [issue](https://www.github.com/uselark/lark-billing-python/issues) with questions, bugs, or suggestions.
413
+
414
+ ### Determining the installed version
415
+
416
+ If you've upgraded to the latest version but aren't seeing any new features you were expecting then your python environment is likely still using an older version.
417
+
418
+ You can determine the version that is being used at runtime with:
419
+
420
+ ```py
421
+ import lark
422
+ print(lark.__version__)
423
+ ```
424
+
425
+ ## Requirements
426
+
427
+ Python 3.9 or higher.
428
+
429
+ ## Contributing
430
+
431
+ See [the contributing documentation](https://github.com/uselark/lark-billing-python/tree/main/./CONTRIBUTING.md).
@@ -0,0 +1,81 @@
1
+ lark/__init__.py,sha256=AFNuzAPtqwGj5PInja9af-AUDAHOV7j-VwrBHZAPemE,2606
2
+ lark/_base_client.py,sha256=39qu9SSoL0vs_adO78BAlsTK00fRlZSOB8GSjv5CLfs,67045
3
+ lark/_client.py,sha256=6BAqc-kZt0mqGa0eBNUDcFX08heAP2WbyVnKmmnlETk,19699
4
+ lark/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
+ lark/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ lark/_exceptions.py,sha256=0nVoBXlK_-H4mhgwBbd2CxgRmEcDZyddWiR71Z1XXks,3216
7
+ lark/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
+ lark/_models.py,sha256=3D65psj_C02Mw0K2zpBWrn1khmrvtEXgTTQ6P4r3tUY,31837
9
+ lark/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
+ lark/_resource.py,sha256=sPGq3WhwtrPqTMXtM9Cqfo2hPMkm1EHr8MSrH35KJMc,1088
11
+ lark/_response.py,sha256=6Sl7w2D8hZRba1KslO7pqmrEfK7bI4i4LSNVupZc_hs,28776
12
+ lark/_streaming.py,sha256=IcJ-89icVm3s3figy7-50ZfPOpLjrkpBKg_4SooKIJs,10213
13
+ lark/_types.py,sha256=lRL1BRzj-v9SBpk-kyavSCAOBEpFFGbt56VBLfCM3cg,7293
14
+ lark/_version.py,sha256=ObR2x7F5FVsJr4kvEVuDaeW6tM0btbSxZKltRDThJWo,156
15
+ lark/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ lark/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
+ lark/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
18
+ lark/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
19
+ lark/_utils/_logs.py,sha256=5OYjOnBx9myRFP3-RF_k8YBYtTLjL36tgY9cOljwZJk,768
20
+ lark/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
21
+ lark/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
22
+ lark/_utils/_resources_proxy.py,sha256=D8CWVtg6XjlS_bNywBHUZFcBZwhbOtPKJOqNNZzLASA,579
23
+ lark/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
+ lark/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
25
+ lark/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
+ lark/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
+ lark/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
28
+ lark/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
+ lark/resources/__init__.py,sha256=1AnHO2paQz9j6zOGjN_oHjDGpRDe5t6tZkFFmJoouzU,4266
30
+ lark/resources/customer_access.py,sha256=DF3as74XLcqJd16_lECvBDmi3cxajwjVtnUUljbeCDA,6662
31
+ lark/resources/customer_portal.py,sha256=RqSaTcjcC_tjJvttO4kU9x1BHlPY1dlo04RNPiT8SpU,7261
32
+ lark/resources/invoices.py,sha256=glTFWWpfVg72KK8CeIqpsTWGu0BcsgHL12IPbBnAUbc,6707
33
+ lark/resources/pricing_metrics.py,sha256=7Z2-QkfjNb-Wv3H3jTCt2ZBTFX0T0ivqRQGIiqjnMeg,19562
34
+ lark/resources/rate_cards.py,sha256=YUfes3Jf3_fOjn-2qs2ljScrJBV3KQlfthDjSNe9GjI,14808
35
+ lark/resources/subjects.py,sha256=TjxI2TA8PdTEVqfRg9Kk3egx9IUsps-fICJcdgs7i_o,21189
36
+ lark/resources/subscriptions.py,sha256=y1SOdbEB4AlVVIUgBscx2HJV9eGpAYJXxmCpAzZi13A,26331
37
+ lark/resources/usage_events.py,sha256=gQXZvyrcPDHiDdApCneRvJ96YiqFcHZv3Xd7_QSL9AE,8235
38
+ lark/types/__init__.py,sha256=Lb9_-HWlmkB7tIJvoaRqvcJU73qxEy_qgGD6WtxFbXs,3579
39
+ lark/types/amount_input_param.py,sha256=l7o6kb-1iZpf6_9K_PU5U1qft87L94-vGZ2xjc48abw,468
40
+ lark/types/amount_output.py,sha256=yzufM1W82GLqHC_Z8ZFhblGPiWrFXBxbsQRSUN51W-M,334
41
+ lark/types/checkout_callback_param.py,sha256=gNghT08HTUQd-MhwvZYWLA-AotdZd0xqYchN3TEdEEo,463
42
+ lark/types/customer_access_retrieve_billing_state_response.py,sha256=nuDYtf79zcuSG-HyUY_rOOMAG9uDanYst4AEF3DkkLc,1001
43
+ lark/types/customer_portal_create_session_params.py,sha256=hxSk9d7okQSu3_I5Wvxc4deXR1tShNeyU6P_GA1pOwA,551
44
+ lark/types/customer_portal_create_session_response.py,sha256=p6DHN69dym2jw6LJBJgvwNKRDPvu3CULkdCOx7q2TnQ,509
45
+ lark/types/flat_price_input_param.py,sha256=P9ea8NzTOYVCWPQmoYV5w8dnqjX5f0OhAyRpS3kMGiU,465
46
+ lark/types/flat_price_output.py,sha256=DQ4iy8cmNGV0-YkrV21Oze1gQuoxzNKl9NwaGWp8e9s,441
47
+ lark/types/invoice_list_params.py,sha256=iB8sYfWS0jIMxgPkR_TBKViSnbQCKb242edjtyk790s,389
48
+ lark/types/invoice_list_response.py,sha256=STKB-Tu2R7SCqXJD7JDlveaMTi_5AKTaSioI3TLUd5Y,1121
49
+ lark/types/package_price_input_param.py,sha256=AyQFP5FaIc2VbqJcjoTOIlEy2gUqmhT-Azx5e9MwMxk,722
50
+ lark/types/package_price_output.py,sha256=ANsyT6pBk32lv_5lo57sMMQTbvhx5xN1BdM71cytcX0,678
51
+ lark/types/period.py,sha256=TN9AegAyNUUgXnAwsbitiIh74yO7rpm7zGI5g84T-x8,352
52
+ lark/types/period_param.py,sha256=Id4t97uMfIUjH0kgP8ZtFIm5IftVYFYxMq8k1V8irM8,567
53
+ lark/types/pricing_metric_create_params.py,sha256=yRHFIKWOiNMpw31Rs9zgTdpkbQTt4h4IJkMgirnTsTc,3094
54
+ lark/types/pricing_metric_create_summary_params.py,sha256=8XCAvGWfrbBMsisPzlIJnlfy6yBS2SSJ6gKs7jw8aWg,898
55
+ lark/types/pricing_metric_create_summary_response.py,sha256=EgTdSxRb3ZT3dLIOEPQ2ZRh2pFU3dHWCV0fCtcE01v0,1104
56
+ lark/types/pricing_metric_list_params.py,sha256=aZyhiIAJbimD7dFF3DLAAMn-AS3Y4XWJH0fzRm2aiSQ,274
57
+ lark/types/pricing_metric_list_response.py,sha256=jevf6HsC9aw0TNpa4f2-3ZqCsduvWq109ntPvOsoKA0,359
58
+ lark/types/pricing_metric_resource.py,sha256=Iv99l9AAbSs39StN9YVa_K1-M6b2gI9SuOPwbmHUFpU,2048
59
+ lark/types/rate_card_create_params.py,sha256=LH_Ns4XfWhV7UaGDpaBFsnjtlL26PQtx_ir43DYmifI,5045
60
+ lark/types/rate_card_list_params.py,sha256=rshflCUQf3oaO83NrUPMRSgStH1bliXjOnXYkGNz-vI,281
61
+ lark/types/rate_card_list_response.py,sha256=Aa9-2w9Z228iOpdaOKJM0rlMvxb0dtPJgTwUn_nsJ9M,329
62
+ lark/types/rate_card_resource.py,sha256=LF0_owWsY5xLxKEefFn_siMVEbyHo9oBYoDtJAtmMWE,4058
63
+ lark/types/subject_create_params.py,sha256=y8siSChTf4q3mzKyR_Se-O2KqMDnNYgfBVGDzMAnxPI,804
64
+ lark/types/subject_create_response.py,sha256=zQiAK3ndj849ROdecBRHJkHFDQW2T-PXtbBecjmca1c,860
65
+ lark/types/subject_list_params.py,sha256=-PO6drp7oukSi9OQ-sL79QQRJvJxNiJC86LhxR586Qs,279
66
+ lark/types/subject_list_response.py,sha256=x4f9Q8YtYzxnC6ReGRvDiuLN_cWSfs2LTnqvmprGnnM,321
67
+ lark/types/subject_resource.py,sha256=LUpaUVBkwB6PnasRbrt0OldJhlMQalsOcydxzFYJtsQ,848
68
+ lark/types/subject_update_params.py,sha256=zG9ep46SXpibub5EqJCH4_tPsDIvKAWxYAc6ypUvZmk,672
69
+ lark/types/subscription_cancel_params.py,sha256=xAFNTMJeyL_awBNaESAVtavt7hnSP0yjJnQAcZ1mV10,483
70
+ lark/types/subscription_change_rate_card_params.py,sha256=sa5-trVSKtkIwDTqM0Zldz0NHUPPW5kZtefCqxk6y5Q,990
71
+ lark/types/subscription_change_rate_card_response.py,sha256=CPmpWnt8ilwAVthtRLSa0W_2MMl9gZnckhWOdPqeOZ4,1740
72
+ lark/types/subscription_create_params.py,sha256=kQiCEgOsTuk4wVE4payzJS8gHAk76HWOYdck_rBUvwU,1303
73
+ lark/types/subscription_create_response.py,sha256=VhjGGib3oqH53B-lB1fKkSpvqfTTouyziPP-xj4W_Xs,1689
74
+ lark/types/subscription_list_params.py,sha256=ShuvS_Szse71SwwFQefOZb3DqqpW2p-96DXCosFHNl0,602
75
+ lark/types/subscription_list_response.py,sha256=4RmE5cC59Oq_TEGyYZ77JZtjcaghJF0_a_XBFvLOTLk,351
76
+ lark/types/subscription_resource.py,sha256=zrDTb36aT-fVEs59O5mEwTKDlKj1c_jEyIOcKlf7RPo,1331
77
+ lark/types/usage_event_create_params.py,sha256=daxkfxYOmI1e0fBJffddCtI-Fdn94z9CGD-SR0xNeJ0,1193
78
+ lark_billing-0.5.0.dist-info/METADATA,sha256=NRDpeBzvPcbFDII5B3cDnR4fWsLYBI6Vf1mm3EJqAKk,14176
79
+ lark_billing-0.5.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
80
+ lark_billing-0.5.0.dist-info/licenses/LICENSE,sha256=afrEokY91dpVCz2mjHaTqtq7RB-br0DoJ1tssGu5Fcs,11334
81
+ lark_billing-0.5.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.26.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any