payi 0.1.0a20__py3-none-any.whl → 0.1.0a21__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/resources/categories/resources.py +2 -2
- payi/resources/experiences/experiences.py +10 -18
- payi/resources/experiences/types.py +12 -20
- payi/resources/ingest.py +2 -1
- {payi-0.1.0a20.dist-info → payi-0.1.0a21.dist-info}/METADATA +1 -1
- {payi-0.1.0a20.dist-info → payi-0.1.0a21.dist-info}/RECORD +9 -9
- {payi-0.1.0a20.dist-info → payi-0.1.0a21.dist-info}/WHEEL +0 -0
- {payi-0.1.0a20.dist-info → payi-0.1.0a21.dist-info}/licenses/LICENSE +0 -0
payi/_version.py
CHANGED
|
@@ -102,7 +102,7 @@ class ResourcesResource(SyncAPIResource):
|
|
|
102
102
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
103
103
|
) -> CategoryResourceResponse:
|
|
104
104
|
"""
|
|
105
|
-
Get a Resource
|
|
105
|
+
Get a Resource version details
|
|
106
106
|
|
|
107
107
|
Args:
|
|
108
108
|
extra_headers: Send extra headers
|
|
@@ -277,7 +277,7 @@ class AsyncResourcesResource(AsyncAPIResource):
|
|
|
277
277
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
278
278
|
) -> CategoryResourceResponse:
|
|
279
279
|
"""
|
|
280
|
-
Get a Resource
|
|
280
|
+
Get a Resource version details
|
|
281
281
|
|
|
282
282
|
Args:
|
|
283
283
|
extra_headers: Send extra headers
|
|
@@ -51,10 +51,8 @@ class ExperiencesResource(SyncAPIResource):
|
|
|
51
51
|
extra_body: Body | None = None,
|
|
52
52
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
53
53
|
) -> ExperienceInstance:
|
|
54
|
-
"""
|
|
55
|
-
|
|
56
|
-
This ID can then be passed into router calls
|
|
57
|
-
for a specific user experience.
|
|
54
|
+
"""
|
|
55
|
+
Create an Experience
|
|
58
56
|
|
|
59
57
|
Args:
|
|
60
58
|
extra_headers: Send extra headers
|
|
@@ -87,7 +85,7 @@ class ExperiencesResource(SyncAPIResource):
|
|
|
87
85
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
88
86
|
) -> ExperienceInstance:
|
|
89
87
|
"""
|
|
90
|
-
Get details
|
|
88
|
+
Get Experience details
|
|
91
89
|
|
|
92
90
|
Args:
|
|
93
91
|
extra_headers: Send extra headers
|
|
@@ -119,10 +117,8 @@ class ExperiencesResource(SyncAPIResource):
|
|
|
119
117
|
extra_body: Body | None = None,
|
|
120
118
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
121
119
|
) -> ExperienceInstance:
|
|
122
|
-
"""
|
|
123
|
-
|
|
124
|
-
This will remove all costs associated with this
|
|
125
|
-
experience instance.
|
|
120
|
+
"""
|
|
121
|
+
Delete an Experience
|
|
126
122
|
|
|
127
123
|
Args:
|
|
128
124
|
extra_headers: Send extra headers
|
|
@@ -168,10 +164,8 @@ class AsyncExperiencesResource(AsyncAPIResource):
|
|
|
168
164
|
extra_body: Body | None = None,
|
|
169
165
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
170
166
|
) -> ExperienceInstance:
|
|
171
|
-
"""
|
|
172
|
-
|
|
173
|
-
This ID can then be passed into router calls
|
|
174
|
-
for a specific user experience.
|
|
167
|
+
"""
|
|
168
|
+
Create an Experience
|
|
175
169
|
|
|
176
170
|
Args:
|
|
177
171
|
extra_headers: Send extra headers
|
|
@@ -204,7 +198,7 @@ class AsyncExperiencesResource(AsyncAPIResource):
|
|
|
204
198
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
205
199
|
) -> ExperienceInstance:
|
|
206
200
|
"""
|
|
207
|
-
Get details
|
|
201
|
+
Get Experience details
|
|
208
202
|
|
|
209
203
|
Args:
|
|
210
204
|
extra_headers: Send extra headers
|
|
@@ -236,10 +230,8 @@ class AsyncExperiencesResource(AsyncAPIResource):
|
|
|
236
230
|
extra_body: Body | None = None,
|
|
237
231
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
238
232
|
) -> ExperienceInstance:
|
|
239
|
-
"""
|
|
240
|
-
|
|
241
|
-
This will remove all costs associated with this
|
|
242
|
-
experience instance.
|
|
233
|
+
"""
|
|
234
|
+
Delete an Experience
|
|
243
235
|
|
|
244
236
|
Args:
|
|
245
237
|
extra_headers: Send extra headers
|
|
@@ -48,10 +48,8 @@ class TypesResource(SyncAPIResource):
|
|
|
48
48
|
extra_body: Body | None = None,
|
|
49
49
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
50
50
|
) -> ExperienceType:
|
|
51
|
-
"""
|
|
52
|
-
|
|
53
|
-
Instances of this type can be created via
|
|
54
|
-
/experiences/instance.
|
|
51
|
+
"""
|
|
52
|
+
Create an Experience Type
|
|
55
53
|
|
|
56
54
|
Args:
|
|
57
55
|
extra_headers: Send extra headers
|
|
@@ -89,7 +87,7 @@ class TypesResource(SyncAPIResource):
|
|
|
89
87
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
90
88
|
) -> ExperienceType:
|
|
91
89
|
"""
|
|
92
|
-
Get
|
|
90
|
+
Get Experience Type details
|
|
93
91
|
|
|
94
92
|
Args:
|
|
95
93
|
extra_headers: Send extra headers
|
|
@@ -124,7 +122,7 @@ class TypesResource(SyncAPIResource):
|
|
|
124
122
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
125
123
|
) -> ExperienceType:
|
|
126
124
|
"""
|
|
127
|
-
|
|
125
|
+
Update an Experience Type
|
|
128
126
|
|
|
129
127
|
Args:
|
|
130
128
|
extra_headers: Send extra headers
|
|
@@ -182,10 +180,8 @@ class TypesResource(SyncAPIResource):
|
|
|
182
180
|
extra_body: Body | None = None,
|
|
183
181
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
184
182
|
) -> ExperienceType:
|
|
185
|
-
"""
|
|
186
|
-
|
|
187
|
-
This will remove visiblity of this type from all
|
|
188
|
-
dashboard stats.
|
|
183
|
+
"""
|
|
184
|
+
Delete an Experience Type
|
|
189
185
|
|
|
190
186
|
Args:
|
|
191
187
|
extra_headers: Send extra headers
|
|
@@ -228,10 +224,8 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
228
224
|
extra_body: Body | None = None,
|
|
229
225
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
230
226
|
) -> ExperienceType:
|
|
231
|
-
"""
|
|
232
|
-
|
|
233
|
-
Instances of this type can be created via
|
|
234
|
-
/experiences/instance.
|
|
227
|
+
"""
|
|
228
|
+
Create an Experience Type
|
|
235
229
|
|
|
236
230
|
Args:
|
|
237
231
|
extra_headers: Send extra headers
|
|
@@ -269,7 +263,7 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
269
263
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
270
264
|
) -> ExperienceType:
|
|
271
265
|
"""
|
|
272
|
-
Get
|
|
266
|
+
Get Experience Type details
|
|
273
267
|
|
|
274
268
|
Args:
|
|
275
269
|
extra_headers: Send extra headers
|
|
@@ -304,7 +298,7 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
304
298
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
305
299
|
) -> ExperienceType:
|
|
306
300
|
"""
|
|
307
|
-
|
|
301
|
+
Update an Experience Type
|
|
308
302
|
|
|
309
303
|
Args:
|
|
310
304
|
extra_headers: Send extra headers
|
|
@@ -362,10 +356,8 @@ class AsyncTypesResource(AsyncAPIResource):
|
|
|
362
356
|
extra_body: Body | None = None,
|
|
363
357
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
364
358
|
) -> ExperienceType:
|
|
365
|
-
"""
|
|
366
|
-
|
|
367
|
-
This will remove visiblity of this type from all
|
|
368
|
-
dashboard stats.
|
|
359
|
+
"""
|
|
360
|
+
Delete an Experience Type
|
|
369
361
|
|
|
370
362
|
Args:
|
|
371
363
|
extra_headers: Send extra headers
|
payi/resources/ingest.py
CHANGED
|
@@ -235,7 +235,8 @@ class AsyncIngestResource(AsyncAPIResource):
|
|
|
235
235
|
request_tags: Union[list[str], None] | NotGiven = NOT_GIVEN,
|
|
236
236
|
experience_id: Union[str, None] | NotGiven = NOT_GIVEN,
|
|
237
237
|
user_id: Union[str, None] | NotGiven = NOT_GIVEN,
|
|
238
|
-
|
|
238
|
+
|
|
239
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
239
240
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
240
241
|
extra_headers: Headers | None = None,
|
|
241
242
|
extra_query: Query | None = None,
|
|
@@ -11,7 +11,7 @@ payi/_resource.py,sha256=j2jIkTr8OIC8sU6-05nxSaCyj4MaFlbZrwlyg4_xJos,1088
|
|
|
11
11
|
payi/_response.py,sha256=SByCajzglbiy7lSG4F5enqb7R6jVQe1OQ9TBsaxWzE8,28508
|
|
12
12
|
payi/_streaming.py,sha256=Z_wIyo206T6Jqh2rolFg2VXZgX24PahLmpURp0-NssU,10092
|
|
13
13
|
payi/_types.py,sha256=mb6zn5qmTK5j0QMh0fevdShT091HBL4w0YCUfQ3u5VY,6101
|
|
14
|
-
payi/_version.py,sha256=
|
|
14
|
+
payi/_version.py,sha256=uIzHKQnRW3xF8AwVnDGbcxga9x8qelZPjxp9xnCrPBo,165
|
|
15
15
|
payi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
payi/_utils/__init__.py,sha256=Uzq1-FIih_VUjzdNVWXks0sdC39KBKLMrZoz-_JOjJ4,1988
|
|
17
17
|
payi/_utils/_logs.py,sha256=fmnf5D9TOgkgZKfgYmSa3PiUc3SZgkchn6CzJUeo0SQ,768
|
|
@@ -25,16 +25,16 @@ payi/_utils/_utils.py,sha256=LMVTMZG8pfu8AkJNSfmv_z3guQlOfm2UxDTjTTXggfg,11411
|
|
|
25
25
|
payi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
26
26
|
payi/lib/helpers.py,sha256=JpI9vy--oJP5kUlcWK0yfyRUbIRMXkvLeUQC4g8rLNY,1472
|
|
27
27
|
payi/resources/__init__.py,sha256=0bsV7zh4J03yh3W3MBoiiIT12uG2tdvsDrdqOeY0Cbc,2032
|
|
28
|
-
payi/resources/ingest.py,sha256=
|
|
28
|
+
payi/resources/ingest.py,sha256=mUZkNsb2zC7q90vHjD_RJ98YYl0jtAbnJl6Ymhnb-0A,14315
|
|
29
29
|
payi/resources/budgets/__init__.py,sha256=w1UhOdDXtUH4A91ME5Tw2nr9bRvPJyJY1YWiVVy7jj0,989
|
|
30
30
|
payi/resources/budgets/budgets.py,sha256=5i-V9KT9SUmg3RbF0ZehEpCScMzAeszz9zia2jSzWcM,26500
|
|
31
31
|
payi/resources/budgets/tags.py,sha256=g0cln7tO1L1rm-hSZNnDJHdetiacDqExlSQ6YFudFsw,17817
|
|
32
32
|
payi/resources/categories/__init__.py,sha256=w5gMiPdBSzJA_qfoVtFBElaoe8wGf_O63R7R1Spr6Gk,1093
|
|
33
33
|
payi/resources/categories/categories.py,sha256=hqJE4iSiMe5nvvsui4RjFJxFb8170iRbJfTafk2NzGw,15072
|
|
34
|
-
payi/resources/categories/resources.py,sha256=
|
|
34
|
+
payi/resources/categories/resources.py,sha256=681npzIyzubMf7CS7Uw2_WvZfwMpJw1qaOspTWdoBbc,17696
|
|
35
35
|
payi/resources/experiences/__init__.py,sha256=gguTTCoGlAWDyrDJh1CtZwIVsyBbzERX63vRtFtjxjI,1054
|
|
36
|
-
payi/resources/experiences/experiences.py,sha256=
|
|
37
|
-
payi/resources/experiences/types.py,sha256=
|
|
36
|
+
payi/resources/experiences/experiences.py,sha256=UsE5DUeaxhmqzwmSXKx6BUNLYeXDKdU_QK0yM6_LRx0,12278
|
|
37
|
+
payi/resources/experiences/types.py,sha256=e1fitOnbPD8f7gyYOS2XhjupzKl495LX0pyBgcsQkCg,17110
|
|
38
38
|
payi/types/__init__.py,sha256=7zBCxYcYlvjAIecjsz9nw-LqsMAMXakYhTRJwXUTneo,1803
|
|
39
39
|
payi/types/budget_create_params.py,sha256=3PziVJT3_ll-6yv3i5EF8ERm19jFJAKbv9v-CvRW5ik,653
|
|
40
40
|
payi/types/budget_history_response.py,sha256=4SnisCLr1HImVecgonZK7HIm9WTmYl0YMaTbMP70qZY,934
|
|
@@ -77,7 +77,7 @@ payi/types/experiences/experience_type.py,sha256=KKjkfI0eaoB1TmTlA4UpHKa2fB1q0zX
|
|
|
77
77
|
payi/types/experiences/type_create_params.py,sha256=8dNpffodzeD5vm3s6UJrZVOG7YsiTkXo7viDnoEoCZY,311
|
|
78
78
|
payi/types/experiences/type_list_response.py,sha256=DgkPLw40oUqBETLePVMVenstMsGG12rZRU9w6kgQN28,280
|
|
79
79
|
payi/types/experiences/type_update_params.py,sha256=ziUJASn8QF_5nSp5lohT0HLK0tTOciT-X35CVH9dA5Q,329
|
|
80
|
-
payi-0.1.
|
|
81
|
-
payi-0.1.
|
|
82
|
-
payi-0.1.
|
|
83
|
-
payi-0.1.
|
|
80
|
+
payi-0.1.0a21.dist-info/METADATA,sha256=zdplHN3Shh0ZB_N7StZ_Y4hcXeDzgdy0HvrB4XCcRJc,12006
|
|
81
|
+
payi-0.1.0a21.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
82
|
+
payi-0.1.0a21.dist-info/licenses/LICENSE,sha256=8vX1pjh3esb6D5DvXAf6NxiBcVyon8aHWNJCxmmHXeY,11334
|
|
83
|
+
payi-0.1.0a21.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|