payi 0.1.0a68__py3-none-any.whl → 0.1.0a70__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/_base_client.py +175 -239
- payi/_client.py +1 -4
- payi/_models.py +2 -2
- payi/_response.py +1 -1
- payi/_utils/_utils.py +9 -1
- payi/_version.py +1 -1
- payi/lib/AnthropicInstrumentor.py +52 -20
- payi/lib/BedrockInstrumentor.py +103 -25
- payi/lib/OpenAIInstrumentor.py +108 -36
- payi/lib/helpers.py +2 -1
- payi/lib/instrument.py +308 -167
- payi/resources/categories/resources.py +1 -4
- payi/resources/experiences/properties.py +1 -4
- payi/resources/experiences/types/limit_config.py +1 -4
- payi/resources/experiences/types/types.py +1 -4
- payi/resources/ingest.py +1 -5
- payi/resources/limits/limits.py +1 -4
- payi/resources/limits/tags.py +1 -4
- payi/resources/requests/properties.py +1 -4
- payi/resources/use_cases/definitions/definitions.py +1 -4
- payi/resources/use_cases/definitions/kpis.py +1 -4
- payi/resources/use_cases/definitions/limit_config.py +1 -4
- payi/resources/use_cases/kpis.py +1 -4
- payi/resources/use_cases/properties.py +1 -4
- payi/types/category_response.py +0 -1
- payi/types/cost_data.py +0 -1
- payi/types/requests_data.py +0 -1
- payi/types/shared/pay_i_common_models_budget_management_cost_details_base.py +0 -1
- payi/types/total_cost_data.py +0 -1
- {payi-0.1.0a68.dist-info → payi-0.1.0a70.dist-info}/METADATA +1 -1
- {payi-0.1.0a68.dist-info → payi-0.1.0a70.dist-info}/RECORD +33 -33
- {payi-0.1.0a68.dist-info → payi-0.1.0a70.dist-info}/WHEEL +0 -0
- {payi-0.1.0a68.dist-info → payi-0.1.0a70.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,10 +8,7 @@ from datetime import datetime
|
|
|
8
8
|
import httpx
|
|
9
9
|
|
|
10
10
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
11
|
-
from ..._utils import
|
|
12
|
-
maybe_transform,
|
|
13
|
-
async_maybe_transform,
|
|
14
|
-
)
|
|
11
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
15
12
|
from ..._compat import cached_property
|
|
16
13
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
17
14
|
from ..._response import (
|
|
@@ -7,10 +7,7 @@ from typing import Dict
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
9
9
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
10
|
-
from ..._utils import
|
|
11
|
-
maybe_transform,
|
|
12
|
-
async_maybe_transform,
|
|
13
|
-
)
|
|
10
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
14
11
|
from ..._compat import cached_property
|
|
15
12
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
16
13
|
from ..._response import (
|
|
@@ -8,10 +8,7 @@ from typing_extensions import Literal
|
|
|
8
8
|
import httpx
|
|
9
9
|
|
|
10
10
|
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
11
|
-
from ...._utils import
|
|
12
|
-
maybe_transform,
|
|
13
|
-
async_maybe_transform,
|
|
14
|
-
)
|
|
11
|
+
from ...._utils import maybe_transform, async_maybe_transform
|
|
15
12
|
from ...._compat import cached_property
|
|
16
13
|
from ...._resource import SyncAPIResource, AsyncAPIResource
|
|
17
14
|
from ...._response import (
|
|
@@ -7,10 +7,7 @@ from typing import Optional
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
9
9
|
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
10
|
-
from ...._utils import
|
|
11
|
-
maybe_transform,
|
|
12
|
-
async_maybe_transform,
|
|
13
|
-
)
|
|
10
|
+
from ...._utils import maybe_transform, async_maybe_transform
|
|
14
11
|
from ...._compat import cached_property
|
|
15
12
|
from ...._resource import SyncAPIResource, AsyncAPIResource
|
|
16
13
|
from ...._response import (
|
payi/resources/ingest.py
CHANGED
|
@@ -9,11 +9,7 @@ import httpx
|
|
|
9
9
|
|
|
10
10
|
from ..types import ingest_units_params
|
|
11
11
|
from .._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
12
|
-
from .._utils import
|
|
13
|
-
maybe_transform,
|
|
14
|
-
strip_not_given,
|
|
15
|
-
async_maybe_transform,
|
|
16
|
-
)
|
|
12
|
+
from .._utils import maybe_transform, strip_not_given, async_maybe_transform
|
|
17
13
|
from .._compat import cached_property
|
|
18
14
|
from .._resource import SyncAPIResource, AsyncAPIResource
|
|
19
15
|
from .._response import (
|
payi/resources/limits/limits.py
CHANGED
|
@@ -18,10 +18,7 @@ from .tags import (
|
|
|
18
18
|
)
|
|
19
19
|
from ...types import limit_list_params, limit_reset_params, limit_create_params, limit_update_params
|
|
20
20
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
21
|
-
from ..._utils import
|
|
22
|
-
maybe_transform,
|
|
23
|
-
async_maybe_transform,
|
|
24
|
-
)
|
|
21
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
25
22
|
from ..._compat import cached_property
|
|
26
23
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
27
24
|
from ..._response import (
|
payi/resources/limits/tags.py
CHANGED
|
@@ -7,10 +7,7 @@ from typing import List
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
9
9
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
10
|
-
from ..._utils import
|
|
11
|
-
maybe_transform,
|
|
12
|
-
async_maybe_transform,
|
|
13
|
-
)
|
|
10
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
14
11
|
from ..._compat import cached_property
|
|
15
12
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
16
13
|
from ..._response import (
|
|
@@ -7,10 +7,7 @@ from typing import Dict
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
9
9
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
10
|
-
from ..._utils import
|
|
11
|
-
maybe_transform,
|
|
12
|
-
async_maybe_transform,
|
|
13
|
-
)
|
|
10
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
14
11
|
from ..._compat import cached_property
|
|
15
12
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
16
13
|
from ..._response import (
|
|
@@ -23,10 +23,7 @@ from .version import (
|
|
|
23
23
|
AsyncVersionResourceWithStreamingResponse,
|
|
24
24
|
)
|
|
25
25
|
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
26
|
-
from ...._utils import
|
|
27
|
-
maybe_transform,
|
|
28
|
-
async_maybe_transform,
|
|
29
|
-
)
|
|
26
|
+
from ...._utils import maybe_transform, async_maybe_transform
|
|
30
27
|
from ...._compat import cached_property
|
|
31
28
|
from ...._resource import SyncAPIResource, AsyncAPIResource
|
|
32
29
|
from ...._response import (
|
|
@@ -8,10 +8,7 @@ from typing_extensions import Literal
|
|
|
8
8
|
import httpx
|
|
9
9
|
|
|
10
10
|
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
11
|
-
from ...._utils import
|
|
12
|
-
maybe_transform,
|
|
13
|
-
async_maybe_transform,
|
|
14
|
-
)
|
|
11
|
+
from ...._utils import maybe_transform, async_maybe_transform
|
|
15
12
|
from ...._compat import cached_property
|
|
16
13
|
from ...._resource import SyncAPIResource, AsyncAPIResource
|
|
17
14
|
from ...._response import (
|
|
@@ -8,10 +8,7 @@ from typing_extensions import Literal
|
|
|
8
8
|
import httpx
|
|
9
9
|
|
|
10
10
|
from ...._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
11
|
-
from ...._utils import
|
|
12
|
-
maybe_transform,
|
|
13
|
-
async_maybe_transform,
|
|
14
|
-
)
|
|
11
|
+
from ...._utils import maybe_transform, async_maybe_transform
|
|
15
12
|
from ...._compat import cached_property
|
|
16
13
|
from ...._resource import SyncAPIResource, AsyncAPIResource
|
|
17
14
|
from ...._response import (
|
payi/resources/use_cases/kpis.py
CHANGED
|
@@ -5,10 +5,7 @@ from __future__ import annotations
|
|
|
5
5
|
import httpx
|
|
6
6
|
|
|
7
7
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NoneType, NotGiven
|
|
8
|
-
from ..._utils import
|
|
9
|
-
maybe_transform,
|
|
10
|
-
async_maybe_transform,
|
|
11
|
-
)
|
|
8
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
12
9
|
from ..._compat import cached_property
|
|
13
10
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
14
11
|
from ..._response import (
|
|
@@ -7,10 +7,7 @@ from typing import Dict
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
9
9
|
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
|
10
|
-
from ..._utils import
|
|
11
|
-
maybe_transform,
|
|
12
|
-
async_maybe_transform,
|
|
13
|
-
)
|
|
10
|
+
from ..._utils import maybe_transform, async_maybe_transform
|
|
14
11
|
from ..._compat import cached_property
|
|
15
12
|
from ..._resource import SyncAPIResource, AsyncAPIResource
|
|
16
13
|
from ..._response import (
|
payi/types/category_response.py
CHANGED
payi/types/cost_data.py
CHANGED
payi/types/requests_data.py
CHANGED
payi/types/total_cost_data.py
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
payi/__init__.py,sha256=_eeZx9fx2Wp81adXh7qrpkmXCso7TiRSvIlLkQ0sQhY,2399
|
|
2
|
-
payi/_base_client.py,sha256=
|
|
3
|
-
payi/_client.py,sha256=
|
|
2
|
+
payi/_base_client.py,sha256=pG4egpa2uhESXvjtszBekP-IdP12GY-vK5T54xnx8M8,64842
|
|
3
|
+
payi/_client.py,sha256=NoznzJFIQsFjEcPZWGJpHr94mOTMaQBuH-U_WGdjB10,17882
|
|
4
4
|
payi/_compat.py,sha256=VWemUKbj6DDkQ-O4baSpHVLJafotzeXmCQGJugfVTIw,6580
|
|
5
5
|
payi/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
payi/_exceptions.py,sha256=ItygKNrNXIVY0H6LsGVZvFuAHB3Vtm_VZXmWzCnpHy0,3216
|
|
7
7
|
payi/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
|
|
8
|
-
payi/_models.py,sha256=
|
|
8
|
+
payi/_models.py,sha256=mB2r2VWQq49jG-F0RIXDrBxPp3v-Eg12wMOtVTNxtv4,29057
|
|
9
9
|
payi/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
|
10
10
|
payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
|
|
11
|
-
payi/_response.py,sha256=
|
|
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=rW2Z5ECSCDBvIFHy68TO9emSE2FUYZ74VEabR9sqJYU,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
|
|
@@ -22,40 +22,40 @@ payi/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
|
22
22
|
payi/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
|
|
23
23
|
payi/_utils/_transform.py,sha256=n7kskEWz6o__aoNvhFoGVyDoalNe6mJwp-g7BWkdj88,15617
|
|
24
24
|
payi/_utils/_typing.py,sha256=D0DbbNu8GnYQTSICnTSHDGsYXj8TcAKyhejb0XcnjtY,4602
|
|
25
|
-
payi/_utils/_utils.py,sha256=
|
|
25
|
+
payi/_utils/_utils.py,sha256=ts4CiiuNpFiGB6YMdkQRh2SZvYvsl7mAF-JWHCcLDf4,12312
|
|
26
26
|
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=
|
|
27
|
+
payi/lib/AnthropicInstrumentor.py,sha256=fYWqC_bqD_i1h8VDUxrZuNm6Wkhc7axcmp_DsWqD-cE,6971
|
|
28
|
+
payi/lib/BedrockInstrumentor.py,sha256=VVaW5_K5Gtui4O1EFL8C2RD2vJ1P5MWGb4-RfA6SsYU,13908
|
|
29
|
+
payi/lib/OpenAIInstrumentor.py,sha256=3cPMTFXROUcUuOXjjapQYyxSQGzmHs8WDCwNVgMbFmY,11459
|
|
30
30
|
payi/lib/Stopwatch.py,sha256=7OJlxvr2Jyb6Zr1LYCYKczRB7rDVKkIR7gc4YoleNdE,764
|
|
31
|
-
payi/lib/helpers.py,sha256=
|
|
32
|
-
payi/lib/instrument.py,sha256=
|
|
31
|
+
payi/lib/helpers.py,sha256=CgJ7ZqRT5jEbVcbD9bxdf_SCD-0PhyJ5ubf40ChXAhA,4012
|
|
32
|
+
payi/lib/instrument.py,sha256=cyIgbdGQpHCz-MLPqGg6K7xF8kC2r8XRpwfQ_tqVkIY,48741
|
|
33
33
|
payi/resources/__init__.py,sha256=1rtrPLWbNt8oJGOp6nwPumKLJ-ftez0B6qwLFyfcoP4,2972
|
|
34
|
-
payi/resources/ingest.py,sha256=
|
|
34
|
+
payi/resources/ingest.py,sha256=pYJve5n2xMxrPevjDCrS91JUg19ylxT8ygheO7GGjcE,21610
|
|
35
35
|
payi/resources/categories/__init__.py,sha256=w5gMiPdBSzJA_qfoVtFBElaoe8wGf_O63R7R1Spr6Gk,1093
|
|
36
36
|
payi/resources/categories/categories.py,sha256=TVs5RmhQ3cstbobFV5O4h4xvovZpbDH5AptfjcmsxxI,19198
|
|
37
|
-
payi/resources/categories/resources.py,sha256=
|
|
37
|
+
payi/resources/categories/resources.py,sha256=nY5mKJPEy7-6J_UsyXZebNmUs6WK5ONx_qON9z6DwUg,19979
|
|
38
38
|
payi/resources/experiences/__init__.py,sha256=Qiyv7Tv6UC-wWpb7XVTyHvBRE0IZTnEpykFpP27xKe0,1556
|
|
39
39
|
payi/resources/experiences/experiences.py,sha256=m_-C_gF-dX8aBL0OYLTsT6-NSyXTaDFWoxv8l6tPOZI,14580
|
|
40
|
-
payi/resources/experiences/properties.py,sha256=
|
|
40
|
+
payi/resources/experiences/properties.py,sha256=Zh2Iyozq6eLlZD5IIzNaC0tcfWZh-r4UOyze-Le68bI,6555
|
|
41
41
|
payi/resources/experiences/types/__init__.py,sha256=42loJPPtbwZ4qrqa1gKEg2CG5PLxCNKfOF113sIOJZc,1055
|
|
42
|
-
payi/resources/experiences/types/limit_config.py,sha256=
|
|
43
|
-
payi/resources/experiences/types/types.py,sha256=
|
|
42
|
+
payi/resources/experiences/types/limit_config.py,sha256=ZIgtlrcfcYIInc1XYeyHOk2ycF2xyLvou_NpGRGpcfU,10604
|
|
43
|
+
payi/resources/experiences/types/types.py,sha256=rOgZjIvk5IOIlBT9fJ7HOlXAUpQnC2nF7OS_888XL7Q,21915
|
|
44
44
|
payi/resources/limits/__init__.py,sha256=URXh9vglDH-dqbVGk-XcrDa8H5Bg2pgFuVQQecgEtaA,976
|
|
45
|
-
payi/resources/limits/limits.py,sha256=
|
|
46
|
-
payi/resources/limits/tags.py,sha256=
|
|
45
|
+
payi/resources/limits/limits.py,sha256=tBQso3PzJNgJUfHwcuJuIWdK2vvusyj9lXXsDWy5lps,25482
|
|
46
|
+
payi/resources/limits/tags.py,sha256=gPW2ds6Zh7-BV7_SwtbRGcMMgj94NciGzcui6FRRQ-o,18964
|
|
47
47
|
payi/resources/requests/__init__.py,sha256=k7ipgDb5QXAv7WYhgQq0-6Zn9INJikMzRGexufceHeI,1530
|
|
48
|
-
payi/resources/requests/properties.py,sha256=
|
|
48
|
+
payi/resources/requests/properties.py,sha256=_zAm72vLZq-X8lMO-qSttV9gw_uPfXsoJn2C4GJzpbw,6448
|
|
49
49
|
payi/resources/requests/requests.py,sha256=uxfdUe_mNmG5kzHTa4YcS5m2wwIc5h__YSx54LfiLWQ,4840
|
|
50
50
|
payi/resources/requests/result.py,sha256=dEIwYEi_p36t_hErr_V1E2hmBLLgopcLnIReAWT8ygk,6161
|
|
51
51
|
payi/resources/use_cases/__init__.py,sha256=ckXPaVoPQmGESfgQF_ySP_eGskI6T4bJjPKoEGyo2gI,2020
|
|
52
|
-
payi/resources/use_cases/kpis.py,sha256=
|
|
53
|
-
payi/resources/use_cases/properties.py,sha256=
|
|
52
|
+
payi/resources/use_cases/kpis.py,sha256=MbzXy-RLlNFx8nyzjhSF_iUHIuE5nPG6e9kf43GA2Vk,18222
|
|
53
|
+
payi/resources/use_cases/properties.py,sha256=mU24kTIA-ljixbdSe_zQKxGUh5NkfLnziIr7EDWxqhU,6530
|
|
54
54
|
payi/resources/use_cases/use_cases.py,sha256=rTwgr7EL7UTsot61JsTLvs8hGykxFxjVflwZ99VjE_w,15582
|
|
55
55
|
payi/resources/use_cases/definitions/__init__.py,sha256=pImtiVUbgsm6PkMJ0NPkrhQj8kEi36db-LF5rJukmMY,2020
|
|
56
|
-
payi/resources/use_cases/definitions/definitions.py,sha256=
|
|
57
|
-
payi/resources/use_cases/definitions/kpis.py,sha256=
|
|
58
|
-
payi/resources/use_cases/definitions/limit_config.py,sha256=
|
|
56
|
+
payi/resources/use_cases/definitions/definitions.py,sha256=aEnHvpULs0oRbDl_Fvr32Dr5Pd_ySX7kmtC5uiqcBKM,24542
|
|
57
|
+
payi/resources/use_cases/definitions/kpis.py,sha256=UDvubQ8p1XUnP0nRr7UsdHUKsWpIU7szLsE7v42ATE8,22642
|
|
58
|
+
payi/resources/use_cases/definitions/limit_config.py,sha256=ojUg3Hhc5tGk5qE2Oxf9OlgcvvxY0A7HN3Q0uq1fsVo,10583
|
|
59
59
|
payi/resources/use_cases/definitions/version.py,sha256=I1mrP_OEyEytMaQJeb06SS5GCJ6JO9K58nVIVdOgZiY,6013
|
|
60
60
|
payi/types/__init__.py,sha256=o5xWb4Ew7nAKzTmF0iyqr4HwURyBCuQDOc3psqsbRas,2401
|
|
61
61
|
payi/types/bulk_ingest_response.py,sha256=78J3vlL7muZx9Z20H--UkvM8P19g0cDL9SZoHy7XM68,1330
|
|
@@ -64,8 +64,8 @@ payi/types/category_delete_response.py,sha256=exq8rNDGoq2-YN528V8osdcmuptJ-k63rm
|
|
|
64
64
|
payi/types/category_list_params.py,sha256=hHe6LRxl8CGykRj4F4-eW_z5d5PxP3YzY0m7qtiM5jY,307
|
|
65
65
|
payi/types/category_list_resources_params.py,sha256=Od65gihJCHdJWti1jdjUMp5l0vOvZb1PR50v9IQ4Mkk,325
|
|
66
66
|
payi/types/category_resource_response.py,sha256=GWNgcOkpCzR0zECYqWz5mSh75E4COun6soP1chug1Hw,713
|
|
67
|
-
payi/types/category_response.py,sha256=
|
|
68
|
-
payi/types/cost_data.py,sha256=
|
|
67
|
+
payi/types/category_response.py,sha256=dlvHaKJlcGm936aduRIMxJXHapPGo4Rfs9ObIYkP4Yc,206
|
|
68
|
+
payi/types/cost_data.py,sha256=KXGLnqOKxS0q8yT9eRhdQHyGMSAcuukCHWcWZC1A6Fk,487
|
|
69
69
|
payi/types/cost_details.py,sha256=w9p79opEG3kcsjkRRP7niaMcUswdfB4Y7HCkVTcQ1zQ,307
|
|
70
70
|
payi/types/default_response.py,sha256=o617LpRsCIZHCZxAc5nVI2JQ3HPGZo4gCDvSDkxkIJ8,270
|
|
71
71
|
payi/types/experience_instance_response.py,sha256=G07YSRjXrUa5IAS4zEJHGiCNMNlVjycYhqS42ZnVs-Q,336
|
|
@@ -81,8 +81,8 @@ payi/types/limit_reset_params.py,sha256=vgqImSM89pRYY0Z2RNrJuQ6WeDX72ZPg3GWpL9EV
|
|
|
81
81
|
payi/types/limit_response.py,sha256=OmoFlpz_6s9YhDM_3RxXjmYaaYJG0VCWu-lqqyfMa-k,722
|
|
82
82
|
payi/types/limit_update_params.py,sha256=crY4w75FWcEXbzysq1rPfD37qR5PTy_dwVRY4C_-T1w,331
|
|
83
83
|
payi/types/pay_i_common_models_api_router_header_info_param.py,sha256=91djoPLmoaMWTQOXv9-Ox24dWIrM2hudrRQTCqZpX4c,381
|
|
84
|
-
payi/types/requests_data.py,sha256=
|
|
85
|
-
payi/types/total_cost_data.py,sha256=
|
|
84
|
+
payi/types/requests_data.py,sha256=coHpXgOIQv8oKaX354G-uYoJMzbJcjIW1oX1wuQppts,307
|
|
85
|
+
payi/types/total_cost_data.py,sha256=1xoiInVI0UaKup_8poAHNgcpK8gu09RQnMrdorQtFgQ,301
|
|
86
86
|
payi/types/use_case_instance_response.py,sha256=khdcmoU1L8djNVYLu4rSmWkaceZmGwkE9eHLedN1ePU,328
|
|
87
87
|
payi/types/categories/__init__.py,sha256=hlu-e4w8iudVia3FayAnlNefJ3kNHFeGvpN0-_DUDrU,279
|
|
88
88
|
payi/types/categories/resource_create_params.py,sha256=HVzUWhvmUhVu9h70DmUrBPUcO-g2VUIc5cg0sxbG3fs,745
|
|
@@ -110,7 +110,7 @@ payi/types/requests/property_create_params.py,sha256=6v1L_4pj5N5k386cbtjSAWr2QJw
|
|
|
110
110
|
payi/types/requests/request_result.py,sha256=s4IABJFreIZBduybdaPJnAo8XjmOFQG_OsZjVdRZsQ8,1375
|
|
111
111
|
payi/types/shared/__init__.py,sha256=IuFHDMD-Y7NdONBGG3rr20-Qi214cVMvYwlrXAOS_r8,515
|
|
112
112
|
payi/types/shared/evaluation_response.py,sha256=ejEToMA57PUu1SldEtJ5z9r4fAO3U0tvdjbsyIoVX1s,214
|
|
113
|
-
payi/types/shared/pay_i_common_models_budget_management_cost_details_base.py,sha256=
|
|
113
|
+
payi/types/shared/pay_i_common_models_budget_management_cost_details_base.py,sha256=o8Szm4uiTnyZuW7D4rM5rzAAj6iAeSOA5gVMlMYfpmc,267
|
|
114
114
|
payi/types/shared/pay_i_common_models_budget_management_create_limit_base.py,sha256=FDFCOvxG7Dep7oELqQATc_YWrRZ-Uh9WOpL2ZKPDQ6Q,482
|
|
115
115
|
payi/types/shared/properties_response.py,sha256=HpFNtxl_OjoMCs24xPVZLKe3FwCVcNkcRs0LsQKLrHM,259
|
|
116
116
|
payi/types/shared_params/__init__.py,sha256=zuMEcTUd0E-CVh7LdU2R5mPgBUOwiOpL85M0Ub8ikbQ,264
|
|
@@ -135,7 +135,7 @@ payi/types/use_cases/definitions/kpi_retrieve_response.py,sha256=uQXliSvS3k-yDYw
|
|
|
135
135
|
payi/types/use_cases/definitions/kpi_update_params.py,sha256=jbawdWAdMnsTWVH0qfQGb8W7_TXe3lq4zjSRu44d8p8,373
|
|
136
136
|
payi/types/use_cases/definitions/kpi_update_response.py,sha256=zLyEoT0S8d7XHsnXZYT8tM7yDw0Aze0Mk-_Z6QeMtc8,459
|
|
137
137
|
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.
|
|
138
|
+
payi-0.1.0a70.dist-info/METADATA,sha256=QPi64q8NU5SeZ94OcW-aPQP15d6V-HYYrY0IkPWUOOM,15290
|
|
139
|
+
payi-0.1.0a70.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
140
|
+
payi-0.1.0a70.dist-info/licenses/LICENSE,sha256=CQt03aM-P4a3Yg5qBg3JSLVoQS3smMyvx7tYg_6V7Gk,11334
|
|
141
|
+
payi-0.1.0a70.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|