growsurf-python 0.4.0__py3-none-any.whl → 0.5.0__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.
- growsurf/_version.py +1 -1
- growsurf/resources/campaign/campaign.py +4 -2
- growsurf/resources/campaign/participant.py +4 -2
- growsurf/types/campaign/participant.py +2 -1
- growsurf/types/campaign/participant_add_params.py +1 -0
- growsurf/types/campaign_create_mobile_participant_token_params.py +1 -0
- {growsurf_python-0.4.0.dist-info → growsurf_python-0.5.0.dist-info}/METADATA +1 -1
- {growsurf_python-0.4.0.dist-info → growsurf_python-0.5.0.dist-info}/RECORD +10 -10
- {growsurf_python-0.4.0.dist-info → growsurf_python-0.5.0.dist-info}/WHEEL +0 -0
- {growsurf_python-0.4.0.dist-info → growsurf_python-0.5.0.dist-info}/licenses/LICENSE +0 -0
growsurf/_version.py
CHANGED
|
@@ -181,7 +181,8 @@ class CampaignResource(SyncAPIResource):
|
|
|
181
181
|
metadata: Shallow custom metadata object.
|
|
182
182
|
|
|
183
183
|
mobile_instance_id: Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
184
|
-
for mobile participant creation and mobile participant token flows.
|
|
184
|
+
for mobile participant creation and mobile participant token flows. The official
|
|
185
|
+
mobile SDKs generate this as a lowercase UUID.
|
|
185
186
|
|
|
186
187
|
referred_by: Referrer participant ID or email address.
|
|
187
188
|
|
|
@@ -691,7 +692,8 @@ class AsyncCampaignResource(AsyncAPIResource):
|
|
|
691
692
|
metadata: Shallow custom metadata object.
|
|
692
693
|
|
|
693
694
|
mobile_instance_id: Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
694
|
-
for mobile participant creation and mobile participant token flows.
|
|
695
|
+
for mobile participant creation and mobile participant token flows. The official
|
|
696
|
+
mobile SDKs generate this as a lowercase UUID.
|
|
695
697
|
|
|
696
698
|
referred_by: Referrer participant ID or email address.
|
|
697
699
|
|
|
@@ -241,7 +241,8 @@ class ParticipantResource(SyncAPIResource):
|
|
|
241
241
|
metadata: Shallow custom metadata object.
|
|
242
242
|
|
|
243
243
|
mobile_instance_id: Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
244
|
-
for mobile participant creation and mobile participant token flows.
|
|
244
|
+
for mobile participant creation and mobile participant token flows. The official
|
|
245
|
+
mobile SDKs generate this as a lowercase UUID.
|
|
245
246
|
|
|
246
247
|
referred_by: Referrer participant ID or email address.
|
|
247
248
|
|
|
@@ -940,7 +941,8 @@ class AsyncParticipantResource(AsyncAPIResource):
|
|
|
940
941
|
metadata: Shallow custom metadata object.
|
|
941
942
|
|
|
942
943
|
mobile_instance_id: Optional app-install scoped identifier for native mobile anti-fraud. Recommended
|
|
943
|
-
for mobile participant creation and mobile participant token flows.
|
|
944
|
+
for mobile participant creation and mobile participant token flows. The official
|
|
945
|
+
mobile SDKs generate this as a lowercase UUID.
|
|
944
946
|
|
|
945
947
|
referred_by: Referrer participant ID or email address.
|
|
946
948
|
|
|
@@ -117,7 +117,8 @@ class Participant(BaseModel):
|
|
|
117
117
|
mobile_instance_id: Optional[str] = FieldInfo(alias="mobileInstanceId", default=None)
|
|
118
118
|
"""
|
|
119
119
|
App-install scoped mobile identifier used for anti-fraud matching when provided
|
|
120
|
-
by native mobile apps.
|
|
120
|
+
by native mobile apps. The official mobile SDKs generate this as a lowercase
|
|
121
|
+
UUID. Not stored when strict GDPR/CCPA mode is enabled.
|
|
121
122
|
"""
|
|
122
123
|
|
|
123
124
|
monthly_referrals: Optional[List[str]] = FieldInfo(alias="monthlyReferrals", default=None)
|
|
@@ -28,6 +28,7 @@ class ParticipantAddParams(TypedDict, total=False):
|
|
|
28
28
|
"""Optional app-install scoped identifier for native mobile anti-fraud.
|
|
29
29
|
|
|
30
30
|
Recommended for mobile participant creation and mobile participant token flows.
|
|
31
|
+
The official mobile SDKs generate this as a lowercase UUID.
|
|
31
32
|
"""
|
|
32
33
|
|
|
33
34
|
referral_status: Annotated[Literal["CREDIT_PENDING", "CREDIT_AWARDED"], PropertyInfo(alias="referralStatus")]
|
|
@@ -28,6 +28,7 @@ class CampaignCreateMobileParticipantTokenParams(TypedDict, total=False):
|
|
|
28
28
|
"""Optional app-install scoped identifier for native mobile anti-fraud.
|
|
29
29
|
|
|
30
30
|
Recommended for mobile participant creation and mobile participant token flows.
|
|
31
|
+
The official mobile SDKs generate this as a lowercase UUID.
|
|
31
32
|
"""
|
|
32
33
|
|
|
33
34
|
referral_status: Annotated[Literal["CREDIT_PENDING", "CREDIT_AWARDED"], PropertyInfo(alias="referralStatus")]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: growsurf-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: The official Python library for the growsurf API
|
|
5
5
|
Project-URL: Homepage, https://github.com/growsurf/growsurf-python
|
|
6
6
|
Project-URL: Repository, https://github.com/growsurf/growsurf-python
|
|
@@ -11,7 +11,7 @@ growsurf/_resource.py,sha256=oeDA0FL2ottIchoUi86M_8eUqmtrGQLYTgfKYEzrsWg,1112
|
|
|
11
11
|
growsurf/_response.py,sha256=RTZ8t27W4S6ExkCjzCg4HbcDUTCdOMgiheiMAuAxgu4,28937
|
|
12
12
|
growsurf/_streaming.py,sha256=9aJ_V6JtddntWCon2Cq_MOLMnySnhc7wuqeZx7sUtKU,10558
|
|
13
13
|
growsurf/_types.py,sha256=r8hAVihrutiLUToaJhSDys9T9sMc8BMy2qUrr3W_8Wo,7751
|
|
14
|
-
growsurf/_version.py,sha256=
|
|
14
|
+
growsurf/_version.py,sha256=CT53wXKjNhCF5rpl_jiNeLFtY7psrXji8SICCcI-CJU,160
|
|
15
15
|
growsurf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
growsurf/_utils/__init__.py,sha256=nQq-iFa5YxTaWySaLigatew5rHgTR0M75FNYm4mrO1s,2313
|
|
17
17
|
growsurf/_utils/_compat.py,sha256=33246eDcl3pwL6kWsEhVuT4Akrd8gZEW9LPTm465ohk,1231
|
|
@@ -30,12 +30,12 @@ growsurf/_utils/_utils.py,sha256=2nPOzDrPe2GADpLCRM4bNQS8Mu7LjEiCG_LJ2AAL6jg,131
|
|
|
30
30
|
growsurf/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
31
31
|
growsurf/resources/__init__.py,sha256=xfEkuLlMZ7ZMm_bcpbd5XKNGLBo9xEvNVGX6EHH0g-M,578
|
|
32
32
|
growsurf/resources/campaign/__init__.py,sha256=3k4V-N7TZLU1xJunA-760I62BQ1elIddwlLf_OtWQUQ,2045
|
|
33
|
-
growsurf/resources/campaign/campaign.py,sha256=
|
|
33
|
+
growsurf/resources/campaign/campaign.py,sha256=EJXvobAfAf3fCjzMROSPa1_gX9Y_d_WNU1YIbTlvH64,50093
|
|
34
34
|
growsurf/resources/campaign/commission.py,sha256=K5HmznRM7nO-VNiP2Jy1rIeW63rAx1Aa2M9DEJ9dB2I,10294
|
|
35
|
-
growsurf/resources/campaign/participant.py,sha256=
|
|
35
|
+
growsurf/resources/campaign/participant.py,sha256=pEiTDx_yENqeY9kfMI_b8AFgi-LlQJSX_kE-89UMN_w,64636
|
|
36
36
|
growsurf/resources/campaign/reward.py,sha256=AVPDhttbglDXnZE4onrCvf6Br6PdAohVV9WJgF7DsjY,14034
|
|
37
37
|
growsurf/types/__init__.py,sha256=qJwksX7ie_ILiC_A1QCtu5p_evuLWBH5oEIv91bJFoA,1715
|
|
38
|
-
growsurf/types/campaign_create_mobile_participant_token_params.py,sha256=
|
|
38
|
+
growsurf/types/campaign_create_mobile_participant_token_params.py,sha256=oiyxZZGwlGdBSb-4s8FonLXyl_SIPdLECa4a0vrRXso,1248
|
|
39
39
|
growsurf/types/campaign_create_mobile_participant_token_response.py,sha256=IvIgtizBufLI-p9pk7MnyJj3XydHjLvdoAw-PWpPqdI,769
|
|
40
40
|
growsurf/types/campaign_list_commissions_params.py,sha256=5T8SWE63fWyMglJP_EnK5AG8OVQIbE0rf5jNcvc8tn8,622
|
|
41
41
|
growsurf/types/campaign_list_leaderboard_params.py,sha256=V1woEXMUb2UQqsGw6Dzn33GtkmpdaFARsUjtT03MQwE,1055
|
|
@@ -55,8 +55,8 @@ growsurf/types/campaign/campaign.py,sha256=JuiQhipggLIZatBvdmVZVYW5YkLabGHqhZ03r
|
|
|
55
55
|
growsurf/types/campaign/commission_approve_response.py,sha256=fcM2IM6qyqkne4aFPbYcJlfbO3P2fZsJQcBxdsB3BaE,225
|
|
56
56
|
growsurf/types/campaign/commission_delete_response.py,sha256=psVQ1Yqh9j20kvg76LrRtXIa5cy0CVSWzKaZk9IvGKU,223
|
|
57
57
|
growsurf/types/campaign/fraud_risk_level.py,sha256=e14xAEYtKH6gGnkJ9-sr81GZ2UY-zDQ6TZKCkBJLagw,228
|
|
58
|
-
growsurf/types/campaign/participant.py,sha256=
|
|
59
|
-
growsurf/types/campaign/participant_add_params.py,sha256=
|
|
58
|
+
growsurf/types/campaign/participant.py,sha256=2OpAWm5J8-Mp4s_oq2czBv3wdZkR-ojyf5XyyXFqb4I,5537
|
|
59
|
+
growsurf/types/campaign/participant_add_params.py,sha256=e9RnIpm3xz8YtqXRSaYiNls7FDqk-kf466gH6yH8RoY,1205
|
|
60
60
|
growsurf/types/campaign/participant_delete_response.py,sha256=qXghOQ04cS3jZh3oHZYr_iXzlanjELyeN5I4kUfFfRM,225
|
|
61
61
|
growsurf/types/campaign/participant_list_commissions_params.py,sha256=4Cxa7rETQYmp71mR4wIzymfPYv2UV3vCzmQvv5iik1c,662
|
|
62
62
|
growsurf/types/campaign/participant_list_payouts_params.py,sha256=AbadljbUZvMgc7cEDvDXpIg3n0nM1x4t2vZgTD-w69A,638
|
|
@@ -76,7 +76,7 @@ growsurf/types/campaign/reward_approve_params.py,sha256=IbGDBmEWgmtQQpmYaMg_navf
|
|
|
76
76
|
growsurf/types/campaign/reward_approve_response.py,sha256=AID7RxcX5_BGxssHn6vR-pGOB_PK-xQhUBNk-ZkNkgI,217
|
|
77
77
|
growsurf/types/campaign/reward_delete_response.py,sha256=YGOQ8GQEEN1HDzOT2pU30Q98UNM-s-U4VkTqMewNe5M,215
|
|
78
78
|
growsurf/types/campaign/reward_fulfill_response.py,sha256=KlimtB3q-3djYMlRzshAxEyU_IVACOesNECbTeU574E,217
|
|
79
|
-
growsurf_python-0.
|
|
80
|
-
growsurf_python-0.
|
|
81
|
-
growsurf_python-0.
|
|
82
|
-
growsurf_python-0.
|
|
79
|
+
growsurf_python-0.5.0.dist-info/METADATA,sha256=-e1kXThGb5FrM6WPYzDhet6YUSNUQQslM26gKYRH17U,13597
|
|
80
|
+
growsurf_python-0.5.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
81
|
+
growsurf_python-0.5.0.dist-info/licenses/LICENSE,sha256=kTHLVE-ra1gtTxcn395uFqcOzcErebE-mDdPNW7b8OU,11338
|
|
82
|
+
growsurf_python-0.5.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|