dub 0.33.0__tar.gz → 0.34.1__tar.gz

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 (153) hide show
  1. {dub-0.33.0 → dub-0.34.1}/PKG-INFO +20 -14
  2. {dub-0.33.0 → dub-0.34.1}/README-PYPI.md +19 -13
  3. {dub-0.33.0 → dub-0.34.1}/pyproject.toml +1 -1
  4. {dub-0.33.0 → dub-0.34.1}/src/dub/_version.py +3 -3
  5. {dub-0.33.0 → dub-0.34.1}/src/dub/analytics.py +2 -0
  6. {dub-0.33.0 → dub-0.34.1}/src/dub/basesdk.py +6 -0
  7. dub-0.34.1/src/dub/bounties.py +841 -0
  8. {dub-0.33.0 → dub-0.34.1}/src/dub/commissions.py +4 -0
  9. {dub-0.33.0 → dub-0.34.1}/src/dub/customers.py +8 -0
  10. {dub-0.33.0 → dub-0.34.1}/src/dub/domains.py +12 -0
  11. {dub-0.33.0 → dub-0.34.1}/src/dub/embed_tokens.py +2 -0
  12. {dub-0.33.0 → dub-0.34.1}/src/dub/events.py +2 -0
  13. {dub-0.33.0 → dub-0.34.1}/src/dub/folders.py +8 -0
  14. {dub-0.33.0 → dub-0.34.1}/src/dub/links.py +20 -0
  15. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/__init__.py +55 -149
  16. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/commissioncreatedevent.py +29 -1
  17. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/leadcreatedevent.py +8 -8
  18. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/linkclickedevent.py +12 -12
  19. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/linkerrorschema.py +12 -12
  20. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/linkschema.py +3 -3
  21. dub-0.34.1/src/dub/models/components/linktagschema.py +38 -0
  22. dub-0.33.0/src/dub/models/components/linktagschema.py → dub-0.34.1/src/dub/models/components/linktagschemaoutput.py +2 -2
  23. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/linkwebhookevent.py +8 -10
  24. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/partnerenrolledevent.py +4 -4
  25. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/salecreatedevent.py +8 -8
  26. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/__init__.py +223 -22
  27. dub-0.34.1/src/dub/models/operations/approvebountysubmission.py +185 -0
  28. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/createpartner.py +4 -55
  29. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/createpartnerlink.py +0 -51
  30. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/createreferralsembedtoken.py +0 -51
  31. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/getcustomers.py +18 -0
  32. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/getlinkinfo.py +0 -2
  33. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/getlinks.py +2 -2
  34. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/getlinkscount.py +2 -2
  35. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/getqrcode.py +1 -1
  36. dub-0.34.1/src/dub/models/operations/listbountysubmissions.py +212 -0
  37. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/listdomains.py +1 -1
  38. dub-0.34.1/src/dub/models/operations/listevents.py +2550 -0
  39. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/listpartners.py +4 -4
  40. dub-0.34.1/src/dub/models/operations/rejectbountysubmission.py +174 -0
  41. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/retrieveanalytics.py +16 -5
  42. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/retrievelinks.py +2 -2
  43. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/tracklead.py +4 -4
  44. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/updatecustomer.py +23 -11
  45. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/updatelink.py +0 -2
  46. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/updateworkspace.py +3 -3
  47. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/upsertpartnerlink.py +7 -65
  48. {dub-0.33.0 → dub-0.34.1}/src/dub/partners.py +22 -4
  49. {dub-0.33.0 → dub-0.34.1}/src/dub/qr_codes.py +2 -0
  50. {dub-0.33.0 → dub-0.34.1}/src/dub/sdk.py +3 -0
  51. {dub-0.33.0 → dub-0.34.1}/src/dub/tags.py +24 -12
  52. {dub-0.33.0 → dub-0.34.1}/src/dub/track.py +4 -0
  53. dub-0.34.1/src/dub/types/basemodel.py +77 -0
  54. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/__init__.py +0 -3
  55. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/enums.py +60 -0
  56. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/forms.py +21 -10
  57. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/queryparams.py +14 -2
  58. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/requestbodies.py +3 -3
  59. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/serializers.py +0 -20
  60. {dub-0.33.0 → dub-0.34.1}/src/dub/workspaces.py +4 -0
  61. dub-0.33.0/src/dub/models/components/clickevent.py +0 -557
  62. dub-0.33.0/src/dub/models/components/continentcode.py +0 -16
  63. dub-0.33.0/src/dub/models/components/leadevent.py +0 -681
  64. dub-0.33.0/src/dub/models/components/saleevent.py +0 -780
  65. dub-0.33.0/src/dub/models/operations/listevents.py +0 -555
  66. dub-0.33.0/src/dub/types/basemodel.py +0 -39
  67. {dub-0.33.0 → dub-0.34.1}/LICENSE +0 -0
  68. {dub-0.33.0 → dub-0.34.1}/py.typed +0 -0
  69. {dub-0.33.0 → dub-0.34.1}/src/dub/__init__.py +0 -0
  70. {dub-0.33.0 → dub-0.34.1}/src/dub/_hooks/__init__.py +0 -0
  71. {dub-0.33.0 → dub-0.34.1}/src/dub/_hooks/registration.py +0 -0
  72. {dub-0.33.0 → dub-0.34.1}/src/dub/_hooks/sdkhooks.py +0 -0
  73. {dub-0.33.0 → dub-0.34.1}/src/dub/_hooks/types.py +0 -0
  74. {dub-0.33.0 → dub-0.34.1}/src/dub/httpclient.py +0 -0
  75. {dub-0.33.0 → dub-0.34.1}/src/dub/models/__init__.py +0 -0
  76. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticsbrowsers.py +0 -0
  77. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticscities.py +0 -0
  78. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticscontinents.py +0 -0
  79. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticscount.py +0 -0
  80. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticscountries.py +0 -0
  81. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticsdevices.py +0 -0
  82. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticsos.py +0 -0
  83. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticsreferers.py +0 -0
  84. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticsrefererurls.py +0 -0
  85. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticsregions.py +0 -0
  86. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticstimeseries.py +0 -0
  87. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticstoplinks.py +0 -0
  88. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticstopurls.py +0 -0
  89. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/analyticstriggers.py +0 -0
  90. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/domainschema.py +0 -0
  91. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/folderschema.py +0 -0
  92. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/partneranalyticscount.py +0 -0
  93. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/partneranalyticstimeseries.py +0 -0
  94. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/partneranalyticstoplinks.py +0 -0
  95. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/partnerapplicationsubmittedevent.py +0 -0
  96. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/security.py +0 -0
  97. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/webhookevent.py +0 -0
  98. {dub-0.33.0 → dub-0.34.1}/src/dub/models/components/workspaceschema.py +0 -0
  99. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/__init__.py +0 -0
  100. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/badrequest.py +0 -0
  101. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/conflict.py +0 -0
  102. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/duberror.py +0 -0
  103. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/forbidden.py +0 -0
  104. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/internalservererror.py +0 -0
  105. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/inviteexpired.py +0 -0
  106. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/no_response_error.py +0 -0
  107. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/notfound.py +0 -0
  108. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/ratelimitexceeded.py +0 -0
  109. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/responsevalidationerror.py +0 -0
  110. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/sdkerror.py +0 -0
  111. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/unauthorized.py +0 -0
  112. {dub-0.33.0 → dub-0.34.1}/src/dub/models/errors/unprocessableentity.py +0 -0
  113. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/banpartner.py +0 -0
  114. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/bulkcreatelinks.py +0 -0
  115. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/bulkdeletelinks.py +0 -0
  116. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/bulkupdatelinks.py +0 -0
  117. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/checkdomainstatus.py +0 -0
  118. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/createdomain.py +0 -0
  119. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/createfolder.py +0 -0
  120. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/createlink.py +0 -0
  121. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/createtag.py +0 -0
  122. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/deletecustomer.py +0 -0
  123. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/deletedomain.py +0 -0
  124. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/deletefolder.py +0 -0
  125. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/deletelink.py +0 -0
  126. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/deletetag.py +0 -0
  127. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/getcustomer.py +0 -0
  128. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/gettags.py +0 -0
  129. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/getworkspace.py +0 -0
  130. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/listcommissions.py +0 -0
  131. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/listfolders.py +0 -0
  132. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/registerdomain.py +0 -0
  133. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/retrievepartneranalytics.py +0 -0
  134. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/tracksale.py +0 -0
  135. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/updatecommission.py +0 -0
  136. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/updatedomain.py +0 -0
  137. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/updatefolder.py +0 -0
  138. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/updatetag.py +0 -0
  139. {dub-0.33.0 → dub-0.34.1}/src/dub/models/operations/upsertlink.py +0 -0
  140. {dub-0.33.0 → dub-0.34.1}/src/dub/py.typed +0 -0
  141. {dub-0.33.0 → dub-0.34.1}/src/dub/sdkconfiguration.py +0 -0
  142. {dub-0.33.0 → dub-0.34.1}/src/dub/types/__init__.py +0 -0
  143. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/annotations.py +0 -0
  144. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/datetimes.py +0 -0
  145. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/eventstreaming.py +0 -0
  146. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/headers.py +0 -0
  147. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/logger.py +0 -0
  148. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/metadata.py +0 -0
  149. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/retries.py +0 -0
  150. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/security.py +0 -0
  151. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/unmarshal_json_response.py +0 -0
  152. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/url.py +0 -0
  153. {dub-0.33.0 → dub-0.34.1}/src/dub/utils/values.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dub
