payi 0.1.0a70__py3-none-any.whl → 0.1.0a72__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/__init__.py +5 -0
- payi/_utils/_proxy.py +4 -1
- payi/_utils/_resources_proxy.py +24 -0
- payi/_version.py +1 -1
- payi/lib/AnthropicInstrumentor.py +8 -6
- payi/lib/BedrockInstrumentor.py +8 -8
- payi/lib/OpenAIInstrumentor.py +11 -10
- payi/lib/VertexInstrumentor.py +313 -0
- payi/lib/helpers.py +1 -1
- payi/lib/instrument.py +190 -47
- payi/resources/ingest.py +55 -24
- payi/resources/limits/limits.py +0 -8
- payi/types/__init__.py +3 -0
- payi/types/bulk_ingest_response.py +3 -8
- payi/types/category_resource_response.py +2 -0
- payi/types/ingest_event_param.py +7 -10
- payi/types/ingest_response.py +2 -41
- payi/types/ingest_units_params.py +5 -2
- payi/types/limit_create_params.py +2 -2
- payi/types/requests/request_result.py +2 -42
- payi/types/shared/__init__.py +3 -0
- payi/types/shared/ingest_units.py +13 -0
- payi/types/shared/xproxy_error.py +13 -0
- payi/types/shared/xproxy_result.py +49 -0
- payi/types/shared_params/__init__.py +1 -0
- payi/types/shared_params/ingest_units.py +13 -0
- {payi-0.1.0a70.dist-info → payi-0.1.0a72.dist-info}/METADATA +1 -1
- {payi-0.1.0a70.dist-info → payi-0.1.0a72.dist-info}/RECORD +30 -24
- {payi-0.1.0a70.dist-info → payi-0.1.0a72.dist-info}/WHEEL +0 -0
- {payi-0.1.0a70.dist-info → payi-0.1.0a72.dist-info}/licenses/LICENSE +0 -0
|
@@ -6,14 +6,9 @@ from datetime import datetime
|
|
|
6
6
|
from pydantic import Field as FieldInfo
|
|
7
7
|
|
|
8
8
|
from .._models import BaseModel
|
|
9
|
+
from .shared.xproxy_error import XproxyError
|
|
9
10
|
|
|
10
|
-
__all__ = ["BulkIngestResponse", "Error", "ErrorXproxyResult"
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
class ErrorXproxyResultXproxyError(BaseModel):
|
|
14
|
-
code: Optional[str] = None
|
|
15
|
-
|
|
16
|
-
message: Optional[str] = None
|
|
11
|
+
__all__ = ["BulkIngestResponse", "Error", "ErrorXproxyResult"]
|
|
17
12
|
|
|
18
13
|
|
|
19
14
|
class ErrorXproxyResult(BaseModel):
|
|
@@ -21,7 +16,7 @@ class ErrorXproxyResult(BaseModel):
|
|
|
21
16
|
|
|
22
17
|
status_code: int = FieldInfo(alias="statusCode")
|
|
23
18
|
|
|
24
|
-
xproxy_error: Optional[
|
|
19
|
+
xproxy_error: Optional[XproxyError] = None
|
|
25
20
|
|
|
26
21
|
|
|
27
22
|
class Error(BaseModel):
|
payi/types/ingest_event_param.py
CHANGED
|
@@ -7,15 +7,10 @@ from datetime import datetime
|
|
|
7
7
|
from typing_extensions import Required, Annotated, TypedDict
|
|
8
8
|
|
|
9
9
|
from .._utils import PropertyInfo
|
|
10
|
+
from .shared_params.ingest_units import IngestUnits
|
|
10
11
|
from .pay_i_common_models_api_router_header_info_param import PayICommonModelsAPIRouterHeaderInfoParam
|
|
11
12
|
|
|
12
|
-
__all__ = ["IngestEventParam"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class Units(TypedDict, total=False):
|
|
16
|
-
input: int
|
|
17
|
-
|
|
18
|
-
output: int
|
|
13
|
+
__all__ = ["IngestEventParam"]
|
|
19
14
|
|
|
20
15
|
|
|
21
16
|
class IngestEventParam(TypedDict, total=False):
|
|
@@ -23,7 +18,7 @@ class IngestEventParam(TypedDict, total=False):
|
|
|
23
18
|
|
|
24
19
|
resource: Required[str]
|
|
25
20
|
|
|
26
|
-
units: Required[Dict[str,
|
|
21
|
+
units: Required[Dict[str, IngestUnits]]
|
|
27
22
|
|
|
28
23
|
end_to_end_latency_ms: Optional[int]
|
|
29
24
|
|
|
@@ -63,8 +58,10 @@ class IngestEventParam(TypedDict, total=False):
|
|
|
63
58
|
|
|
64
59
|
use_case_name: Optional[str]
|
|
65
60
|
|
|
66
|
-
use_case_version: Optional[int]
|
|
67
|
-
|
|
68
61
|
use_case_properties: Optional[Dict[str, str]]
|
|
69
62
|
|
|
63
|
+
use_case_step: Optional[str]
|
|
64
|
+
|
|
65
|
+
use_case_version: Optional[int]
|
|
66
|
+
|
|
70
67
|
user_id: Optional[str]
|
payi/types/ingest_response.py
CHANGED
|
@@ -1,50 +1,11 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from typing import Dict, List, Optional
|
|
4
3
|
from datetime import datetime
|
|
5
|
-
from typing_extensions import Literal
|
|
6
4
|
|
|
7
5
|
from .._models import BaseModel
|
|
8
|
-
from .
|
|
9
|
-
from .shared.pay_i_common_models_budget_management_cost_details_base import (
|
|
10
|
-
PayICommonModelsBudgetManagementCostDetailsBase,
|
|
11
|
-
)
|
|
6
|
+
from .shared.xproxy_result import XproxyResult
|
|
12
7
|
|
|
13
|
-
__all__ = ["IngestResponse"
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
class XproxyResultCost(BaseModel):
|
|
17
|
-
currency: Optional[Literal["usd"]] = None
|
|
18
|
-
|
|
19
|
-
input: Optional[PayICommonModelsBudgetManagementCostDetailsBase] = None
|
|
20
|
-
|
|
21
|
-
output: Optional[PayICommonModelsBudgetManagementCostDetailsBase] = None
|
|
22
|
-
|
|
23
|
-
total: Optional[CostDetails] = None
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
class XproxyResultLimits(BaseModel):
|
|
27
|
-
state: Optional[Literal["ok", "blocked", "blocked_external", "exceeded", "overrun", "failed"]] = None
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
class XproxyResult(BaseModel):
|
|
31
|
-
blocked_limit_ids: Optional[List[str]] = None
|
|
32
|
-
|
|
33
|
-
cost: Optional[XproxyResultCost] = None
|
|
34
|
-
|
|
35
|
-
experience_id: Optional[str] = None
|
|
36
|
-
|
|
37
|
-
limits: Optional[Dict[str, XproxyResultLimits]] = None
|
|
38
|
-
|
|
39
|
-
request_id: Optional[str] = None
|
|
40
|
-
|
|
41
|
-
request_tags: Optional[List[str]] = None
|
|
42
|
-
|
|
43
|
-
resource_id: Optional[str] = None
|
|
44
|
-
|
|
45
|
-
use_case_id: Optional[str] = None
|
|
46
|
-
|
|
47
|
-
user_id: Optional[str] = None
|
|
8
|
+
__all__ = ["IngestResponse"]
|
|
48
9
|
|
|
49
10
|
|
|
50
11
|
class IngestResponse(BaseModel):
|
|
@@ -7,9 +7,10 @@ from datetime import datetime
|
|
|
7
7
|
from typing_extensions import Required, Annotated, TypedDict
|
|
8
8
|
|
|
9
9
|
from .._utils import PropertyInfo
|
|
10
|
+
from .shared_params.ingest_units import IngestUnits
|
|
10
11
|
from .pay_i_common_models_api_router_header_info_param import PayICommonModelsAPIRouterHeaderInfoParam
|
|
11
12
|
|
|
12
|
-
__all__ = ["IngestUnitsParams"
|
|
13
|
+
__all__ = ["IngestUnitsParams"]
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
class IngestUnitsParams(TypedDict, total=False):
|
|
@@ -17,7 +18,7 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
17
18
|
|
|
18
19
|
resource: Required[str]
|
|
19
20
|
|
|
20
|
-
units: Required[Dict[str,
|
|
21
|
+
units: Required[Dict[str, IngestUnits]]
|
|
21
22
|
|
|
22
23
|
end_to_end_latency_ms: Optional[int]
|
|
23
24
|
|
|
@@ -61,6 +62,8 @@ class IngestUnitsParams(TypedDict, total=False):
|
|
|
61
62
|
|
|
62
63
|
resource_scope: Annotated[Union[str, None], PropertyInfo(alias="xProxy-Resource-Scope")]
|
|
63
64
|
|
|
65
|
+
use_case_step: Annotated[Union[str, None], PropertyInfo(alias="xProxy-UseCase-Step")]
|
|
66
|
+
|
|
64
67
|
user_id: Annotated[Union[str, None], PropertyInfo(alias="xProxy-User-ID")]
|
|
65
68
|
|
|
66
69
|
|
|
@@ -13,9 +13,9 @@ class LimitCreateParams(TypedDict, total=False):
|
|
|
13
13
|
|
|
14
14
|
max: Required[float]
|
|
15
15
|
|
|
16
|
-
billing_model_id: Optional[str]
|
|
16
|
+
# billing_model_id: Optional[str]
|
|
17
17
|
|
|
18
|
-
limit_basis: Literal["base", "billed"]
|
|
18
|
+
# limit_basis: Literal["base", "billed"]
|
|
19
19
|
|
|
20
20
|
limit_tags: Optional[List[str]]
|
|
21
21
|
|
|
@@ -1,49 +1,9 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
-
from typing import Dict, List, Optional
|
|
4
|
-
from typing_extensions import Literal
|
|
5
|
-
|
|
6
3
|
from ..._models import BaseModel
|
|
7
|
-
from ..
|
|
8
|
-
from ..shared.pay_i_common_models_budget_management_cost_details_base import (
|
|
9
|
-
PayICommonModelsBudgetManagementCostDetailsBase,
|
|
10
|
-
)
|
|
11
|
-
|
|
12
|
-
__all__ = ["RequestResult", "XproxyResult", "XproxyResultCost", "XproxyResultLimits"]
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
class XproxyResultCost(BaseModel):
|
|
16
|
-
currency: Optional[Literal["usd"]] = None
|
|
17
|
-
|
|
18
|
-
input: Optional[PayICommonModelsBudgetManagementCostDetailsBase] = None
|
|
19
|
-
|
|
20
|
-
output: Optional[PayICommonModelsBudgetManagementCostDetailsBase] = None
|
|
21
|
-
|
|
22
|
-
total: Optional[CostDetails] = None
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class XproxyResultLimits(BaseModel):
|
|
26
|
-
state: Optional[Literal["ok", "blocked", "blocked_external", "exceeded", "overrun", "failed"]] = None
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
class XproxyResult(BaseModel):
|
|
30
|
-
blocked_limit_ids: Optional[List[str]] = None
|
|
31
|
-
|
|
32
|
-
cost: Optional[XproxyResultCost] = None
|
|
33
|
-
|
|
34
|
-
experience_id: Optional[str] = None
|
|
35
|
-
|
|
36
|
-
limits: Optional[Dict[str, XproxyResultLimits]] = None
|
|
37
|
-
|
|
38
|
-
request_id: Optional[str] = None
|
|
39
|
-
|
|
40
|
-
request_tags: Optional[List[str]] = None
|
|
41
|
-
|
|
42
|
-
resource_id: Optional[str] = None
|
|
43
|
-
|
|
44
|
-
use_case_id: Optional[str] = None
|
|
4
|
+
from ..shared.xproxy_result import XproxyResult
|
|
45
5
|
|
|
46
|
-
|
|
6
|
+
__all__ = ["RequestResult"]
|
|
47
7
|
|
|
48
8
|
|
|
49
9
|
class RequestResult(BaseModel):
|
payi/types/shared/__init__.py
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from .ingest_units import IngestUnits as IngestUnits
|
|
4
|
+
from .xproxy_error import XproxyError as XproxyError
|
|
5
|
+
from .xproxy_result import XproxyResult as XproxyResult
|
|
3
6
|
from .properties_response import PropertiesResponse as PropertiesResponse
|
|
4
7
|
from .pay_i_common_models_budget_management_cost_details_base import (
|
|
5
8
|
PayICommonModelsBudgetManagementCostDetailsBase as PayICommonModelsBudgetManagementCostDetailsBase,
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
from ..._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["IngestUnits"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class IngestUnits(BaseModel):
|
|
11
|
+
input: Optional[int] = None
|
|
12
|
+
|
|
13
|
+
output: Optional[int] = None
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Optional
|
|
4
|
+
|
|
5
|
+
from ..._models import BaseModel
|
|
6
|
+
|
|
7
|
+
__all__ = ["XproxyError"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class XproxyError(BaseModel):
|
|
11
|
+
code: Optional[str] = None
|
|
12
|
+
|
|
13
|
+
message: Optional[str] = None
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Dict, List, Optional
|
|
4
|
+
from typing_extensions import Literal
|
|
5
|
+
|
|
6
|
+
from ..._models import BaseModel
|
|
7
|
+
from .ingest_units import IngestUnits
|
|
8
|
+
from ..cost_details import CostDetails
|
|
9
|
+
from .pay_i_common_models_budget_management_cost_details_base import PayICommonModelsBudgetManagementCostDetailsBase
|
|
10
|
+
|
|
11
|
+
__all__ = ["XproxyResult", "Cost", "Limits"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class Cost(BaseModel):
|
|
15
|
+
currency: Optional[Literal["usd"]] = None
|
|
16
|
+
|
|
17
|
+
input: Optional[PayICommonModelsBudgetManagementCostDetailsBase] = None
|
|
18
|
+
|
|
19
|
+
output: Optional[PayICommonModelsBudgetManagementCostDetailsBase] = None
|
|
20
|
+
|
|
21
|
+
total: Optional[CostDetails] = None
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class Limits(BaseModel):
|
|
25
|
+
state: Optional[Literal["ok", "blocked", "blocked_external", "exceeded", "overrun", "failed"]] = None
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
class XproxyResult(BaseModel):
|
|
29
|
+
blocked_limit_ids: Optional[List[str]] = None
|
|
30
|
+
|
|
31
|
+
cost: Optional[Cost] = None
|
|
32
|
+
|
|
33
|
+
experience_id: Optional[str] = None
|
|
34
|
+
|
|
35
|
+
limits: Optional[Dict[str, Limits]] = None
|
|
36
|
+
|
|
37
|
+
request_id: Optional[str] = None
|
|
38
|
+
|
|
39
|
+
request_tags: Optional[List[str]] = None
|
|
40
|
+
|
|
41
|
+
resource_id: Optional[str] = None
|
|
42
|
+
|
|
43
|
+
unknown_units: Optional[Dict[str, IngestUnits]] = None
|
|
44
|
+
|
|
45
|
+
use_case_id: Optional[str] = None
|
|
46
|
+
|
|
47
|
+
use_case_step: Optional[str] = None
|
|
48
|
+
|
|
49
|
+
user_id: Optional[str] = None
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
|
+
from .ingest_units import IngestUnits as IngestUnits
|
|
3
4
|
from .pay_i_common_models_budget_management_create_limit_base import (
|
|
4
5
|
PayICommonModelsBudgetManagementCreateLimitBase as PayICommonModelsBudgetManagementCreateLimitBase,
|
|
5
6
|
)
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["IngestUnits"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class IngestUnits(TypedDict, total=False):
|
|
11
|
+
input: int
|
|
12
|
+
|
|
13
|
+
output: int
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
payi/__init__.py,sha256=
|
|
1
|
+
payi/__init__.py,sha256=4FRZqYbTvadWzWaSOtI2PmlFVjY4Z-jAi-T0DZAqR8c,2510
|
|
2
2
|
payi/_base_client.py,sha256=pG4egpa2uhESXvjtszBekP-IdP12GY-vK5T54xnx8M8,64842
|
|
3
3
|
payi/_client.py,sha256=NoznzJFIQsFjEcPZWGJpHr94mOTMaQBuH-U_WGdjB10,17882
|
|
4
4
|
payi/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
|
@@ -11,27 +11,29 @@ 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=2mbMK86K3W1aMTW7sOGQ-VND6-A2IuXKm8p4sYFztBU,6141
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=hfVsfey6OwITxk6zykXfOoMOxM8ZCWk-trl1AbSPzKg,165
|
|
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
|
|
18
18
|
payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
|
|
19
|
-
payi/_utils/_proxy.py,sha256=
|
|
19
|
+
payi/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
20
20
|
payi/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
21
|
+
payi/_utils/_resources_proxy.py,sha256=qaGS6A6oxTyKN-iZ_XuAOm3Qg4q_MC5xLGLoLihgDas,579
|
|
21
22
|
payi/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
22
23
|
payi/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
23
24
|
payi/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
|
|
24
25
|
payi/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
|
|
25
26
|
payi/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
|
26
27
|
payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
27
|
-
payi/lib/AnthropicInstrumentor.py,sha256=
|
|
28
|
-
payi/lib/BedrockInstrumentor.py,sha256=
|
|
29
|
-
payi/lib/OpenAIInstrumentor.py,sha256=
|
|
28
|
+
payi/lib/AnthropicInstrumentor.py,sha256=RMl_E5rfyMT9q3bGljFA4ba3RWyURPWfgWnZe0cHV_U,7123
|
|
29
|
+
payi/lib/BedrockInstrumentor.py,sha256=4IfOwq_MSGlvlSMxAocVu0G-Ctoir6nSL9KtpGfga8I,13969
|
|
30
|
+
payi/lib/OpenAIInstrumentor.py,sha256=62aulfbZ0grdiYTDUHOiCKRHTwlrq5NHIRe6zUEMlPI,11618
|
|
30
31
|
payi/lib/Stopwatch.py,sha256=7OJlxvr2Jyb6Zr1LYCYKczRB7rDVKkIR7gc4YoleNdE,764
|
|
31
|
-
payi/lib/
|
|
32
|
-
payi/lib/
|
|
32
|
+
payi/lib/VertexInstrumentor.py,sha256=R0s3aEW7haj4aC5t1lMeA9siOgYvxlKQShLJ-B5iiNM,11642
|
|
33
|
+
payi/lib/helpers.py,sha256=2Wy_CR9PZ8rn817R5sjRJDDdJ1gItNywk0t0wtaEvmc,4058
|
|
34
|
+
payi/lib/instrument.py,sha256=H4cDhMD5MKrfhjfPGKqbZBerOukUp8y3jYx853W8cEA,54072
|
|
33
35
|
payi/resources/__init__.py,sha256=1rtrPLWbNt8oJGOp6nwPumKLJ-ftez0B6qwLFyfcoP4,2972
|
|
34
|
-
payi/resources/ingest.py,sha256=
|
|
36
|
+
payi/resources/ingest.py,sha256=8HNHEyfgIyJNqCh0rOhO9msoc61-8IyifJ6AbxjCrDg,22612
|
|
35
37
|
payi/resources/categories/__init__.py,sha256=w5gMiPdBSzJA_qfoVtFBElaoe8wGf_O63R7R1Spr6Gk,1093
|
|
36
38
|
payi/resources/categories/categories.py,sha256=TVs5RmhQ3cstbobFV5O4h4xvovZpbDH5AptfjcmsxxI,19198
|
|
37
39
|
payi/resources/categories/resources.py,sha256=nY5mKJPEy7-6J_UsyXZebNmUs6WK5ONx_qON9z6DwUg,19979
|
|
@@ -42,7 +44,7 @@ payi/resources/experiences/types/__init__.py,sha256=42loJPPtbwZ4qrqa1gKEg2CG5PLx
|
|
|
42
44
|
payi/resources/experiences/types/limit_config.py,sha256=ZIgtlrcfcYIInc1XYeyHOk2ycF2xyLvou_NpGRGpcfU,10604
|
|
43
45
|
payi/resources/experiences/types/types.py,sha256=rOgZjIvk5IOIlBT9fJ7HOlXAUpQnC2nF7OS_888XL7Q,21915
|
|
44
46
|
payi/resources/limits/__init__.py,sha256=URXh9vglDH-dqbVGk-XcrDa8H5Bg2pgFuVQQecgEtaA,976
|
|
45
|
-
payi/resources/limits/limits.py,sha256=
|
|
47
|
+
payi/resources/limits/limits.py,sha256=Bo4dbO2sEveuEp4Yte1n8mqKuCu7Gn9k_Dp8ukAoJhk,25000
|
|
46
48
|
payi/resources/limits/tags.py,sha256=gPW2ds6Zh7-BV7_SwtbRGcMMgj94NciGzcui6FRRQ-o,18964
|
|
47
49
|
payi/resources/requests/__init__.py,sha256=k7ipgDb5QXAv7WYhgQq0-6Zn9INJikMzRGexufceHeI,1530
|
|
48
50
|
payi/resources/requests/properties.py,sha256=_zAm72vLZq-X8lMO-qSttV9gw_uPfXsoJn2C4GJzpbw,6448
|
|
@@ -57,23 +59,23 @@ payi/resources/use_cases/definitions/definitions.py,sha256=aEnHvpULs0oRbDl_Fvr32
|
|
|
57
59
|
payi/resources/use_cases/definitions/kpis.py,sha256=UDvubQ8p1XUnP0nRr7UsdHUKsWpIU7szLsE7v42ATE8,22642
|
|
58
60
|
payi/resources/use_cases/definitions/limit_config.py,sha256=ojUg3Hhc5tGk5qE2Oxf9OlgcvvxY0A7HN3Q0uq1fsVo,10583
|
|
59
61
|
payi/resources/use_cases/definitions/version.py,sha256=I1mrP_OEyEytMaQJeb06SS5GCJ6JO9K58nVIVdOgZiY,6013
|
|
60
|
-
payi/types/__init__.py,sha256=
|
|
61
|
-
payi/types/bulk_ingest_response.py,sha256=
|
|
62
|
+
payi/types/__init__.py,sha256=ggRjsAwQ5FTE3s_DEkoA7oolCFBU0Eo4H-QHdPkxPeE,2499
|
|
63
|
+
payi/types/bulk_ingest_response.py,sha256=BN6UUzNqICkSzbT0ucu2swznLpErmEN_kgWORCb2rwE,1211
|
|
62
64
|
payi/types/category_delete_resource_response.py,sha256=PLz4wZA1XMpS9SUYB_j4hEw5EoZ0VVE9Ll-MQ26SAfc,339
|
|
63
65
|
payi/types/category_delete_response.py,sha256=exq8rNDGoq2-YN528V8osdcmuptJ-k63rmCvPMm6hLA,323
|
|
64
66
|
payi/types/category_list_params.py,sha256=hHe6LRxl8CGykRj4F4-eW_z5d5PxP3YzY0m7qtiM5jY,307
|
|
65
67
|
payi/types/category_list_resources_params.py,sha256=Od65gihJCHdJWti1jdjUMp5l0vOvZb1PR50v9IQ4Mkk,325
|
|
66
|
-
payi/types/category_resource_response.py,sha256=
|
|
68
|
+
payi/types/category_resource_response.py,sha256=Kw5wlKG_VLUs_HJ3oLUeMu4rfJ_Ndm73flkXgAfQ-E4,756
|
|
67
69
|
payi/types/category_response.py,sha256=dlvHaKJlcGm936aduRIMxJXHapPGo4Rfs9ObIYkP4Yc,206
|
|
68
70
|
payi/types/cost_data.py,sha256=KXGLnqOKxS0q8yT9eRhdQHyGMSAcuukCHWcWZC1A6Fk,487
|
|
69
71
|
payi/types/cost_details.py,sha256=w9p79opEG3kcsjkRRP7niaMcUswdfB4Y7HCkVTcQ1zQ,307
|
|
70
72
|
payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
|
|
71
73
|
payi/types/experience_instance_response.py,sha256=G07YSRjXrUa5IAS4zEJHGiCNMNlVjycYhqS42ZnVs-Q,336
|
|
72
74
|
payi/types/ingest_bulk_params.py,sha256=A-IRb39d2tmVzEQqrvhlF_3si-9ufHBKYLlvdXupAHU,362
|
|
73
|
-
payi/types/ingest_event_param.py,sha256=
|
|
74
|
-
payi/types/ingest_response.py,sha256=
|
|
75
|
-
payi/types/ingest_units_params.py,sha256=
|
|
76
|
-
payi/types/limit_create_params.py,sha256=
|
|
75
|
+
payi/types/ingest_event_param.py,sha256=CvPdj9oRezauv-QuCMxZdY56VE16XY2aTPzxoMRx-RE,1712
|
|
76
|
+
payi/types/ingest_response.py,sha256=JwcZ6OL793uXTuDmZAzkzhGcdtDsSXfSy_ERjzc7MZY,378
|
|
77
|
+
payi/types/ingest_units_params.py,sha256=FckYslghL3waqaQUfFprmeCrJXZzWqfrs1ZbLexGUzA,2350
|
|
78
|
+
payi/types/limit_create_params.py,sha256=2ORYNIyMW2JYJcbT8S96fEk60hs2Pf7CEmbSkjQUK0A,553
|
|
77
79
|
payi/types/limit_history_response.py,sha256=sCx2qKBiHU9X2KrYWV8NZiarYMGurof5GF4QobR2-EU,787
|
|
78
80
|
payi/types/limit_list_params.py,sha256=OYlK0anDA5G71FfwrMDzhEX4S5AlASLRiR0tmyD9tTU,322
|
|
79
81
|
payi/types/limit_list_response.py,sha256=8UMtHrO38HqOkn8qAC9R90N902VVRZrZYp0C7fPEX1g,622
|
|
@@ -107,13 +109,17 @@ payi/types/limits/tag_update_params.py,sha256=YOA7dOzdwhapxWRa23MVG77oNUvBahXEUF
|
|
|
107
109
|
payi/types/limits/tag_update_response.py,sha256=xLa4aU4eVhNmIaQTsCyEDjx1vatBACFiJCwZOWLfrig,267
|
|
108
110
|
payi/types/requests/__init__.py,sha256=prKzWdptHTDvIbGlQbWR9D4Gu_wDwXCG-cIMEAgKdkQ,263
|
|
109
111
|
payi/types/requests/property_create_params.py,sha256=6v1L_4pj5N5k386cbtjSAWr2QJw---WUJ5lyshRnMwc,328
|
|
110
|
-
payi/types/requests/request_result.py,sha256=
|
|
111
|
-
payi/types/shared/__init__.py,sha256=
|
|
112
|
+
payi/types/requests/request_result.py,sha256=n_kJC0fOkr4JfZ2KJkQ-_Sj3xCYlwE6E9JVvjs7E7yo,263
|
|
113
|
+
payi/types/shared/__init__.py,sha256=K1oWaPn8Cyqq57HDPYZWWQae3HCgvNxg_mPs0Al7Ae8,677
|
|
112
114
|
payi/types/shared/evaluation_response.py,sha256=ejEToMA57PUu1SldEtJ5z9r4fAO3U0tvdjbsyIoVX1s,214
|
|
115
|
+
payi/types/shared/ingest_units.py,sha256=lehu0ICBECr-v0tF-HB-rRh0LoKGZh2D_Z2pVxD9cqA,274
|
|
113
116
|
payi/types/shared/pay_i_common_models_budget_management_cost_details_base.py,sha256=o8Szm4uiTnyZuW7D4rM5rzAAj6iAeSOA5gVMlMYfpmc,267
|
|
114
117
|
payi/types/shared/pay_i_common_models_budget_management_create_limit_base.py,sha256=FDFCOvxG7Dep7oELqQATc_YWrRZ-Uh9WOpL2ZKPDQ6Q,482
|
|
115
118
|
payi/types/shared/properties_response.py,sha256=HpFNtxl_OjoMCs24xPVZLKe3FwCVcNkcRs0LsQKLrHM,259
|
|
116
|
-
payi/types/
|
|
119
|
+
payi/types/shared/xproxy_error.py,sha256=I8dsEHZF_0dM-1YvZ6_mysRJuNlWJrQIHacs9yRaZCM,274
|
|
120
|
+
payi/types/shared/xproxy_result.py,sha256=hm2u82JngBbIyEybUpY0mLJGBCpMXCaLUKLXxwC7YVc,1342
|
|
121
|
+
payi/types/shared_params/__init__.py,sha256=dRGuNTZWLagRlbQfl5tKc0JMEYNRVXUad5oyl7IFeIU,317
|
|
122
|
+
payi/types/shared_params/ingest_units.py,sha256=ueGIq14EQRGIDQlIHCCParrDxh1TZ_Hjfx2GP3_19yA,267
|
|
117
123
|
payi/types/shared_params/pay_i_common_models_budget_management_create_limit_base.py,sha256=8UXPHFrNDZfF5tgEeV0mIqevksNGEWayv2NJV5DY_Rg,497
|
|
118
124
|
payi/types/use_cases/__init__.py,sha256=zyjQm1oarzjFHyWr57X82Nm5K2ywc4iHziFIM8_QU_M,789
|
|
119
125
|
payi/types/use_cases/definition_create_params.py,sha256=8Z48UFbJq0nohT0rG64-3Js9nadWNDMoeVUTXn4PLp4,597
|
|
@@ -135,7 +141,7 @@ payi/types/use_cases/definitions/kpi_retrieve_response.py,sha256=uQXliSvS3k-yDYw
|
|
|
135
141
|
payi/types/use_cases/definitions/kpi_update_params.py,sha256=jbawdWAdMnsTWVH0qfQGb8W7_TXe3lq4zjSRu44d8p8,373
|
|
136
142
|
payi/types/use_cases/definitions/kpi_update_response.py,sha256=zLyEoT0S8d7XHsnXZYT8tM7yDw0Aze0Mk-_Z6QeMtc8,459
|
|
137
143
|
payi/types/use_cases/definitions/limit_config_create_params.py,sha256=pzQza_16N3z8cFNEKr6gPbFvuGFrwNuGxAYb--Kbo2M,449
|
|
138
|
-
payi-0.1.
|
|
139
|
-
payi-0.1.
|
|
140
|
-
payi-0.1.
|
|
141
|
-
payi-0.1.
|
|
144
|
+
payi-0.1.0a72.dist-info/METADATA,sha256=6hbBjGCYyCvoUpQZnptSPqVUty2HmtPeAN8azuMtvUA,15290
|
|
145
|
+
payi-0.1.0a72.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
146
|
+
payi-0.1.0a72.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
|
|
147
|
+
payi-0.1.0a72.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|