growsurf-python 0.0.2__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.
Files changed (80) hide show
  1. growsurf/__init__.py +102 -0
  2. growsurf/_base_client.py +2153 -0
  3. growsurf/_client.py +484 -0
  4. growsurf/_compat.py +226 -0
  5. growsurf/_constants.py +14 -0
  6. growsurf/_exceptions.py +108 -0
  7. growsurf/_files.py +173 -0
  8. growsurf/_models.py +878 -0
  9. growsurf/_qs.py +149 -0
  10. growsurf/_resource.py +43 -0
  11. growsurf/_response.py +833 -0
  12. growsurf/_streaming.py +338 -0
  13. growsurf/_types.py +274 -0
  14. growsurf/_utils/__init__.py +64 -0
  15. growsurf/_utils/_compat.py +45 -0
  16. growsurf/_utils/_datetime_parse.py +136 -0
  17. growsurf/_utils/_json.py +35 -0
  18. growsurf/_utils/_logs.py +25 -0
  19. growsurf/_utils/_path.py +127 -0
  20. growsurf/_utils/_proxy.py +65 -0
  21. growsurf/_utils/_reflection.py +42 -0
  22. growsurf/_utils/_resources_proxy.py +24 -0
  23. growsurf/_utils/_streams.py +12 -0
  24. growsurf/_utils/_sync.py +58 -0
  25. growsurf/_utils/_transform.py +457 -0
  26. growsurf/_utils/_typing.py +156 -0
  27. growsurf/_utils/_utils.py +433 -0
  28. growsurf/_version.py +4 -0
  29. growsurf/lib/.keep +4 -0
  30. growsurf/py.typed +0 -0
  31. growsurf/resources/__init__.py +19 -0
  32. growsurf/resources/campaign/__init__.py +61 -0
  33. growsurf/resources/campaign/campaign.py +1126 -0
  34. growsurf/resources/campaign/commission.py +259 -0
  35. growsurf/resources/campaign/participant.py +1587 -0
  36. growsurf/resources/campaign/reward.py +355 -0
  37. growsurf/types/__init__.py +18 -0
  38. growsurf/types/campaign/__init__.py +35 -0
  39. growsurf/types/campaign/campaign.py +73 -0
  40. growsurf/types/campaign/commission_approve_response.py +9 -0
  41. growsurf/types/campaign/commission_delete_response.py +9 -0
  42. growsurf/types/campaign/fraud_risk_level.py +7 -0
  43. growsurf/types/campaign/participant.py +147 -0
  44. growsurf/types/campaign/participant_add_params.py +30 -0
  45. growsurf/types/campaign/participant_delete_response.py +9 -0
  46. growsurf/types/campaign/participant_list_commissions_params.py +22 -0
  47. growsurf/types/campaign/participant_list_payouts_params.py +22 -0
  48. growsurf/types/campaign/participant_list_referrals_params.py +43 -0
  49. growsurf/types/campaign/participant_list_rewards_params.py +19 -0
  50. growsurf/types/campaign/participant_list_rewards_response.py +18 -0
  51. growsurf/types/campaign/participant_record_transaction_params.py +60 -0
  52. growsurf/types/campaign/participant_record_transaction_response.py +37 -0
  53. growsurf/types/campaign/participant_reward.py +39 -0
  54. growsurf/types/campaign/participant_send_invites_params.py +20 -0
  55. growsurf/types/campaign/participant_send_invites_response.py +15 -0
  56. growsurf/types/campaign/participant_trigger_referral_response.py +13 -0
  57. growsurf/types/campaign/participant_update_params.py +34 -0
  58. growsurf/types/campaign/referral_source.py +7 -0
  59. growsurf/types/campaign/referral_status.py +7 -0
  60. growsurf/types/campaign/reward_approve_params.py +14 -0
  61. growsurf/types/campaign/reward_approve_response.py +9 -0
  62. growsurf/types/campaign/reward_delete_response.py +9 -0
  63. growsurf/types/campaign/reward_fulfill_response.py +9 -0
  64. growsurf/types/campaign_list_commissions_params.py +20 -0
  65. growsurf/types/campaign_list_leaderboard_params.py +36 -0
  66. growsurf/types/campaign_list_participants_params.py +17 -0
  67. growsurf/types/campaign_list_payouts_params.py +20 -0
  68. growsurf/types/campaign_list_referrals_params.py +41 -0
  69. growsurf/types/campaign_list_response.py +12 -0
  70. growsurf/types/campaign_retrieve_analytics_params.py +26 -0
  71. growsurf/types/campaign_retrieve_analytics_response.py +75 -0
  72. growsurf/types/commission_structure.py +62 -0
  73. growsurf/types/participant_commission_list.py +62 -0
  74. growsurf/types/participant_list.py +18 -0
  75. growsurf/types/participant_payout_list.py +50 -0
  76. growsurf/types/referral_list.py +40 -0
  77. growsurf_python-0.0.2.dist-info/METADATA +399 -0
  78. growsurf_python-0.0.2.dist-info/RECORD +80 -0
  79. growsurf_python-0.0.2.dist-info/WHEEL +4 -0
  80. growsurf_python-0.0.2.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,399 @@