3
- Version: 0.33.0
3
+ Version: 0.34.1
4
4
  Summary: Python Client SDK Generated by Speakeasy
5
5
  License-File: LICENSE
6
6
  Author: Speakeasy
@@ -277,23 +277,29 @@ asyncio.run(main())
277
277
  <details open>
278
278
  <summary>Available methods</summary>
279
279
 
280
- ### [analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/analytics/README.md)
280
+ ### [Analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/analytics/README.md)
281
281
 
282
282
  * [retrieve](https://github.com/dubinc/dub-python/blob/master/docs/sdks/analytics/README.md#retrieve) - Retrieve analytics for a link, a domain, or the authenticated workspace.
283
283
 
284
- ### [commissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md)
284
+ ### [Bounties](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md)
285
+
286
+ * [list_submissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md#list_submissions) - List bounty submissions
287
+ * [approve_submission](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md#approve_submission) - Approve a bounty submission
288
+ * [reject_submission](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md#reject_submission) - Reject a bounty submission
289
+
290
+ ### [Commissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md)
285
291
 
286
292
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#list) - Get commissions for a program.
287
293
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#update) - Update a commission.
288
294
 
289
- ### [customers](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md)
295
+ ### [Customers](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md)
290
296
 
291
297
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#list) - Retrieve a list of customers
292
298
  * [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#get) - Retrieve a customer
293
299
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#update) - Update a customer
294
300
  * [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#delete) - Delete a customer
295
301
 
296
- ### [domains](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md)
302
+ ### [Domains](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md)
297
303
 
298
304
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#create) - Create a domain
299
305
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#list) - Retrieve a list of domains
@@ -302,22 +308,22 @@ asyncio.run(main())
302
308
  * [register](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#register) - Register a domain
303
309
  * [check_status](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#check_status) - Check the availability of one or more domains
304
310
 
305
- ### [embed_tokens](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md)
311
+ ### [EmbedTokens](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md)
306
312
 
307
313
  * [referrals](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md#referrals) - Create a referrals embed token
308
314
 
309
- ### [events](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md)
315
+ ### [Events](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md)
310
316
 
311
317
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md#list) - Retrieve a list of events
312
318
 
313
- ### [folders](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md)
319
+ ### [Folders](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md)
314
320
 
315
321
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#create) - Create a folder
316
322
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#list) - Retrieve a list of folders
317
323
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#update) - Update a folder
318
324
  * [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#delete) - Delete a folder
319
325
 
320
- ### [links](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md)
326
+ ### [Links](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md)
321
327
 
322
328
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#create) - Create a link
323
329
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#list) - Retrieve a list of links
@@ -330,7 +336,7 @@ asyncio.run(main())
330
336
  * [delete_many](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#delete_many) - Bulk delete links
331
337
  * [upsert](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#upsert) - Upsert a link
332
338
 
333
- ### [partners](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md)
339
+ ### [Partners](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md)
334
340
 
335
341
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#create) - Create or update a partner
336
342
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#list) - List all partners
@@ -340,23 +346,23 @@ asyncio.run(main())
340
346
  * [analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#analytics) - Retrieve analytics for a partner
341
347
  * [ban](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#ban) - Ban a partner
342
348
 
343
- ### [qr_codes](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md)
349
+ ### [QRCodes](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md)
344
350
 
345
351
  * [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md#get) - Retrieve a QR code
346
352
 
347
- ### [tags](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md)
353
+ ### [Tags](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md)
348
354
 
349
355
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#create) - Create a tag
350
356
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#list) - Retrieve a list of tags
351
357
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#update) - Update a tag
352
358
  * [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#delete) - Delete a tag
353
359
 
354
- ### [track](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md)
360
+ ### [Track](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md)
355
361
 
356
362
  * [lead](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#lead) - Track a lead
357
363
  * [sale](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#sale) - Track a sale
358
364
 
359
- ### [workspaces](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md)
365
+ ### [Workspaces](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md)
360
366
 
361
367
  * [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#get) - Retrieve a workspace
362
368
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#update) - Update a workspace
@@ -257,23 +257,29 @@ asyncio.run(main())
257
257
  <details open>
258
258
  <summary>Available methods</summary>
259
259
 
260
- ### [analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/analytics/README.md)
260
+ ### [Analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/analytics/README.md)
261
261
 
262
262
  * [retrieve](https://github.com/dubinc/dub-python/blob/master/docs/sdks/analytics/README.md#retrieve) - Retrieve analytics for a link, a domain, or the authenticated workspace.
263
263
 
264
- ### [commissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md)
264
+ ### [Bounties](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md)
265
+
266
+ * [list_submissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md#list_submissions) - List bounty submissions
267
+ * [approve_submission](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md#approve_submission) - Approve a bounty submission
268
+ * [reject_submission](https://github.com/dubinc/dub-python/blob/master/docs/sdks/bounties/README.md#reject_submission) - Reject a bounty submission
269
+
270
+ ### [Commissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md)
265
271
 
266
272
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#list) - Get commissions for a program.
267
273
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#update) - Update a commission.
268
274
 
269
- ### [customers](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md)
275
+ ### [Customers](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md)
270
276
 
271
277
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#list) - Retrieve a list of customers
272
278
  * [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#get) - Retrieve a customer
273
279
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#update) - Update a customer
274
280
  * [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#delete) - Delete a customer
275
281
 
276
- ### [domains](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md)
282
+ ### [Domains](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md)
277
283
 
278
284
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#create) - Create a domain
279
285
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#list) - Retrieve a list of domains
@@ -282,22 +288,22 @@ asyncio.run(main())
282
288
  * [register](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#register) - Register a domain
283
289
  * [check_status](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#check_status) - Check the availability of one or more domains
284
290
 
285
- ### [embed_tokens](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md)
291
+ ### [EmbedTokens](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md)
286
292
 
287
293
  * [referrals](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md#referrals) - Create a referrals embed token
288
294
 
289
- ### [events](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md)
295
+ ### [Events](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md)
290
296
 
291
297
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md#list) - Retrieve a list of events
292
298
 
293
- ### [folders](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md)
299
+ ### [Folders](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md)
294
300
 
295
301
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#create) - Create a folder
296
302
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#list) - Retrieve a list of folders
297
303
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#update) - Update a folder
298
304
  * [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#delete) - Delete a folder
299
305
 
300
- ### [links](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md)
306
+ ### [Links](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md)
301
307
 
302
308
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#create) - Create a link
303
309
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#list) - Retrieve a list of links
@@ -310,7 +316,7 @@ asyncio.run(main())
310
316
  * [delete_many](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#delete_many) - Bulk delete links
311
317
  * [upsert](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#upsert) - Upsert a link
312
318
 
313
- ### [partners](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md)
319
+ ### [Partners](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md)
314
320
 
315
321
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#create) - Create or update a partner
316
322
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#list) - List all partners
@@ -320,23 +326,23 @@ asyncio.run(main())
320
326
  * [analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#analytics) - Retrieve analytics for a partner
321
327
  * [ban](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#ban) - Ban a partner
322
328
 
323
- ### [qr_codes](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md)
329
+ ### [QRCodes](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md)
324
330
 
325
331
  * [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md#get) - Retrieve a QR code
326
332
 
327
- ### [tags](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md)
333
+ ### [Tags](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md)
328
334
 
329
335
  * [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#create) - Create a tag
330
336
  * [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#list) - Retrieve a list of tags
331
337
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#update) - Update a tag
332
338
  * [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#delete) - Delete a tag
333
339
 
334
- ### [track](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md)
340
+ ### [Track](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md)
335
341
 
336
342
  * [lead](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#lead) - Track a lead
337
343
  * [sale](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#sale) - Track a sale
338
344
 
339
- ### [workspaces](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md)
345
+ ### [Workspaces](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md)
340
346
 
341
347
  * [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#get) - Retrieve a workspace
342
348
  * [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#update) - Update a workspace
@@ -1,7 +1,7 @@
1
1
 
2
2
  [project]
3
3
  name = "dub"
4
- version = "0.33.0"
4
+ version = "0.34.1"
5
5
  description = "Python Client SDK Generated by Speakeasy"
6
6
  authors = [{ name = "Speakeasy" },]
7
7
  readme = "README-PYPI.md"
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "dub"
6
- __version__: str = "0.33.0"
6
+ __version__: str = "0.34.1"
7
7
  __openapi_doc_version__: str = "0.0.1"
8
- __gen_version__: str = "2.763.3"
9
- __user_agent__: str = "speakeasy-sdk/python 0.33.0 2.763.3 0.0.1 dub"
8
+ __gen_version__: str = "2.794.1"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.34.1 2.794.1 0.0.1 dub"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -59,6 +59,7 @@ class Analytics(BaseSDK):
59
59
  accept_header_value="application/json",
60
60
  http_headers=http_headers,
61
61
  security=self.sdk_configuration.security,
62
+ allow_empty_value=None,
62
63
  timeout_ms=timeout_ms,
63
64
  )
64
65
 
@@ -191,6 +192,7 @@ class Analytics(BaseSDK):
191
192
  accept_header_value="application/json",
192
193
  http_headers=http_headers,
193
194
  security=self.sdk_configuration.security,
195
+ allow_empty_value=None,
194
196
  timeout_ms=timeout_ms,
195
197
  )
196
198
 
@@ -57,6 +57,7 @@ class BaseSDK:
57
57
  ] = None,
58
58
  url_override: Optional[str] = None,
59
59
  http_headers: Optional[Mapping[str, str]] = None,
60
+ allow_empty_value: Optional[List[str]] = None,
60
61
  ) -> httpx.Request:
61
62
  client = self.sdk_configuration.async_client
62
63
  return self._build_request_with_client(
@@ -77,6 +78,7 @@ class BaseSDK:
77
78
  get_serialized_body,
78
79
  url_override,
79
80
  http_headers,
81
+ allow_empty_value,
80
82
  )
81
83
 
82
84
  def _build_request(
@@ -99,6 +101,7 @@ class BaseSDK:
99
101
  ] = None,
100
102
  url_override: Optional[str] = None,
101
103
  http_headers: Optional[Mapping[str, str]] = None,
104
+ allow_empty_value: Optional[List[str]] = None,
102
105
  ) -> httpx.Request:
103
106
  client = self.sdk_configuration.client
104
107
  return self._build_request_with_client(
@@ -119,6 +122,7 @@ class BaseSDK:
119
122
  get_serialized_body,
120
123
  url_override,
121
124
  http_headers,
125
+ allow_empty_value,
122
126
  )
123
127
 
124
128
  def _build_request_with_client(
@@ -142,6 +146,7 @@ class BaseSDK:
142
146
  ] = None,
143
147
  url_override: Optional[str] = None,
144
148
  http_headers: Optional[Mapping[str, str]] = None,
149
+ allow_empty_value: Optional[List[str]] = None,
145
150
  ) -> httpx.Request:
146
151
  query_params = {}
147
152
 
@@ -157,6 +162,7 @@ class BaseSDK:
157
162
  query_params = utils.get_query_params(
158
163
  request if request_has_query_params else None,
159
164
  _globals if request_has_query_params else None,
165
+ allow_empty_value,
160
166
  )
161
167
  else:
162
168
  # Pick up the query parameter from the override so they can be