payi 0.1.0a99__py3-none-any.whl → 0.1.0a100__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.
Potentially problematic release.
This version of payi might be problematic. Click here for more details.
- payi/_version.py +1 -1
- payi/lib/instrument.py +85 -8
- payi/resources/ingest.py +14 -10
- payi/types/ingest_units_params.py +0 -2
- {payi-0.1.0a99.dist-info → payi-0.1.0a100.dist-info}/METADATA +1 -1
- {payi-0.1.0a99.dist-info → payi-0.1.0a100.dist-info}/RECORD +8 -8
- {payi-0.1.0a99.dist-info → payi-0.1.0a100.dist-info}/WHEEL +0 -0
- {payi-0.1.0a99.dist-info → payi-0.1.0a100.dist-info}/licenses/LICENSE +0 -0
payi/_version.py
CHANGED
payi/lib/instrument.py
CHANGED
|
@@ -112,11 +112,16 @@ class _ProviderRequest:
|
|
|
112
112
|
except Exception as _ex:
|
|
113
113
|
pass
|
|
114
114
|
|
|
115
|
-
|
|
115
|
+
existing_properties = self._ingest.get("properties", None)
|
|
116
|
+
if not existing_properties:
|
|
117
|
+
existing_properties = {}
|
|
118
|
+
|
|
119
|
+
existing_properties['system.failure'] = exception_str
|
|
116
120
|
if fields:
|
|
117
121
|
failure_description = ",".join(fields)
|
|
118
|
-
|
|
119
|
-
|
|
122
|
+
existing_properties["system.failure.description"] = failure_description[:128]
|
|
123
|
+
|
|
124
|
+
self._ingest["properties"] = existing_properties
|
|
120
125
|
|
|
121
126
|
if "http_status_code" not in self._ingest:
|
|
122
127
|
# use a non existent http status code so when presented to the user, the origin is clear
|
|
@@ -150,17 +155,21 @@ class PayiInstrumentConfig(TypedDict, total=False):
|
|
|
150
155
|
use_case_name: Optional[str]
|
|
151
156
|
use_case_id: Optional[str]
|
|
152
157
|
use_case_version: Optional[int]
|
|
158
|
+
use_case_properties: Optional["dict[str, str]"]
|
|
153
159
|
user_id: Optional[str]
|
|
154
160
|
request_tags: Optional["list[str]"]
|
|
161
|
+
request_properties: Optional["dict[str, str]"]
|
|
155
162
|
|
|
156
163
|
class PayiContext(TypedDict, total=False):
|
|
157
164
|
use_case_name: Optional[str]
|
|
158
165
|
use_case_id: Optional[str]
|
|
159
166
|
use_case_version: Optional[int]
|
|
160
167
|
use_case_step: Optional[str]
|
|
168
|
+
use_case_properties: Optional["dict[str, str]"]
|
|
161
169
|
limit_ids: Optional['list[str]']
|
|
162
170
|
user_id: Optional[str]
|
|
163
171
|
request_tags: Optional["list[str]"]
|
|
172
|
+
request_properties: Optional["dict[str, str]"]
|
|
164
173
|
price_as_category: Optional[str]
|
|
165
174
|
price_as_resource: Optional[str]
|
|
166
175
|
resource_scope: Optional[str]
|
|
@@ -172,9 +181,11 @@ class _Context(TypedDict, total=False):
|
|
|
172
181
|
use_case_id: Optional[str]
|
|
173
182
|
use_case_version: Optional[int]
|
|
174
183
|
use_case_step: Optional[str]
|
|
184
|
+
use_case_properties: Optional["dict[str, str]"]
|
|
175
185
|
limit_ids: Optional['list[str]']
|
|
176
186
|
user_id: Optional[str]
|
|
177
187
|
request_tags: Optional["list[str]"]
|
|
188
|
+
request_properties: Optional["dict[str, str]"]
|
|
178
189
|
price_as_category: Optional[str]
|
|
179
190
|
price_as_resource: Optional[str]
|
|
180
191
|
resource_scope: Optional[str]
|
|
@@ -645,6 +656,8 @@ class _PayiInstrumentor:
|
|
|
645
656
|
use_case_step: Optional[str]= None,
|
|
646
657
|
user_id: Optional[str]= None,
|
|
647
658
|
request_tags: Optional["list[str]"] = None,
|
|
659
|
+
request_properties: Optional["dict[str, str]"] = None,
|
|
660
|
+
use_case_properties: Optional["dict[str, str]"] = None,
|
|
648
661
|
price_as_category: Optional[str] = None,
|
|
649
662
|
price_as_resource: Optional[str] = None,
|
|
650
663
|
resource_scope: Optional[str] = None,
|
|
@@ -719,6 +732,38 @@ class _PayiInstrumentor:
|
|
|
719
732
|
# use the parent request_tags if it exists
|
|
720
733
|
context["request_tags"] = parent_request_tags
|
|
721
734
|
|
|
735
|
+
parent_request_properties = parent_context.get("request_properties", None)
|
|
736
|
+
if request_properties is not None:
|
|
737
|
+
if not request_properties:
|
|
738
|
+
context["request_properties"] = None
|
|
739
|
+
else:
|
|
740
|
+
if parent_request_properties:
|
|
741
|
+
# merge dictionaries, child overrides parent keys
|
|
742
|
+
merged = parent_request_properties.copy()
|
|
743
|
+
merged.update(request_properties)
|
|
744
|
+
context["request_properties"] = merged
|
|
745
|
+
else:
|
|
746
|
+
context["request_properties"] = request_properties
|
|
747
|
+
elif parent_request_properties:
|
|
748
|
+
# use the parent request_properties if it exists
|
|
749
|
+
context["request_properties"] = parent_request_properties
|
|
750
|
+
|
|
751
|
+
parent_use_case_properties = parent_context.get("use_case_properties", None)
|
|
752
|
+
if use_case_properties is not None:
|
|
753
|
+
if not use_case_properties:
|
|
754
|
+
context["use_case_properties"] = None
|
|
755
|
+
else:
|
|
756
|
+
if parent_use_case_properties:
|
|
757
|
+
# merge dictionaries, child overrides parent keys
|
|
758
|
+
merged = parent_use_case_properties.copy()
|
|
759
|
+
merged.update(use_case_properties)
|
|
760
|
+
context["use_case_properties"] = merged
|
|
761
|
+
else:
|
|
762
|
+
context["use_case_properties"] = use_case_properties
|
|
763
|
+
elif parent_use_case_properties:
|
|
764
|
+
# use the parent use_case_properties if it exists
|
|
765
|
+
context["use_case_properties"] = parent_use_case_properties
|
|
766
|
+
|
|
722
767
|
if use_case_step and (context["use_case_name"] or context["use_case_id"]):
|
|
723
768
|
context["use_case_step"] = use_case_step
|
|
724
769
|
if price_as_category:
|
|
@@ -738,6 +783,8 @@ class _PayiInstrumentor:
|
|
|
738
783
|
use_case_version: Optional[int],
|
|
739
784
|
user_id: Optional[str],
|
|
740
785
|
request_tags: Optional["list[str]"] = None,
|
|
786
|
+
request_properties: Optional["dict[str, str]"] = None,
|
|
787
|
+
use_case_properties: Optional["dict[str, str]"] = None,
|
|
741
788
|
*args: Any,
|
|
742
789
|
**kwargs: Any,
|
|
743
790
|
) -> Any:
|
|
@@ -749,7 +796,10 @@ class _PayiInstrumentor:
|
|
|
749
796
|
use_case_id=use_case_id,
|
|
750
797
|
use_case_version=use_case_version,
|
|
751
798
|
user_id=user_id,
|
|
752
|
-
request_tags=request_tags
|
|
799
|
+
request_tags=request_tags,
|
|
800
|
+
request_properties=request_properties,
|
|
801
|
+
use_case_properties=use_case_properties
|
|
802
|
+
)
|
|
753
803
|
return await func(*args, **kwargs)
|
|
754
804
|
|
|
755
805
|
def _call_func(
|
|
@@ -762,6 +812,8 @@ class _PayiInstrumentor:
|
|
|
762
812
|
use_case_version: Optional[int],
|
|
763
813
|
user_id: Optional[str],
|
|
764
814
|
request_tags: Optional["list[str]"] = None,
|
|
815
|
+
request_properties: Optional["dict[str, str]"] = None,
|
|
816
|
+
use_case_properties: Optional["dict[str, str]"] = None,
|
|
765
817
|
*args: Any,
|
|
766
818
|
**kwargs: Any,
|
|
767
819
|
) -> Any:
|
|
@@ -773,7 +825,9 @@ class _PayiInstrumentor:
|
|
|
773
825
|
use_case_id=use_case_id,
|
|
774
826
|
use_case_version=use_case_version,
|
|
775
827
|
user_id=user_id,
|
|
776
|
-
request_tags=request_tags
|
|
828
|
+
request_tags=request_tags,
|
|
829
|
+
request_properties=request_properties,
|
|
830
|
+
use_case_properties=use_case_properties)
|
|
777
831
|
return func(*args, **kwargs)
|
|
778
832
|
|
|
779
833
|
def __enter__(self) -> Any:
|
|
@@ -797,7 +851,8 @@ class _PayiInstrumentor:
|
|
|
797
851
|
def _prepare_ingest(
|
|
798
852
|
self,
|
|
799
853
|
request: _ProviderRequest,
|
|
800
|
-
|
|
854
|
+
context: _Context,
|
|
855
|
+
ingest_extra_headers: "dict[str, str]", # do not conflict with potential kwargs["extra_headers"]
|
|
801
856
|
args: Sequence[Any],
|
|
802
857
|
kwargs: 'dict[str, Any]',
|
|
803
858
|
) -> None:
|
|
@@ -827,6 +882,14 @@ class _PayiInstrumentor:
|
|
|
827
882
|
if user_id:
|
|
828
883
|
request._ingest["user_id"] = user_id
|
|
829
884
|
|
|
885
|
+
request_properties = context.get("request_properties", None)
|
|
886
|
+
if request_properties:
|
|
887
|
+
request._ingest["properties"] = request_properties
|
|
888
|
+
|
|
889
|
+
use_case_properties = context.get("use_case_properties", None)
|
|
890
|
+
if use_case_properties:
|
|
891
|
+
request._ingest["use_case_properties"] = use_case_properties
|
|
892
|
+
|
|
830
893
|
if len(ingest_extra_headers) > 0:
|
|
831
894
|
request._ingest["provider_request_headers"] = [PayICommonModelsAPIRouterHeaderInfoParam(name=k, value=v) for k, v in ingest_extra_headers.items()]
|
|
832
895
|
|
|
@@ -909,7 +972,7 @@ class _PayiInstrumentor:
|
|
|
909
972
|
stream = False
|
|
910
973
|
|
|
911
974
|
try:
|
|
912
|
-
self._prepare_ingest(request, extra_headers, args, kwargs)
|
|
975
|
+
self._prepare_ingest(request, context, extra_headers, args, kwargs)
|
|
913
976
|
self._logger.debug(f"async_invoke_wrapper: calling wrapped instance (stream={stream})")
|
|
914
977
|
|
|
915
978
|
sw.start()
|
|
@@ -1032,7 +1095,7 @@ class _PayiInstrumentor:
|
|
|
1032
1095
|
stream = False
|
|
1033
1096
|
|
|
1034
1097
|
try:
|
|
1035
|
-
self._prepare_ingest(request, extra_headers, args, kwargs)
|
|
1098
|
+
self._prepare_ingest(request, context, extra_headers, args, kwargs)
|
|
1036
1099
|
self._logger.debug(f"invoke_wrapper: calling wrapped instance (stream={stream})")
|
|
1037
1100
|
|
|
1038
1101
|
sw.start()
|
|
@@ -1586,6 +1649,7 @@ global _instrumentor
|
|
|
1586
1649
|
_instrumentor: Optional[_PayiInstrumentor] = None
|
|
1587
1650
|
|
|
1588
1651
|
def payi_instrument(
|
|
1652
|
+
*,
|
|
1589
1653
|
payi: Optional[Union[Payi, AsyncPayi, 'list[Union[Payi, AsyncPayi]]']] = None,
|
|
1590
1654
|
instruments: Optional[Set[str]] = None,
|
|
1591
1655
|
log_prompt_and_response: bool = True,
|
|
@@ -1628,12 +1692,15 @@ def payi_instrument(
|
|
|
1628
1692
|
)
|
|
1629
1693
|
|
|
1630
1694
|
def track(
|
|
1695
|
+
*,
|
|
1631
1696
|
limit_ids: Optional["list[str]"] = None,
|
|
1632
1697
|
use_case_name: Optional[str] = None,
|
|
1633
1698
|
use_case_id: Optional[str] = None,
|
|
1634
1699
|
use_case_version: Optional[int] = None,
|
|
1635
1700
|
user_id: Optional[str] = None,
|
|
1636
1701
|
request_tags: Optional["list[str]"] = None,
|
|
1702
|
+
request_properties: Optional["dict[str, str]"] = None,
|
|
1703
|
+
use_case_properties: Optional["dict[str, str]"] = None,
|
|
1637
1704
|
proxy: Optional[bool] = None,
|
|
1638
1705
|
) -> Any:
|
|
1639
1706
|
|
|
@@ -1656,6 +1723,8 @@ def track(
|
|
|
1656
1723
|
use_case_version,
|
|
1657
1724
|
user_id,
|
|
1658
1725
|
request_tags,
|
|
1726
|
+
request_properties,
|
|
1727
|
+
use_case_properties,
|
|
1659
1728
|
*args,
|
|
1660
1729
|
**kwargs,
|
|
1661
1730
|
)
|
|
@@ -1677,6 +1746,8 @@ def track(
|
|
|
1677
1746
|
use_case_version,
|
|
1678
1747
|
user_id,
|
|
1679
1748
|
request_tags,
|
|
1749
|
+
request_properties,
|
|
1750
|
+
use_case_properties,
|
|
1680
1751
|
*args,
|
|
1681
1752
|
**kwargs,
|
|
1682
1753
|
)
|
|
@@ -1684,6 +1755,7 @@ def track(
|
|
|
1684
1755
|
return _track
|
|
1685
1756
|
|
|
1686
1757
|
def track_context(
|
|
1758
|
+
*,
|
|
1687
1759
|
limit_ids: Optional["list[str]"] = None,
|
|
1688
1760
|
use_case_name: Optional[str] = None,
|
|
1689
1761
|
use_case_id: Optional[str] = None,
|
|
@@ -1691,6 +1763,8 @@ def track_context(
|
|
|
1691
1763
|
use_case_step: Optional[str] = None,
|
|
1692
1764
|
user_id: Optional[str] = None,
|
|
1693
1765
|
request_tags: Optional["list[str]"] = None,
|
|
1766
|
+
request_properties: Optional["dict[str, str]"] = None,
|
|
1767
|
+
use_case_properties: Optional["dict[str, str]"] = None,
|
|
1694
1768
|
price_as_category: Optional[str] = None,
|
|
1695
1769
|
price_as_resource: Optional[str] = None,
|
|
1696
1770
|
resource_scope: Optional[str] = None,
|
|
@@ -1715,6 +1789,9 @@ def track_context(
|
|
|
1715
1789
|
context["price_as_resource"] = price_as_resource
|
|
1716
1790
|
context["resource_scope"] = resource_scope
|
|
1717
1791
|
|
|
1792
|
+
context["request_properties"] = request_properties
|
|
1793
|
+
context["use_case_properties"] = use_case_properties
|
|
1794
|
+
|
|
1718
1795
|
return _InternalTrackContext(context)
|
|
1719
1796
|
|
|
1720
1797
|
def get_context() -> PayiContext:
|
payi/resources/ingest.py
CHANGED
|
@@ -90,7 +90,6 @@ class IngestResource(SyncAPIResource):
|
|
|
90
90
|
units: Dict[str, IngestUnits],
|
|
91
91
|
end_to_end_latency_ms: Optional[int] | NotGiven = NOT_GIVEN,
|
|
92
92
|
event_timestamp: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
|
|
93
|
-
experience_properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
|
|
94
93
|
http_status_code: Optional[int] | NotGiven = NOT_GIVEN,
|
|
95
94
|
properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
|
|
96
95
|
provider_request_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
|
|
@@ -133,11 +132,13 @@ class IngestResource(SyncAPIResource):
|
|
|
133
132
|
|
|
134
133
|
output (int): The number of output units
|
|
135
134
|
|
|
136
|
-
event_timestamp: (str, datetime, None): The timestamp of the event
|
|
135
|
+
event_timestamp: (str, datetime, None): The timestamp of the event
|
|
137
136
|
|
|
138
|
-
limit_ids (list[str], optional): The limit IDs to associate with the request
|
|
137
|
+
limit_ids (list[str], optional): The limit IDs to associate with the request
|
|
139
138
|
|
|
140
|
-
|
|
139
|
+
properties (Dict[str, str], optional): Properties to associate with the request
|
|
140
|
+
|
|
141
|
+
request_tags (list[str], optional): The request tags to associate with the request
|
|
141
142
|
|
|
142
143
|
use_case_name (str, optional): The use case name
|
|
143
144
|
|
|
@@ -147,6 +148,8 @@ class IngestResource(SyncAPIResource):
|
|
|
147
148
|
|
|
148
149
|
use_case_version (int, optional): The use case instance version
|
|
149
150
|
|
|
151
|
+
use_case_properties (Dict[str, str], optional): The use case properties
|
|
152
|
+
|
|
150
153
|
user_id (str, optional): The user id
|
|
151
154
|
|
|
152
155
|
resource_scope(str, optional): The scope of the resource
|
|
@@ -234,7 +237,6 @@ class IngestResource(SyncAPIResource):
|
|
|
234
237
|
"units": units,
|
|
235
238
|
"end_to_end_latency_ms": end_to_end_latency_ms,
|
|
236
239
|
"event_timestamp": event_timestamp,
|
|
237
|
-
"experience_properties": experience_properties,
|
|
238
240
|
"http_status_code": http_status_code,
|
|
239
241
|
"properties": properties,
|
|
240
242
|
"provider_request_headers": provider_request_headers,
|
|
@@ -318,7 +320,6 @@ class AsyncIngestResource(AsyncAPIResource):
|
|
|
318
320
|
units: Dict[str, IngestUnits],
|
|
319
321
|
end_to_end_latency_ms: Optional[int] | NotGiven = NOT_GIVEN,
|
|
320
322
|
event_timestamp: Union[str, datetime, None] | NotGiven = NOT_GIVEN,
|
|
321
|
-
experience_properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
|
|
322
323
|
http_status_code: Optional[int] | NotGiven = NOT_GIVEN,
|
|
323
324
|
properties: Optional[Dict[str, str]] | NotGiven = NOT_GIVEN,
|
|
324
325
|
provider_request_headers: Optional[Iterable[PayICommonModelsAPIRouterHeaderInfoParam]] | NotGiven = NOT_GIVEN,
|
|
@@ -360,11 +361,13 @@ class AsyncIngestResource(AsyncAPIResource):
|
|
|
360
361
|
|
|
361
362
|
output (int): The number of output units
|
|
362
363
|
|
|
363
|
-
event_timestamp: (datetime, None): The timestamp of the event
|
|
364
|
+
event_timestamp: (datetime, None): The timestamp of the event
|
|
364
365
|
|
|
365
|
-
limit_ids (list[str], optional): The limit IDs to associate with the request
|
|
366
|
+
limit_ids (list[str], optional): The limit IDs to associate with the request
|
|
366
367
|
|
|
367
|
-
|
|
368
|
+
properties (Dict[str, str], optional): Properties to associate with the request
|
|
369
|
+
|
|
370
|
+
request_tags (list[str], optional): The request tags to associate with the request
|
|
368
371
|
|
|
369
372
|
use_case_name (str, optional): The use case name
|
|
370
373
|
|
|
@@ -374,6 +377,8 @@ class AsyncIngestResource(AsyncAPIResource):
|
|
|
374
377
|
|
|
375
378
|
use_case_version (int, optional): The use case instance version
|
|
376
379
|
|
|
380
|
+
use_case_properties (Dict[str, str], optional): The use case properties
|
|
381
|
+
|
|
377
382
|
user_id (str, optional): The user id
|
|
378
383
|
|
|
379
384
|
resource_scope (str, optional): The scope of the resource
|
|
@@ -460,7 +465,6 @@ class AsyncIngestResource(AsyncAPIResource):
|
|
|
460
465
|
"units": units,
|
|
461
466
|
"end_to_end_latency_ms": end_to_end_latency_ms,
|
|
462
467
|
"event_timestamp": event_timestamp,
|
|
463
|
-
"experience_properties": experience_properties,
|
|
464
468
|
"http_status_code": http_status_code,
|
|
465
469
|
"properties": properties,
|
|
466
470
|
"provider_request_headers": provider_request_headers,
|
|
@@ -24,8 +24,6 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
24
24
|
|
|
25
25
|
event_timestamp: Annotated[Union[str, datetime, None], PropertyInfo(format="iso8601")]
|
|
26
26
|
|
|
27
|
-
experience_properties: Optional[Dict[str, str]]
|
|
28
|
-
|
|
29
27
|
http_status_code: Optional[int]
|
|
30
28
|
|
|
31
29
|
properties: Optional[Dict[str, str]]
|
|
@@ -11,7 +11,7 @@ payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
|
|
|
11
11
|
payi/_response.py,sha256=rh9oJAvCKcPwQFm4iqH_iVrmK8bNx--YP_A2a4kN1OU,28776
|
|
12
12
|
payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
|
|
13
13
|
payi/_types.py,sha256=7jE5MoQQFVoVxw5vVzvZ2Ao0kcjfNOGsBgyJfLBEnMo,6195
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=aP6D6A3iD2QBDh8sdA6JgNJrQV-FEHsxHI15LuG2nIs,166
|
|
15
15
|
payi/pagination.py,sha256=k2356QGPOUSjRF2vHpwLBdF6P-2vnQzFfRIJQAHGQ7A,1258
|
|
16
16
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
payi/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
|
@@ -33,10 +33,10 @@ payi/lib/Stopwatch.py,sha256=7OJlxvr2Jyb6Zr1LYCYKczRB7rDVKkIR7gc4YoleNdE,764
|
|
|
33
33
|
payi/lib/VertexInstrumentor.py,sha256=OWuMPiW4LdLhj6DSAAy5qZiosVo8DSAuFWGxYpEucoE,7431
|
|
34
34
|
payi/lib/VertexRequest.py,sha256=edv14HR5QtKaf07gmOqzWdhoJGdWCos85uCZASwsGL4,11710
|
|
35
35
|
payi/lib/helpers.py,sha256=FPzNSSHGf9bgD6CanB7yVx_U8t4lm2c0jlZKrsziYlc,4242
|
|
36
|
-
payi/lib/instrument.py,sha256=
|
|
36
|
+
payi/lib/instrument.py,sha256=TU3wZrG79YFt_WnIA8fsjQBPdWDHSqvm_pVT45AZ6XY,72824
|
|
37
37
|
payi/lib/version_helper.py,sha256=v0lC3kuaXn6PBDolE3mkmwJiA8Ot3z4RkVR7wlBuZCs,540
|
|
38
38
|
payi/resources/__init__.py,sha256=B2bn1ZfCf6TbHlzZvy5TpFPtALnFcBRPYVKQH3S5qfQ,2457
|
|
39
|
-
payi/resources/ingest.py,sha256=
|
|
39
|
+
payi/resources/ingest.py,sha256=Ti7JkuHvdGSSyMiyI6PHBRlM1fKRkKdR5sQhs5t9v04,22980
|
|
40
40
|
payi/resources/categories/__init__.py,sha256=WeotN_d-0Ri8ohsrNPbve7RyViD9_N0NA9DrV3WYg3w,1701
|
|
41
41
|
payi/resources/categories/categories.py,sha256=yYCkCxaYPWees9I9cx9CPy_H9wZK2X7jq8tRh-G__v8,20653
|
|
42
42
|
payi/resources/categories/fixed_cost_resources.py,sha256=tLJlZ06KDIOHpVF4iq8S9IPocGohbOYh9LO0cWGznUA,7824
|
|
@@ -71,7 +71,7 @@ payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ
|
|
|
71
71
|
payi/types/ingest_bulk_params.py,sha256=A-IRb39d2tmVzEQqrvhlF_3si-9ufHBKYLlvdXupAHU,362
|
|
72
72
|
payi/types/ingest_event_param.py,sha256=Nxf-sRKlks8gXaSM_52s_3TkvG0SJICxsvgkRch_Yxk,2054
|
|
73
73
|
payi/types/ingest_response.py,sha256=JwcZ6OL793uXTuDmZAzkzhGcdtDsSXfSy_ERjzc7MZY,378
|
|
74
|
-
payi/types/ingest_units_params.py,sha256=
|
|
74
|
+
payi/types/ingest_units_params.py,sha256=Zj0PcVPbjRAz3lwqJqJ2QS8FXxdRwCMlVD5frEshtbk,2526
|
|
75
75
|
payi/types/limit_create_params.py,sha256=NHQHY1eeetGS6lU8aMIcibvVPzYE04mzLcf4Sz06gBs,578
|
|
76
76
|
payi/types/limit_history_response.py,sha256=vJnVVa5BROfYHRPvpfymcOabjDhcJtFowQF-L-apNgw,770
|
|
77
77
|
payi/types/limit_list_params.py,sha256=OYlK0anDA5G71FfwrMDzhEX4S5AlASLRiR0tmyD9tTU,322
|
|
@@ -133,7 +133,7 @@ payi/types/use_cases/definitions/kpi_retrieve_response.py,sha256=uQXliSvS3k-yDYw
|
|
|
133
133
|
payi/types/use_cases/definitions/kpi_update_params.py,sha256=jbawdWAdMnsTWVH0qfQGb8W7_TXe3lq4zjSRu44d8p8,373
|
|
134
134
|
payi/types/use_cases/definitions/kpi_update_response.py,sha256=zLyEoT0S8d7XHsnXZYT8tM7yDw0Aze0Mk-_Z6QeMtc8,459
|
|
135
135
|
payi/types/use_cases/definitions/limit_config_create_params.py,sha256=pzQza_16N3z8cFNEKr6gPbFvuGFrwNuGxAYb--Kbo2M,449
|
|
136
|
-
payi-0.1.
|
|
137
|
-
payi-0.1.
|
|
138
|
-
payi-0.1.
|
|
139
|
-
payi-0.1.
|
|
136
|
+
payi-0.1.0a100.dist-info/METADATA,sha256=eBQFP4sVGO_T3gn7fzWy9UL8vLfFDSZz0c5LKdNFPOk,16290
|
|
137
|
+
payi-0.1.0a100.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
138
|
+
payi-0.1.0a100.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
|
|
139
|
+
payi-0.1.0a100.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|