dub 0.33.0__tar.gz → 0.34.0__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.
- {dub-0.33.0 → dub-0.34.0}/PKG-INFO +14 -14
- {dub-0.33.0 → dub-0.34.0}/README-PYPI.md +13 -13
- {dub-0.33.0 → dub-0.34.0}/pyproject.toml +1 -1
- {dub-0.33.0 → dub-0.34.0}/src/dub/_version.py +3 -3
- {dub-0.33.0 → dub-0.34.0}/src/dub/analytics.py +2 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/basesdk.py +6 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/commissions.py +4 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/customers.py +8 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/domains.py +12 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/embed_tokens.py +2 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/events.py +2 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/folders.py +8 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/links.py +20 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/__init__.py +49 -149
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/leadcreatedevent.py +8 -8
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/linkclickedevent.py +12 -12
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/linkerrorschema.py +12 -12
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/linkschema.py +3 -3
- dub-0.34.0/src/dub/models/components/linktagschema.py +38 -0
- dub-0.33.0/src/dub/models/components/linktagschema.py → dub-0.34.0/src/dub/models/components/linktagschemaoutput.py +2 -2
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/linkwebhookevent.py +8 -10
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/partnerenrolledevent.py +4 -4
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/salecreatedevent.py +8 -8
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/__init__.py +130 -22
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/createpartner.py +4 -55
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/createpartnerlink.py +0 -51
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/createreferralsembedtoken.py +0 -51
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/getcustomers.py +18 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/getlinkinfo.py +0 -2
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/getlinks.py +2 -2
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/getlinkscount.py +2 -2
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/getqrcode.py +1 -1
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/listdomains.py +1 -1
- dub-0.34.0/src/dub/models/operations/listevents.py +2550 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/listpartners.py +4 -4
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/retrieveanalytics.py +16 -5
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/retrievelinks.py +2 -2
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/tracklead.py +4 -4
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/updatecustomer.py +23 -11
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/updatelink.py +0 -2
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/updateworkspace.py +3 -3
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/upsertpartnerlink.py +0 -51
- {dub-0.33.0 → dub-0.34.0}/src/dub/partners.py +22 -4
- {dub-0.33.0 → dub-0.34.0}/src/dub/qr_codes.py +2 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/tags.py +24 -12
- {dub-0.33.0 → dub-0.34.0}/src/dub/track.py +4 -0
- dub-0.34.0/src/dub/types/basemodel.py +77 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/__init__.py +0 -3
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/enums.py +60 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/forms.py +21 -10
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/queryparams.py +14 -2
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/requestbodies.py +3 -3
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/serializers.py +0 -20
- {dub-0.33.0 → dub-0.34.0}/src/dub/workspaces.py +4 -0
- dub-0.33.0/src/dub/models/components/clickevent.py +0 -557
- dub-0.33.0/src/dub/models/components/continentcode.py +0 -16
- dub-0.33.0/src/dub/models/components/leadevent.py +0 -681
- dub-0.33.0/src/dub/models/components/saleevent.py +0 -780
- dub-0.33.0/src/dub/models/operations/listevents.py +0 -555
- dub-0.33.0/src/dub/types/basemodel.py +0 -39
- {dub-0.33.0 → dub-0.34.0}/LICENSE +0 -0
- {dub-0.33.0 → dub-0.34.0}/py.typed +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/__init__.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/_hooks/__init__.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/_hooks/registration.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/_hooks/sdkhooks.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/_hooks/types.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/httpclient.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/__init__.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticsbrowsers.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticscities.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticscontinents.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticscount.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticscountries.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticsdevices.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticsos.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticsreferers.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticsrefererurls.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticsregions.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticstimeseries.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticstoplinks.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticstopurls.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/analyticstriggers.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/commissioncreatedevent.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/domainschema.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/folderschema.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/partneranalyticscount.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/partneranalyticstimeseries.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/partneranalyticstoplinks.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/partnerapplicationsubmittedevent.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/security.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/webhookevent.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/components/workspaceschema.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/__init__.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/badrequest.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/conflict.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/duberror.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/forbidden.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/internalservererror.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/inviteexpired.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/no_response_error.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/notfound.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/ratelimitexceeded.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/responsevalidationerror.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/sdkerror.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/unauthorized.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/errors/unprocessableentity.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/banpartner.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/bulkcreatelinks.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/bulkdeletelinks.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/bulkupdatelinks.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/checkdomainstatus.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/createdomain.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/createfolder.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/createlink.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/createtag.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/deletecustomer.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/deletedomain.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/deletefolder.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/deletelink.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/deletetag.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/getcustomer.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/gettags.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/getworkspace.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/listcommissions.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/listfolders.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/registerdomain.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/retrievepartneranalytics.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/tracksale.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/updatecommission.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/updatedomain.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/updatefolder.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/updatetag.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/models/operations/upsertlink.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/py.typed +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/sdk.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/sdkconfiguration.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/types/__init__.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/annotations.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/datetimes.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/eventstreaming.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/headers.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/logger.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/metadata.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/retries.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/security.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/unmarshal_json_response.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/url.py +0 -0
- {dub-0.33.0 → dub-0.34.0}/src/dub/utils/values.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dub
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.34.0
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: Speakeasy
|
|
@@ -277,23 +277,23 @@ asyncio.run(main())
|
|
|
277
277
|
<details open>
|
|
278
278
|
<summary>Available methods</summary>
|
|
279
279
|
|
|
280
|
-
### [
|
|
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
|
-
### [
|
|
284
|
+
### [Commissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md)
|
|
285
285
|
|
|
286
286
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#list) - Get commissions for a program.
|
|
287
287
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#update) - Update a commission.
|
|
288
288
|
|
|
289
|
-
### [
|
|
289
|
+
### [Customers](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md)
|
|
290
290
|
|
|
291
291
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#list) - Retrieve a list of customers
|
|
292
292
|
* [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#get) - Retrieve a customer
|
|
293
293
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#update) - Update a customer
|
|
294
294
|
* [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#delete) - Delete a customer
|
|
295
295
|
|
|
296
|
-
### [
|
|
296
|
+
### [Domains](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md)
|
|
297
297
|
|
|
298
298
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#create) - Create a domain
|
|
299
299
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#list) - Retrieve a list of domains
|
|
@@ -302,22 +302,22 @@ asyncio.run(main())
|
|
|
302
302
|
* [register](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#register) - Register a domain
|
|
303
303
|
* [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
304
|
|
|
305
|
-
### [
|
|
305
|
+
### [EmbedTokens](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md)
|
|
306
306
|
|
|
307
307
|
* [referrals](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md#referrals) - Create a referrals embed token
|
|
308
308
|
|
|
309
|
-
### [
|
|
309
|
+
### [Events](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md)
|
|
310
310
|
|
|
311
311
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md#list) - Retrieve a list of events
|
|
312
312
|
|
|
313
|
-
### [
|
|
313
|
+
### [Folders](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md)
|
|
314
314
|
|
|
315
315
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#create) - Create a folder
|
|
316
316
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#list) - Retrieve a list of folders
|
|
317
317
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#update) - Update a folder
|
|
318
318
|
* [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#delete) - Delete a folder
|
|
319
319
|
|
|
320
|
-
### [
|
|
320
|
+
### [Links](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md)
|
|
321
321
|
|
|
322
322
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#create) - Create a link
|
|
323
323
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#list) - Retrieve a list of links
|
|
@@ -330,7 +330,7 @@ asyncio.run(main())
|
|
|
330
330
|
* [delete_many](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#delete_many) - Bulk delete links
|
|
331
331
|
* [upsert](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#upsert) - Upsert a link
|
|
332
332
|
|
|
333
|
-
### [
|
|
333
|
+
### [Partners](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md)
|
|
334
334
|
|
|
335
335
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#create) - Create or update a partner
|
|
336
336
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#list) - List all partners
|
|
@@ -340,23 +340,23 @@ asyncio.run(main())
|
|
|
340
340
|
* [analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#analytics) - Retrieve analytics for a partner
|
|
341
341
|
* [ban](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#ban) - Ban a partner
|
|
342
342
|
|
|
343
|
-
### [
|
|
343
|
+
### [QRCodes](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md)
|
|
344
344
|
|
|
345
345
|
* [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md#get) - Retrieve a QR code
|
|
346
346
|
|
|
347
|
-
### [
|
|
347
|
+
### [Tags](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md)
|
|
348
348
|
|
|
349
349
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#create) - Create a tag
|
|
350
350
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#list) - Retrieve a list of tags
|
|
351
351
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#update) - Update a tag
|
|
352
352
|
* [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#delete) - Delete a tag
|
|
353
353
|
|
|
354
|
-
### [
|
|
354
|
+
### [Track](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md)
|
|
355
355
|
|
|
356
356
|
* [lead](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#lead) - Track a lead
|
|
357
357
|
* [sale](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#sale) - Track a sale
|
|
358
358
|
|
|
359
|
-
### [
|
|
359
|
+
### [Workspaces](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md)
|
|
360
360
|
|
|
361
361
|
* [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#get) - Retrieve a workspace
|
|
362
362
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#update) - Update a workspace
|
|
@@ -257,23 +257,23 @@ asyncio.run(main())
|
|
|
257
257
|
<details open>
|
|
258
258
|
<summary>Available methods</summary>
|
|
259
259
|
|
|
260
|
-
### [
|
|
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
|
-
### [
|
|
264
|
+
### [Commissions](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md)
|
|
265
265
|
|
|
266
266
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#list) - Get commissions for a program.
|
|
267
267
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/commissions/README.md#update) - Update a commission.
|
|
268
268
|
|
|
269
|
-
### [
|
|
269
|
+
### [Customers](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md)
|
|
270
270
|
|
|
271
271
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#list) - Retrieve a list of customers
|
|
272
272
|
* [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#get) - Retrieve a customer
|
|
273
273
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#update) - Update a customer
|
|
274
274
|
* [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/customers/README.md#delete) - Delete a customer
|
|
275
275
|
|
|
276
|
-
### [
|
|
276
|
+
### [Domains](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md)
|
|
277
277
|
|
|
278
278
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#create) - Create a domain
|
|
279
279
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#list) - Retrieve a list of domains
|
|
@@ -282,22 +282,22 @@ asyncio.run(main())
|
|
|
282
282
|
* [register](https://github.com/dubinc/dub-python/blob/master/docs/sdks/domains/README.md#register) - Register a domain
|
|
283
283
|
* [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
284
|
|
|
285
|
-
### [
|
|
285
|
+
### [EmbedTokens](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md)
|
|
286
286
|
|
|
287
287
|
* [referrals](https://github.com/dubinc/dub-python/blob/master/docs/sdks/embedtokens/README.md#referrals) - Create a referrals embed token
|
|
288
288
|
|
|
289
|
-
### [
|
|
289
|
+
### [Events](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md)
|
|
290
290
|
|
|
291
291
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/events/README.md#list) - Retrieve a list of events
|
|
292
292
|
|
|
293
|
-
### [
|
|
293
|
+
### [Folders](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md)
|
|
294
294
|
|
|
295
295
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#create) - Create a folder
|
|
296
296
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#list) - Retrieve a list of folders
|
|
297
297
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#update) - Update a folder
|
|
298
298
|
* [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/folders/README.md#delete) - Delete a folder
|
|
299
299
|
|
|
300
|
-
### [
|
|
300
|
+
### [Links](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md)
|
|
301
301
|
|
|
302
302
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#create) - Create a link
|
|
303
303
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#list) - Retrieve a list of links
|
|
@@ -310,7 +310,7 @@ asyncio.run(main())
|
|
|
310
310
|
* [delete_many](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#delete_many) - Bulk delete links
|
|
311
311
|
* [upsert](https://github.com/dubinc/dub-python/blob/master/docs/sdks/links/README.md#upsert) - Upsert a link
|
|
312
312
|
|
|
313
|
-
### [
|
|
313
|
+
### [Partners](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md)
|
|
314
314
|
|
|
315
315
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#create) - Create or update a partner
|
|
316
316
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#list) - List all partners
|
|
@@ -320,23 +320,23 @@ asyncio.run(main())
|
|
|
320
320
|
* [analytics](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#analytics) - Retrieve analytics for a partner
|
|
321
321
|
* [ban](https://github.com/dubinc/dub-python/blob/master/docs/sdks/partners/README.md#ban) - Ban a partner
|
|
322
322
|
|
|
323
|
-
### [
|
|
323
|
+
### [QRCodes](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md)
|
|
324
324
|
|
|
325
325
|
* [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/qrcodes/README.md#get) - Retrieve a QR code
|
|
326
326
|
|
|
327
|
-
### [
|
|
327
|
+
### [Tags](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md)
|
|
328
328
|
|
|
329
329
|
* [create](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#create) - Create a tag
|
|
330
330
|
* [list](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#list) - Retrieve a list of tags
|
|
331
331
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#update) - Update a tag
|
|
332
332
|
* [delete](https://github.com/dubinc/dub-python/blob/master/docs/sdks/tags/README.md#delete) - Delete a tag
|
|
333
333
|
|
|
334
|
-
### [
|
|
334
|
+
### [Track](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md)
|
|
335
335
|
|
|
336
336
|
* [lead](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#lead) - Track a lead
|
|
337
337
|
* [sale](https://github.com/dubinc/dub-python/blob/master/docs/sdks/track/README.md#sale) - Track a sale
|
|
338
338
|
|
|
339
|
-
### [
|
|
339
|
+
### [Workspaces](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md)
|
|
340
340
|
|
|
341
341
|
* [get](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#get) - Retrieve a workspace
|
|
342
342
|
* [update](https://github.com/dubinc/dub-python/blob/master/docs/sdks/workspaces/README.md#update) - Update a workspace
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "dub"
|
|
6
|
-
__version__: str = "0.
|
|
6
|
+
__version__: str = "0.34.0"
|
|
7
7
|
__openapi_doc_version__: str = "0.0.1"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.
|
|
8
|
+
__gen_version__: str = "2.793.2"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.34.0 2.793.2 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
|
|
@@ -59,6 +59,7 @@ class Commissions(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 Commissions(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
|
|
|
@@ -330,6 +332,7 @@ class Commissions(BaseSDK):
|
|
|
330
332
|
"json",
|
|
331
333
|
Optional[operations.UpdateCommissionRequestBody],
|
|
332
334
|
),
|
|
335
|
+
allow_empty_value=None,
|
|
333
336
|
timeout_ms=timeout_ms,
|
|
334
337
|
)
|
|
335
338
|
|
|
@@ -469,6 +472,7 @@ class Commissions(BaseSDK):
|
|
|
469
472
|
"json",
|
|
470
473
|
Optional[operations.UpdateCommissionRequestBody],
|
|
471
474
|
),
|
|
475
|
+
allow_empty_value=None,
|
|
472
476
|
timeout_ms=timeout_ms,
|
|
473
477
|
)
|
|
474
478
|
|
|
@@ -58,6 +58,7 @@ class Customers(BaseSDK):
|
|
|
58
58
|
accept_header_value="application/json",
|
|
59
59
|
http_headers=http_headers,
|
|
60
60
|
security=self.sdk_configuration.security,
|
|
61
|
+
allow_empty_value=None,
|
|
61
62
|
timeout_ms=timeout_ms,
|
|
62
63
|
)
|
|
63
64
|
|
|
@@ -189,6 +190,7 @@ class Customers(BaseSDK):
|
|
|
189
190
|
accept_header_value="application/json",
|
|
190
191
|
http_headers=http_headers,
|
|
191
192
|
security=self.sdk_configuration.security,
|
|
193
|
+
allow_empty_value=None,
|
|
192
194
|
timeout_ms=timeout_ms,
|
|
193
195
|
)
|
|
194
196
|
|
|
@@ -320,6 +322,7 @@ class Customers(BaseSDK):
|
|
|
320
322
|
accept_header_value="application/json",
|
|
321
323
|
http_headers=http_headers,
|
|
322
324
|
security=self.sdk_configuration.security,
|
|
325
|
+
allow_empty_value=None,
|
|
323
326
|
timeout_ms=timeout_ms,
|
|
324
327
|
)
|
|
325
328
|
|
|
@@ -449,6 +452,7 @@ class Customers(BaseSDK):
|
|
|
449
452
|
accept_header_value="application/json",
|
|
450
453
|
http_headers=http_headers,
|
|
451
454
|
security=self.sdk_configuration.security,
|
|
455
|
+
allow_empty_value=None,
|
|
452
456
|
timeout_ms=timeout_ms,
|
|
453
457
|
)
|
|
454
458
|
|
|
@@ -585,6 +589,7 @@ class Customers(BaseSDK):
|
|
|
585
589
|
"json",
|
|
586
590
|
Optional[operations.UpdateCustomerRequestBody],
|
|
587
591
|
),
|
|
592
|
+
allow_empty_value=None,
|
|
588
593
|
timeout_ms=timeout_ms,
|
|
589
594
|
)
|
|
590
595
|
|
|
@@ -723,6 +728,7 @@ class Customers(BaseSDK):
|
|
|
723
728
|
"json",
|
|
724
729
|
Optional[operations.UpdateCustomerRequestBody],
|
|
725
730
|
),
|
|
731
|
+
allow_empty_value=None,
|
|
726
732
|
timeout_ms=timeout_ms,
|
|
727
733
|
)
|
|
728
734
|
|
|
@@ -852,6 +858,7 @@ class Customers(BaseSDK):
|
|
|
852
858
|
accept_header_value="application/json",
|
|
853
859
|
http_headers=http_headers,
|
|
854
860
|
security=self.sdk_configuration.security,
|
|
861
|
+
allow_empty_value=None,
|
|
855
862
|
timeout_ms=timeout_ms,
|
|
856
863
|
)
|
|
857
864
|
|
|
@@ -981,6 +988,7 @@ class Customers(BaseSDK):
|
|
|
981
988
|
accept_header_value="application/json",
|
|
982
989
|
http_headers=http_headers,
|
|
983
990
|
security=self.sdk_configuration.security,
|
|
991
|
+
allow_empty_value=None,
|
|
984
992
|
timeout_ms=timeout_ms,
|
|
985
993
|
)
|
|
986
994
|
|
|
@@ -71,6 +71,7 @@ class Domains(BaseSDK):
|
|
|
71
71
|
"json",
|
|
72
72
|
Optional[operations.CreateDomainRequestBody],
|
|
73
73
|
),
|
|
74
|
+
allow_empty_value=None,
|
|
74
75
|
timeout_ms=timeout_ms,
|
|
75
76
|
)
|
|
76
77
|
|
|
@@ -212,6 +213,7 @@ class Domains(BaseSDK):
|
|
|
212
213
|
"json",
|
|
213
214
|
Optional[operations.CreateDomainRequestBody],
|
|
214
215
|
),
|
|
216
|
+
allow_empty_value=None,
|
|
215
217
|
timeout_ms=timeout_ms,
|
|
216
218
|
)
|
|
217
219
|
|
|
@@ -341,6 +343,7 @@ class Domains(BaseSDK):
|
|
|
341
343
|
accept_header_value="application/json",
|
|
342
344
|
http_headers=http_headers,
|
|
343
345
|
security=self.sdk_configuration.security,
|
|
346
|
+
allow_empty_value=None,
|
|
344
347
|
timeout_ms=timeout_ms,
|
|
345
348
|
)
|
|
346
349
|
|
|
@@ -497,6 +500,7 @@ class Domains(BaseSDK):
|
|
|
497
500
|
accept_header_value="application/json",
|
|
498
501
|
http_headers=http_headers,
|
|
499
502
|
security=self.sdk_configuration.security,
|
|
503
|
+
allow_empty_value=None,
|
|
500
504
|
timeout_ms=timeout_ms,
|
|
501
505
|
)
|
|
502
506
|
|
|
@@ -668,6 +672,7 @@ class Domains(BaseSDK):
|
|
|
668
672
|
"json",
|
|
669
673
|
Optional[operations.UpdateDomainRequestBody],
|
|
670
674
|
),
|
|
675
|
+
allow_empty_value=None,
|
|
671
676
|
timeout_ms=timeout_ms,
|
|
672
677
|
)
|
|
673
678
|
|
|
@@ -812,6 +817,7 @@ class Domains(BaseSDK):
|
|
|
812
817
|
"json",
|
|
813
818
|
Optional[operations.UpdateDomainRequestBody],
|
|
814
819
|
),
|
|
820
|
+
allow_empty_value=None,
|
|
815
821
|
timeout_ms=timeout_ms,
|
|
816
822
|
)
|
|
817
823
|
|
|
@@ -939,6 +945,7 @@ class Domains(BaseSDK):
|
|
|
939
945
|
accept_header_value="application/json",
|
|
940
946
|
http_headers=http_headers,
|
|
941
947
|
security=self.sdk_configuration.security,
|
|
948
|
+
allow_empty_value=None,
|
|
942
949
|
timeout_ms=timeout_ms,
|
|
943
950
|
)
|
|
944
951
|
|
|
@@ -1068,6 +1075,7 @@ class Domains(BaseSDK):
|
|
|
1068
1075
|
accept_header_value="application/json",
|
|
1069
1076
|
http_headers=http_headers,
|
|
1070
1077
|
security=self.sdk_configuration.security,
|
|
1078
|
+
allow_empty_value=None,
|
|
1071
1079
|
timeout_ms=timeout_ms,
|
|
1072
1080
|
)
|
|
1073
1081
|
|
|
@@ -1211,6 +1219,7 @@ class Domains(BaseSDK):
|
|
|
1211
1219
|
"json",
|
|
1212
1220
|
Optional[operations.RegisterDomainRequestBody],
|
|
1213
1221
|
),
|
|
1222
|
+
allow_empty_value=None,
|
|
1214
1223
|
timeout_ms=timeout_ms,
|
|
1215
1224
|
)
|
|
1216
1225
|
|
|
@@ -1354,6 +1363,7 @@ class Domains(BaseSDK):
|
|
|
1354
1363
|
"json",
|
|
1355
1364
|
Optional[operations.RegisterDomainRequestBody],
|
|
1356
1365
|
),
|
|
1366
|
+
allow_empty_value=None,
|
|
1357
1367
|
timeout_ms=timeout_ms,
|
|
1358
1368
|
)
|
|
1359
1369
|
|
|
@@ -1486,6 +1496,7 @@ class Domains(BaseSDK):
|
|
|
1486
1496
|
accept_header_value="application/json",
|
|
1487
1497
|
http_headers=http_headers,
|
|
1488
1498
|
security=self.sdk_configuration.security,
|
|
1499
|
+
allow_empty_value=None,
|
|
1489
1500
|
timeout_ms=timeout_ms,
|
|
1490
1501
|
)
|
|
1491
1502
|
|
|
@@ -1618,6 +1629,7 @@ class Domains(BaseSDK):
|
|
|
1618
1629
|
accept_header_value="application/json",
|
|
1619
1630
|
http_headers=http_headers,
|
|
1620
1631
|
security=self.sdk_configuration.security,
|
|
1632
|
+
allow_empty_value=None,
|
|
1621
1633
|
timeout_ms=timeout_ms,
|
|
1622
1634
|
)
|
|
1623
1635
|
|
|
@@ -72,6 +72,7 @@ class EmbedTokens(BaseSDK):
|
|
|
72
72
|
"json",
|
|
73
73
|
Optional[operations.CreateReferralsEmbedTokenRequestBody],
|
|
74
74
|
),
|
|
75
|
+
allow_empty_value=None,
|
|
75
76
|
timeout_ms=timeout_ms,
|
|
76
77
|
)
|
|
77
78
|
|
|
@@ -217,6 +218,7 @@ class EmbedTokens(BaseSDK):
|
|
|
217
218
|
"json",
|
|
218
219
|
Optional[operations.CreateReferralsEmbedTokenRequestBody],
|
|
219
220
|
),
|
|
221
|
+
allow_empty_value=None,
|
|
220
222
|
timeout_ms=timeout_ms,
|
|
221
223
|
)
|
|
222
224
|
|
|
@@ -58,6 +58,7 @@ class Events(BaseSDK):
|
|
|
58
58
|
accept_header_value="application/json",
|
|
59
59
|
http_headers=http_headers,
|
|
60
60
|
security=self.sdk_configuration.security,
|
|
61
|
+
allow_empty_value=None,
|
|
61
62
|
timeout_ms=timeout_ms,
|
|
62
63
|
)
|
|
63
64
|
|
|
@@ -189,6 +190,7 @@ class Events(BaseSDK):
|
|
|
189
190
|
accept_header_value="application/json",
|
|
190
191
|
http_headers=http_headers,
|
|
191
192
|
security=self.sdk_configuration.security,
|
|
193
|
+
allow_empty_value=None,
|
|
192
194
|
timeout_ms=timeout_ms,
|
|
193
195
|
)
|
|
194
196
|
|
|
@@ -70,6 +70,7 @@ class Folders(BaseSDK):
|
|
|
70
70
|
"json",
|
|
71
71
|
Optional[operations.CreateFolderRequestBody],
|
|
72
72
|
),
|
|
73
|
+
allow_empty_value=None,
|
|
73
74
|
timeout_ms=timeout_ms,
|
|
74
75
|
)
|
|
75
76
|
|
|
@@ -211,6 +212,7 @@ class Folders(BaseSDK):
|
|
|
211
212
|
"json",
|
|
212
213
|
Optional[operations.CreateFolderRequestBody],
|
|
213
214
|
),
|
|
215
|
+
allow_empty_value=None,
|
|
214
216
|
timeout_ms=timeout_ms,
|
|
215
217
|
)
|
|
216
218
|
|
|
@@ -340,6 +342,7 @@ class Folders(BaseSDK):
|
|
|
340
342
|
accept_header_value="application/json",
|
|
341
343
|
http_headers=http_headers,
|
|
342
344
|
security=self.sdk_configuration.security,
|
|
345
|
+
allow_empty_value=None,
|
|
343
346
|
timeout_ms=timeout_ms,
|
|
344
347
|
)
|
|
345
348
|
|
|
@@ -469,6 +472,7 @@ class Folders(BaseSDK):
|
|
|
469
472
|
accept_header_value="application/json",
|
|
470
473
|
http_headers=http_headers,
|
|
471
474
|
security=self.sdk_configuration.security,
|
|
475
|
+
allow_empty_value=None,
|
|
472
476
|
timeout_ms=timeout_ms,
|
|
473
477
|
)
|
|
474
478
|
|
|
@@ -613,6 +617,7 @@ class Folders(BaseSDK):
|
|
|
613
617
|
"json",
|
|
614
618
|
Optional[operations.UpdateFolderRequestBody],
|
|
615
619
|
),
|
|
620
|
+
allow_empty_value=None,
|
|
616
621
|
timeout_ms=timeout_ms,
|
|
617
622
|
)
|
|
618
623
|
|
|
@@ -757,6 +762,7 @@ class Folders(BaseSDK):
|
|
|
757
762
|
"json",
|
|
758
763
|
Optional[operations.UpdateFolderRequestBody],
|
|
759
764
|
),
|
|
765
|
+
allow_empty_value=None,
|
|
760
766
|
timeout_ms=timeout_ms,
|
|
761
767
|
)
|
|
762
768
|
|
|
@@ -884,6 +890,7 @@ class Folders(BaseSDK):
|
|
|
884
890
|
accept_header_value="application/json",
|
|
885
891
|
http_headers=http_headers,
|
|
886
892
|
security=self.sdk_configuration.security,
|
|
893
|
+
allow_empty_value=None,
|
|
887
894
|
timeout_ms=timeout_ms,
|
|
888
895
|
)
|
|
889
896
|
|
|
@@ -1013,6 +1020,7 @@ class Folders(BaseSDK):
|
|
|
1013
1020
|
accept_header_value="application/json",
|
|
1014
1021
|
http_headers=http_headers,
|
|
1015
1022
|
security=self.sdk_configuration.security,
|
|
1023
|
+
allow_empty_value=None,
|
|
1016
1024
|
timeout_ms=timeout_ms,
|
|
1017
1025
|
)
|
|
1018
1026
|
|