paid-python 0.6.0__py3-none-any.whl → 1.0.0a1__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 (140) hide show
  1. paid/__init__.py +65 -95
  2. paid/client.py +17 -494
  3. paid/contacts/client.py +415 -133
  4. paid/contacts/raw_client.py +1046 -118
  5. paid/core/client_wrapper.py +9 -10
  6. paid/customers/client.py +270 -566
  7. paid/customers/raw_client.py +731 -537
  8. paid/environment.py +1 -1
  9. paid/errors/bad_request_error.py +2 -2
  10. paid/errors/forbidden_error.py +2 -2
  11. paid/errors/internal_server_error.py +2 -2
  12. paid/errors/not_found_error.py +2 -2
  13. paid/invoices/client.py +369 -0
  14. paid/invoices/raw_client.py +692 -0
  15. paid/orders/__init__.py +0 -3
  16. paid/orders/client.py +371 -128
  17. paid/orders/raw_client.py +829 -121
  18. paid/products/__init__.py +0 -3
  19. paid/products/client.py +129 -265
  20. paid/products/raw_client.py +563 -233
  21. paid/signals/client.py +130 -0
  22. paid/signals/raw_client.py +190 -0
  23. paid/tracing/autoinstrumentation.py +12 -6
  24. paid/tracing/context_manager.py +2 -6
  25. paid/tracing/distributed_tracing.py +3 -3
  26. paid/tracing/signal.py +3 -3
  27. paid/tracing/wrappers/openai_agents/openaiAgentsHook.py +1 -1
  28. paid/types/__init__.py +62 -86
  29. paid/types/attribution.py +8 -0
  30. paid/types/{agent_attribute.py → bulk_signals_response.py} +4 -5
  31. paid/types/contact.py +12 -20
  32. paid/types/{address.py → contact_billing_address.py} +6 -7
  33. paid/types/{traces_response.py → contact_list_response.py} +5 -9
  34. paid/types/customer.py +15 -22
  35. paid/types/customer_attribution.py +8 -0
  36. paid/types/customer_billing_address.py +26 -0
  37. paid/types/{usage_summary_order.py → customer_by_external_id.py} +3 -5
  38. paid/types/{usage_summary_order_line.py → customer_by_id.py} +3 -5
  39. paid/types/customer_creation_state.py +5 -0
  40. paid/types/customer_list_response.py +22 -0
  41. paid/types/empty_response.py +17 -0
  42. paid/types/{error.py → error_response.py} +4 -7
  43. paid/types/invoice.py +57 -0
  44. paid/types/invoice_line.py +42 -0
  45. paid/types/invoice_line_payment_status.py +7 -0
  46. paid/types/invoice_lines_response.py +22 -0
  47. paid/types/invoice_list_response.py +22 -0
  48. paid/types/invoice_payment_status.py +5 -0
  49. paid/types/invoice_source.py +5 -0
  50. paid/types/invoice_status.py +7 -0
  51. paid/types/invoice_tax_status.py +7 -0
  52. paid/types/order.py +30 -29
  53. paid/types/order_creation_state.py +5 -0
  54. paid/types/order_line.py +6 -24
  55. paid/types/order_lines_response.py +22 -0
  56. paid/types/order_list_response.py +22 -0
  57. paid/types/pagination.py +24 -0
  58. paid/types/product.py +4 -29
  59. paid/types/{tier.py → product_by_external_id.py} +5 -4
  60. paid/types/{cost_amount.py → product_by_id.py} +5 -12
  61. paid/types/product_list_response.py +22 -0
  62. paid/types/signal.py +8 -34
  63. paid/types/{agent.py → update_contact_request.py} +10 -11
  64. paid/types/update_customer_request.py +38 -0
  65. paid/types/{product_update.py → update_product_request.py} +2 -12
  66. {paid_python-0.6.0.dist-info → paid_python-1.0.0a1.dist-info}/METADATA +27 -11
  67. paid_python-1.0.0a1.dist-info/RECORD +110 -0
  68. opentelemetry/instrumentation/openai/__init__.py +0 -54
  69. opentelemetry/instrumentation/openai/shared/__init__.py +0 -399
  70. opentelemetry/instrumentation/openai/shared/audio_wrappers.py +0 -247
  71. opentelemetry/instrumentation/openai/shared/chat_wrappers.py +0 -1192
  72. opentelemetry/instrumentation/openai/shared/completion_wrappers.py +0 -292
  73. opentelemetry/instrumentation/openai/shared/config.py +0 -15
  74. opentelemetry/instrumentation/openai/shared/embeddings_wrappers.py +0 -311
  75. opentelemetry/instrumentation/openai/shared/event_emitter.py +0 -108
  76. opentelemetry/instrumentation/openai/shared/event_models.py +0 -41
  77. opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py +0 -68
  78. opentelemetry/instrumentation/openai/shared/span_utils.py +0 -0
  79. opentelemetry/instrumentation/openai/utils.py +0 -213
  80. opentelemetry/instrumentation/openai/v0/__init__.py +0 -176
  81. opentelemetry/instrumentation/openai/v1/__init__.py +0 -394
  82. opentelemetry/instrumentation/openai/v1/assistant_wrappers.py +0 -329
  83. opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py +0 -134
  84. opentelemetry/instrumentation/openai/v1/responses_wrappers.py +0 -1113
  85. opentelemetry/instrumentation/openai/version.py +0 -1
  86. paid/agents/client.py +0 -880
  87. paid/agents/raw_client.py +0 -785
  88. paid/orders/lines/client.py +0 -144
  89. paid/orders/lines/raw_client.py +0 -129
  90. paid/plans/__init__.py +0 -4
  91. paid/plans/client.py +0 -332
  92. paid/plans/raw_client.py +0 -464
  93. paid/products/types/__init__.py +0 -7
  94. paid/products/types/product_create_type.py +0 -5
  95. paid/traces/__init__.py +0 -4
  96. paid/traces/client.py +0 -218
  97. paid/traces/raw_client.py +0 -226
  98. paid/types/agent_price_point.py +0 -27
  99. paid/types/agent_price_point_tiers.py +0 -23
  100. paid/types/agent_update.py +0 -29
  101. paid/types/api_error.py +0 -29
  102. paid/types/billing_frequency.py +0 -5
  103. paid/types/charge_type.py +0 -5
  104. paid/types/cost_trace.py +0 -55
  105. paid/types/cost_traces_response.py +0 -26
  106. paid/types/creation_source.py +0 -5
  107. paid/types/creation_state.py +0 -5
  108. paid/types/customer_update.py +0 -40
  109. paid/types/entitlement_usage.py +0 -48
  110. paid/types/order_line_attribute.py +0 -27
  111. paid/types/order_line_attribute_create_one.py +0 -5
  112. paid/types/order_line_attribute_pricing.py +0 -33
  113. paid/types/order_line_create.py +0 -72
  114. paid/types/pagination_meta.py +0 -84
  115. paid/types/plan.py +0 -81
  116. paid/types/plan_group.py +0 -60
  117. paid/types/plan_plan_products_item.py +0 -35
  118. paid/types/plan_plan_products_item_plan_product_attribute_item.py +0 -34
  119. paid/types/price_point.py +0 -25
  120. paid/types/pricing.py +0 -31
  121. paid/types/pricing_model_type.py +0 -7
  122. paid/types/product_type.py +0 -5
  123. paid/types/product_update_type.py +0 -5
  124. paid/types/salutation.py +0 -5
  125. paid/types/signal_v_2.py +0 -56
  126. paid/types/tax_exempt_status.py +0 -5
  127. paid/types/trace.py +0 -69
  128. paid/types/usage_pagination_meta.py +0 -43
  129. paid/types/usage_summaries_response.py +0 -26
  130. paid/types/usage_summary.py +0 -121
  131. paid/usage/__init__.py +0 -7
  132. paid/usage/client.py +0 -321
  133. paid/usage/raw_client.py +0 -387
  134. paid/usage/types/__init__.py +0 -7
  135. paid/usage/types/usage_check_usage_response.py +0 -53
  136. paid_python-0.6.0.dist-info/RECORD +0 -153
  137. /paid/{agents → invoices}/__init__.py +0 -0
  138. /paid/{orders/lines → signals}/__init__.py +0 -0
  139. {paid_python-0.6.0.dist-info → paid_python-1.0.0a1.dist-info}/LICENSE +0 -0
  140. {paid_python-0.6.0.dist-info → paid_python-1.0.0a1.dist-info}/WHEEL +0 -0
