vortex-python-sdk 0.4.0__tar.gz → 0.6.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.
- {vortex_python_sdk-0.4.0/src/vortex_python_sdk.egg-info → vortex_python_sdk-0.6.0}/PKG-INFO +1 -1
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/pyproject.toml +1 -1
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0/src/vortex_python_sdk.egg-info}/PKG-INFO +1 -1
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_sdk/types.py +12 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/CHANGELOG.md +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/LICENSE +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/MANIFEST.in +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/README.md +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/setup.cfg +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_python_sdk.egg-info/SOURCES.txt +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_python_sdk.egg-info/dependency_links.txt +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_python_sdk.egg-info/requires.txt +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_python_sdk.egg-info/top_level.txt +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_sdk/__init__.py +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_sdk/py.typed +0 -0
- {vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_sdk/vortex.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "vortex-python-sdk"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.6.0"
|
|
8
8
|
description = "Vortex Python SDK for invitation management and JWT generation"
|
|
9
9
|
authors = [{name = "TeamVortexSoftware", email = "support@vortexsoftware.com"}]
|
|
10
10
|
readme = "README.md"
|
|
@@ -131,6 +131,11 @@ class JwtPayload(BaseModel):
|
|
|
131
131
|
class InvitationTarget(BaseModel):
|
|
132
132
|
type: Literal["email", "phone", "share", "internal"]
|
|
133
133
|
value: str
|
|
134
|
+
name: Optional[str] = None # Display name of the person being invited
|
|
135
|
+
avatar_url: Optional[str] = Field(None, alias="avatarUrl") # Avatar URL for the person being invited
|
|
136
|
+
|
|
137
|
+
class Config:
|
|
138
|
+
populate_by_name = True
|
|
134
139
|
|
|
135
140
|
|
|
136
141
|
class AcceptUser(BaseModel):
|
|
@@ -215,6 +220,7 @@ class InvitationResult(BaseModel):
|
|
|
215
220
|
metadata: Optional[Dict[str, Any]] = None
|
|
216
221
|
pass_through: Optional[str] = Field(None, alias="passThrough")
|
|
217
222
|
source: Optional[str] = None
|
|
223
|
+
subtype: Optional[str] = None # Customer-defined subtype for analytics segmentation
|
|
218
224
|
creator_name: Optional[str] = Field(None, alias="creatorName")
|
|
219
225
|
creator_avatar_url: Optional[str] = Field(None, alias="creatorAvatarUrl")
|
|
220
226
|
|
|
@@ -281,6 +287,11 @@ class CreateInvitationTarget(BaseModel):
|
|
|
281
287
|
"""Target for creating an invitation"""
|
|
282
288
|
type: Literal["email", "phone", "internal"]
|
|
283
289
|
value: str
|
|
290
|
+
name: Optional[str] = None # Display name of the person being invited
|
|
291
|
+
avatar_url: Optional[str] = Field(None, alias="avatarUrl") # Avatar URL for the person being invited
|
|
292
|
+
|
|
293
|
+
class Config:
|
|
294
|
+
populate_by_name = True
|
|
284
295
|
|
|
285
296
|
|
|
286
297
|
class Inviter(BaseModel):
|
|
@@ -331,6 +342,7 @@ class BackendCreateInvitationRequest(BaseModel):
|
|
|
331
342
|
inviter: Inviter
|
|
332
343
|
groups: Optional[List[CreateInvitationGroup]] = None
|
|
333
344
|
source: Optional[str] = None
|
|
345
|
+
subtype: Optional[str] = None # Customer-defined subtype for analytics segmentation (e.g., 'pymk', 'find-friends')
|
|
334
346
|
template_variables: Optional[Dict[str, str]] = Field(None, alias="templateVariables")
|
|
335
347
|
metadata: Optional[Dict[str, Any]] = None
|
|
336
348
|
unfurl_config: Optional[UnfurlConfig] = Field(None, alias="unfurlConfig")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_python_sdk.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_python_sdk.egg-info/requires.txt
RENAMED
|
File without changes
|
{vortex_python_sdk-0.4.0 → vortex_python_sdk-0.6.0}/src/vortex_python_sdk.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|