1
+ Metadata-Version: 2.3
2
+ Name: growsurf-python
3
+ Version: 0.0.2
4
+ Summary: The official Python library for the growsurf API
5
+ Project-URL: Homepage, https://github.com/growsurf/growsurf-python
6
+ Project-URL: Repository, https://github.com/growsurf/growsurf-python
7
+ Author: Growsurf
8
+ License: Apache-2.0
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: Apache Software License
11
+ Classifier: Operating System :: MacOS
12
+ Classifier: Operating System :: Microsoft :: Windows
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Operating System :: POSIX
15
+ Classifier: Operating System :: POSIX :: Linux
16
+ Classifier: Programming Language :: Python :: 3.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.9
25
+ Requires-Dist: anyio<5,>=3.5.0
26
+ Requires-Dist: distro<2,>=1.7.0
27
+ Requires-Dist: httpx<1,>=0.23.0
28
+ Requires-Dist: pydantic<3,>=1.9.0
29
+ Requires-Dist: sniffio
30
+ Requires-Dist: typing-extensions<5,>=4.14
31
+ Provides-Extra: aiohttp
32
+ Requires-Dist: aiohttp; extra == 'aiohttp'
33
+ Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
34
+ Description-Content-Type: text/markdown
35
+
36
+ # Growsurf Python API library
37
+
38
+ <!-- prettier-ignore -->
39
+ [![PyPI version](https://img.shields.io/pypi/v/growsurf-python.svg?label=pypi%20(stable))](https://pypi.org/project/growsurf-python/)
40
+
41
+ The Growsurf Python library provides convenient access to the Growsurf REST API from any Python 3.9+
42
+ application. The library includes type definitions for all request params and response fields,
43
+ and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
+
45
+ It is generated with [Stainless](https://www.stainless.com/).
46
+
47
+ ## Documentation
48
+
49
+ The REST API documentation can be found on [growsurf.com](https://growsurf.com/settings#contact_support). The full API of this library can be found in [api.md](https://github.com/growsurf/growsurf-python/tree/main/api.md).
50
+
51
+ ## Installation
52
+
53
+ ```sh
54
+ # install from PyPI
55
+ pip install growsurf-python
56
+ ```
57
+
58
+ ## Usage
59
+
60
+ The full API of this library can be found in [api.md](https://github.com/growsurf/growsurf-python/tree/main/api.md).
61
+
62
+ ```python
63
+ import os
64
+ from growsurf import Growsurf
65
+
66
+ client = Growsurf(
67
+ api_key=os.environ.get("GROWSURF_API_KEY"), # This is the default and can be omitted
68
+ )
69
+
70
+ campaigns = client.campaign.list()
71
+ print(campaigns.campaigns)
72
+ ```
73
+
74
+ While you can provide an `api_key` keyword argument,
75
+ we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/)
76
+ to add `GROWSURF_API_KEY="My API Key"` to your `.env` file
77
+ so that your API Key is not stored in source control.
78
+
79
+ ## Async usage
80
+
81
+ Simply import `AsyncGrowsurf` instead of `Growsurf` and use `await` with each API call:
82
+
83
+ ```python
84
+ import os
85
+ import asyncio
86
+ from growsurf import AsyncGrowsurf
87
+
88
+ client = AsyncGrowsurf(
89
+ api_key=os.environ.get("GROWSURF_API_KEY"), # This is the default and can be omitted
90
+ )
91
+
92
+
93
+ async def main() -> None:
94
+ campaigns = await client.campaign.list()
95
+ print(campaigns.campaigns)
96
+
97
+
98
+ asyncio.run(main())
99
+ ```
100
+
101
+ Functionality between the synchronous and asynchronous clients is otherwise identical.
102
+
103
+ ### With aiohttp
104
+
105
+ By default, the async client uses `httpx` for HTTP requests. However, for improved concurrency performance you may also use `aiohttp` as the HTTP backend.
106
+
107
+ You can enable this by installing `aiohttp`:
108
+
109
+ ```sh
110
+ # install from PyPI
111
+ pip install growsurf-python[aiohttp]
112
+ ```
113
+
114
+ Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
115
+
116
+ ```python
117
+ import os
118
+ import asyncio
119
+ from growsurf import DefaultAioHttpClient
120
+ from growsurf import AsyncGrowsurf
121
+
122
+
123
+ async def main() -> None:
124
+ async with AsyncGrowsurf(
125
+ api_key=os.environ.get("GROWSURF_API_KEY"), # This is the default and can be omitted
126
+ http_client=DefaultAioHttpClient(),
127
+ ) as client:
128
+ campaigns = await client.campaign.list()
129
+ print(campaigns.campaigns)
130
+
131
+
132
+ asyncio.run(main())
133
+ ```
134
+
135
+ ## Using types
136
+
137
+ Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
138
+
139
+ - Serializing back into JSON, `model.to_json()`
140
+ - Converting to a dictionary, `model.to_dict()`
141
+
142
+ Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
143
+
144
+ ## Handling errors
145
+
146
+ When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `growsurf.APIConnectionError` is raised.
147
+
148
+ When the API returns a non-success status code (that is, 4xx or 5xx
149
+ response), a subclass of `growsurf.APIStatusError` is raised, containing `status_code` and `response` properties.
150
+
151
+ All errors inherit from `growsurf.APIError`.
152
+
153
+ ```python
154
+ import growsurf
155
+ from growsurf import Growsurf
156
+
157
+ client = Growsurf()
158
+
159
+ try:
160
+ client.campaign.list()
161
+ except growsurf.APIConnectionError as e:
162
+ print("The server could not be reached")
163
+ print(e.__cause__) # an underlying Exception, likely raised within httpx.
164
+ except growsurf.RateLimitError as e:
165
+ print("A 429 status code was received; we should back off a bit.")
166
+ except growsurf.APIStatusError as e:
167
+ print("Another non-200-range status code was received")
168
+ print(e.status_code)
169
+ print(e.response)
170
+ ```
171
+
172
+ Error codes are as follows:
173
+
174
+ | Status Code | Error Type |
175
+ | ----------- | -------------------------- |
176
+ | 400 | `BadRequestError` |
177
+ | 401 | `AuthenticationError` |
178
+ | 403 | `PermissionDeniedError` |
179
+ | 404 | `NotFoundError` |
180
+ | 422 | `UnprocessableEntityError` |
181
+ | 429 | `RateLimitError` |
182
+ | >=500 | `InternalServerError` |
183
+ | N/A | `APIConnectionError` |
184
+
185
+ ### Retries
186
+
187
+ Certain errors are automatically retried 2 times by default, with a short exponential backoff.
188
+ Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict,
189
+ 429 Rate Limit, and >=500 Internal errors are all retried by default.
190
+
191
+ You can use the `max_retries` option to configure or disable retry settings:
192
+
193
+ ```python
194
+ from growsurf import Growsurf
195
+
196
+ # Configure the default for all requests:
197
+ client = Growsurf(
198
+ # default is 2
199
+ max_retries=0,
200
+ )
201
+
202
+ # Or, configure per-request:
203
+ client.with_options(max_retries=5).campaign.list()
204
+ ```
205
+
206
+ ### Timeouts
207
+
208
+ By default requests time out after 1 minute. You can configure this with a `timeout` option,
209
+ which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
210
+
211
+ ```python
212
+ from growsurf import Growsurf
213
+
214
+ # Configure the default for all requests:
215
+ client = Growsurf(
216
+ # 20 seconds (default is 1 minute)
217
+ timeout=20.0,
218
+ )
219
+
220
+ # More granular control:
221
+ client = Growsurf(
222
+ timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
223
+ )
224
+
225
+ # Override per-request:
226
+ client.with_options(timeout=5.0).campaign.list()
227
+ ```
228
+
229
+ On timeout, an `APITimeoutError` is thrown.
230
+
231
+ Note that requests that time out are [retried twice by default](https://github.com/growsurf/growsurf-python/tree/main/#retries).
232
+
233
+ ## Advanced
234
+
235
+ ### Logging
236
+
237
+ We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
238
+
239
+ You can enable logging by setting the environment variable `GROWSURF_LOG` to `info`.
240
+
241
+ ```shell
242
+ $ export GROWSURF_LOG=info
243
+ ```
244
+
245
+ Or to `debug` for more verbose logging.
246
+
247
+ ### How to tell whether `None` means `null` or missing
248
+
249
+ In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:
250
+
251
+ ```py
252
+ if response.my_field is None:
253
+ if 'my_field' not in response.model_fields_set:
254
+ print('Got json like {}, without a "my_field" key present at all.')
255
+ else:
256
+ print('Got json like {"my_field": null}.')
257
+ ```
258
+
259
+ ### Accessing raw response data (e.g. headers)
260
+
261
+ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
262
+
263
+ ```py
264
+ from growsurf import Growsurf
265
+
266
+ client = Growsurf()
267
+ response = client.campaign.with_raw_response.list()
268
+ print(response.headers.get('X-My-Header'))
269
+
270
+ campaign = response.parse() # get the object that `campaign.list()` would have returned
271
+ print(campaign.campaigns)
272
+ ```
273
+
274
+ These methods return an [`APIResponse`](https://github.com/growsurf/growsurf-python/tree/main/src/growsurf/_response.py) object.
275
+
276
+ The async client returns an [`AsyncAPIResponse`](https://github.com/growsurf/growsurf-python/tree/main/src/growsurf/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
277
+
278
+ #### `.with_streaming_response`
279
+
280
+ The above interface eagerly reads the full response body when you make the request, which may not always be what you want.
281
+
282
+ To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
283
+
284
+ ```python
285
+ with client.campaign.with_streaming_response.list() as response:
286
+ print(response.headers.get("X-My-Header"))
287
+
288
+ for line in response.iter_lines():
289
+ print(line)
290
+ ```
291
+
292
+ The context manager is required so that the response will reliably be closed.
293
+
294
+ ### Making custom/undocumented requests
295
+
296
+ This library is typed for convenient access to the documented API.
297
+
298
+ If you need to access undocumented endpoints, params, or response properties, the library can still be used.
299
+
300
+ #### Undocumented endpoints
301
+
302
+ To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
303
+ http verbs. Options on the client will be respected (such as retries) when making this request.
304
+
305
+ ```py
306
+ import httpx
307
+
308
+ response = client.post(
309
+ "/foo",
310
+ cast_to=httpx.Response,
311
+ body={"my_param": True},
312
+ )
313
+
314
+ print(response.headers.get("x-foo"))
315
+ ```
316
+
317
+ #### Undocumented request params
318
+
319
+ If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request
320
+ options.
321
+
322
+ #### Undocumented response properties
323
+
324
+ To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You
325
+ can also get all the extra fields on the Pydantic model as a dict with
326
+ [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra).
327
+
328
+ ### Configuring the HTTP client
329
+
330
+ You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
331
+
332
+ - Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
333
+ - Custom [transports](https://www.python-httpx.org/advanced/transports/)
334
+ - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
335
+
336
+ ```python
337
+ import httpx
338
+ from growsurf import Growsurf, DefaultHttpxClient
339
+
340
+ client = Growsurf(
341
+ # Or use the `GROWSURF_BASE_URL` env var
342
+ base_url="http://my.test.server.example.com:8083",
343
+ http_client=DefaultHttpxClient(
344
+ proxy="http://my.test.proxy.example.com",
345
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
346
+ ),
347
+ )
348
+ ```
349
+
350
+ You can also customize the client on a per-request basis by using `with_options()`:
351
+
352
+ ```python
353
+ client.with_options(http_client=DefaultHttpxClient(...))
354
+ ```
355
+
356
+ ### Managing HTTP resources
357
+
358
+ By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
359
+
360
+ ```py
361
+ from growsurf import Growsurf
362
+
363
+ with Growsurf() as client:
364
+ # make requests here
365
+ ...
366
+
367
+ # HTTP client is now closed
368
+ ```
369
+
370
+ ## Versioning
371
+
372
+ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
373
+
374
+ 1. Changes that only affect static types, without breaking runtime behavior.
375
+ 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
376
+ 3. Changes that we do not expect to impact the vast majority of users in practice.
377
+
378
+ We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
379
+
380
+ We are keen for your feedback; please open an [issue](https://www.github.com/growsurf/growsurf-python/issues) with questions, bugs, or suggestions.
381
+
382
+ ### Determining the installed version
383
+
384
+ If you've upgraded to the latest version but aren't seeing any new features you were expecting then your python environment is likely still using an older version.
385
+
386
+ You can determine the version that is being used at runtime with:
387
+
388
+ ```py
389
+ import growsurf
390
+ print(growsurf.__version__)
391
+ ```
392
+
393
+ ## Requirements
394
+
395
+ Python 3.9 or higher.
396
+
397
+ ## Contributing
398
+
399
+ See [the contributing documentation](https://github.com/growsurf/growsurf-python/tree/main/./CONTRIBUTING.md).
@@ -0,0 +1,80 @@
1
+ growsurf/__init__.py,sha256=PVU29rH3G7u2LvpyJd5G00W8Saj2Cp_BNzw7JIg8068,2683
2
+ growsurf/_base_client.py,sha256=4kz0Jq20J5tuau3uZ9dLIBp-EotPbXDIJ5AQ4rTE7AA,74561
3
+ growsurf/_client.py,sha256=Iu6ABJ4B21yJ0QRE0RwjEJbFQN2wdc3d3JXY5J7kUqw,17638
4
+ growsurf/_compat.py,sha256=_9guQfzYnL3DNtudX5W7T2cdSskx89B5AFfhPQDxMUk,6811
5
+ growsurf/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ growsurf/_exceptions.py,sha256=3bEzw4WDc3VYTMnwkiOucauRjS8Vhr3L0Qb02P0ZKaE,3224
7
+ growsurf/_files.py,sha256=GsGgJfC6PEiO0d4ItFBMQlBrK8LLNpTaBdHa7T3EMDE,5452
8
+ growsurf/_models.py,sha256=tYTwrY0cUy4ED2Z5fUEl2JegX-yVTYHxr-pv5DjjEYQ,32269
9
+ growsurf/_qs.py,sha256=ZSfQv6arGBBoWlcy60zK1zmPE2Ije0i8kzKdnoxWUjU,4833
10
+ growsurf/_resource.py,sha256=oeDA0FL2ottIchoUi86M_8eUqmtrGQLYTgfKYEzrsWg,1112
11
+ growsurf/_response.py,sha256=RTZ8t27W4S6ExkCjzCg4HbcDUTCdOMgiheiMAuAxgu4,28937
12
+ growsurf/_streaming.py,sha256=9aJ_V6JtddntWCon2Cq_MOLMnySnhc7wuqeZx7sUtKU,10558
13
+ growsurf/_types.py,sha256=r8hAVihrutiLUToaJhSDys9T9sMc8BMy2qUrr3W_8Wo,7751
14
+ growsurf/_version.py,sha256=4Sru0Bqk98PXjpRL1QFG7tmJWNpQhO20HB8OW031gek,160
15
+ growsurf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ growsurf/_utils/__init__.py,sha256=nQq-iFa5YxTaWySaLigatew5rHgTR0M75FNYm4mrO1s,2313
17
+ growsurf/_utils/_compat.py,sha256=33246eDcl3pwL6kWsEhVuT4Akrd8gZEW9LPTm465ohk,1231
18
+ growsurf/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
19
+ growsurf/_utils/_json.py,sha256=bl95uuIWwgSfXX-gP1trK_lDAPwJujYfJ05Cxo2SEC4,962
20
+ growsurf/_utils/_logs.py,sha256=jziMOYdODx6wBEx8GVayP25v7-xe4r5Hl6DBIGct_Gw,780
21
+ growsurf/_utils/_path.py,sha256=Dk294levuJXP5e4m20YRDDZFPl7zegXvc9Kb3dUCwJI,4701
22
+ growsurf/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
23
+ growsurf/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
24
+ growsurf/_utils/_resources_proxy.py,sha256=nxTYkbCjttvyKGuju05JLOzNuVr1lUDclW9xMVbBhX4,599
25
+ growsurf/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
26
+ growsurf/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
27
+ growsurf/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
28
+ growsurf/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
29
+ growsurf/_utils/_utils.py,sha256=2nPOzDrPe2GADpLCRM4bNQS8Mu7LjEiCG_LJ2AAL6jg,13111
30
+ growsurf/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
31
+ growsurf/resources/__init__.py,sha256=xfEkuLlMZ7ZMm_bcpbd5XKNGLBo9xEvNVGX6EHH0g-M,578
32
+ growsurf/resources/campaign/__init__.py,sha256=3k4V-N7TZLU1xJunA-760I62BQ1elIddwlLf_OtWQUQ,2045
33
+ growsurf/resources/campaign/campaign.py,sha256=4r9je07cVILuvR0uxXnB1HlVr-G-u2Pt5HLdcOGKsWQ,43126
34
+ growsurf/resources/campaign/commission.py,sha256=K5HmznRM7nO-VNiP2Jy1rIeW63rAx1Aa2M9DEJ9dB2I,10294
35
+ growsurf/resources/campaign/participant.py,sha256=OTrmsJs8HtQUe3WQ5uuWj5-SoTPeNTY1duBQDT7oF6Q,63882
36
+ growsurf/resources/campaign/reward.py,sha256=AVPDhttbglDXnZE4onrCvf6Br6PdAohVV9WJgF7DsjY,14034
37
+ growsurf/types/__init__.py,sha256=dVCfznQhh_l796cd1s584hjxXqILBQ49CWFp51dcNHA,1391
38
+ growsurf/types/campaign_list_commissions_params.py,sha256=5T8SWE63fWyMglJP_EnK5AG8OVQIbE0rf5jNcvc8tn8,622
39
+ growsurf/types/campaign_list_leaderboard_params.py,sha256=V1woEXMUb2UQqsGw6Dzn33GtkmpdaFARsUjtT03MQwE,1055
40
+ growsurf/types/campaign_list_participants_params.py,sha256=C3RF1NxvmcmBm0ZY82t8seoLmRZMRMGZ_JPIKt0WfuU,499
41
+ growsurf/types/campaign_list_payouts_params.py,sha256=6bnnu7Z4QnRs_AyhIACwNQg2zOkAM8525iBXBpFFKzc,598
42
+ growsurf/types/campaign_list_referrals_params.py,sha256=jdwikgDEsuYhjOa2eNfWMWgFJ0AAyH3m1x6UEd0tR64,1320
43
+ growsurf/types/campaign_list_response.py,sha256=KrMwuCkMwzvLTBWM3uEqqjjwJPjz_lFvKxDGbowhvG4,291
44
+ growsurf/types/campaign_retrieve_analytics_params.py,sha256=EqoQ-8eEPZqD5X7k1970LStklXXFB6esuU8pByv0XaQ,799
45
+ growsurf/types/campaign_retrieve_analytics_response.py,sha256=4xe7qa1AlsPaFbkfwNCaJt6xam5cOjeKc7vMbzCT0zw,2694
46
+ growsurf/types/commission_structure.py,sha256=t4p2bKyBhYWNiVCMIDNbpOSX0kQII1dhUtVOPTMv5bI,2323
47
+ growsurf/types/participant_commission_list.py,sha256=79Eb8Wyic557dBERHiDpgjvYqC4ZzRMyr9XlE10V7-o,1882
48
+ growsurf/types/participant_list.py,sha256=5oety8iTXx5anr0W5wAjzCAIMPkQLPeVIc2TNuRbrMY,430
49
+ growsurf/types/participant_payout_list.py,sha256=xO4_EwJAVA5B5opldd7S3X5O6WeAsejgpbVtQ_oacwQ,1419
50
+ growsurf/types/referral_list.py,sha256=SOU3s0cjeQLhbZVbeGoeCprVyrPTk-tvmMBMV25uG1o,969
51
+ growsurf/types/campaign/__init__.py,sha256=5QXEoVqNvARl_R8iRAILUVariVEN9Lno41tNHEKIC8E,2436
52
+ growsurf/types/campaign/campaign.py,sha256=JuiQhipggLIZatBvdmVZVYW5YkLabGHqhZ03rdJ9g-Q,2293
53
+ growsurf/types/campaign/commission_approve_response.py,sha256=fcM2IM6qyqkne4aFPbYcJlfbO3P2fZsJQcBxdsB3BaE,225
54
+ growsurf/types/campaign/commission_delete_response.py,sha256=psVQ1Yqh9j20kvg76LrRtXIa5cy0CVSWzKaZk9IvGKU,223
55
+ growsurf/types/campaign/fraud_risk_level.py,sha256=e14xAEYtKH6gGnkJ9-sr81GZ2UY-zDQ6TZKCkBJLagw,228
56
+ growsurf/types/campaign/participant.py,sha256=E6Hwr275wt5l0I-YdhUWXV1-J47vfXJJY-elrAMLgzg,5205
57
+ growsurf/types/campaign/participant_add_params.py,sha256=wAbyxqdDZIqK0HDuuLwyjuQGAAdEICdVHySumv3VF5k,892
58
+ growsurf/types/campaign/participant_delete_response.py,sha256=qXghOQ04cS3jZh3oHZYr_iXzlanjELyeN5I4kUfFfRM,225
59
+ growsurf/types/campaign/participant_list_commissions_params.py,sha256=4Cxa7rETQYmp71mR4wIzymfPYv2UV3vCzmQvv5iik1c,662
60
+ growsurf/types/campaign/participant_list_payouts_params.py,sha256=AbadljbUZvMgc7cEDvDXpIg3n0nM1x4t2vZgTD-w69A,638
61
+ growsurf/types/campaign/participant_list_referrals_params.py,sha256=nN48sxYApBPUoN7PiWZZJrIzlwKM31LyHlMCn461znQ,1351
62
+ growsurf/types/campaign/participant_list_rewards_params.py,sha256=OR6u7ELP9OqWR0l39ipLBwaVtfgWZRMvumwmdcfqFTc,529
63
+ growsurf/types/campaign/participant_list_rewards_response.py,sha256=VehN5gZRgyuojXuBavUrAIg1gEcSxpkEJJbPtPQZFaQ,466
64
+ growsurf/types/campaign/participant_record_transaction_params.py,sha256=rOf36OIdtsTsVUPICYo_2pIlXlAw1iCvhFe9_WxoGRU,2008
65
+ growsurf/types/campaign/participant_record_transaction_response.py,sha256=8UkSy8ZE_Orqw-7_jEC3hiK98no0k1JtJP2y2TobDyM,906
66
+ growsurf/types/campaign/participant_reward.py,sha256=zj6Zco32AzIElEPFfeFsZUzBbwuWlVvZFSMMsMPDips,1200
67
+ growsurf/types/campaign/participant_send_invites_params.py,sha256=Jr21i0OvqSCYVnWsmy5xVu2g7BhGahF-5ompc5Hm9hk,644
68
+ growsurf/types/campaign/participant_send_invites_response.py,sha256=kxqP0EhbFN6dC0P7na7fWYkxhSRD5vhQ-INgGxTr9n8,388
69
+ growsurf/types/campaign/participant_trigger_referral_response.py,sha256=B4xhzJo798s14OvhBjaOhYqsPVpp1anTOphUzdT3hwQ,307
70
+ growsurf/types/campaign/participant_update_params.py,sha256=OjLKYMtX491kiU1ith0HTuVqzCXBxMEvJFrmFCmXHbc,948
71
+ growsurf/types/campaign/referral_source.py,sha256=jVL4kGKYONSefA094PqdzQYKbNbtxGxWPJOKfXRoYvA,228
72
+ growsurf/types/campaign/referral_status.py,sha256=Gn2RcDy-cTsFtm3I8DbrlZSg5n2jEMqIz5z09aQykd0,272
73
+ growsurf/types/campaign/reward_approve_params.py,sha256=IbGDBmEWgmtQQpmYaMg_navfpR8Xyz29EVp-9MC4nSM,369
74
+ growsurf/types/campaign/reward_approve_response.py,sha256=AID7RxcX5_BGxssHn6vR-pGOB_PK-xQhUBNk-ZkNkgI,217
75
+ growsurf/types/campaign/reward_delete_response.py,sha256=YGOQ8GQEEN1HDzOT2pU30Q98UNM-s-U4VkTqMewNe5M,215
76
+ growsurf/types/campaign/reward_fulfill_response.py,sha256=KlimtB3q-3djYMlRzshAxEyU_IVACOesNECbTeU574E,217
77
+ growsurf_python-0.0.2.dist-info/METADATA,sha256=7juFQN5dTN5RrKtzDiZAEHhNxA2_r1_hDWhV9VDStYs,13597
78
+ growsurf_python-0.0.2.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
79
+ growsurf_python-0.0.2.dist-info/licenses/LICENSE,sha256=kTHLVE-ra1gtTxcn395uFqcOzcErebE-mDdPNW7b8OU,11338
80
+ growsurf_python-0.0.2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.26.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any