dub 0.34.0__py3-none-any.whl → 0.35.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dub/_version.py +3 -3
- dub/basesdk.py +20 -6
- dub/{workspaces.py → bounties.py} +349 -69
- dub/models/components/__init__.py +114 -26
- dub/models/components/analyticsbrowsers.py +18 -1
- dub/models/components/analyticscities.py +18 -1
- dub/models/components/analyticscontinents.py +18 -1
- dub/models/components/analyticscount.py +18 -1
- dub/models/components/analyticscountries.py +20 -1
- dub/models/components/analyticsdevices.py +18 -1
- dub/models/components/analyticsos.py +18 -1
- dub/models/components/analyticsreferers.py +18 -1
- dub/models/components/analyticsrefererurls.py +18 -1
- dub/models/components/analyticsregions.py +18 -1
- dub/models/components/analyticstimeseries.py +18 -1
- dub/models/components/analyticstoplinks.py +16 -26
- dub/models/components/analyticstopurls.py +18 -1
- dub/models/components/analyticstriggers.py +18 -1
- dub/models/components/commissioncreatedevent.py +123 -63
- dub/models/components/domainschema.py +31 -50
- dub/models/components/folderschema.py +18 -19
- dub/models/components/leadcreatedevent.py +151 -134
- dub/models/components/linkclickedevent.py +57 -70
- dub/models/components/linkschema.py +63 -64
- dub/models/components/linkwebhookevent.py +43 -51
- dub/models/components/partneranalyticscount.py +18 -1
- dub/models/components/partneranalyticstimeseries.py +18 -1
- dub/models/components/partneranalyticstoplinks.py +16 -27
- dub/models/components/partnerapplicationsubmittedevent.py +42 -75
- dub/models/components/partnerenrolledevent.py +477 -83
- dub/models/components/salecreatedevent.py +152 -151
- dub/models/errors/badrequest.py +18 -1
- dub/models/errors/conflict.py +18 -1
- dub/models/errors/forbidden.py +18 -1
- dub/models/errors/internalservererror.py +18 -1
- dub/models/errors/inviteexpired.py +18 -1
- dub/models/errors/notfound.py +18 -1
- dub/models/errors/ratelimitexceeded.py +18 -1
- dub/models/errors/unauthorized.py +18 -1
- dub/models/errors/unprocessableentity.py +18 -1
- dub/models/operations/__init__.py +323 -19
- dub/models/operations/approvebountysubmission.py +211 -0
- dub/models/operations/banpartner.py +14 -19
- dub/models/operations/bulkcreatelinks.py +86 -87
- dub/models/operations/bulkupdatelinks.py +97 -82
- dub/models/operations/checkdomainstatus.py +1 -17
- dub/models/operations/createdomain.py +33 -34
- dub/models/operations/createfolder.py +18 -19
- dub/models/operations/createlink.py +86 -87
- dub/models/operations/createpartner.py +560 -168
- dub/models/operations/createpartnerlink.py +74 -85
- dub/models/operations/createreferralsembedtoken.py +99 -87
- dub/models/operations/createtag.py +18 -1
- dub/models/operations/deactivatepartner.py +65 -0
- dub/models/operations/getcustomer.py +106 -105
- dub/models/operations/getcustomers.py +123 -105
- dub/models/operations/getlinkinfo.py +18 -1
- dub/models/operations/getlinks.py +36 -1
- dub/models/operations/getlinkscount.py +32 -1
- dub/models/operations/getqrcode.py +29 -1
- dub/models/operations/gettags.py +20 -1
- dub/models/operations/listbountysubmissions.py +249 -0
- dub/models/operations/listcommissions.py +129 -64
- dub/models/operations/listdomains.py +18 -1
- dub/models/operations/listevents.py +414 -389
- dub/models/operations/listfolders.py +18 -1
- dub/models/operations/listpartners.py +510 -84
- dub/models/operations/registerdomain.py +1 -17
- dub/models/operations/rejectbountysubmission.py +219 -0
- dub/models/operations/retrieveanalytics.py +65 -66
- dub/models/operations/retrievelinks.py +30 -19
- dub/models/operations/retrievepartneranalytics.py +25 -28
- dub/models/operations/tracklead.py +38 -83
- dub/models/operations/tracksale.py +52 -95
- dub/models/operations/updatecommission.py +126 -64
- dub/models/operations/updatecustomer.py +122 -131
- dub/models/operations/updatedomain.py +50 -35
- dub/models/operations/updatefolder.py +34 -19
- dub/models/operations/updatelink.py +101 -86
- dub/models/operations/updatetag.py +34 -1
- dub/models/operations/upsertlink.py +86 -87
- dub/models/operations/upsertpartnerlink.py +77 -90
- dub/partners.py +288 -0
- dub/sdk.py +3 -3
- dub/utils/__init__.py +10 -1
- {dub-0.34.0.dist-info → dub-0.35.0.dist-info}/METADATA +10 -8
- dub-0.35.0.dist-info/RECORD +143 -0
- dub/models/components/workspaceschema.py +0 -328
- dub/models/operations/getworkspace.py +0 -21
- dub/models/operations/updateworkspace.py +0 -78
- dub-0.34.0.dist-info/RECORD +0 -142
- {dub-0.34.0.dist-info → dub-0.35.0.dist-info}/WHEEL +0 -0
- {dub-0.34.0.dist-info → dub-0.35.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from dataclasses import dataclass, field
|
|
5
5
|
from dub.models.errors import DubError
|
|
6
|
-
from dub.types import BaseModel
|
|
6
|
+
from dub.types import BaseModel, UNSET_SENTINEL
|
|
7
7
|
from enum import Enum
|
|
8
8
|
import httpx
|
|
9
|
+
from pydantic import model_serializer
|
|
9
10
|
from typing import Optional
|
|
10
11
|
from typing_extensions import NotRequired, TypedDict
|
|
11
12
|
|
|
@@ -35,6 +36,22 @@ class UnauthorizedError(BaseModel):
|
|
|
35
36
|
doc_url: Optional[str] = None
|
|
36
37
|
r"""A link to our documentation with more details about this error code"""
|
|
37
38
|
|
|
39
|
+
@model_serializer(mode="wrap")
|
|
40
|
+
def serialize_model(self, handler):
|
|
41
|
+
optional_fields = set(["doc_url"])
|
|
42
|
+
serialized = handler(self)
|
|
43
|
+
m = {}
|
|
44
|
+
|
|
45
|
+
for n, f in type(self).model_fields.items():
|
|
46
|
+
k = f.alias or n
|
|
47
|
+
val = serialized.get(k)
|
|
48
|
+
|
|
49
|
+
if val != UNSET_SENTINEL:
|
|
50
|
+
if val is not None or k not in optional_fields:
|
|
51
|
+
m[k] = val
|
|
52
|
+
|
|
53
|
+
return m
|
|
54
|
+
|
|
38
55
|
|
|
39
56
|
class UnauthorizedData(BaseModel):
|
|
40
57
|
error: UnauthorizedError
|
|
@@ -3,9 +3,10 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
from dataclasses import dataclass, field
|
|
5
5
|
from dub.models.errors import DubError
|
|
6
|
-
from dub.types import BaseModel
|
|
6
|
+
from dub.types import BaseModel, UNSET_SENTINEL
|
|
7
7
|
from enum import Enum
|
|
8
8
|
import httpx
|
|
9
|
+
from pydantic import model_serializer
|
|
9
10
|
from typing import Optional
|
|
10
11
|
from typing_extensions import NotRequired, TypedDict
|
|
11
12
|
|
|
@@ -35,6 +36,22 @@ class UnprocessableEntityError(BaseModel):
|
|
|
35
36
|
doc_url: Optional[str] = None
|
|
36
37
|
r"""A link to our documentation with more details about this error code"""
|
|
37
38
|
|
|
39
|
+
@model_serializer(mode="wrap")
|
|
40
|
+
def serialize_model(self, handler):
|
|
41
|
+
optional_fields = set(["doc_url"])
|
|
42
|
+
serialized = handler(self)
|
|
43
|
+
m = {}
|
|
44
|
+
|
|
45
|
+
for n, f in type(self).model_fields.items():
|
|
46
|
+
k = f.alias or n
|
|
47
|
+
val = serialized.get(k)
|
|
48
|
+
|
|
49
|
+
if val != UNSET_SENTINEL:
|
|
50
|
+
if val is not None or k not in optional_fields:
|
|
51
|
+
m[k] = val
|
|
52
|
+
|
|
53
|
+
return m
|
|
54
|
+
|
|
38
55
|
|
|
39
56
|
class UnprocessableEntityData(BaseModel):
|
|
40
57
|
error: UnprocessableEntityError
|
|
@@ -6,6 +6,17 @@ import builtins
|
|
|
6
6
|
import sys
|
|
7
7
|
|
|
8
8
|
if TYPE_CHECKING:
|
|
9
|
+
from .approvebountysubmission import (
|
|
10
|
+
ApproveBountySubmissionFiles,
|
|
11
|
+
ApproveBountySubmissionFilesTypedDict,
|
|
12
|
+
ApproveBountySubmissionRequest,
|
|
13
|
+
ApproveBountySubmissionRequestBody,
|
|
14
|
+
ApproveBountySubmissionRequestBodyTypedDict,
|
|
15
|
+
ApproveBountySubmissionRequestTypedDict,
|
|
16
|
+
ApproveBountySubmissionResponseBody,
|
|
17
|
+
ApproveBountySubmissionResponseBodyTypedDict,
|
|
18
|
+
ApproveBountySubmissionStatus,
|
|
19
|
+
)
|
|
9
20
|
from .banpartner import (
|
|
10
21
|
BanPartnerRequestBody,
|
|
11
22
|
BanPartnerRequestBodyTypedDict,
|
|
@@ -69,6 +80,15 @@ if TYPE_CHECKING:
|
|
|
69
80
|
)
|
|
70
81
|
from .createpartner import (
|
|
71
82
|
BannedReason,
|
|
83
|
+
Constraints,
|
|
84
|
+
ConstraintsTypedDict,
|
|
85
|
+
CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyReferralFormDataType,
|
|
86
|
+
CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyType,
|
|
87
|
+
CreatePartnerFieldsPartnersResponse201ApplicationJSONType,
|
|
88
|
+
CreatePartnerFieldsPartnersResponse201Type,
|
|
89
|
+
CreatePartnerFieldsPartnersResponseType,
|
|
90
|
+
CreatePartnerFieldsPartnersType,
|
|
91
|
+
CreatePartnerFieldsType,
|
|
72
92
|
CreatePartnerRequestBody,
|
|
73
93
|
CreatePartnerRequestBodyTypedDict,
|
|
74
94
|
CreatePartnerResponseBody,
|
|
@@ -80,10 +100,37 @@ if TYPE_CHECKING:
|
|
|
80
100
|
CreatePartnerTagNamesTypedDict,
|
|
81
101
|
CreatePartnerTestVariants,
|
|
82
102
|
CreatePartnerTestVariantsTypedDict,
|
|
103
|
+
Eight,
|
|
104
|
+
EightTypedDict,
|
|
105
|
+
Fields,
|
|
106
|
+
Fields1,
|
|
107
|
+
Fields1TypedDict,
|
|
108
|
+
Fields2,
|
|
109
|
+
Fields2TypedDict,
|
|
110
|
+
Fields3,
|
|
111
|
+
Fields3TypedDict,
|
|
112
|
+
Fields4,
|
|
113
|
+
Fields4TypedDict,
|
|
114
|
+
FieldsConstraints,
|
|
115
|
+
FieldsConstraintsTypedDict,
|
|
116
|
+
FieldsOptions,
|
|
117
|
+
FieldsOptionsTypedDict,
|
|
118
|
+
FieldsType,
|
|
119
|
+
FieldsTypedDict,
|
|
120
|
+
Five,
|
|
121
|
+
FiveTypedDict,
|
|
83
122
|
LinkProps,
|
|
84
123
|
LinkPropsTypedDict,
|
|
85
124
|
Links,
|
|
86
125
|
LinksTypedDict,
|
|
126
|
+
Options,
|
|
127
|
+
OptionsTypedDict,
|
|
128
|
+
ReferralFormData,
|
|
129
|
+
ReferralFormDataTypedDict,
|
|
130
|
+
Seven,
|
|
131
|
+
SevenTypedDict,
|
|
132
|
+
Six,
|
|
133
|
+
SixTypedDict,
|
|
87
134
|
)
|
|
88
135
|
from .createpartnerlink import (
|
|
89
136
|
CreatePartnerLinkLinkProps,
|
|
@@ -114,6 +161,12 @@ if TYPE_CHECKING:
|
|
|
114
161
|
PartnerTypedDict,
|
|
115
162
|
)
|
|
116
163
|
from .createtag import Color, CreateTagRequestBody, CreateTagRequestBodyTypedDict
|
|
164
|
+
from .deactivatepartner import (
|
|
165
|
+
DeactivatePartnerRequestBody,
|
|
166
|
+
DeactivatePartnerRequestBodyTypedDict,
|
|
167
|
+
DeactivatePartnerResponseBody,
|
|
168
|
+
DeactivatePartnerResponseBodyTypedDict,
|
|
169
|
+
)
|
|
117
170
|
from .deletecustomer import (
|
|
118
171
|
DeleteCustomerRequest,
|
|
119
172
|
DeleteCustomerRequestTypedDict,
|
|
@@ -209,7 +262,18 @@ if TYPE_CHECKING:
|
|
|
209
262
|
Ids,
|
|
210
263
|
IdsTypedDict,
|
|
211
264
|
)
|
|
212
|
-
from .
|
|
265
|
+
from .listbountysubmissions import (
|
|
266
|
+
Files,
|
|
267
|
+
FilesTypedDict,
|
|
268
|
+
ListBountySubmissionsQueryParamSortBy,
|
|
269
|
+
ListBountySubmissionsQueryParamSortOrder,
|
|
270
|
+
ListBountySubmissionsQueryParamStatus,
|
|
271
|
+
ListBountySubmissionsRequest,
|
|
272
|
+
ListBountySubmissionsRequestTypedDict,
|
|
273
|
+
ListBountySubmissionsResponseBody,
|
|
274
|
+
ListBountySubmissionsResponseBodyTypedDict,
|
|
275
|
+
ListBountySubmissionsStatus,
|
|
276
|
+
)
|
|
213
277
|
from .listcommissions import (
|
|
214
278
|
ListCommissionsCustomer,
|
|
215
279
|
ListCommissionsCustomerTypedDict,
|
|
@@ -285,12 +349,48 @@ if TYPE_CHECKING:
|
|
|
285
349
|
)
|
|
286
350
|
from .listfolders import ListFoldersRequest, ListFoldersRequestTypedDict
|
|
287
351
|
from .listpartners import (
|
|
352
|
+
Fields5,
|
|
353
|
+
Fields5TypedDict,
|
|
354
|
+
Fields6,
|
|
355
|
+
Fields6TypedDict,
|
|
356
|
+
Fields7,
|
|
357
|
+
Fields7TypedDict,
|
|
358
|
+
Fields8,
|
|
359
|
+
Fields8TypedDict,
|
|
288
360
|
ListPartnersBannedReason,
|
|
361
|
+
ListPartnersFields,
|
|
362
|
+
ListPartnersFields1,
|
|
363
|
+
ListPartnersFields1TypedDict,
|
|
364
|
+
ListPartnersFields2,
|
|
365
|
+
ListPartnersFields2TypedDict,
|
|
366
|
+
ListPartnersFields3,
|
|
367
|
+
ListPartnersFields3TypedDict,
|
|
368
|
+
ListPartnersFields4,
|
|
369
|
+
ListPartnersFields4TypedDict,
|
|
370
|
+
ListPartnersFieldsConstraints,
|
|
371
|
+
ListPartnersFieldsConstraintsTypedDict,
|
|
372
|
+
ListPartnersFieldsOptions,
|
|
373
|
+
ListPartnersFieldsOptionsTypedDict,
|
|
374
|
+
ListPartnersFieldsPartnersConstraints,
|
|
375
|
+
ListPartnersFieldsPartnersConstraintsTypedDict,
|
|
376
|
+
ListPartnersFieldsPartnersOptions,
|
|
377
|
+
ListPartnersFieldsPartnersOptionsTypedDict,
|
|
378
|
+
ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyReferralFormData8Type,
|
|
379
|
+
ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyReferralFormDataType,
|
|
380
|
+
ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyType,
|
|
381
|
+
ListPartnersFieldsPartnersResponse200ApplicationJSONType,
|
|
382
|
+
ListPartnersFieldsPartnersResponse200Type,
|
|
383
|
+
ListPartnersFieldsPartnersResponseType,
|
|
384
|
+
ListPartnersFieldsPartnersType,
|
|
385
|
+
ListPartnersFieldsType,
|
|
386
|
+
ListPartnersFieldsTypedDict,
|
|
289
387
|
ListPartnersLinks,
|
|
290
388
|
ListPartnersLinksTypedDict,
|
|
291
389
|
ListPartnersQueryParamSortBy,
|
|
292
390
|
ListPartnersQueryParamSortOrder,
|
|
293
391
|
ListPartnersQueryParamStatus,
|
|
392
|
+
ListPartnersReferralFormData,
|
|
393
|
+
ListPartnersReferralFormDataTypedDict,
|
|
294
394
|
ListPartnersRequest,
|
|
295
395
|
ListPartnersRequestTypedDict,
|
|
296
396
|
ListPartnersResponseBody,
|
|
@@ -303,6 +403,18 @@ if TYPE_CHECKING:
|
|
|
303
403
|
RegisterDomainResponseBody,
|
|
304
404
|
RegisterDomainResponseBodyTypedDict,
|
|
305
405
|
)
|
|
406
|
+
from .rejectbountysubmission import (
|
|
407
|
+
RejectBountySubmissionFiles,
|
|
408
|
+
RejectBountySubmissionFilesTypedDict,
|
|
409
|
+
RejectBountySubmissionRequest,
|
|
410
|
+
RejectBountySubmissionRequestBody,
|
|
411
|
+
RejectBountySubmissionRequestBodyTypedDict,
|
|
412
|
+
RejectBountySubmissionRequestTypedDict,
|
|
413
|
+
RejectBountySubmissionResponseBody,
|
|
414
|
+
RejectBountySubmissionResponseBodyTypedDict,
|
|
415
|
+
RejectBountySubmissionStatus,
|
|
416
|
+
RejectionReason,
|
|
417
|
+
)
|
|
306
418
|
from .retrieveanalytics import (
|
|
307
419
|
Continent,
|
|
308
420
|
Event,
|
|
@@ -417,12 +529,6 @@ if TYPE_CHECKING:
|
|
|
417
529
|
UpdateTagRequestBodyTypedDict,
|
|
418
530
|
UpdateTagRequestTypedDict,
|
|
419
531
|
)
|
|
420
|
-
from .updateworkspace import (
|
|
421
|
-
UpdateWorkspaceRequest,
|
|
422
|
-
UpdateWorkspaceRequestBody,
|
|
423
|
-
UpdateWorkspaceRequestBodyTypedDict,
|
|
424
|
-
UpdateWorkspaceRequestTypedDict,
|
|
425
|
-
)
|
|
426
532
|
from .upsertlink import (
|
|
427
533
|
UpsertLinkRequestBody,
|
|
428
534
|
UpsertLinkRequestBodyTypedDict,
|
|
@@ -448,6 +554,15 @@ if TYPE_CHECKING:
|
|
|
448
554
|
|
|
449
555
|
__all__ = [
|
|
450
556
|
"AccessLevel",
|
|
557
|
+
"ApproveBountySubmissionFiles",
|
|
558
|
+
"ApproveBountySubmissionFilesTypedDict",
|
|
559
|
+
"ApproveBountySubmissionRequest",
|
|
560
|
+
"ApproveBountySubmissionRequestBody",
|
|
561
|
+
"ApproveBountySubmissionRequestBodyTypedDict",
|
|
562
|
+
"ApproveBountySubmissionRequestTypedDict",
|
|
563
|
+
"ApproveBountySubmissionResponseBody",
|
|
564
|
+
"ApproveBountySubmissionResponseBodyTypedDict",
|
|
565
|
+
"ApproveBountySubmissionStatus",
|
|
451
566
|
"BanPartnerRequestBody",
|
|
452
567
|
"BanPartnerRequestBodyTypedDict",
|
|
453
568
|
"BanPartnerResponseBody",
|
|
@@ -480,6 +595,8 @@ __all__ = [
|
|
|
480
595
|
"ClickEventTypedDict",
|
|
481
596
|
"ClickTypedDict",
|
|
482
597
|
"Color",
|
|
598
|
+
"Constraints",
|
|
599
|
+
"ConstraintsTypedDict",
|
|
483
600
|
"Continent",
|
|
484
601
|
"CreateDomainRequestBody",
|
|
485
602
|
"CreateDomainRequestBodyTypedDict",
|
|
@@ -487,6 +604,13 @@ __all__ = [
|
|
|
487
604
|
"CreateFolderRequestBodyTypedDict",
|
|
488
605
|
"CreateLinkRequestBody",
|
|
489
606
|
"CreateLinkRequestBodyTypedDict",
|
|
607
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyReferralFormDataType",
|
|
608
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyType",
|
|
609
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONType",
|
|
610
|
+
"CreatePartnerFieldsPartnersResponse201Type",
|
|
611
|
+
"CreatePartnerFieldsPartnersResponseType",
|
|
612
|
+
"CreatePartnerFieldsPartnersType",
|
|
613
|
+
"CreatePartnerFieldsType",
|
|
490
614
|
"CreatePartnerLinkLinkProps",
|
|
491
615
|
"CreatePartnerLinkLinkPropsTypedDict",
|
|
492
616
|
"CreatePartnerLinkRequestBody",
|
|
@@ -526,6 +650,10 @@ __all__ = [
|
|
|
526
650
|
"CustomerTypedDict",
|
|
527
651
|
"Data",
|
|
528
652
|
"DataTypedDict",
|
|
653
|
+
"DeactivatePartnerRequestBody",
|
|
654
|
+
"DeactivatePartnerRequestBodyTypedDict",
|
|
655
|
+
"DeactivatePartnerResponseBody",
|
|
656
|
+
"DeactivatePartnerResponseBodyTypedDict",
|
|
529
657
|
"DeleteCustomerRequest",
|
|
530
658
|
"DeleteCustomerRequestTypedDict",
|
|
531
659
|
"DeleteCustomerResponseBody",
|
|
@@ -550,7 +678,36 @@ __all__ = [
|
|
|
550
678
|
"DiscountTypedDict",
|
|
551
679
|
"Domains",
|
|
552
680
|
"DomainsTypedDict",
|
|
681
|
+
"Eight",
|
|
682
|
+
"EightTypedDict",
|
|
553
683
|
"Event",
|
|
684
|
+
"Fields",
|
|
685
|
+
"Fields1",
|
|
686
|
+
"Fields1TypedDict",
|
|
687
|
+
"Fields2",
|
|
688
|
+
"Fields2TypedDict",
|
|
689
|
+
"Fields3",
|
|
690
|
+
"Fields3TypedDict",
|
|
691
|
+
"Fields4",
|
|
692
|
+
"Fields4TypedDict",
|
|
693
|
+
"Fields5",
|
|
694
|
+
"Fields5TypedDict",
|
|
695
|
+
"Fields6",
|
|
696
|
+
"Fields6TypedDict",
|
|
697
|
+
"Fields7",
|
|
698
|
+
"Fields7TypedDict",
|
|
699
|
+
"Fields8",
|
|
700
|
+
"Fields8TypedDict",
|
|
701
|
+
"FieldsConstraints",
|
|
702
|
+
"FieldsConstraintsTypedDict",
|
|
703
|
+
"FieldsOptions",
|
|
704
|
+
"FieldsOptionsTypedDict",
|
|
705
|
+
"FieldsType",
|
|
706
|
+
"FieldsTypedDict",
|
|
707
|
+
"Files",
|
|
708
|
+
"FilesTypedDict",
|
|
709
|
+
"Five",
|
|
710
|
+
"FiveTypedDict",
|
|
554
711
|
"Four",
|
|
555
712
|
"GetCustomerDiscount",
|
|
556
713
|
"GetCustomerDiscountTypedDict",
|
|
@@ -592,8 +749,6 @@ __all__ = [
|
|
|
592
749
|
"GetTagsQueryParamSortOrder",
|
|
593
750
|
"GetTagsRequest",
|
|
594
751
|
"GetTagsRequestTypedDict",
|
|
595
|
-
"GetWorkspaceRequest",
|
|
596
|
-
"GetWorkspaceRequestTypedDict",
|
|
597
752
|
"GroupBy",
|
|
598
753
|
"GroupByTypedDict",
|
|
599
754
|
"Ids",
|
|
@@ -608,6 +763,14 @@ __all__ = [
|
|
|
608
763
|
"LinkTypedDict",
|
|
609
764
|
"Links",
|
|
610
765
|
"LinksTypedDict",
|
|
766
|
+
"ListBountySubmissionsQueryParamSortBy",
|
|
767
|
+
"ListBountySubmissionsQueryParamSortOrder",
|
|
768
|
+
"ListBountySubmissionsQueryParamStatus",
|
|
769
|
+
"ListBountySubmissionsRequest",
|
|
770
|
+
"ListBountySubmissionsRequestTypedDict",
|
|
771
|
+
"ListBountySubmissionsResponseBody",
|
|
772
|
+
"ListBountySubmissionsResponseBodyTypedDict",
|
|
773
|
+
"ListBountySubmissionsStatus",
|
|
611
774
|
"ListCommissionsCustomer",
|
|
612
775
|
"ListCommissionsCustomerTypedDict",
|
|
613
776
|
"ListCommissionsPartner",
|
|
@@ -650,11 +813,39 @@ __all__ = [
|
|
|
650
813
|
"ListFoldersRequest",
|
|
651
814
|
"ListFoldersRequestTypedDict",
|
|
652
815
|
"ListPartnersBannedReason",
|
|
816
|
+
"ListPartnersFields",
|
|
817
|
+
"ListPartnersFields1",
|
|
818
|
+
"ListPartnersFields1TypedDict",
|
|
819
|
+
"ListPartnersFields2",
|
|
820
|
+
"ListPartnersFields2TypedDict",
|
|
821
|
+
"ListPartnersFields3",
|
|
822
|
+
"ListPartnersFields3TypedDict",
|
|
823
|
+
"ListPartnersFields4",
|
|
824
|
+
"ListPartnersFields4TypedDict",
|
|
825
|
+
"ListPartnersFieldsConstraints",
|
|
826
|
+
"ListPartnersFieldsConstraintsTypedDict",
|
|
827
|
+
"ListPartnersFieldsOptions",
|
|
828
|
+
"ListPartnersFieldsOptionsTypedDict",
|
|
829
|
+
"ListPartnersFieldsPartnersConstraints",
|
|
830
|
+
"ListPartnersFieldsPartnersConstraintsTypedDict",
|
|
831
|
+
"ListPartnersFieldsPartnersOptions",
|
|
832
|
+
"ListPartnersFieldsPartnersOptionsTypedDict",
|
|
833
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyReferralFormData8Type",
|
|
834
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyReferralFormDataType",
|
|
835
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyType",
|
|
836
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONType",
|
|
837
|
+
"ListPartnersFieldsPartnersResponse200Type",
|
|
838
|
+
"ListPartnersFieldsPartnersResponseType",
|
|
839
|
+
"ListPartnersFieldsPartnersType",
|
|
840
|
+
"ListPartnersFieldsType",
|
|
841
|
+
"ListPartnersFieldsTypedDict",
|
|
653
842
|
"ListPartnersLinks",
|
|
654
843
|
"ListPartnersLinksTypedDict",
|
|
655
844
|
"ListPartnersQueryParamSortBy",
|
|
656
845
|
"ListPartnersQueryParamSortOrder",
|
|
657
846
|
"ListPartnersQueryParamStatus",
|
|
847
|
+
"ListPartnersReferralFormData",
|
|
848
|
+
"ListPartnersReferralFormDataTypedDict",
|
|
658
849
|
"ListPartnersRequest",
|
|
659
850
|
"ListPartnersRequestTypedDict",
|
|
660
851
|
"ListPartnersResponseBody",
|
|
@@ -662,6 +853,8 @@ __all__ = [
|
|
|
662
853
|
"ListPartnersStatus",
|
|
663
854
|
"Mode",
|
|
664
855
|
"One",
|
|
856
|
+
"Options",
|
|
857
|
+
"OptionsTypedDict",
|
|
665
858
|
"Order",
|
|
666
859
|
"Partner",
|
|
667
860
|
"PartnerTypedDict",
|
|
@@ -680,10 +873,22 @@ __all__ = [
|
|
|
680
873
|
"QueryParamTagNamesTypedDict",
|
|
681
874
|
"QueryParamTrigger",
|
|
682
875
|
"Reason",
|
|
876
|
+
"ReferralFormData",
|
|
877
|
+
"ReferralFormDataTypedDict",
|
|
683
878
|
"RegisterDomainRequestBody",
|
|
684
879
|
"RegisterDomainRequestBodyTypedDict",
|
|
685
880
|
"RegisterDomainResponseBody",
|
|
686
881
|
"RegisterDomainResponseBodyTypedDict",
|
|
882
|
+
"RejectBountySubmissionFiles",
|
|
883
|
+
"RejectBountySubmissionFilesTypedDict",
|
|
884
|
+
"RejectBountySubmissionRequest",
|
|
885
|
+
"RejectBountySubmissionRequestBody",
|
|
886
|
+
"RejectBountySubmissionRequestBodyTypedDict",
|
|
887
|
+
"RejectBountySubmissionRequestTypedDict",
|
|
888
|
+
"RejectBountySubmissionResponseBody",
|
|
889
|
+
"RejectBountySubmissionResponseBodyTypedDict",
|
|
890
|
+
"RejectBountySubmissionStatus",
|
|
891
|
+
"RejectionReason",
|
|
687
892
|
"RequestBody",
|
|
688
893
|
"RequestBodyTypedDict",
|
|
689
894
|
"ResponseBody",
|
|
@@ -721,6 +926,10 @@ __all__ = [
|
|
|
721
926
|
"SaleEventTypedDict",
|
|
722
927
|
"SaleType",
|
|
723
928
|
"SaleTypedDict",
|
|
929
|
+
"Seven",
|
|
930
|
+
"SevenTypedDict",
|
|
931
|
+
"Six",
|
|
932
|
+
"SixTypedDict",
|
|
724
933
|
"Sort",
|
|
725
934
|
"SortBy",
|
|
726
935
|
"SortOrder",
|
|
@@ -794,10 +1003,6 @@ __all__ = [
|
|
|
794
1003
|
"UpdateTagRequestBody",
|
|
795
1004
|
"UpdateTagRequestBodyTypedDict",
|
|
796
1005
|
"UpdateTagRequestTypedDict",
|
|
797
|
-
"UpdateWorkspaceRequest",
|
|
798
|
-
"UpdateWorkspaceRequestBody",
|
|
799
|
-
"UpdateWorkspaceRequestBodyTypedDict",
|
|
800
|
-
"UpdateWorkspaceRequestTypedDict",
|
|
801
1006
|
"UpsertLinkRequestBody",
|
|
802
1007
|
"UpsertLinkRequestBodyTypedDict",
|
|
803
1008
|
"UpsertLinkTagIds",
|
|
@@ -819,6 +1024,15 @@ __all__ = [
|
|
|
819
1024
|
]
|
|
820
1025
|
|
|
821
1026
|
_dynamic_imports: dict[str, str] = {
|
|
1027
|
+
"ApproveBountySubmissionFiles": ".approvebountysubmission",
|
|
1028
|
+
"ApproveBountySubmissionFilesTypedDict": ".approvebountysubmission",
|
|
1029
|
+
"ApproveBountySubmissionRequest": ".approvebountysubmission",
|
|
1030
|
+
"ApproveBountySubmissionRequestBody": ".approvebountysubmission",
|
|
1031
|
+
"ApproveBountySubmissionRequestBodyTypedDict": ".approvebountysubmission",
|
|
1032
|
+
"ApproveBountySubmissionRequestTypedDict": ".approvebountysubmission",
|
|
1033
|
+
"ApproveBountySubmissionResponseBody": ".approvebountysubmission",
|
|
1034
|
+
"ApproveBountySubmissionResponseBodyTypedDict": ".approvebountysubmission",
|
|
1035
|
+
"ApproveBountySubmissionStatus": ".approvebountysubmission",
|
|
822
1036
|
"BanPartnerRequestBody": ".banpartner",
|
|
823
1037
|
"BanPartnerRequestBodyTypedDict": ".banpartner",
|
|
824
1038
|
"BanPartnerResponseBody": ".banpartner",
|
|
@@ -868,6 +1082,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
868
1082
|
"TestVariants": ".createlink",
|
|
869
1083
|
"TestVariantsTypedDict": ".createlink",
|
|
870
1084
|
"BannedReason": ".createpartner",
|
|
1085
|
+
"Constraints": ".createpartner",
|
|
1086
|
+
"ConstraintsTypedDict": ".createpartner",
|
|
1087
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyReferralFormDataType": ".createpartner",
|
|
1088
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyType": ".createpartner",
|
|
1089
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONType": ".createpartner",
|
|
1090
|
+
"CreatePartnerFieldsPartnersResponse201Type": ".createpartner",
|
|
1091
|
+
"CreatePartnerFieldsPartnersResponseType": ".createpartner",
|
|
1092
|
+
"CreatePartnerFieldsPartnersType": ".createpartner",
|
|
1093
|
+
"CreatePartnerFieldsType": ".createpartner",
|
|
871
1094
|
"CreatePartnerRequestBody": ".createpartner",
|
|
872
1095
|
"CreatePartnerRequestBodyTypedDict": ".createpartner",
|
|
873
1096
|
"CreatePartnerResponseBody": ".createpartner",
|
|
@@ -879,10 +1102,37 @@ _dynamic_imports: dict[str, str] = {
|
|
|
879
1102
|
"CreatePartnerTagNamesTypedDict": ".createpartner",
|
|
880
1103
|
"CreatePartnerTestVariants": ".createpartner",
|
|
881
1104
|
"CreatePartnerTestVariantsTypedDict": ".createpartner",
|
|
1105
|
+
"Eight": ".createpartner",
|
|
1106
|
+
"EightTypedDict": ".createpartner",
|
|
1107
|
+
"Fields": ".createpartner",
|
|
1108
|
+
"Fields1": ".createpartner",
|
|
1109
|
+
"Fields1TypedDict": ".createpartner",
|
|
1110
|
+
"Fields2": ".createpartner",
|
|
1111
|
+
"Fields2TypedDict": ".createpartner",
|
|
1112
|
+
"Fields3": ".createpartner",
|
|
1113
|
+
"Fields3TypedDict": ".createpartner",
|
|
1114
|
+
"Fields4": ".createpartner",
|
|
1115
|
+
"Fields4TypedDict": ".createpartner",
|
|
1116
|
+
"FieldsConstraints": ".createpartner",
|
|
1117
|
+
"FieldsConstraintsTypedDict": ".createpartner",
|
|
1118
|
+
"FieldsOptions": ".createpartner",
|
|
1119
|
+
"FieldsOptionsTypedDict": ".createpartner",
|
|
1120
|
+
"FieldsType": ".createpartner",
|
|
1121
|
+
"FieldsTypedDict": ".createpartner",
|
|
1122
|
+
"Five": ".createpartner",
|
|
1123
|
+
"FiveTypedDict": ".createpartner",
|
|
882
1124
|
"LinkProps": ".createpartner",
|
|
883
1125
|
"LinkPropsTypedDict": ".createpartner",
|
|
884
1126
|
"Links": ".createpartner",
|
|
885
1127
|
"LinksTypedDict": ".createpartner",
|
|
1128
|
+
"Options": ".createpartner",
|
|
1129
|
+
"OptionsTypedDict": ".createpartner",
|
|
1130
|
+
"ReferralFormData": ".createpartner",
|
|
1131
|
+
"ReferralFormDataTypedDict": ".createpartner",
|
|
1132
|
+
"Seven": ".createpartner",
|
|
1133
|
+
"SevenTypedDict": ".createpartner",
|
|
1134
|
+
"Six": ".createpartner",
|
|
1135
|
+
"SixTypedDict": ".createpartner",
|
|
886
1136
|
"CreatePartnerLinkLinkProps": ".createpartnerlink",
|
|
887
1137
|
"CreatePartnerLinkLinkPropsTypedDict": ".createpartnerlink",
|
|
888
1138
|
"CreatePartnerLinkRequestBody": ".createpartnerlink",
|
|
@@ -910,6 +1160,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
910
1160
|
"Color": ".createtag",
|
|
911
1161
|
"CreateTagRequestBody": ".createtag",
|
|
912
1162
|
"CreateTagRequestBodyTypedDict": ".createtag",
|
|
1163
|
+
"DeactivatePartnerRequestBody": ".deactivatepartner",
|
|
1164
|
+
"DeactivatePartnerRequestBodyTypedDict": ".deactivatepartner",
|
|
1165
|
+
"DeactivatePartnerResponseBody": ".deactivatepartner",
|
|
1166
|
+
"DeactivatePartnerResponseBodyTypedDict": ".deactivatepartner",
|
|
913
1167
|
"DeleteCustomerRequest": ".deletecustomer",
|
|
914
1168
|
"DeleteCustomerRequestTypedDict": ".deletecustomer",
|
|
915
1169
|
"DeleteCustomerResponseBody": ".deletecustomer",
|
|
@@ -988,8 +1242,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
988
1242
|
"GetTagsRequestTypedDict": ".gettags",
|
|
989
1243
|
"Ids": ".gettags",
|
|
990
1244
|
"IdsTypedDict": ".gettags",
|
|
991
|
-
"
|
|
992
|
-
"
|
|
1245
|
+
"Files": ".listbountysubmissions",
|
|
1246
|
+
"FilesTypedDict": ".listbountysubmissions",
|
|
1247
|
+
"ListBountySubmissionsQueryParamSortBy": ".listbountysubmissions",
|
|
1248
|
+
"ListBountySubmissionsQueryParamSortOrder": ".listbountysubmissions",
|
|
1249
|
+
"ListBountySubmissionsQueryParamStatus": ".listbountysubmissions",
|
|
1250
|
+
"ListBountySubmissionsRequest": ".listbountysubmissions",
|
|
1251
|
+
"ListBountySubmissionsRequestTypedDict": ".listbountysubmissions",
|
|
1252
|
+
"ListBountySubmissionsResponseBody": ".listbountysubmissions",
|
|
1253
|
+
"ListBountySubmissionsResponseBodyTypedDict": ".listbountysubmissions",
|
|
1254
|
+
"ListBountySubmissionsStatus": ".listbountysubmissions",
|
|
993
1255
|
"ListCommissionsCustomer": ".listcommissions",
|
|
994
1256
|
"ListCommissionsCustomerTypedDict": ".listcommissions",
|
|
995
1257
|
"ListCommissionsPartner": ".listcommissions",
|
|
@@ -1059,12 +1321,48 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1059
1321
|
"SaleEventTypedDict": ".listevents",
|
|
1060
1322
|
"ListFoldersRequest": ".listfolders",
|
|
1061
1323
|
"ListFoldersRequestTypedDict": ".listfolders",
|
|
1324
|
+
"Fields5": ".listpartners",
|
|
1325
|
+
"Fields5TypedDict": ".listpartners",
|
|
1326
|
+
"Fields6": ".listpartners",
|
|
1327
|
+
"Fields6TypedDict": ".listpartners",
|
|
1328
|
+
"Fields7": ".listpartners",
|
|
1329
|
+
"Fields7TypedDict": ".listpartners",
|
|
1330
|
+
"Fields8": ".listpartners",
|
|
1331
|
+
"Fields8TypedDict": ".listpartners",
|
|
1062
1332
|
"ListPartnersBannedReason": ".listpartners",
|
|
1333
|
+
"ListPartnersFields": ".listpartners",
|
|
1334
|
+
"ListPartnersFields1": ".listpartners",
|
|
1335
|
+
"ListPartnersFields1TypedDict": ".listpartners",
|
|
1336
|
+
"ListPartnersFields2": ".listpartners",
|
|
1337
|
+
"ListPartnersFields2TypedDict": ".listpartners",
|
|
1338
|
+
"ListPartnersFields3": ".listpartners",
|
|
1339
|
+
"ListPartnersFields3TypedDict": ".listpartners",
|
|
1340
|
+
"ListPartnersFields4": ".listpartners",
|
|
1341
|
+
"ListPartnersFields4TypedDict": ".listpartners",
|
|
1342
|
+
"ListPartnersFieldsConstraints": ".listpartners",
|
|
1343
|
+
"ListPartnersFieldsConstraintsTypedDict": ".listpartners",
|
|
1344
|
+
"ListPartnersFieldsOptions": ".listpartners",
|
|
1345
|
+
"ListPartnersFieldsOptionsTypedDict": ".listpartners",
|
|
1346
|
+
"ListPartnersFieldsPartnersConstraints": ".listpartners",
|
|
1347
|
+
"ListPartnersFieldsPartnersConstraintsTypedDict": ".listpartners",
|
|
1348
|
+
"ListPartnersFieldsPartnersOptions": ".listpartners",
|
|
1349
|
+
"ListPartnersFieldsPartnersOptionsTypedDict": ".listpartners",
|
|
1350
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyReferralFormData8Type": ".listpartners",
|
|
1351
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyReferralFormDataType": ".listpartners",
|
|
1352
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONResponseBodyType": ".listpartners",
|
|
1353
|
+
"ListPartnersFieldsPartnersResponse200ApplicationJSONType": ".listpartners",
|
|
1354
|
+
"ListPartnersFieldsPartnersResponse200Type": ".listpartners",
|
|
1355
|
+
"ListPartnersFieldsPartnersResponseType": ".listpartners",
|
|
1356
|
+
"ListPartnersFieldsPartnersType": ".listpartners",
|
|
1357
|
+
"ListPartnersFieldsType": ".listpartners",
|
|
1358
|
+
"ListPartnersFieldsTypedDict": ".listpartners",
|
|
1063
1359
|
"ListPartnersLinks": ".listpartners",
|
|
1064
1360
|
"ListPartnersLinksTypedDict": ".listpartners",
|
|
1065
1361
|
"ListPartnersQueryParamSortBy": ".listpartners",
|
|
1066
1362
|
"ListPartnersQueryParamSortOrder": ".listpartners",
|
|
1067
1363
|
"ListPartnersQueryParamStatus": ".listpartners",
|
|
1364
|
+
"ListPartnersReferralFormData": ".listpartners",
|
|
1365
|
+
"ListPartnersReferralFormDataTypedDict": ".listpartners",
|
|
1068
1366
|
"ListPartnersRequest": ".listpartners",
|
|
1069
1367
|
"ListPartnersRequestTypedDict": ".listpartners",
|
|
1070
1368
|
"ListPartnersResponseBody": ".listpartners",
|
|
@@ -1074,6 +1372,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1074
1372
|
"RegisterDomainRequestBodyTypedDict": ".registerdomain",
|
|
1075
1373
|
"RegisterDomainResponseBody": ".registerdomain",
|
|
1076
1374
|
"RegisterDomainResponseBodyTypedDict": ".registerdomain",
|
|
1375
|
+
"RejectBountySubmissionFiles": ".rejectbountysubmission",
|
|
1376
|
+
"RejectBountySubmissionFilesTypedDict": ".rejectbountysubmission",
|
|
1377
|
+
"RejectBountySubmissionRequest": ".rejectbountysubmission",
|
|
1378
|
+
"RejectBountySubmissionRequestBody": ".rejectbountysubmission",
|
|
1379
|
+
"RejectBountySubmissionRequestBodyTypedDict": ".rejectbountysubmission",
|
|
1380
|
+
"RejectBountySubmissionRequestTypedDict": ".rejectbountysubmission",
|
|
1381
|
+
"RejectBountySubmissionResponseBody": ".rejectbountysubmission",
|
|
1382
|
+
"RejectBountySubmissionResponseBodyTypedDict": ".rejectbountysubmission",
|
|
1383
|
+
"RejectBountySubmissionStatus": ".rejectbountysubmission",
|
|
1384
|
+
"RejectionReason": ".rejectbountysubmission",
|
|
1077
1385
|
"Continent": ".retrieveanalytics",
|
|
1078
1386
|
"Event": ".retrieveanalytics",
|
|
1079
1387
|
"Interval": ".retrieveanalytics",
|
|
@@ -1166,10 +1474,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1166
1474
|
"UpdateTagRequestBody": ".updatetag",
|
|
1167
1475
|
"UpdateTagRequestBodyTypedDict": ".updatetag",
|
|
1168
1476
|
"UpdateTagRequestTypedDict": ".updatetag",
|
|
1169
|
-
"UpdateWorkspaceRequest": ".updateworkspace",
|
|
1170
|
-
"UpdateWorkspaceRequestBody": ".updateworkspace",
|
|
1171
|
-
"UpdateWorkspaceRequestBodyTypedDict": ".updateworkspace",
|
|
1172
|
-
"UpdateWorkspaceRequestTypedDict": ".updateworkspace",
|
|
1173
1477
|
"UpsertLinkRequestBody": ".upsertlink",
|
|
1174
1478
|
"UpsertLinkRequestBodyTypedDict": ".upsertlink",
|
|
1175
1479
|
"UpsertLinkTagIds": ".upsertlink",
|