Skip to content

Commit b0c9c08

Browse files
Release 1.8.40
1 parent 301cca4 commit b0c9c08

38 files changed

+5
-318
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "flagright"
33

44
[tool.poetry]
55
name = "flagright"
6-
version = "1.8.39"
6+
version = "1.8.40"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 0 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -324,22 +324,6 @@ client.transactions.verify(
324324
<dl>
325325
<dd>
326326

327-
**update_count:** `typing.Optional[float]`
328-
329-
</dd>
330-
</dl>
331-
332-
<dl>
333-
<dd>
334-
335-
**payment_approval_timestamp:** `typing.Optional[float]`
336-
337-
</dd>
338-
</dl>
339-
340-
<dl>
341-
<dd>
342-
343327
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
344328

345329
</dd>
@@ -1543,14 +1527,6 @@ client.transaction_events.create(
15431527
<dl>
15441528
<dd>
15451529

1546-
**update_count:** `typing.Optional[float]`
1547-
1548-
</dd>
1549-
</dl>
1550-
1551-
<dl>
1552-
<dd>
1553-
15541530
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
15551531

15561532
</dd>
@@ -1981,14 +1957,6 @@ client.consumer_users.create(
19811957
<dl>
19821958
<dd>
19831959

1984-
**last_transaction_timestamp:** `typing.Optional[float]` — Timestamp of the last successful transaction of the user
1985-
1986-
</dd>
1987-
</dl>
1988-
1989-
<dl>
1990-
<dd>
1991-
19921960
**corporate_entities:** `typing.Optional[typing.Sequence[CorporateEntityDetails]]` — Corporate entities of the user
19931961

19941962
</dd>
@@ -2045,14 +2013,6 @@ client.consumer_users.create(
20452013
<dl>
20462014
<dd>
20472015

2048-
**update_count:** `typing.Optional[float]`
2049-
2050-
</dd>
2051-
</dl>
2052-
2053-
<dl>
2054-
<dd>
2055-
20562016
**products_enabled:** `typing.Optional[typing.Sequence[ProductsEnabled]]`
20572017

20582018
</dd>
@@ -2384,14 +2344,6 @@ client.business_users.create(
23842344
<dl>
23852345
<dd>
23862346

2387-
**last_transaction_timestamp:** `typing.Optional[float]` — Timestamp of the last successful transaction of the user
2388-
2389-
</dd>
2390-
</dl>
2391-
2392-
<dl>
2393-
<dd>
2394-
23952347
**linked_entities:** `typing.Optional[UserEntityLink]`
23962348

23972349
</dd>
@@ -2456,14 +2408,6 @@ client.business_users.create(
24562408
<dl>
24572409
<dd>
24582410

2459-
**update_count:** `typing.Optional[float]`
2460-
2461-
</dd>
2462-
</dl>
2463-
2464-
<dl>
2465-
<dd>
2466-
24672411
**products_enabled:** `typing.Optional[typing.Sequence[ProductsEnabled]]`
24682412

24692413
</dd>
@@ -2729,14 +2673,6 @@ client.consumer_user_events.create(
27292673
<dl>
27302674
<dd>
27312675

2732-
**update_count:** `typing.Optional[float]`
2733-
2734-
</dd>
2735-
</dl>
2736-
2737-
<dl>
2738-
<dd>
2739-
27402676
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
27412677

27422678
</dd>
@@ -2967,14 +2903,6 @@ client.business_user_events.create(
29672903
<dl>
29682904
<dd>
29692905

2970-
**update_count:** `typing.Optional[float]`
2971-
2972-
</dd>
2973-
</dl>
2974-
2975-
<dl>
2976-
<dd>
2977-
29782906
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
29792907

29802908
</dd>

src/flagright/business_user_events/client.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def create(
4141
reason: typing.Optional[str] = OMIT,
4242
event_description: typing.Optional[str] = OMIT,
4343
updated_business_user_attributes: typing.Optional[BusinessOptional] = OMIT,
44-
update_count: typing.Optional[float] = OMIT,
4544
request_options: typing.Optional[RequestOptions] = None,
4645
) -> BusinessWithRulesResult:
4746
"""
@@ -93,8 +92,6 @@ def create(
9392
9493
updated_business_user_attributes : typing.Optional[BusinessOptional]
9594
96-
update_count : typing.Optional[float]
97-
9895
request_options : typing.Optional[RequestOptions]
9996
Request-specific configuration.
10097
@@ -129,7 +126,6 @@ def create(
129126
reason=reason,
130127
event_description=event_description,
131128
updated_business_user_attributes=updated_business_user_attributes,
132-
update_count=update_count,
133129
request_options=request_options,
134130
)
135131
return _response.data
@@ -197,7 +193,6 @@ async def create(
197193
reason: typing.Optional[str] = OMIT,
198194
event_description: typing.Optional[str] = OMIT,
199195
updated_business_user_attributes: typing.Optional[BusinessOptional] = OMIT,
200-
update_count: typing.Optional[float] = OMIT,
201196
request_options: typing.Optional[RequestOptions] = None,
202197
) -> BusinessWithRulesResult:
203198
"""
@@ -249,8 +244,6 @@ async def create(
249244
250245
updated_business_user_attributes : typing.Optional[BusinessOptional]
251246
252-
update_count : typing.Optional[float]
253-
254247
request_options : typing.Optional[RequestOptions]
255248
Request-specific configuration.
256249
@@ -293,7 +286,6 @@ async def main() -> None:
293286
reason=reason,
294287
event_description=event_description,
295288
updated_business_user_attributes=updated_business_user_attributes,
296-
update_count=update_count,
297289
request_options=request_options,
298290
)
299291
return _response.data

src/flagright/business_user_events/raw_client.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ def create(
4040
reason: typing.Optional[str] = OMIT,
4141
event_description: typing.Optional[str] = OMIT,
4242
updated_business_user_attributes: typing.Optional[BusinessOptional] = OMIT,
43-
update_count: typing.Optional[float] = OMIT,
4443
request_options: typing.Optional[RequestOptions] = None,
4544
) -> HttpResponse[BusinessWithRulesResult]:
4645
"""
@@ -92,8 +91,6 @@ def create(
9291
9392
updated_business_user_attributes : typing.Optional[BusinessOptional]
9493
95-
update_count : typing.Optional[float]
96-
9794
request_options : typing.Optional[RequestOptions]
9895
Request-specific configuration.
9996
@@ -119,7 +116,6 @@ def create(
119116
"updatedBusinessUserAttributes": convert_and_respect_annotation_metadata(
120117
object_=updated_business_user_attributes, annotation=BusinessOptional, direction="write"
121118
),
122-
"updateCount": update_count,
123119
},
124120
headers={
125121
"content-type": "application/json",
@@ -276,7 +272,6 @@ async def create(
276272
reason: typing.Optional[str] = OMIT,
277273
event_description: typing.Optional[str] = OMIT,
278274
updated_business_user_attributes: typing.Optional[BusinessOptional] = OMIT,
279-
update_count: typing.Optional[float] = OMIT,
280275
request_options: typing.Optional[RequestOptions] = None,
281276
) -> AsyncHttpResponse[BusinessWithRulesResult]:
282277
"""
@@ -328,8 +323,6 @@ async def create(
328323
329324
updated_business_user_attributes : typing.Optional[BusinessOptional]
330325
331-
update_count : typing.Optional[float]
332-
333326
request_options : typing.Optional[RequestOptions]
334327
Request-specific configuration.
335328
@@ -355,7 +348,6 @@ async def create(
355348
"updatedBusinessUserAttributes": convert_and_respect_annotation_metadata(
356349
object_=updated_business_user_attributes, annotation=BusinessOptional, direction="write"
357350
),
358-
"updateCount": update_count,
359351
},
360352
headers={
361353
"content-type": "application/json",

src/flagright/business_users/client.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ def create(
7171
risk_level: typing.Optional[RiskLevel] = OMIT,
7272
kyc_risk_level: typing.Optional[RiskLevel] = OMIT,
7373
allowed_payment_methods: typing.Optional[typing.Sequence[PaymentMethod]] = OMIT,
74-
last_transaction_timestamp: typing.Optional[float] = OMIT,
7574
linked_entities: typing.Optional[UserEntityLink] = OMIT,
7675
acquisition_channel: typing.Optional[AcquisitionChannel] = OMIT,
7776
saved_payment_details: typing.Optional[typing.Sequence[BusinessSavedPaymentDetailsItem]] = OMIT,
@@ -80,7 +79,6 @@ def create(
8079
attachments: typing.Optional[typing.Sequence[PersonAttachment]] = OMIT,
8180
meta_data: typing.Optional[DeviceData] = OMIT,
8281
jurisdiction: typing.Optional[str] = OMIT,
83-
update_count: typing.Optional[float] = OMIT,
8482
products_enabled: typing.Optional[typing.Sequence[ProductsEnabled]] = OMIT,
8583
pep_status: typing.Optional[typing.Sequence[PepStatus]] = OMIT,
8684
sanctions_status: typing.Optional[bool] = OMIT,
@@ -156,9 +154,6 @@ def create(
156154
157155
allowed_payment_methods : typing.Optional[typing.Sequence[PaymentMethod]]
158156
159-
last_transaction_timestamp : typing.Optional[float]
160-
Timestamp of the last successful transaction of the user
161-
162157
linked_entities : typing.Optional[UserEntityLink]
163158
164159
acquisition_channel : typing.Optional[AcquisitionChannel]
@@ -178,8 +173,6 @@ def create(
178173
jurisdiction : typing.Optional[str]
179174
Legal authority or region governing the transaction
180175
181-
update_count : typing.Optional[float]
182-
183176
products_enabled : typing.Optional[typing.Sequence[ProductsEnabled]]
184177
185178
pep_status : typing.Optional[typing.Sequence[PepStatus]]
@@ -242,7 +235,6 @@ def create(
242235
risk_level=risk_level,
243236
kyc_risk_level=kyc_risk_level,
244237
allowed_payment_methods=allowed_payment_methods,
245-
last_transaction_timestamp=last_transaction_timestamp,
246238
linked_entities=linked_entities,
247239
acquisition_channel=acquisition_channel,
248240
saved_payment_details=saved_payment_details,
@@ -251,7 +243,6 @@ def create(
251243
attachments=attachments,
252244
meta_data=meta_data,
253245
jurisdiction=jurisdiction,
254-
update_count=update_count,
255246
products_enabled=products_enabled,
256247
pep_status=pep_status,
257248
sanctions_status=sanctions_status,
@@ -335,7 +326,6 @@ async def create(
335326
risk_level: typing.Optional[RiskLevel] = OMIT,
336327
kyc_risk_level: typing.Optional[RiskLevel] = OMIT,
337328
allowed_payment_methods: typing.Optional[typing.Sequence[PaymentMethod]] = OMIT,
338-
last_transaction_timestamp: typing.Optional[float] = OMIT,
339329
linked_entities: typing.Optional[UserEntityLink] = OMIT,
340330
acquisition_channel: typing.Optional[AcquisitionChannel] = OMIT,
341331
saved_payment_details: typing.Optional[typing.Sequence[BusinessSavedPaymentDetailsItem]] = OMIT,
@@ -344,7 +334,6 @@ async def create(
344334
attachments: typing.Optional[typing.Sequence[PersonAttachment]] = OMIT,
345335
meta_data: typing.Optional[DeviceData] = OMIT,
346336
jurisdiction: typing.Optional[str] = OMIT,
347-
update_count: typing.Optional[float] = OMIT,
348337
products_enabled: typing.Optional[typing.Sequence[ProductsEnabled]] = OMIT,
349338
pep_status: typing.Optional[typing.Sequence[PepStatus]] = OMIT,
350339
sanctions_status: typing.Optional[bool] = OMIT,
@@ -420,9 +409,6 @@ async def create(
420409
421410
allowed_payment_methods : typing.Optional[typing.Sequence[PaymentMethod]]
422411
423-
last_transaction_timestamp : typing.Optional[float]
424-
Timestamp of the last successful transaction of the user
425-
426412
linked_entities : typing.Optional[UserEntityLink]
427413
428414
acquisition_channel : typing.Optional[AcquisitionChannel]
@@ -442,8 +428,6 @@ async def create(
442428
jurisdiction : typing.Optional[str]
443429
Legal authority or region governing the transaction
444430
445-
update_count : typing.Optional[float]
446-
447431
products_enabled : typing.Optional[typing.Sequence[ProductsEnabled]]
448432
449433
pep_status : typing.Optional[typing.Sequence[PepStatus]]
@@ -514,7 +498,6 @@ async def main() -> None:
514498
risk_level=risk_level,
515499
kyc_risk_level=kyc_risk_level,
516500
allowed_payment_methods=allowed_payment_methods,
517-
last_transaction_timestamp=last_transaction_timestamp,
518501
linked_entities=linked_entities,
519502
acquisition_channel=acquisition_channel,
520503
saved_payment_details=saved_payment_details,
@@ -523,7 +506,6 @@ async def main() -> None:
523506
attachments=attachments,
524507
meta_data=meta_data,
525508
jurisdiction=jurisdiction,
526-
update_count=update_count,
527509
products_enabled=products_enabled,
528510
pep_status=pep_status,
529511
sanctions_status=sanctions_status,

0 commit comments

Comments
 (0)