paid/usage/raw_client.py DELETED
@@ -1,387 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
- from json.decoder import JSONDecodeError
5
-
6
- from ..core.api_error import ApiError
7
- from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
8
- from ..core.http_response import AsyncHttpResponse, HttpResponse
9
- from ..core.pydantic_utilities import parse_obj_as
10
- from ..core.request_options import RequestOptions
11
- from ..core.serialization import convert_and_respect_annotation_metadata
12
- from ..errors.bad_request_error import BadRequestError
13
- from ..errors.internal_server_error import InternalServerError
14
- from ..errors.not_found_error import NotFoundError
15
- from ..types.error import Error
16
- from ..types.signal import Signal
17
- from ..types.signal_v_2 import SignalV2
18
- from .types.usage_check_usage_response import UsageCheckUsageResponse
19
-
20
- # this is used as the default value for optional parameters
21
- OMIT = typing.cast(typing.Any, ...)
22
-
23
-
24
- class RawUsageClient:
25
- def __init__(self, *, client_wrapper: SyncClientWrapper):
26
- self._client_wrapper = client_wrapper
27
-
28
- def record_bulk(
29
- self,
30
- *,
31
- signals: typing.Optional[typing.Sequence[Signal]] = OMIT,
32
- request_options: typing.Optional[RequestOptions] = None,
33
- ) -> HttpResponse[None]:
34
- """
35
- DEPRECATED: Use POST /usage/v2/signals/bulk instead for cleaner field names.
36
-
37
- Parameters
38
- ----------
39
- signals : typing.Optional[typing.Sequence[Signal]]
40
-
41
- request_options : typing.Optional[RequestOptions]
42
- Request-specific configuration.
43
-
44
- Returns
45
- -------
46
- HttpResponse[None]
47
- """
48
- _response = self._client_wrapper.httpx_client.request(
49
- "usage/signals/bulk",
50
- method="POST",
51
- json={
52
- "signals": convert_and_respect_annotation_metadata(
53
- object_=signals, annotation=typing.Sequence[Signal], direction="write"
54
- ),
55
- },
56
- headers={
57
- "content-type": "application/json",
58
- },
59
- request_options=request_options,
60
- omit=OMIT,
61
- )
62
- try:
63
- if 200 <= _response.status_code < 300:
64
- return HttpResponse(response=_response, data=None)
65
- _response_json = _response.json()
66
- except JSONDecodeError:
67
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
68
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
69
-
70
- def usage_record_bulk_v_2(
71
- self,
72
- *,
73
- signals: typing.Optional[typing.Sequence[SignalV2]] = OMIT,
74
- request_options: typing.Optional[RequestOptions] = None,
75
- ) -> HttpResponse[None]:
76
- """
77
- Parameters
78
- ----------
79
- signals : typing.Optional[typing.Sequence[SignalV2]]
80
-
81
- request_options : typing.Optional[RequestOptions]
82
- Request-specific configuration.
83
-
84
- Returns
85
- -------
86
- HttpResponse[None]
87
- """
88
- _response = self._client_wrapper.httpx_client.request(
89
- "usage/v2/signals/bulk",
90
- method="POST",
91
- json={
92
- "signals": convert_and_respect_annotation_metadata(
93
- object_=signals, annotation=typing.Sequence[SignalV2], direction="write"
94
- ),
95
- },
96
- headers={
97
- "content-type": "application/json",
98
- },
99
- request_options=request_options,
100
- omit=OMIT,
101
- )
102
- try:
103
- if 200 <= _response.status_code < 300:
104
- return HttpResponse(response=_response, data=None)
105
- if _response.status_code == 400:
106
- raise BadRequestError(
107
- headers=dict(_response.headers),
108
- body=typing.cast(
109
- Error,
110
- parse_obj_as(
111
- type_=Error, # type: ignore
112
- object_=_response.json(),
113
- ),
114
- ),
115
- )
116
- _response_json = _response.json()
117
- except JSONDecodeError:
118
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
119
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
120
-
121
- def check_usage(
122
- self,
123
- *,
124
- external_customer_id: str,
125
- external_product_id: str,
126
- request_options: typing.Optional[RequestOptions] = None,
127
- ) -> HttpResponse[UsageCheckUsageResponse]:
128
- """
129
- Parameters
130
- ----------
131
- external_customer_id : str
132
- External customer ID
133
-
134
- external_product_id : str
135
- External product ID (the external ID of the product/agent)
136
-
137
- request_options : typing.Optional[RequestOptions]
138
- Request-specific configuration.
139
-
140
- Returns
141
- -------
142
- HttpResponse[UsageCheckUsageResponse]
143
- Usage check response
144
- """
145
- _response = self._client_wrapper.httpx_client.request(
146
- "usage/check-usage",
147
- method="POST",
148
- json={
149
- "externalCustomerId": external_customer_id,
150
- "externalProductId": external_product_id,
151
- },
152
- headers={
153
- "content-type": "application/json",
154
- },
155
- request_options=request_options,
156
- omit=OMIT,
157
- )
158
- try:
159
- if 200 <= _response.status_code < 300:
160
- _data = typing.cast(
161
- UsageCheckUsageResponse,
162
- parse_obj_as(
163
- type_=UsageCheckUsageResponse, # type: ignore
164
- object_=_response.json(),
165
- ),
166
- )
167
- return HttpResponse(response=_response, data=_data)
168
- if _response.status_code == 400:
169
- raise BadRequestError(
170
- headers=dict(_response.headers),
171
- body=typing.cast(
172
- Error,
173
- parse_obj_as(
174
- type_=Error, # type: ignore
175
- object_=_response.json(),
176
- ),
177
- ),
178
- )
179
- if _response.status_code == 404:
180
- raise NotFoundError(
181
- headers=dict(_response.headers),
182
- body=typing.cast(
183
- Error,
184
- parse_obj_as(
185
- type_=Error, # type: ignore
186
- object_=_response.json(),
187
- ),
188
- ),
189
- )
190
- if _response.status_code == 500:
191
- raise InternalServerError(
192
- headers=dict(_response.headers),
193
- body=typing.cast(
194
- Error,
195
- parse_obj_as(
196
- type_=Error, # type: ignore
197
- object_=_response.json(),
198
- ),
199
- ),
200
- )
201
- _response_json = _response.json()
202
- except JSONDecodeError:
203
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
204
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
205
-
206
-
207
- class AsyncRawUsageClient:
208
- def __init__(self, *, client_wrapper: AsyncClientWrapper):
209
- self._client_wrapper = client_wrapper
210
-
211
- async def record_bulk(
212
- self,
213
- *,
214
- signals: typing.Optional[typing.Sequence[Signal]] = OMIT,
215
- request_options: typing.Optional[RequestOptions] = None,
216
- ) -> AsyncHttpResponse[None]:
217
- """
218
- DEPRECATED: Use POST /usage/v2/signals/bulk instead for cleaner field names.
219
-
220
- Parameters
221
- ----------
222
- signals : typing.Optional[typing.Sequence[Signal]]
223
-
224
- request_options : typing.Optional[RequestOptions]
225
- Request-specific configuration.
226
-
227
- Returns
228
- -------
229
- AsyncHttpResponse[None]
230
- """
231
- _response = await self._client_wrapper.httpx_client.request(
232
- "usage/signals/bulk",
233
- method="POST",
234
- json={
235
- "signals": convert_and_respect_annotation_metadata(
236
- object_=signals, annotation=typing.Sequence[Signal], direction="write"
237
- ),
238
- },
239
- headers={
240
- "content-type": "application/json",
241
- },
242
- request_options=request_options,
243
- omit=OMIT,
244
- )
245
- try:
246
- if 200 <= _response.status_code < 300:
247
- return AsyncHttpResponse(response=_response, data=None)
248
- _response_json = _response.json()
249
- except JSONDecodeError:
250
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
251
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
252
-
253
- async def usage_record_bulk_v_2(
254
- self,
255
- *,
256
- signals: typing.Optional[typing.Sequence[SignalV2]] = OMIT,
257
- request_options: typing.Optional[RequestOptions] = None,
258
- ) -> AsyncHttpResponse[None]:
259
- """
260
- Parameters
261
- ----------
262
- signals : typing.Optional[typing.Sequence[SignalV2]]
263
-
264
- request_options : typing.Optional[RequestOptions]
265
- Request-specific configuration.
266
-
267
- Returns
268
- -------
269
- AsyncHttpResponse[None]
270
- """
271
- _response = await self._client_wrapper.httpx_client.request(
272
- "usage/v2/signals/bulk",
273
- method="POST",
274
- json={
275
- "signals": convert_and_respect_annotation_metadata(
276
- object_=signals, annotation=typing.Sequence[SignalV2], direction="write"
277
- ),
278
- },
279
- headers={
280
- "content-type": "application/json",
281
- },
282
- request_options=request_options,
283
- omit=OMIT,
284
- )
285
- try:
286
- if 200 <= _response.status_code < 300:
287
- return AsyncHttpResponse(response=_response, data=None)
288
- if _response.status_code == 400:
289
- raise BadRequestError(
290
- headers=dict(_response.headers),
291
- body=typing.cast(
292
- Error,
293
- parse_obj_as(
294
- type_=Error, # type: ignore
295
- object_=_response.json(),
296
- ),
297
- ),
298
- )
299
- _response_json = _response.json()
300
- except JSONDecodeError:
301
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
302
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
303
-
304
- async def check_usage(
305
- self,
306
- *,
307
- external_customer_id: str,
308
- external_product_id: str,
309
- request_options: typing.Optional[RequestOptions] = None,
310
- ) -> AsyncHttpResponse[UsageCheckUsageResponse]:
311
- """
312
- Parameters
313
- ----------
314
- external_customer_id : str
315
- External customer ID
316
-
317
- external_product_id : str
318
- External product ID (the external ID of the product/agent)
319
-
320
- request_options : typing.Optional[RequestOptions]
321
- Request-specific configuration.
322
-
323
- Returns
324
- -------
325
- AsyncHttpResponse[UsageCheckUsageResponse]
326
- Usage check response
327
- """
328
- _response = await self._client_wrapper.httpx_client.request(
329
- "usage/check-usage",
330
- method="POST",
331
- json={
332
- "externalCustomerId": external_customer_id,
333
- "externalProductId": external_product_id,
334
- },
335
- headers={
336
- "content-type": "application/json",
337
- },
338
- request_options=request_options,
339
- omit=OMIT,
340
- )
341
- try:
342
- if 200 <= _response.status_code < 300:
343
- _data = typing.cast(
344
- UsageCheckUsageResponse,
345
- parse_obj_as(
346
- type_=UsageCheckUsageResponse, # type: ignore
347
- object_=_response.json(),
348
- ),
349
- )
350
- return AsyncHttpResponse(response=_response, data=_data)
351
- if _response.status_code == 400:
352
- raise BadRequestError(
353
- headers=dict(_response.headers),
354
- body=typing.cast(
355
- Error,
356
- parse_obj_as(
357
- type_=Error, # type: ignore
358
- object_=_response.json(),
359
- ),
360
- ),
361
- )
362
- if _response.status_code == 404:
363
- raise NotFoundError(
364
- headers=dict(_response.headers),
365
- body=typing.cast(
366
- Error,
367
- parse_obj_as(
368
- type_=Error, # type: ignore
369
- object_=_response.json(),
370
- ),
371
- ),
372
- )
373
- if _response.status_code == 500:
374
- raise InternalServerError(
375
- headers=dict(_response.headers),
376
- body=typing.cast(
377
- Error,
378
- parse_obj_as(
379
- type_=Error, # type: ignore
380
- object_=_response.json(),
381
- ),
382
- ),
383
- )
384
- _response_json = _response.json()
385
- except JSONDecodeError:
386
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response.text)
387
- raise ApiError(status_code=_response.status_code, headers=dict(_response.headers), body=_response_json)
@@ -1,7 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- # isort: skip_file
4
-
5
- from .usage_check_usage_response import UsageCheckUsageResponse
6
-
7
- __all__ = ["UsageCheckUsageResponse"]
@@ -1,53 +0,0 @@
1
- # This file was auto-generated by Fern from our API Definition.
2
-
3
- import typing
4
-
5
- import pydantic
6
- import typing_extensions
7
- from ...core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel
8
- from ...core.serialization import FieldMetadata
9
-
10
-
11
- class UsageCheckUsageResponse(UniversalBaseModel):
12
- allowed: typing.Optional[bool] = pydantic.Field(default=None)
13
- """
14
- Whether usage is allowed
15
- """
16
-
17
- message: typing.Optional[str] = pydantic.Field(default=None)
18
- """
19
- Human-readable message about the usage check result
20
- """
21
-
22
- event_name: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="eventName")] = pydantic.Field(
23
- default=None
24
- )
25
- """
26
- Event name (only present when usage is not allowed)
27
- """
28
-
29
- available: typing.Optional[float] = pydantic.Field(default=None)
30
- """
31
- Available credits (only present for PrepaidCredits when insufficient)
32
- """
33
-
34
- events_quantity: typing_extensions.Annotated[typing.Optional[float], FieldMetadata(alias="eventsQuantity")] = (
35
- pydantic.Field(default=None)
36
- )
37
- """
38
- Current events quantity (only present when usage exceeds limit)
39
- """
40
-
41
- limit: typing.Optional[float] = pydantic.Field(default=None)
42
- """
43
- Usage limit (only present when usage exceeds limit)
44
- """
45
-
46
- if IS_PYDANTIC_V2:
47
- model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
48
- else:
49
-
50
- class Config:
51
- frozen = True
52
- smart_union = True
53
- extra = pydantic.Extra.allow
@@ -1,153 +0,0 @@
1
- paid/__init__.py,sha256=atXO9KY9MOUipS2yX3lQ0zlbK0tnLzNDxZYM2nexSRU,2797
2
- paid/agents/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
3
- paid/agents/client.py,sha256=kfErQ51mMppV0YS-n0G2w_kISShdC4S8JoL02TZae1U,24369
4
- paid/agents/raw_client.py,sha256=4ehmy21TnS_FhL_NmPwYrUVNWkYaVTobTO22YWu7PGc,27897
5
- paid/client.py,sha256=QjqKnkv6UhWCwgcbzbRm9LtgOp0356LkxWPCWXB91To,24584
6
- paid/contacts/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
7
- paid/contacts/client.py,sha256=sNm-yAg4dR9AyYWL7-RC_CuCCvOXX7YlDAUqn47yZhE,14058
8
- paid/contacts/raw_client.py,sha256=ZYNWuekHiL2sqK_gHR0IzcrLAopUKRXIqMUi-fuLGe4,19211
9
- paid/core/__init__.py,sha256=lTcqUPXcx4112yLDd70RAPeqq6tu3eFMe1pKOqkW9JQ,1562
10
- paid/core/api_error.py,sha256=44vPoTyWN59gonCIZMdzw7M1uspygiLnr3GNFOoVL2Q,614
11
- paid/core/client_wrapper.py,sha256=FlkWEi-0SnGRJ6dNRJb_ftjyOmU_4GFafuWjO18pUYU,2350
12
- paid/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
13
- paid/core/file.py,sha256=d4NNbX8XvXP32z8KpK2Xovv33nFfruIrpz0QWxlgpZk,2663
14
- paid/core/force_multipart.py,sha256=awxh5MtcRYe74ehY8U76jzv6fYM_w_D3Rur7KQQzSDk,429
15
- paid/core/http_client.py,sha256=QurkBvCZZz2Z1d8znp4M2YbOXebBUPcPXRhPIS84Wvk,21214
16
- paid/core/http_response.py,sha256=4uOAtXXFTyFXHLXeQWSfQST9PGcOCRAdHVgGTxdyg84,1334
17
- paid/core/jsonable_encoder.py,sha256=hGgcEEeX11sqxxsll7h15pO3pTNVxk_n79Kcn0laoWA,3655
18
- paid/core/pydantic_utilities.py,sha256=HxbbISfaP1XBvzbIkc0ZcF_GHKd9BfYsJAcFh9B126k,10787
19
- paid/core/query_encoder.py,sha256=ekulqNd0j8TgD7ox-Qbz7liqX8-KP9blvT9DsRCenYM,2144
20
- paid/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
21
- paid/core/request_options.py,sha256=h0QUNCFVdCW_7GclVySCAY2w4NhtXVBUCmHgmzaxpcg,1681
22
- paid/core/serialization.py,sha256=ECL3bvv_0i7U4uvPidZCNel--MUbA0iq0aGcNKi3kws,9818
23
- paid/customers/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
24
- paid/customers/client.py,sha256=Nvos9pgyxSbbmA1AQw_WQ5uTmqvD04RYktiluLlaKXg,34060
25
- paid/customers/raw_client.py,sha256=hGY2SBfxpRlMj6NA1jp2DS2ac8uKTiI8cWrn25NSa1I,51470
26
- paid/environment.py,sha256=8sOi15Agshd4TrgHoqlUFXegvQESdSi7zE3n7uJktMs,164
27
- paid/errors/__init__.py,sha256=i1Cxfwfm2tL1DRuYRbTEXZ5MIhobgDE8zm38gqGSNKY,363
28
- paid/errors/bad_request_error.py,sha256=_nkSDHMpzm0RadIc19BDq-yM9uJMQGWNrdsT2_6B6Iw,348
29
- paid/errors/forbidden_error.py,sha256=eDJG4NiZy5uBKpftwKuKJLcmV3zbKs55WFPH1FHI7Pk,347
30
- paid/errors/internal_server_error.py,sha256=WPvk3xayCQqRAir4nfMhVVextjsR9hMi8zCqX_Zoc14,352
31
- paid/errors/not_found_error.py,sha256=nsBHj9gxzRkoJMdFyChYv9ePaPYYf8h4s2nuoUo4CuI,346
32
- paid/logger.py,sha256=CIo_i2n2Azp4g57GkU9twb_GzJ7x9lZmURqPsq4379M,514
33
- paid/orders/__init__.py,sha256=CrbHKbmp63NAum57EE9NnGmJqLKiWDMLyPRemOs_U9w,126
34
- paid/orders/client.py,sha256=unSUMQvKJRCEGcxXVwDxaHcpev7FxDeUOsO3LJosY1s,11879
35
- paid/orders/lines/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
36
- paid/orders/lines/client.py,sha256=7RCqD78g4VARoCLiwjFm59imsSlbd1E3HPrGKhYG6xI,4062
37
- paid/orders/lines/raw_client.py,sha256=KZN_yBokCOkf1lUb4ZJtX_NZbqmTqCdJNoaIOdWar8I,4590
38
- paid/orders/raw_client.py,sha256=2lriEGXPls8KJE-d0PLLNNQMcCwAW1qz68GdacMIfVo,16603
39
- paid/plans/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
40
- paid/plans/client.py,sha256=qvEMxk2u1vKILH9fU-VewpU3xNY5h3ug-0yRt1M4e2U,9101
41
- paid/plans/raw_client.py,sha256=GCvmY_yQhkFYl7PpXvEFE8OiRjVTz8au1IZRGtWJmWA,17675
42
- paid/products/__init__.py,sha256=oCZ9LvM5pb1zsdux1hBIxN1DVphi5gyPgQmR2p7XNZw,155
43
- paid/products/client.py,sha256=doYlu9mI1j_rzMX3wWvetptxVrJmYeOuXJ0Pm3z02uE,21010
44
- paid/products/raw_client.py,sha256=LwYSuv6wj1N7oU1GDUINkGbgF_Q5x6y_0g6gy8PaJ0A,29546
45
- paid/products/types/__init__.py,sha256=MJp9B1Z1HITox2ggfRTvMCKNKMmfr0mdlpV6GBUL4-o,169
46
- paid/products/types/product_create_type.py,sha256=w3KScykSpocFK1TB-i4QjAfALuyqZcREki4LaCo5plw,184
47
- paid/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- paid/traces/__init__.py,sha256=_VhToAyIt_5axN6CLJwtxg3-CO7THa_23pbUzqhXJa4,85
49
- paid/traces/client.py,sha256=g-x_6EmTwT59QlbeN0bo8sbbwY9S_7LoV-zQp0Z-0pY,7109
50
- paid/traces/raw_client.py,sha256=ClGHkVBTz3gohAC486RdqE7zZJT4g6DOenexfScaPVQ,8967
51
- paid/tracing/__init__.py,sha256=fwjE0SnDWxNZKpYFnLB9IfTMa5ZIfLejs1aM4UA57yY,564
52
- paid/tracing/autoinstrumentation.py,sha256=8te1SHvSAUpyigPmKHGyQtuT6NTPgSmCQ5C6V3jjw9g,7598
53
- paid/tracing/context_data.py,sha256=oiLocz-9qDqB5nQzJlrLsc2Mkr9MaNt_yF_hjppobKc,3298
54
- paid/tracing/context_manager.py,sha256=rSoU1bTSHLDqFsJlhKJoyP3bWi7snAIs7pdJdOV4v2Y,8848
55
- paid/tracing/distributed_tracing.py,sha256=Vht3U8QJmT5jlRVnrybTn-cI1RPuVtyb3V4eTu6gA4g,3991
56
- paid/tracing/signal.py,sha256=PfYxF6EFQS8j7RY5_C5NXrCBVu9Hq2E2tyG4fdQScJk,3252
57
- paid/tracing/tracing.py,sha256=MCIqzRELFB6VbvFrnpIp7bLX7HYfpHnmUapDLcAEioE,16478
58
- paid/tracing/wrappers/__init__.py,sha256=IIleLB_JUbzLw7FshrU2VHZAKF3dZHMGy1O5zCBwwqM,1588
59
- paid/tracing/wrappers/anthropic/__init__.py,sha256=_x1fjySAQxuT5cIGO_jU09LiGcZH-WQLqKg8mUFAu2w,115
60
- paid/tracing/wrappers/anthropic/anthropicWrapper.py,sha256=pGchbOb41CbTxc7H8xXoM-LjR085spqrzXqCVC_rrFk,4913
61
- paid/tracing/wrappers/bedrock/__init__.py,sha256=HSeZYbslJuWU5xWJm2rAHz4sL_Hxb70iJjTyAOoJj3s,67
62
- paid/tracing/wrappers/bedrock/bedrockWrapper.py,sha256=aKfGpbkGqJfI-9QX7O-3vkf15Fi35pPyDxOjydTNpQk,1962
63
- paid/tracing/wrappers/gemini/__init__.py,sha256=6tzEaxuuYcJEtQHlxzjPLqJuEDY2cZe6QC_ZvZCHMS4,64
64
- paid/tracing/wrappers/gemini/geminiWrapper.py,sha256=xXp8gJyT4k39CWCni_Whnua4dEdyFLtYPK9Wqa9ZByU,3837
65
- paid/tracing/wrappers/langchain/__init__.py,sha256=LDNPT9UoZen-8f5K0-FO2-Bau7jpeM0Ht3FxctfWW3w,101
66
- paid/tracing/wrappers/langchain/paidLangChainCallback.py,sha256=2wKFGsYaHwBl24o0UtBZsGne5SGObbaZH54nKvIP3wI,12794
67
- paid/tracing/wrappers/llamaindex/__init__.py,sha256=bM2bibDwbb_cmvQehb8i-fi9XwSx2HAk6qpGee7wnu8,88
68
- paid/tracing/wrappers/llamaindex/llamaIndexWrapper.py,sha256=p4Ft7PhZ5cQ_QWeKmdJlYEH75u0seNVBMiXfki8O7sU,3271
69
- paid/tracing/wrappers/mistral/__init__.py,sha256=_Z1DVul6JBG9vYSXSc9mpm0M4l8GebBWSxwBodGQnew,74
70
- paid/tracing/wrappers/mistral/mistralWrapper.py,sha256=IgK_N5tEj4HDLKxw3uwJYiXB9BQyxLNF-04uiNHMD5Y,8265
71
- paid/tracing/wrappers/openai/__init__.py,sha256=pfaL3O4f4WOS47UUcdZbDbZSNB9fsTyE_WLqqBahVzs,100
72
- paid/tracing/wrappers/openai/openAiWrapper.py,sha256=DIMOGdQTjpFaiKV-JeJvNH_cxHsfmzu2wIrKXDwRkbw,22148
73
- paid/tracing/wrappers/openai_agents/__init__.py,sha256=-xX5HPhYYX6hDWbn5FpFw-P6M2h0k1X9Qjrg0Bkv7cc,94
74
- paid/tracing/wrappers/openai_agents/openaiAgentsHook.py,sha256=-uXUNL0S85cFVT7ObrL9hzEQAIYh5Lo1JgEE57hxk2Y,6650
75
- paid/tracing/wrappers/utils.py,sha256=_0FCF3BC2wK5cU8suEvo_mXm6Jn8ULkyeEhnYPUlO2Y,2347
76
- paid/types/__init__.py,sha256=XvRatcTA_4P-B9BDgOL1K-DCAdTMy8bWBCcKoe8c_YU,3223
77
- paid/types/address.py,sha256=fJa_oYXxsIxJXFZy5UQqflVkr8BQkwQ7fKhp2wO05fo,871
78
- paid/types/agent.py,sha256=dHqSO_hO0fgM5TsnEYrx3zL-rZsWc2GkjkCD2_aOch4,1168
79
- paid/types/agent_attribute.py,sha256=rmIQnmPFOAvCYUtc9oiBD5aqMrL3vdJ1krdxNhLRTEc,588
80
- paid/types/agent_price_point.py,sha256=BzAIItnfNvfvd6OhyxHpieRf44MwovmgGBtPAHdGqf4,1068
81
- paid/types/agent_price_point_tiers.py,sha256=Pml1UFDjLYrsETpiJbnSgusN3c4HSgVi2lEnPlMS98o,896
82
- paid/types/agent_update.py,sha256=5Xc4L4Y37YLHmKphX2RuSsAKltjTIJCRy8tOTsU6CSg,1117
83
- paid/types/api_error.py,sha256=j91xSZV1-5Hpx375E087XfP_WwWzGbnplf_FfEyDJgM,792
84
- paid/types/billing_frequency.py,sha256=67owqyQimW-M9VOpJ1AdE09vw9NzFYIotsjR6eR5-0Q,174
85
- paid/types/charge_type.py,sha256=43hS72QcU4IM53R9PRXKTbPgu9CZqWX76GnU8hGrmWA,180
86
- paid/types/contact.py,sha256=HwkyRLpw8gg8bnWNtOkEdx5hagsODZh08J1Icvfm0bg,2086
87
- paid/types/cost_amount.py,sha256=ZA8iITYudldVbpj6MREsfqpk0lgzUN07GYBEl7mRVw8,713
88
- paid/types/cost_trace.py,sha256=DKmVwKOGV2UaJm5ZUYaJ_TCzqJESss5ThWPfxQit29I,1630
89
- paid/types/cost_traces_response.py,sha256=RJBrK7MSnsM94Y8q8Fi_1oHO-_l8wEsoVIKHNiAInTw,726
90
- paid/types/creation_source.py,sha256=_TGHxDNV4uRwdLWsaHrpKKbGBmV6ny0L-4XPhFIJF9g,171
91
- paid/types/creation_state.py,sha256=X_68xxPjEkU-ndPN9neZOHQgYfvknSnKGhB7cEhgLHE,156
92
- paid/types/customer.py,sha256=WwJDXqM38VmBeBUoLLQAwtWSqRIIoWg44EKwMjv75qw,2020
93
- paid/types/customer_update.py,sha256=0fsB2YP7IgvWsVhi3_ybVrAz6cu9XP04sv-CH8dKgjs,1764
94
- paid/types/entitlement_usage.py,sha256=-zuXAOzbNTr_ugpiOjZEcQpu2i8-xVTtKJsfkhBsT6I,1715
95
- paid/types/error.py,sha256=lWDAazLU1lnuLYGufPYO7YH1EInG2jevvR8ylR6OBiU,607
96
- paid/types/order.py,sha256=hkBRN6OauZYfnzpWLY2COYMqToWdJRLzDokPVyV__rc,2324
97
- paid/types/order_line.py,sha256=oM-fxr5sQ1ttAERR_FsdCAPW2cctaQUvppIKzqjinYk,2092
98
- paid/types/order_line_attribute.py,sha256=cYHpX0p5rEE0eYn4BPq-aB9snn9V5p3yZ5nYDo2W6z8,938
99
- paid/types/order_line_attribute_create_one.py,sha256=H9_zXFQRrutoP_WKlhTBAksEde084FoNXB_XDX9Jj5w,138
100
- paid/types/order_line_attribute_pricing.py,sha256=UDE8OYP93wwmXcPVwgchMknCd64O0g4BNIgLUlK-a5s,1386
101
- paid/types/order_line_create.py,sha256=T8M2nDfyTmc2ph226mePT9SI_MJSciOOsBS-uoIF-K8,2696
102
- paid/types/pagination_meta.py,sha256=RJFmwweexzkYdfsb9ohascJCvQep2scF51kk4377Huo,2398
103
- paid/types/plan.py,sha256=WE7BXhFrBDsbRWXrcJlND90-UQYPwGomEPCOsNfP81E,2314
104
- paid/types/plan_group.py,sha256=OlLrDIBmrE6TsnWJXxLBVSirXUvGK4iKxezyEnznSUI,1621
105
- paid/types/plan_plan_products_item.py,sha256=fRDm5zZcDehYpnIM6Y63YCxlBW9A_ISfnNIyGe-Mlek,1609
106
- paid/types/plan_plan_products_item_plan_product_attribute_item.py,sha256=w9Zc7y6zcxrKCK_RAWZRYx5iwDKm-XepjeBgWYiou8A,1443
107
- paid/types/price_point.py,sha256=lyeI38kJCBMOWdq97hG2kyYiixHgMCKjoCNmzOLG9Fk,915
108
- paid/types/pricing.py,sha256=qrTQHe2CZhUoS7e4sVMDO10aCzeaxZGkSwEKXf7qJkU,1409
109
- paid/types/pricing_model_type.py,sha256=DxTx1zO1gR22gDnnQ55LBvRRIh5EyV5pfE4LF8FFDTI,212
110
- paid/types/product.py,sha256=hSnHIsXR_jImAzhBJLXlBXgahimgp6vYT3oyWrbw6lU,1981
111
- paid/types/product_type.py,sha256=ZP3_66LJly6ebJ4JNxt0VNOqUnsbY43p38LwIPq-aRo,178
112
- paid/types/product_update.py,sha256=35cu1IwPalh-1wEjFQLqivEk6Q0c6yVZbThoWDhBLNY,1393
113
- paid/types/product_update_type.py,sha256=y1EP0aNHyAOPj9zaoMVOgkkE8PlPn1n8iWfyuAXM_PI,184
114
- paid/types/salutation.py,sha256=nxqSuMkcohP_xut2wf9j-gHQri5caKP65N13Qxqr9UM,180
115
- paid/types/signal.py,sha256=UZvHU6MsTXjBds1lw1tszmVax6hyronLDuD5al0GksA,1636
116
- paid/types/signal_v_2.py,sha256=M5sx1A_J5FxB7wEOdU4IgNRd-Ztxb45Q7_Jxu9t2Ojo,1719
117
- paid/types/tax_exempt_status.py,sha256=H8jr087Vvp51pfK8mZ5ZDRdRPbagsSzYDXroz5lRPP4,168
118
- paid/types/tier.py,sha256=damnNp6Eb3T5Gqq15Z3UL1JSauvqXI1k65Aivs4QjMg,832
119
- paid/types/trace.py,sha256=fmDLfG-HxGZ_QllPKvUuixKQptBnJDxAlQos2UpwU3Y,2073
120
- paid/types/traces_response.py,sha256=_a_FfcElOOO8NRVsd0H60QMtZkNVGHEHTcPROmD_DrY,709
121
- paid/types/usage_pagination_meta.py,sha256=kGhAhYJaVO89zONk7Ndg2MWgjPst85iZyC6q4f5804o,1054
122
- paid/types/usage_summaries_response.py,sha256=N1uMSE1aO30sEvOBUgX2gqBt2BiUB8mOo8qS9ul8i0Q,763
123
- paid/types/usage_summary.py,sha256=js1EOBlOTPq9QHz7dvpk0QL0kyyp4s83bjoxHnyrW4o,3660
124
- paid/types/usage_summary_order.py,sha256=eXNb27FT1zeZ_pviqJhMXgTp1dfdHjL59CcgWcQPjrU,775
125
- paid/types/usage_summary_order_line.py,sha256=jRhgT-zuXBQI7s_5CCC2Rhyn_kWYAI8QFSdeOHbZOjU,784
126
- paid/usage/__init__.py,sha256=m0ujD0N7E9e37mHfN6Ww2LDnVi5SggwiIxpN-c7ZFTM,167
127
- paid/usage/client.py,sha256=-EErgpfbrnk32VXDHlX7yFl1YgMlqcl_EOyyov6dtGo,9116
128
- paid/usage/raw_client.py,sha256=0LQU409K1ZwgluN3PoD3yk4Br9uwaiDNh__S-KxKx1M,14261
129
- paid/usage/types/__init__.py,sha256=ywkMUGnwdZzyCfSJaVaL1mSNTROVXOp40VvwRCyzvbk,188
130
- paid/usage/types/usage_check_usage_response.py,sha256=kJY4Y7-tbCQVUyA-FMFWPVYJvm8UYQYbWuRUDXfFT_I,1599
131
- paid/version.py,sha256=QIpDFnOrxMxrs86eL0iNH0mSZ1DO078wWHYY9TYAoew,78
132
- opentelemetry/instrumentation/openai/__init__.py,sha256=Mx_nwMl0TlhUjrQOR4qdx6MEhBUKp5cuUIIXFzi3mXo,2093
133
- opentelemetry/instrumentation/openai/shared/__init__.py,sha256=CnGrqxyUCP8aQivAmPKTW-SEm97ewhhgRNACkzc0kU0,12705
134
- opentelemetry/instrumentation/openai/shared/audio_wrappers.py,sha256=kkb4mM9WW_MBI5X8RHWmaFYDMsYjWr9nFT1atGAhTAc,7184
135
- opentelemetry/instrumentation/openai/shared/chat_wrappers.py,sha256=0c4csAv_lM39vjg43Q70K5AExnCqWolFA3cGoSqBPeg,40487
136
- opentelemetry/instrumentation/openai/shared/completion_wrappers.py,sha256=OAy-tp-jHFvZKb-n_AyZPuXPI3F2lpEmGmnAgIhH6a0,9353
137
- opentelemetry/instrumentation/openai/shared/config.py,sha256=xMSz47vDPboU3Vciulf6lZkyWXTFA6eaLJHk-tYfkus,479
138
- opentelemetry/instrumentation/openai/shared/embeddings_wrappers.py,sha256=eb4HU7cklpR0vi_H9OlpkLZmKH0touWYIipuacJipA0,9364
139
- opentelemetry/instrumentation/openai/shared/event_emitter.py,sha256=zQ4ZCz7VnWWDGHIdlYm8T3MGFpldpOOy8M15iB_HuK8,3237
140
- opentelemetry/instrumentation/openai/shared/event_models.py,sha256=PCfCGxrrArwZqR-4wFcXrhwQq0sBMAxmSrpC4PUMtaM,876
141
- opentelemetry/instrumentation/openai/shared/image_gen_wrappers.py,sha256=y_jN9oqjiOCoht3z-L1vuxaYehZRcpqUB4x3FyoqdrI,2120
142
- opentelemetry/instrumentation/openai/shared/span_utils.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
- opentelemetry/instrumentation/openai/utils.py,sha256=LN5CcmbNoOto9HXJRkx578e47bhSo5JgDZ_ztvMCsvk,5680
144
- opentelemetry/instrumentation/openai/v0/__init__.py,sha256=g4wONoGVqyFjyoYmT1kL3qrB808sawxd9fOY_BoLCgg,6315
145
- opentelemetry/instrumentation/openai/v1/__init__.py,sha256=TK9qP6VCoLoQ4SoUu0RQJUtB4bVmkDSmgHPEiuQl_OI,14629
146
- opentelemetry/instrumentation/openai/v1/assistant_wrappers.py,sha256=gXpQUY0KAi0HMcRLztq_3a5Olbg2IqvTUwgdSkXrjr4,11460
147
- opentelemetry/instrumentation/openai/v1/event_handler_wrapper.py,sha256=IjmMDnX7EFOuaOi34YIOfHG07pGWDhEssMQhu9AS9XY,4410
148
- opentelemetry/instrumentation/openai/v1/responses_wrappers.py,sha256=bfovvrFPI-2v7xxgTBBO3X_D4fzwJffBaYHAGXLq90o,44463
149
- opentelemetry/instrumentation/openai/version.py,sha256=lqGEr9tvmZ_6Qa2559q1rV0OQ1kC9xcQ9JVV0A-9nt4,23
150
- paid_python-0.6.0.dist-info/LICENSE,sha256=Nz4baY1zvv0Qy7lqrQtbaiMhmEeGr2Q7A93aqzpml4c,1071
151
- paid_python-0.6.0.dist-info/METADATA,sha256=5Hq9GWXA-VSZ2CYeDFMOWJUFpSdMcSVNUSpPfBqsrIA,24088
152
- paid_python-0.6.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
153
- paid_python-0.6.0.dist-info/RECORD,,
File without changes
File without changes