vortex-python-sdk 0.9.3__tar.gz → 0.9.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vortex-python-sdk
3
- Version: 0.9.3
3
+ Version: 0.9.4
4
4
  Summary: Vortex Python SDK for invitation management and JWT generation
5
5
  Author-email: TeamVortexSoftware <support@vortexsoftware.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "vortex-python-sdk"
7
- version = "0.9.3"
7
+ version = "0.9.4"
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"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vortex-python-sdk
3
- Version: 0.9.3
3
+ Version: 0.9.4
4
4
  Summary: Vortex Python SDK for invitation management and JWT generation
5
5
  Author-email: TeamVortexSoftware <support@vortexsoftware.com>
6
6
  License-Expression: MIT
@@ -1039,7 +1039,7 @@ class Vortex:
1039
1039
 
1040
1040
  response = await self._vortex_api_request(
1041
1041
  "POST",
1042
- "/invitation-actions/sync-internal-invitation",
1042
+ "/invitations/sync-internal-invitation",
1043
1043
  data=request.model_dump(by_alias=True),
1044
1044
  )
1045
1045
  return SyncInternalInvitationResponse(**response)
@@ -1073,7 +1073,7 @@ class Vortex:
1073
1073
 
1074
1074
  response = self._vortex_api_request_sync(
1075
1075
  "POST",
1076
- "/invitation-actions/sync-internal-invitation",
1076
+ "/invitations/sync-internal-invitation",
1077
1077
  data=request.model_dump(by_alias=True),
1078
1078
  )
1079
1079
  return SyncInternalInvitationResponse(**response)