dub 0.34.1__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/models/components/__init__.py +108 -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 +96 -64
- 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 +230 -19
- dub/models/operations/approvebountysubmission.py +71 -45
- 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 +63 -26
- 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 +71 -26
- 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 +72 -78
- dub/partners.py +288 -0
- dub/sdk.py +0 -3
- dub/utils/__init__.py +10 -1
- {dub-0.34.1.dist-info → dub-0.35.0.dist-info}/METADATA +4 -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/workspaces.py +0 -561
- dub-0.34.1.dist-info/RECORD +0 -146
- {dub-0.34.1.dist-info → dub-0.35.0.dist-info}/WHEEL +0 -0
- {dub-0.34.1.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
|
|
@@ -80,6 +80,15 @@ if TYPE_CHECKING:
|
|
|
80
80
|
)
|
|
81
81
|
from .createpartner import (
|
|
82
82
|
BannedReason,
|
|
83
|
+
Constraints,
|
|
84
|
+
ConstraintsTypedDict,
|
|
85
|
+
CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyReferralFormDataType,
|
|
86
|
+
CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyType,
|
|
87
|
+
CreatePartnerFieldsPartnersResponse201ApplicationJSONType,
|
|
88
|
+
CreatePartnerFieldsPartnersResponse201Type,
|
|
89
|
+
CreatePartnerFieldsPartnersResponseType,
|
|
90
|
+
CreatePartnerFieldsPartnersType,
|
|
91
|
+
CreatePartnerFieldsType,
|
|
83
92
|
CreatePartnerRequestBody,
|
|
84
93
|
CreatePartnerRequestBodyTypedDict,
|
|
85
94
|
CreatePartnerResponseBody,
|
|
@@ -91,10 +100,37 @@ if TYPE_CHECKING:
|
|
|
91
100
|
CreatePartnerTagNamesTypedDict,
|
|
92
101
|
CreatePartnerTestVariants,
|
|
93
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,
|
|
94
122
|
LinkProps,
|
|
95
123
|
LinkPropsTypedDict,
|
|
96
124
|
Links,
|
|
97
125
|
LinksTypedDict,
|
|
126
|
+
Options,
|
|
127
|
+
OptionsTypedDict,
|
|
128
|
+
ReferralFormData,
|
|
129
|
+
ReferralFormDataTypedDict,
|
|
130
|
+
Seven,
|
|
131
|
+
SevenTypedDict,
|
|
132
|
+
Six,
|
|
133
|
+
SixTypedDict,
|
|
98
134
|
)
|
|
99
135
|
from .createpartnerlink import (
|
|
100
136
|
CreatePartnerLinkLinkProps,
|
|
@@ -125,6 +161,12 @@ if TYPE_CHECKING:
|
|
|
125
161
|
PartnerTypedDict,
|
|
126
162
|
)
|
|
127
163
|
from .createtag import Color, CreateTagRequestBody, CreateTagRequestBodyTypedDict
|
|
164
|
+
from .deactivatepartner import (
|
|
165
|
+
DeactivatePartnerRequestBody,
|
|
166
|
+
DeactivatePartnerRequestBodyTypedDict,
|
|
167
|
+
DeactivatePartnerResponseBody,
|
|
168
|
+
DeactivatePartnerResponseBodyTypedDict,
|
|
169
|
+
)
|
|
128
170
|
from .deletecustomer import (
|
|
129
171
|
DeleteCustomerRequest,
|
|
130
172
|
DeleteCustomerRequestTypedDict,
|
|
@@ -220,7 +262,6 @@ if TYPE_CHECKING:
|
|
|
220
262
|
Ids,
|
|
221
263
|
IdsTypedDict,
|
|
222
264
|
)
|
|
223
|
-
from .getworkspace import GetWorkspaceRequest, GetWorkspaceRequestTypedDict
|
|
224
265
|
from .listbountysubmissions import (
|
|
225
266
|
Files,
|
|
226
267
|
FilesTypedDict,
|
|
@@ -308,12 +349,48 @@ if TYPE_CHECKING:
|
|
|
308
349
|
)
|
|
309
350
|
from .listfolders import ListFoldersRequest, ListFoldersRequestTypedDict
|
|
310
351
|
from .listpartners import (
|
|
352
|
+
Fields5,
|
|
353
|
+
Fields5TypedDict,
|
|
354
|
+
Fields6,
|
|
355
|
+
Fields6TypedDict,
|
|
356
|
+
Fields7,
|
|
357
|
+
Fields7TypedDict,
|
|
358
|
+
Fields8,
|
|
359
|
+
Fields8TypedDict,
|
|
311
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,
|
|
312
387
|
ListPartnersLinks,
|
|
313
388
|
ListPartnersLinksTypedDict,
|
|
314
389
|
ListPartnersQueryParamSortBy,
|
|
315
390
|
ListPartnersQueryParamSortOrder,
|
|
316
391
|
ListPartnersQueryParamStatus,
|
|
392
|
+
ListPartnersReferralFormData,
|
|
393
|
+
ListPartnersReferralFormDataTypedDict,
|
|
317
394
|
ListPartnersRequest,
|
|
318
395
|
ListPartnersRequestTypedDict,
|
|
319
396
|
ListPartnersResponseBody,
|
|
@@ -452,12 +529,6 @@ if TYPE_CHECKING:
|
|
|
452
529
|
UpdateTagRequestBodyTypedDict,
|
|
453
530
|
UpdateTagRequestTypedDict,
|
|
454
531
|
)
|
|
455
|
-
from .updateworkspace import (
|
|
456
|
-
UpdateWorkspaceRequest,
|
|
457
|
-
UpdateWorkspaceRequestBody,
|
|
458
|
-
UpdateWorkspaceRequestBodyTypedDict,
|
|
459
|
-
UpdateWorkspaceRequestTypedDict,
|
|
460
|
-
)
|
|
461
532
|
from .upsertlink import (
|
|
462
533
|
UpsertLinkRequestBody,
|
|
463
534
|
UpsertLinkRequestBodyTypedDict,
|
|
@@ -524,6 +595,8 @@ __all__ = [
|
|
|
524
595
|
"ClickEventTypedDict",
|
|
525
596
|
"ClickTypedDict",
|
|
526
597
|
"Color",
|
|
598
|
+
"Constraints",
|
|
599
|
+
"ConstraintsTypedDict",
|
|
527
600
|
"Continent",
|
|
528
601
|
"CreateDomainRequestBody",
|
|
529
602
|
"CreateDomainRequestBodyTypedDict",
|
|
@@ -531,6 +604,13 @@ __all__ = [
|
|
|
531
604
|
"CreateFolderRequestBodyTypedDict",
|
|
532
605
|
"CreateLinkRequestBody",
|
|
533
606
|
"CreateLinkRequestBodyTypedDict",
|
|
607
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyReferralFormDataType",
|
|
608
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONResponseBodyType",
|
|
609
|
+
"CreatePartnerFieldsPartnersResponse201ApplicationJSONType",
|
|
610
|
+
"CreatePartnerFieldsPartnersResponse201Type",
|
|
611
|
+
"CreatePartnerFieldsPartnersResponseType",
|
|
612
|
+
"CreatePartnerFieldsPartnersType",
|
|
613
|
+
"CreatePartnerFieldsType",
|
|
534
614
|
"CreatePartnerLinkLinkProps",
|
|
535
615
|
"CreatePartnerLinkLinkPropsTypedDict",
|
|
536
616
|
"CreatePartnerLinkRequestBody",
|
|
@@ -570,6 +650,10 @@ __all__ = [
|
|
|
570
650
|
"CustomerTypedDict",
|
|
571
651
|
"Data",
|
|
572
652
|
"DataTypedDict",
|
|
653
|
+
"DeactivatePartnerRequestBody",
|
|
654
|
+
"DeactivatePartnerRequestBodyTypedDict",
|
|
655
|
+
"DeactivatePartnerResponseBody",
|
|
656
|
+
"DeactivatePartnerResponseBodyTypedDict",
|
|
573
657
|
"DeleteCustomerRequest",
|
|
574
658
|
"DeleteCustomerRequestTypedDict",
|
|
575
659
|
"DeleteCustomerResponseBody",
|
|
@@ -594,9 +678,36 @@ __all__ = [
|
|
|
594
678
|
"DiscountTypedDict",
|
|
595
679
|
"Domains",
|
|
596
680
|
"DomainsTypedDict",
|
|
681
|
+
"Eight",
|
|
682
|
+
"EightTypedDict",
|
|
597
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",
|
|
598
707
|
"Files",
|
|
599
708
|
"FilesTypedDict",
|
|
709
|
+
"Five",
|
|
710
|
+
"FiveTypedDict",
|
|
600
711
|
"Four",
|
|
601
712
|
"GetCustomerDiscount",
|
|
602
713
|
"GetCustomerDiscountTypedDict",
|
|
@@ -638,8 +749,6 @@ __all__ = [
|
|
|
638
749
|
"GetTagsQueryParamSortOrder",
|
|
639
750
|
"GetTagsRequest",
|
|
640
751
|
"GetTagsRequestTypedDict",
|
|
641
|
-
"GetWorkspaceRequest",
|
|
642
|
-
"GetWorkspaceRequestTypedDict",
|
|
643
752
|
"GroupBy",
|
|
644
753
|
"GroupByTypedDict",
|
|
645
754
|
"Ids",
|
|
@@ -704,11 +813,39 @@ __all__ = [
|
|
|
704
813
|
"ListFoldersRequest",
|
|
705
814
|
"ListFoldersRequestTypedDict",
|
|
706
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",
|
|
707
842
|
"ListPartnersLinks",
|
|
708
843
|
"ListPartnersLinksTypedDict",
|
|
709
844
|
"ListPartnersQueryParamSortBy",
|
|
710
845
|
"ListPartnersQueryParamSortOrder",
|
|
711
846
|
"ListPartnersQueryParamStatus",
|
|
847
|
+
"ListPartnersReferralFormData",
|
|
848
|
+
"ListPartnersReferralFormDataTypedDict",
|
|
712
849
|
"ListPartnersRequest",
|
|
713
850
|
"ListPartnersRequestTypedDict",
|
|
714
851
|
"ListPartnersResponseBody",
|
|
@@ -716,6 +853,8 @@ __all__ = [
|
|
|
716
853
|
"ListPartnersStatus",
|
|
717
854
|
"Mode",
|
|
718
855
|
"One",
|
|
856
|
+
"Options",
|
|
857
|
+
"OptionsTypedDict",
|
|
719
858
|
"Order",
|
|
720
859
|
"Partner",
|
|
721
860
|
"PartnerTypedDict",
|
|
@@ -734,6 +873,8 @@ __all__ = [
|
|
|
734
873
|
"QueryParamTagNamesTypedDict",
|
|
735
874
|
"QueryParamTrigger",
|
|
736
875
|
"Reason",
|
|
876
|
+
"ReferralFormData",
|
|
877
|
+
"ReferralFormDataTypedDict",
|
|
737
878
|
"RegisterDomainRequestBody",
|
|
738
879
|
"RegisterDomainRequestBodyTypedDict",
|
|
739
880
|
"RegisterDomainResponseBody",
|
|
@@ -785,6 +926,10 @@ __all__ = [
|
|
|
785
926
|
"SaleEventTypedDict",
|
|
786
927
|
"SaleType",
|
|
787
928
|
"SaleTypedDict",
|
|
929
|
+
"Seven",
|
|
930
|
+
"SevenTypedDict",
|
|
931
|
+
"Six",
|
|
932
|
+
"SixTypedDict",
|
|
788
933
|
"Sort",
|
|
789
934
|
"SortBy",
|
|
790
935
|
"SortOrder",
|
|
@@ -858,10 +1003,6 @@ __all__ = [
|
|
|
858
1003
|
"UpdateTagRequestBody",
|
|
859
1004
|
"UpdateTagRequestBodyTypedDict",
|
|
860
1005
|
"UpdateTagRequestTypedDict",
|
|
861
|
-
"UpdateWorkspaceRequest",
|
|
862
|
-
"UpdateWorkspaceRequestBody",
|
|
863
|
-
"UpdateWorkspaceRequestBodyTypedDict",
|
|
864
|
-
"UpdateWorkspaceRequestTypedDict",
|
|
865
1006
|
"UpsertLinkRequestBody",
|
|
866
1007
|
"UpsertLinkRequestBodyTypedDict",
|
|
867
1008
|
"UpsertLinkTagIds",
|
|
@@ -941,6 +1082,15 @@ _dynamic_imports: dict[str, str] = {
|
|
|
941
1082
|
"TestVariants": ".createlink",
|
|
942
1083
|
"TestVariantsTypedDict": ".createlink",
|
|
943
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",
|
|
944
1094
|
"CreatePartnerRequestBody": ".createpartner",
|
|
945
1095
|
"CreatePartnerRequestBodyTypedDict": ".createpartner",
|
|
946
1096
|
"CreatePartnerResponseBody": ".createpartner",
|
|
@@ -952,10 +1102,37 @@ _dynamic_imports: dict[str, str] = {
|
|
|
952
1102
|
"CreatePartnerTagNamesTypedDict": ".createpartner",
|
|
953
1103
|
"CreatePartnerTestVariants": ".createpartner",
|
|
954
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",
|
|
955
1124
|
"LinkProps": ".createpartner",
|
|
956
1125
|
"LinkPropsTypedDict": ".createpartner",
|
|
957
1126
|
"Links": ".createpartner",
|
|
958
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",
|
|
959
1136
|
"CreatePartnerLinkLinkProps": ".createpartnerlink",
|
|
960
1137
|
"CreatePartnerLinkLinkPropsTypedDict": ".createpartnerlink",
|
|
961
1138
|
"CreatePartnerLinkRequestBody": ".createpartnerlink",
|
|
@@ -983,6 +1160,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
983
1160
|
"Color": ".createtag",
|
|
984
1161
|
"CreateTagRequestBody": ".createtag",
|
|
985
1162
|
"CreateTagRequestBodyTypedDict": ".createtag",
|
|
1163
|
+
"DeactivatePartnerRequestBody": ".deactivatepartner",
|
|
1164
|
+
"DeactivatePartnerRequestBodyTypedDict": ".deactivatepartner",
|
|
1165
|
+
"DeactivatePartnerResponseBody": ".deactivatepartner",
|
|
1166
|
+
"DeactivatePartnerResponseBodyTypedDict": ".deactivatepartner",
|
|
986
1167
|
"DeleteCustomerRequest": ".deletecustomer",
|
|
987
1168
|
"DeleteCustomerRequestTypedDict": ".deletecustomer",
|
|
988
1169
|
"DeleteCustomerResponseBody": ".deletecustomer",
|
|
@@ -1061,8 +1242,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1061
1242
|
"GetTagsRequestTypedDict": ".gettags",
|
|
1062
1243
|
"Ids": ".gettags",
|
|
1063
1244
|
"IdsTypedDict": ".gettags",
|
|
1064
|
-
"GetWorkspaceRequest": ".getworkspace",
|
|
1065
|
-
"GetWorkspaceRequestTypedDict": ".getworkspace",
|
|
1066
1245
|
"Files": ".listbountysubmissions",
|
|
1067
1246
|
"FilesTypedDict": ".listbountysubmissions",
|
|
1068
1247
|
"ListBountySubmissionsQueryParamSortBy": ".listbountysubmissions",
|
|
@@ -1142,12 +1321,48 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1142
1321
|
"SaleEventTypedDict": ".listevents",
|
|
1143
1322
|
"ListFoldersRequest": ".listfolders",
|
|
1144
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",
|
|
1145
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",
|
|
1146
1359
|
"ListPartnersLinks": ".listpartners",
|
|
1147
1360
|
"ListPartnersLinksTypedDict": ".listpartners",
|
|
1148
1361
|
"ListPartnersQueryParamSortBy": ".listpartners",
|
|
1149
1362
|
"ListPartnersQueryParamSortOrder": ".listpartners",
|
|
1150
1363
|
"ListPartnersQueryParamStatus": ".listpartners",
|
|
1364
|
+
"ListPartnersReferralFormData": ".listpartners",
|
|
1365
|
+
"ListPartnersReferralFormDataTypedDict": ".listpartners",
|
|
1151
1366
|
"ListPartnersRequest": ".listpartners",
|
|
1152
1367
|
"ListPartnersRequestTypedDict": ".listpartners",
|
|
1153
1368
|
"ListPartnersResponseBody": ".listpartners",
|
|
@@ -1259,10 +1474,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1259
1474
|
"UpdateTagRequestBody": ".updatetag",
|
|
1260
1475
|
"UpdateTagRequestBodyTypedDict": ".updatetag",
|
|
1261
1476
|
"UpdateTagRequestTypedDict": ".updatetag",
|
|
1262
|
-
"UpdateWorkspaceRequest": ".updateworkspace",
|
|
1263
|
-
"UpdateWorkspaceRequestBody": ".updateworkspace",
|
|
1264
|
-
"UpdateWorkspaceRequestBodyTypedDict": ".updateworkspace",
|
|
1265
|
-
"UpdateWorkspaceRequestTypedDict": ".updateworkspace",
|
|
1266
1477
|
"UpsertLinkRequestBody": ".upsertlink",
|
|
1267
1478
|
"UpsertLinkRequestBodyTypedDict": ".upsertlink",
|
|
1268
1479
|
"UpsertLinkTagIds": ".upsertlink",
|