dub 0.27.2__py3-none-any.whl → 0.27.3__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/models/components/__init__.py +3 -2
- dub/models/components/clickevent.py +92 -47
- dub/models/components/leadcreatedevent.py +66 -21
- dub/models/components/leadevent.py +126 -48
- dub/models/components/linkclickedevent.py +66 -21
- dub/models/components/linkschema.py +26 -20
- dub/models/components/linkwebhookevent.py +33 -21
- dub/models/components/partnerenrolledevent.py +6 -6
- dub/models/components/salecreatedevent.py +66 -21
- dub/models/components/saleevent.py +206 -123
- dub/models/errors/__init__.py +3 -2
- dub/models/operations/__init__.py +3 -2
- dub/models/operations/bulkcreatelinks.py +25 -25
- dub/models/operations/bulkupdatelinks.py +25 -25
- dub/models/operations/createlink.py +25 -25
- dub/models/operations/createpartner.py +6 -6
- dub/models/operations/getlinks.py +2 -2
- dub/models/operations/getlinkscount.py +2 -2
- dub/models/operations/listevents.py +31 -22
- dub/models/operations/listpartners.py +6 -6
- dub/models/operations/retrieveanalytics.py +31 -22
- dub/models/operations/retrievelinks.py +6 -6
- dub/models/operations/updatelink.py +25 -25
- dub/models/operations/upsertlink.py +25 -25
- dub/sdk.py +1 -1
- dub/utils/__init__.py +3 -2
- {dub-0.27.2.dist-info → dub-0.27.3.dist-info}/METADATA +2 -2
- {dub-0.27.2.dist-info → dub-0.27.3.dist-info}/RECORD +31 -31
- {dub-0.27.2.dist-info → dub-0.27.3.dist-info}/LICENSE +0 -0
- {dub-0.27.2.dist-info → dub-0.27.3.dist-info}/WHEEL +0 -0
|
@@ -41,11 +41,11 @@ class LinkTypedDict(TypedDict):
|
|
|
41
41
|
clicks: NotRequired[float]
|
|
42
42
|
r"""The number of clicks on the short link."""
|
|
43
43
|
leads: NotRequired[float]
|
|
44
|
-
r"""The number of leads the short
|
|
44
|
+
r"""The number of leads the short link has generated."""
|
|
45
45
|
sales: NotRequired[float]
|
|
46
|
-
r"""The number of sales the short
|
|
46
|
+
r"""The total number of sales (includes recurring sales) generated by the short link."""
|
|
47
47
|
sale_amount: NotRequired[float]
|
|
48
|
-
r"""The total dollar
|
|
48
|
+
r"""The total dollar value of sales (in cents) generated by the short link."""
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
class Link(BaseModel):
|
|
@@ -68,10 +68,10 @@ class Link(BaseModel):
|
|
|
68
68
|
r"""The number of clicks on the short link."""
|
|
69
69
|
|
|
70
70
|
leads: Optional[float] = 0
|
|
71
|
-
r"""The number of leads the short
|
|
71
|
+
r"""The number of leads the short link has generated."""
|
|
72
72
|
|
|
73
73
|
sales: Optional[float] = 0
|
|
74
|
-
r"""The number of sales the short
|
|
74
|
+
r"""The total number of sales (includes recurring sales) generated by the short link."""
|
|
75
75
|
|
|
76
76
|
sale_amount: Annotated[Optional[float], pydantic.Field(alias="saleAmount")] = 0
|
|
77
|
-
r"""The total dollar
|
|
77
|
+
r"""The total dollar value of sales (in cents) generated by the short link."""
|
|
@@ -60,10 +60,6 @@ class UpdateLinkRequestBodyTypedDict(TypedDict):
|
|
|
60
60
|
r"""Whether to track conversions for the short link. Defaults to `false` if not provided."""
|
|
61
61
|
archived: NotRequired[bool]
|
|
62
62
|
r"""Whether the short link is archived. Defaults to `false` if not provided."""
|
|
63
|
-
public_stats: NotRequired[bool]
|
|
64
|
-
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
65
|
-
tag_id: NotRequired[Nullable[str]]
|
|
66
|
-
r"""The unique ID of the tag assigned to the short link. This field is deprecated – use `tagIds` instead."""
|
|
67
63
|
tag_ids: NotRequired[UpdateLinkTagIdsTypedDict]
|
|
68
64
|
r"""The unique IDs of the tags assigned to the short link."""
|
|
69
65
|
tag_names: NotRequired[UpdateLinkTagNamesTypedDict]
|
|
@@ -117,6 +113,10 @@ class UpdateLinkRequestBodyTypedDict(TypedDict):
|
|
|
117
113
|
r"""The date and time when the tests started."""
|
|
118
114
|
test_completed_at: NotRequired[Nullable[str]]
|
|
119
115
|
r"""The date and time when the tests were or will be completed."""
|
|
116
|
+
public_stats: NotRequired[bool]
|
|
117
|
+
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
118
|
+
tag_id: NotRequired[Nullable[str]]
|
|
119
|
+
r"""Deprecated: Use `tagIds` instead. The unique ID of the tag assigned to the short link."""
|
|
120
120
|
|
|
121
121
|
|
|
122
122
|
class UpdateLinkRequestBody(BaseModel):
|
|
@@ -157,24 +157,6 @@ class UpdateLinkRequestBody(BaseModel):
|
|
|
157
157
|
archived: Optional[bool] = None
|
|
158
158
|
r"""Whether the short link is archived. Defaults to `false` if not provided."""
|
|
159
159
|
|
|
160
|
-
public_stats: Annotated[
|
|
161
|
-
Optional[bool],
|
|
162
|
-
pydantic.Field(
|
|
163
|
-
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
164
|
-
alias="publicStats",
|
|
165
|
-
),
|
|
166
|
-
] = None
|
|
167
|
-
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
168
|
-
|
|
169
|
-
tag_id: Annotated[
|
|
170
|
-
OptionalNullable[str],
|
|
171
|
-
pydantic.Field(
|
|
172
|
-
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
173
|
-
alias="tagId",
|
|
174
|
-
),
|
|
175
|
-
] = UNSET
|
|
176
|
-
r"""The unique ID of the tag assigned to the short link. This field is deprecated – use `tagIds` instead."""
|
|
177
|
-
|
|
178
160
|
tag_ids: Annotated[Optional[UpdateLinkTagIds], pydantic.Field(alias="tagIds")] = (
|
|
179
161
|
None
|
|
180
162
|
)
|
|
@@ -274,6 +256,24 @@ class UpdateLinkRequestBody(BaseModel):
|
|
|
274
256
|
] = UNSET
|
|
275
257
|
r"""The date and time when the tests were or will be completed."""
|
|
276
258
|
|
|
259
|
+
public_stats: Annotated[
|
|
260
|
+
Optional[bool],
|
|
261
|
+
pydantic.Field(
|
|
262
|
+
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
263
|
+
alias="publicStats",
|
|
264
|
+
),
|
|
265
|
+
] = None
|
|
266
|
+
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
267
|
+
|
|
268
|
+
tag_id: Annotated[
|
|
269
|
+
OptionalNullable[str],
|
|
270
|
+
pydantic.Field(
|
|
271
|
+
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
272
|
+
alias="tagId",
|
|
273
|
+
),
|
|
274
|
+
] = UNSET
|
|
275
|
+
r"""Deprecated: Use `tagIds` instead. The unique ID of the tag assigned to the short link."""
|
|
276
|
+
|
|
277
277
|
@model_serializer(mode="wrap")
|
|
278
278
|
def serialize_model(self, handler):
|
|
279
279
|
optional_fields = [
|
|
@@ -286,8 +286,6 @@ class UpdateLinkRequestBody(BaseModel):
|
|
|
286
286
|
"partnerId",
|
|
287
287
|
"trackConversion",
|
|
288
288
|
"archived",
|
|
289
|
-
"publicStats",
|
|
290
|
-
"tagId",
|
|
291
289
|
"tagIds",
|
|
292
290
|
"tagNames",
|
|
293
291
|
"folderId",
|
|
@@ -315,13 +313,14 @@ class UpdateLinkRequestBody(BaseModel):
|
|
|
315
313
|
"testVariants",
|
|
316
314
|
"testStartedAt",
|
|
317
315
|
"testCompletedAt",
|
|
316
|
+
"publicStats",
|
|
317
|
+
"tagId",
|
|
318
318
|
]
|
|
319
319
|
nullable_fields = [
|
|
320
320
|
"externalId",
|
|
321
321
|
"tenantId",
|
|
322
322
|
"programId",
|
|
323
323
|
"partnerId",
|
|
324
|
-
"tagId",
|
|
325
324
|
"folderId",
|
|
326
325
|
"comments",
|
|
327
326
|
"expiresAt",
|
|
@@ -344,6 +343,7 @@ class UpdateLinkRequestBody(BaseModel):
|
|
|
344
343
|
"testVariants",
|
|
345
344
|
"testStartedAt",
|
|
346
345
|
"testCompletedAt",
|
|
346
|
+
"tagId",
|
|
347
347
|
]
|
|
348
348
|
null_default_fields = []
|
|
349
349
|
|
|
@@ -63,10 +63,6 @@ class UpsertLinkRequestBodyTypedDict(TypedDict):
|
|
|
63
63
|
r"""Whether to track conversions for the short link. Defaults to `false` if not provided."""
|
|
64
64
|
archived: NotRequired[bool]
|
|
65
65
|
r"""Whether the short link is archived. Defaults to `false` if not provided."""
|
|
66
|
-
public_stats: NotRequired[bool]
|
|
67
|
-
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
68
|
-
tag_id: NotRequired[Nullable[str]]
|
|
69
|
-
r"""The unique ID of the tag assigned to the short link. This field is deprecated – use `tagIds` instead."""
|
|
70
66
|
tag_ids: NotRequired[UpsertLinkTagIdsTypedDict]
|
|
71
67
|
r"""The unique IDs of the tags assigned to the short link."""
|
|
72
68
|
tag_names: NotRequired[UpsertLinkTagNamesTypedDict]
|
|
@@ -121,6 +117,10 @@ class UpsertLinkRequestBodyTypedDict(TypedDict):
|
|
|
121
117
|
r"""The date and time when the tests started."""
|
|
122
118
|
test_completed_at: NotRequired[Nullable[str]]
|
|
123
119
|
r"""The date and time when the tests were or will be completed."""
|
|
120
|
+
public_stats: NotRequired[bool]
|
|
121
|
+
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
122
|
+
tag_id: NotRequired[Nullable[str]]
|
|
123
|
+
r"""Deprecated: Use `tagIds` instead. The unique ID of the tag assigned to the short link."""
|
|
124
124
|
|
|
125
125
|
|
|
126
126
|
class UpsertLinkRequestBody(BaseModel):
|
|
@@ -167,24 +167,6 @@ class UpsertLinkRequestBody(BaseModel):
|
|
|
167
167
|
archived: Optional[bool] = None
|
|
168
168
|
r"""Whether the short link is archived. Defaults to `false` if not provided."""
|
|
169
169
|
|
|
170
|
-
public_stats: Annotated[
|
|
171
|
-
Optional[bool],
|
|
172
|
-
pydantic.Field(
|
|
173
|
-
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
174
|
-
alias="publicStats",
|
|
175
|
-
),
|
|
176
|
-
] = None
|
|
177
|
-
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
178
|
-
|
|
179
|
-
tag_id: Annotated[
|
|
180
|
-
OptionalNullable[str],
|
|
181
|
-
pydantic.Field(
|
|
182
|
-
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
183
|
-
alias="tagId",
|
|
184
|
-
),
|
|
185
|
-
] = UNSET
|
|
186
|
-
r"""The unique ID of the tag assigned to the short link. This field is deprecated – use `tagIds` instead."""
|
|
187
|
-
|
|
188
170
|
tag_ids: Annotated[Optional[UpsertLinkTagIds], pydantic.Field(alias="tagIds")] = (
|
|
189
171
|
None
|
|
190
172
|
)
|
|
@@ -285,6 +267,24 @@ class UpsertLinkRequestBody(BaseModel):
|
|
|
285
267
|
] = UNSET
|
|
286
268
|
r"""The date and time when the tests were or will be completed."""
|
|
287
269
|
|
|
270
|
+
public_stats: Annotated[
|
|
271
|
+
Optional[bool],
|
|
272
|
+
pydantic.Field(
|
|
273
|
+
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
274
|
+
alias="publicStats",
|
|
275
|
+
),
|
|
276
|
+
] = None
|
|
277
|
+
r"""Deprecated: Use `dashboard` instead. Whether the short link's stats are publicly accessible. Defaults to `false` if not provided."""
|
|
278
|
+
|
|
279
|
+
tag_id: Annotated[
|
|
280
|
+
OptionalNullable[str],
|
|
281
|
+
pydantic.Field(
|
|
282
|
+
deprecated="warning: ** DEPRECATED ** - This will be removed in a future release, please migrate away from it as soon as possible.",
|
|
283
|
+
alias="tagId",
|
|
284
|
+
),
|
|
285
|
+
] = UNSET
|
|
286
|
+
r"""Deprecated: Use `tagIds` instead. The unique ID of the tag assigned to the short link."""
|
|
287
|
+
|
|
288
288
|
@model_serializer(mode="wrap")
|
|
289
289
|
def serialize_model(self, handler):
|
|
290
290
|
optional_fields = [
|
|
@@ -298,8 +298,6 @@ class UpsertLinkRequestBody(BaseModel):
|
|
|
298
298
|
"prefix",
|
|
299
299
|
"trackConversion",
|
|
300
300
|
"archived",
|
|
301
|
-
"publicStats",
|
|
302
|
-
"tagId",
|
|
303
301
|
"tagIds",
|
|
304
302
|
"tagNames",
|
|
305
303
|
"folderId",
|
|
@@ -327,13 +325,14 @@ class UpsertLinkRequestBody(BaseModel):
|
|
|
327
325
|
"testVariants",
|
|
328
326
|
"testStartedAt",
|
|
329
327
|
"testCompletedAt",
|
|
328
|
+
"publicStats",
|
|
329
|
+
"tagId",
|
|
330
330
|
]
|
|
331
331
|
nullable_fields = [
|
|
332
332
|
"externalId",
|
|
333
333
|
"tenantId",
|
|
334
334
|
"programId",
|
|
335
335
|
"partnerId",
|
|
336
|
-
"tagId",
|
|
337
336
|
"folderId",
|
|
338
337
|
"comments",
|
|
339
338
|
"expiresAt",
|
|
@@ -356,6 +355,7 @@ class UpsertLinkRequestBody(BaseModel):
|
|
|
356
355
|
"testVariants",
|
|
357
356
|
"testStartedAt",
|
|
358
357
|
"testCompletedAt",
|
|
358
|
+
"tagId",
|
|
359
359
|
]
|
|
360
360
|
null_default_fields = []
|
|
361
361
|
|
dub/sdk.py
CHANGED
|
@@ -31,7 +31,7 @@ if TYPE_CHECKING:
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class Dub(BaseSDK):
|
|
34
|
-
r"""Dub API: Dub is link
|
|
34
|
+
r"""Dub API: Dub is the modern link attribution platform for short links, conversion tracking, and affiliate programs."""
|
|
35
35
|
|
|
36
36
|
links: "Links"
|
|
37
37
|
analytics: "Analytics"
|
dub/utils/__init__.py
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from typing import TYPE_CHECKING
|
|
4
4
|
from importlib import import_module
|
|
5
|
+
import builtins
|
|
5
6
|
|
|
6
7
|
if TYPE_CHECKING:
|
|
7
8
|
from .annotations import get_discriminator
|
|
@@ -180,5 +181,5 @@ def __getattr__(attr_name: str) -> object:
|
|
|
180
181
|
|
|
181
182
|
|
|
182
183
|
def __dir__():
|
|
183
|
-
lazy_attrs = list(_dynamic_imports.keys())
|
|
184
|
-
return sorted(lazy_attrs)
|
|
184
|
+
lazy_attrs = builtins.list(_dynamic_imports.keys())
|
|
185
|
+
return builtins.sorted(lazy_attrs)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dub
|
|
3
|
-
Version: 0.27.
|
|
3
|
+
Version: 0.27.3
|
|
4
4
|
Summary: Python Client SDK Generated by Speakeasy
|
|
5
5
|
Author: Speakeasy
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -32,7 +32,7 @@ Learn more about the Dub.co Python SDK in the [official documentation](https://d
|
|
|
32
32
|
<!-- Start Summary [summary] -->
|
|
33
33
|
## Summary
|
|
34
34
|
|
|
35
|
-
Dub API: Dub is link
|
|
35
|
+
Dub API: Dub is the modern link attribution platform for short links, conversion tracking, and affiliate programs.
|
|
36
36
|
<!-- End Summary [summary] -->
|
|
37
37
|
|
|
38
38
|
<!-- Start Table of Contents [toc] -->
|
|
@@ -3,7 +3,7 @@ dub/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
|
|
|
3
3
|
dub/_hooks/registration.py,sha256=tT-1Cjp5ax1DL-84HBNWPy4wAwgP-0aI4-asLfnkIlw,625
|
|
4
4
|
dub/_hooks/sdkhooks.py,sha256=2rLEjSz1xFGWabNs1voFn0lXSCqkS38bdKVFdnBJufE,2553
|
|
5
5
|
dub/_hooks/types.py,sha256=5vcNbFBNpCxqI7ZebiBtut7T_Gz2i36L5MjTqGvxV7Y,3035
|
|
6
|
-
dub/_version.py,sha256=
|
|
6
|
+
dub/_version.py,sha256=CUoN7Z0hKnqjWjstiGOanEz4-JP3C74Rjit6NEZvHzI,450
|
|
7
7
|
dub/analytics.py,sha256=D4s6aPCiCVxwbG2bIvanBiaDtYZgN1xMwu5DOnuRrVg,12342
|
|
8
8
|
dub/basesdk.py,sha256=6hqUvjS1s4AdIw3STtyBxJwgjqRYCK3ieGqPJVpjBh8,11813
|
|
9
9
|
dub/commissions.py,sha256=OzDAs372f4VszeKJNkR4pR7q5SNI4JiCwz-bzny0YMc,24346
|
|
@@ -15,7 +15,7 @@ dub/folders.py,sha256=6hlJheqGnEu8noq3A-iahury-TxtLJ3e_YiIPr8NDl8,47602
|
|
|
15
15
|
dub/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
16
16
|
dub/links.py,sha256=vnP7Uu41PtsOr2mqzROSNxQB3InnOoxq4_zNw3_q5L8,121880
|
|
17
17
|
dub/models/__init__.py,sha256=wIW9sbvSKlrGyoPY4mXvHqw-_Inpl6zqpN6U6j-w6SU,83
|
|
18
|
-
dub/models/components/__init__.py,sha256=
|
|
18
|
+
dub/models/components/__init__.py,sha256=HzQC8XPE760LsSff1lkj2QzwJV8SupKRO3T93E4I4ZI,22348
|
|
19
19
|
dub/models/components/analyticsbrowsers.py,sha256=f6qMrkPFf38u3_PIovvdIc0hsX1YpYEaPxNwbXzkoeY,1172
|
|
20
20
|
dub/models/components/analyticscities.py,sha256=zef22QucFtrOCkPDrpvpNlrbX465_0dFHyZ5va_LRRI,1666
|
|
21
21
|
dub/models/components/analyticscontinents.py,sha256=D_SQTm1Xp_pOt7qZTLJVo2B3RQUP8k3MQmsYRQYbjlI,1616
|
|
@@ -30,30 +30,30 @@ dub/models/components/analyticstimeseries.py,sha256=ZEZpE6oX0FPeiy5snz-kwYhXE9pw
|
|
|
30
30
|
dub/models/components/analyticstoplinks.py,sha256=RvhyKQcmDT47F-4sPojhhDgvFYRZCA5k257JrndHSp8,3649
|
|
31
31
|
dub/models/components/analyticstopurls.py,sha256=WN4oF32SSXUlFPpWvx7jKype0SfdBsX1BvrkaKjClRM,1122
|
|
32
32
|
dub/models/components/analyticstriggers.py,sha256=reWQ1cQDNgPc_cDhGrMv5EplFviiyWZ0nYTvU7bm3C0,1484
|
|
33
|
-
dub/models/components/clickevent.py,sha256=
|
|
33
|
+
dub/models/components/clickevent.py,sha256=rU74Rmh2IikQNR7COpqBr83OMLqj4AgK_QwhrMb02xA,42540
|
|
34
34
|
dub/models/components/commissioncreatedevent.py,sha256=BOhnoO1CFd40suVoEsKlFsZUTRbmVTdEOy6Oq-jmqjo,8573
|
|
35
35
|
dub/models/components/continentcode.py,sha256=YFw3_x0w7CxCQijsbfiiOoS9FbNATeHyGLcw-LEsXYw,315
|
|
36
36
|
dub/models/components/countrycode.py,sha256=NcNDmnQ0TiXuO9JBZQ4tscUIVXld5dyuNcTCa2rtzUA,3796
|
|
37
37
|
dub/models/components/domainschema.py,sha256=MBaPJhQDSQtMTQYVsV8khaQGpY5BXa6IpwYP7qaWnzQ,5328
|
|
38
38
|
dub/models/components/folderschema.py,sha256=tfVy46SHPHMKl-_bOTr6_j5KHtx6aOJiFniYntBOVe4,2415
|
|
39
|
-
dub/models/components/leadcreatedevent.py,sha256=
|
|
40
|
-
dub/models/components/leadevent.py,sha256=
|
|
41
|
-
dub/models/components/linkclickedevent.py,sha256=
|
|
39
|
+
dub/models/components/leadcreatedevent.py,sha256=otdKaZ7EDPupAzi0sVXpgqCMLxmCk72MIvKNBPXAYUg,41902
|
|
40
|
+
dub/models/components/leadevent.py,sha256=zs9y9RpQLVpvI-NDuwf1GxfmTRV4MvQGjjp49AxL5EI,46780
|
|
41
|
+
dub/models/components/linkclickedevent.py,sha256=8_jkDheBZk9CZpHftonDHxc7nq0WKLUu7vNAtlzv3mo,38705
|
|
42
42
|
dub/models/components/linkerrorschema.py,sha256=BHHLHZv1ojPYUO78d8kCKIjgq68uuMMhW7LbyLMbzqo,1114
|
|
43
43
|
dub/models/components/linkgeotargeting.py,sha256=F0jUhoTXU2goK_4F0dLonIKu3y93fRQiwbdrgWP4itA,24054
|
|
44
|
-
dub/models/components/linkschema.py,sha256=
|
|
45
|
-
dub/models/components/linkwebhookevent.py,sha256=
|
|
44
|
+
dub/models/components/linkschema.py,sha256=NkG3cDyOwCm9iaGnjDte2W0jic8ds2I5v-y6s5guqp4,38823
|
|
45
|
+
dub/models/components/linkwebhookevent.py,sha256=d2IBQ56zIs8EFUpuyVQ88vaZ6v81S8QgcqEuHz3GDF0,37323
|
|
46
46
|
dub/models/components/partneranalyticscount.py,sha256=hJOuFVUTFOuXWviLxExwXDZVgPLBcgmqt8VxeHv7JAw,1035
|
|
47
47
|
dub/models/components/partneranalyticstimeseries.py,sha256=Bh431YfEd8v6TD9o9DPCAwGCDo5Rrf1xR1pccm7q5aw,1268
|
|
48
48
|
dub/models/components/partneranalyticstoplinks.py,sha256=xy1F1vueaBX93Gj2AYqqa7jbEueJy-FAVD5GdnjPva8,3755
|
|
49
|
-
dub/models/components/partnerenrolledevent.py,sha256=
|
|
50
|
-
dub/models/components/salecreatedevent.py,sha256=
|
|
51
|
-
dub/models/components/saleevent.py,sha256=
|
|
49
|
+
dub/models/components/partnerenrolledevent.py,sha256=dji04XhqDTtkd0ddJ01IxJsScDoiaehsaKNubpqPF2o,15879
|
|
50
|
+
dub/models/components/salecreatedevent.py,sha256=z7mXm1vojyVK91_bBAC8cUOvpuOKdh5JWm6F74hJdpc,43256
|
|
51
|
+
dub/models/components/saleevent.py,sha256=ObCZP0XEqmsMkqC57RUDp0cp0JbWV-RjQCw1M9eJMx4,50326
|
|
52
52
|
dub/models/components/security.py,sha256=be_cng1n5ULto_xGGPBKH1ZE5LrtmBTg6kX2uPJqJOw,599
|
|
53
53
|
dub/models/components/tagschema.py,sha256=9aymPZgSYT_OUsr4AtHAt4GLej9v89yuS5X1YSZ72sE,759
|
|
54
54
|
dub/models/components/webhookevent.py,sha256=12SgBns1nVcb0Efs8JR9JO8vmvK25bXMROCT-s0Ue5c,1268
|
|
55
55
|
dub/models/components/workspaceschema.py,sha256=sF5cVYWBXZ-dnPPDJbKDz74lVwPJxGrSiL6fK7M-1XU,10934
|
|
56
|
-
dub/models/errors/__init__.py,sha256=
|
|
56
|
+
dub/models/errors/__init__.py,sha256=w8JoPdvBrD8PeIN7mpvBSLG9FPgK4oAT6oWLfu1yK3Y,6080
|
|
57
57
|
dub/models/errors/badrequest.py,sha256=G5UFXCXOZy5raqCb_UpY409hSNT0V8lCiQxZs5iCri8,1646
|
|
58
58
|
dub/models/errors/conflict.py,sha256=tDqlH_1HgU17AgVE2RNH3vnFo1XY03ptSanRtvx3qK0,1562
|
|
59
59
|
dub/models/errors/duberror.py,sha256=wD61h62qi9-hdtxHDO6w7cbWIEoqgO0x32ZovrP8dsQ,710
|
|
@@ -67,16 +67,16 @@ dub/models/errors/responsevalidationerror.py,sha256=SRWiFq2Ip-M7luHULq3POe4JSWzO
|
|
|
67
67
|
dub/models/errors/sdkerror.py,sha256=iWxT-KvUgOlqID84qtbl7jG88f3xF9bxVCnMrtshtA0,1216
|
|
68
68
|
dub/models/errors/unauthorized.py,sha256=gTybq5vCh3nFKAnERxwMwETlQZ3T3SR01RKooIreVdo,1710
|
|
69
69
|
dub/models/errors/unprocessableentity.py,sha256=EkqNdp5lZQHA8hJgNdA3gviqMmyjcFx02cTxl3yhyrs,1693
|
|
70
|
-
dub/models/operations/__init__.py,sha256=
|
|
71
|
-
dub/models/operations/bulkcreatelinks.py,sha256=
|
|
70
|
+
dub/models/operations/__init__.py,sha256=E8UXRctw5YzmQ5MxGAUMSiMSeulyw4ASb2MR-mx_35I,42057
|
|
71
|
+
dub/models/operations/bulkcreatelinks.py,sha256=CthcQ1paZzMxWV8VoPkK9fHNiFYoesZghbai9eSeTAI,17862
|
|
72
72
|
dub/models/operations/bulkdeletelinks.py,sha256=u_hEFC9TZ1UnGGgLhQ-Mf3HNDO98Ur49MtdBnNVIRsE,1151
|
|
73
|
-
dub/models/operations/bulkupdatelinks.py,sha256=
|
|
73
|
+
dub/models/operations/bulkupdatelinks.py,sha256=icuSxTWuNE5b6haPyjQuh4uZAj-BIbEBV3FUMWsQrcI,15938
|
|
74
74
|
dub/models/operations/checkdomainstatus.py,sha256=W085WT-gUgU73qDi4LlXppdiPVC0Pm1CpPXTqTM56sI,2538
|
|
75
75
|
dub/models/operations/createcustomer.py,sha256=Fvp70GKEVqqAckvFO7h0dkjcNnFQUY7C3OLLMyPsgO4,12043
|
|
76
76
|
dub/models/operations/createdomain.py,sha256=dHRvCzE6knsndN4FTFjfijHVmTi8NXKpURz8cM_C-bk,3900
|
|
77
77
|
dub/models/operations/createfolder.py,sha256=j9z0CIsc22VsWAwlCGNwxo6a3VsetD6t4T2LdCELYGE,1884
|
|
78
|
-
dub/models/operations/createlink.py,sha256=
|
|
79
|
-
dub/models/operations/createpartner.py,sha256=
|
|
78
|
+
dub/models/operations/createlink.py,sha256=JteGTcS-2oboXo7Y5AD6pp33t8TWHTAHJSAw9-fXhGQ,17229
|
|
79
|
+
dub/models/operations/createpartner.py,sha256=SOzzP33DjfVdRZw4170nA_YwcKqzR8gX25qRGPaaWpM,36690
|
|
80
80
|
dub/models/operations/createpartnerlink.py,sha256=rOlnyEQdBk2jb5T3ryzvboWney3cRXIG9rCxuwQO58I,17091
|
|
81
81
|
dub/models/operations/createreferralsembedtoken.py,sha256=5FrDNmx68MyArVnQ0-s3MoySTo5DdMk7yUwWfLiUC_0,22792
|
|
82
82
|
dub/models/operations/createtag.py,sha256=XUKuFcLoenYk1oxdeou-gI_s3A4YxtIJKgRiXtLfOpQ,1497
|
|
@@ -88,19 +88,19 @@ dub/models/operations/deletetag.py,sha256=UJz-O6oTuvOdzuUXUQktw699hEv0cs1eJW9C3w
|
|
|
88
88
|
dub/models/operations/getcustomer.py,sha256=iJNVJulLMJ5eJb3LRmlRHh86fb_CkZou0szk21hiP70,11234
|
|
89
89
|
dub/models/operations/getcustomers.py,sha256=KQ7JV3GYMEpvDMG720vaF82Rkr7ewiLCXZk04SLEQF0,14426
|
|
90
90
|
dub/models/operations/getlinkinfo.py,sha256=I4bhM6HeW7IFg1J-68Uou5-OHA7XdQcM8I_lRBtXAJI,1530
|
|
91
|
-
dub/models/operations/getlinks.py,sha256=
|
|
92
|
-
dub/models/operations/getlinkscount.py,sha256=
|
|
91
|
+
dub/models/operations/getlinks.py,sha256=zO_sZyl2REBpy9VlCkgDd9gfq8GiIyDfkcmS2JVnv3w,7472
|
|
92
|
+
dub/models/operations/getlinkscount.py,sha256=PR5EPwhjTTpnlPnWqZX42U7HIT7wtygtIFVQeDhtlWE,5851
|
|
93
93
|
dub/models/operations/getqrcode.py,sha256=ynCPJc8vy_QEt5FP8OU2s-u6UIt1BhmFSNZC-XPmO4I,3848
|
|
94
94
|
dub/models/operations/gettags.py,sha256=c9p_JrHFnTDJURyR5iiKFKpXFHlzJDt3R5X1U-anyYg,2664
|
|
95
95
|
dub/models/operations/getworkspace.py,sha256=V4-NfsEg3M1BTeoE13sDyazefb2_kI4yFxnzgvHPv4s,625
|
|
96
96
|
dub/models/operations/listcommissions.py,sha256=dAazZ_vEaQRmaF6YbQyprCtKySG3-DMWPP8EwMOAOCE,13576
|
|
97
97
|
dub/models/operations/listdomains.py,sha256=gbQrJyBIvTGKSeqJo0Jb08iE44Xu39NS9zbfetx4p-s,1936
|
|
98
|
-
dub/models/operations/listevents.py,sha256=
|
|
98
|
+
dub/models/operations/listevents.py,sha256=qsFWy72ffF37tlOIqE5LI4zGVKQdeTuw_LcNe6v3Zuo,19260
|
|
99
99
|
dub/models/operations/listfolders.py,sha256=5FGf62ZTjquVXjq5axlzQgYGfEnrEwDn8QLlgGH_7jQ,1209
|
|
100
|
-
dub/models/operations/listpartners.py,sha256=
|
|
100
|
+
dub/models/operations/listpartners.py,sha256=NsEouxt-2KRcS6UmkUtlIzZdKR76t-JzxTvuI8ONVQw,19762
|
|
101
101
|
dub/models/operations/registerdomain.py,sha256=fjozn1tFU-cNarHdAqN_flQoGAE498ob-f4A2bIAiOc,2058
|
|
102
|
-
dub/models/operations/retrieveanalytics.py,sha256=
|
|
103
|
-
dub/models/operations/retrievelinks.py,sha256=
|
|
102
|
+
dub/models/operations/retrieveanalytics.py,sha256=jhyWlnQCsDUQgcchdniC-zuZjlKFPR2yssCEq1sQE-Y,20498
|
|
103
|
+
dub/models/operations/retrievelinks.py,sha256=rMp0VPEdwLT5ekQ3g2eAHwlr8-4EaEw699yLzDqTXzk,2855
|
|
104
104
|
dub/models/operations/retrievepartneranalytics.py,sha256=9aldT3YxBAwQtNPu0Mat5Uxrmz6zMGnri5cqaxUDHdk,4968
|
|
105
105
|
dub/models/operations/tracklead.py,sha256=_c1iIlWtZCJjwg6Hbfiphj4rFVCThFE2UnRuXsDEYKE,6881
|
|
106
106
|
dub/models/operations/tracksale.py,sha256=GDt1G0nAeelTlI7QxP3iCVmBYa9PMhLbJRChCLgvOeE,9021
|
|
@@ -108,21 +108,21 @@ dub/models/operations/updatecommission.py,sha256=N_okp7jc6jqI4CnGRvTEKTw-QPb5DEw
|
|
|
108
108
|
dub/models/operations/updatecustomer.py,sha256=1IqNatrmNmDVtMH-47uR1NXq4Zr_ASc4Wvt1yssl_gk,13554
|
|
109
109
|
dub/models/operations/updatedomain.py,sha256=rexCga7uNxgBZLPiCMcaudc2cQGB0E_qX2HI0DgG_3M,4519
|
|
110
110
|
dub/models/operations/updatefolder.py,sha256=dNvSPY67g58SWynB8ic5rcgT-h7THRmyxuzuFdO42GQ,2581
|
|
111
|
-
dub/models/operations/updatelink.py,sha256=
|
|
111
|
+
dub/models/operations/updatelink.py,sha256=RlKYnsW8I9k1lFhaZ-Xldx5VxdX6yfJeWiwe9nYNaf0,17036
|
|
112
112
|
dub/models/operations/updatetag.py,sha256=0nGAU6if5BsetDArXCIn8YvlDgG17N1Cp8q1o9F6ff4,2101
|
|
113
113
|
dub/models/operations/updateworkspace.py,sha256=qdlmA-Rz8_fC3iQs7bzmcn0qL9Lu3a04ziEIYfX3Ugo,2690
|
|
114
|
-
dub/models/operations/upsertlink.py,sha256=
|
|
114
|
+
dub/models/operations/upsertlink.py,sha256=eMTe32hLKg5rScnZNTuL2ZGjLMYTGOezOM7iiamMr3g,17352
|
|
115
115
|
dub/models/operations/upsertpartnerlink.py,sha256=Z0xtZHGzePne4wM2XaouR8f_pJrHA6avCmczxEo-9p0,17091
|
|
116
116
|
dub/partners.py,sha256=y-lObDvW0e7UMFkmF2bjrikimU0zb1Lf2U-KSANCvnU,72639
|
|
117
117
|
dub/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
118
118
|
dub/qr_codes.py,sha256=r1kxjwW54UDxdVZ74l5U1bxbkvMcrSC9nlPUHDZYBsI,11572
|
|
119
|
-
dub/sdk.py,sha256=
|
|
119
|
+
dub/sdk.py,sha256=KmuXn91unkqEF1nZmAghluuW-GqNoix4aLj39B-h_kE,7574
|
|
120
120
|
dub/sdkconfiguration.py,sha256=2aIgzM94TIYQe5zkQmHhDsdlxJdV6cfhWX0pspYMHow,1605
|
|
121
121
|
dub/tags.py,sha256=qpa2kajz07L6MiaEKlrGAOE55wF1M3eSWAx2J6X04l4,47163
|
|
122
122
|
dub/track.py,sha256=y42M2SOOiM0fboywGCEvkcZJDrZp0x9Ck4GInfx-5zw,24510
|
|
123
123
|
dub/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
124
124
|
dub/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
125
|
-
dub/utils/__init__.py,sha256=
|
|
125
|
+
dub/utils/__init__.py,sha256=P-h5S4lIx8Z9m_o-bZ1fiMWW7N7RuU0KI1WSWimXqQk,5375
|
|
126
126
|
dub/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
|
|
127
127
|
dub/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
128
128
|
dub/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
|
|
@@ -140,7 +140,7 @@ dub/utils/unmarshal_json_response.py,sha256=FcgE-IWPMAHWDdw6QEZeLeD5G_rflScZbT10
|
|
|
140
140
|
dub/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
141
141
|
dub/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
142
142
|
dub/workspaces.py,sha256=qqg3JuPFsC14D9OqUeMxYvXHOoIJOJ9To1faAG7x8kM,24373
|
|
143
|
-
dub-0.27.
|
|
144
|
-
dub-0.27.
|
|
145
|
-
dub-0.27.
|
|
146
|
-
dub-0.27.
|
|
143
|
+
dub-0.27.3.dist-info/LICENSE,sha256=kc_aZ6YHHcdSsRy-mGsT0Ehji0ZgR_zevXiUt05V2KY,1079
|
|
144
|
+
dub-0.27.3.dist-info/METADATA,sha256=TGD21Iiy6n8mpTTGKPibMa0EZBsADJCTU-CtIQsg1gY,30452
|
|
145
|
+
dub-0.27.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
146
|
+
dub-0.27.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|