syllable-sdk 0.36.10__py3-none-any.whl → 0.36.11__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.
syllable_sdk/_version.py CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "syllable-sdk"
6
- __version__: str = "0.36.10"
6
+ __version__: str = "0.36.11"
7
7
  __openapi_doc_version__: str = "0.0.2"
8
- __gen_version__: str = "2.698.4"
9
- __user_agent__: str = "speakeasy-sdk/python 0.36.10 2.698.4 0.0.2 syllable-sdk"
8
+ __gen_version__: str = "2.701.8"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.36.11 2.701.8 0.0.2 syllable-sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -49,6 +49,8 @@ class BodyOrganizationsCreateTypedDict(TypedDict):
49
49
  r"""Description of the organization"""
50
50
  domains: NotRequired[Nullable[str]]
51
51
  r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
52
+ saml_provider_id: NotRequired[Nullable[str]]
53
+ r"""SAML provider ID for user authentication"""
52
54
 
53
55
 
54
56
  class BodyOrganizationsCreate(BaseModel):
@@ -67,10 +69,15 @@ class BodyOrganizationsCreate(BaseModel):
67
69
  domains: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = UNSET
68
70
  r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
69
71
 
72
+ saml_provider_id: Annotated[
73
+ OptionalNullable[str], FieldMetadata(multipart=True)
74
+ ] = UNSET
75
+ r"""SAML provider ID for user authentication"""
76
+
70
77
  @model_serializer(mode="wrap")
71
78
  def serialize_model(self, handler):
72
- optional_fields = ["description", "domains"]
73
- nullable_fields = ["description", "domains"]
79
+ optional_fields = ["description", "domains", "saml_provider_id"]
80
+ nullable_fields = ["description", "domains", "saml_provider_id"]
74
81
  null_default_fields = []
75
82
 
76
83
  serialized = handler(self)
@@ -49,6 +49,8 @@ class BodyOrganizationsUpdateTypedDict(TypedDict):
49
49
  r"""Description of the organization"""
50
50
  domains: NotRequired[Nullable[str]]
51
51
  r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
52
+ saml_provider_id: NotRequired[Nullable[str]]
53
+ r"""SAML provider ID for user authentication"""
52
54
  update_comments: NotRequired[Nullable[str]]
53
55
  r"""Comments about the update"""
54
56
 
@@ -69,6 +71,11 @@ class BodyOrganizationsUpdate(BaseModel):
69
71
  domains: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = UNSET
70
72
  r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
71
73
 
74
+ saml_provider_id: Annotated[
75
+ OptionalNullable[str], FieldMetadata(multipart=True)
76
+ ] = UNSET
77
+ r"""SAML provider ID for user authentication"""
78
+
72
79
  update_comments: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = (
73
80
  UNSET
74
81
  )
@@ -76,8 +83,19 @@ class BodyOrganizationsUpdate(BaseModel):
76
83
 
77
84
  @model_serializer(mode="wrap")
78
85
  def serialize_model(self, handler):
79
- optional_fields = ["logo", "description", "domains", "update_comments"]
80
- nullable_fields = ["description", "domains", "update_comments"]
86
+ optional_fields = [
87
+ "logo",
88
+ "description",
89
+ "domains",
90
+ "saml_provider_id",
91
+ "update_comments",
92
+ ]
93
+ nullable_fields = [
94
+ "description",
95
+ "domains",
96
+ "saml_provider_id",
97
+ "update_comments",
98
+ ]
81
99
  null_default_fields = []
82
100
 
83
101
  serialized = handler(self)
@@ -26,6 +26,8 @@ class OrganizationResponseTypedDict(TypedDict):
26
26
  r"""Description of the organization."""
27
27
  domains: NotRequired[Nullable[str]]
28
28
  r"""Comma-delimited list of domains that users at the organization may have in their email addresses."""
29
+ saml_provider_id: NotRequired[Nullable[str]]
30
+ r"""SAML provider ID for user authentication"""
29
31
  last_updated_comments: NotRequired[Nullable[str]]
30
32
  r"""Comments for the most recent edit to the organization."""
31
33
  last_updated_by: NotRequired[Nullable[str]]
@@ -53,6 +55,9 @@ class OrganizationResponse(BaseModel):
53
55
  domains: OptionalNullable[str] = UNSET
54
56
  r"""Comma-delimited list of domains that users at the organization may have in their email addresses."""
55
57
 
58
+ saml_provider_id: OptionalNullable[str] = UNSET
59
+ r"""SAML provider ID for user authentication"""
60
+
56
61
  last_updated_comments: OptionalNullable[str] = UNSET
57
62
  r"""Comments for the most recent edit to the organization."""
58
63
 
@@ -67,6 +72,7 @@ class OrganizationResponse(BaseModel):
67
72
  optional_fields = [
68
73
  "description",
69
74
  "domains",
75
+ "saml_provider_id",
70
76
  "last_updated_comments",
71
77
  "last_updated_by",
72
78
  "logo_url",
@@ -74,6 +80,7 @@ class OrganizationResponse(BaseModel):
74
80
  nullable_fields = [
75
81
  "description",
76
82
  "domains",
83
+ "saml_provider_id",
77
84
  "last_updated_comments",
78
85
  "last_updated_by",
79
86
  "logo_url",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: syllable-sdk
3
- Version: 0.36.10
3
+ Version: 0.36.11
4
4
  Summary: Python Client SDK Generated by Speakeasy.
5
5
  Author: Syllable
6
6
  Requires-Python: >=3.9.2
@@ -3,7 +3,7 @@ syllable_sdk/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU
3
3
  syllable_sdk/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
4
4
  syllable_sdk/_hooks/sdkhooks.py,sha256=aRu2TMpxilLKDrG6EIy6uQd6IrBH7kaHOoVkd7GIcus,2562
5
5
  syllable_sdk/_hooks/types.py,sha256=uwJkn18g4_rLZhVtKdE6Ed5YcCjGWSqVgN9-PWqV7Ho,3053
6
- syllable_sdk/_version.py,sha256=6lpKcLqOtgR4Iz2EFCA2FrLHSKf4rR1JXT8Otg-1KcE,470
6
+ syllable_sdk/_version.py,sha256=jFKIKqyQHZAD_jjDCmgoCOA8gfeiUgXiCSsTuw64z04,470
7
7
  syllable_sdk/agents.py,sha256=8Mi55XEKRofGeW9iS5haXK-7wEd7Yo5M2ROH_x5sepQ,46796
8
8
  syllable_sdk/basesdk.py,sha256=PCXez-bS_sOzXpRo7awDMzW4zqGJtktHytrlQfG1HNw,12211
9
9
  syllable_sdk/batches.py,sha256=qgI5PRkdgLdaJl4DPfs4mBJrB0OY_CCDePYntyjleSs,73059
@@ -53,9 +53,9 @@ syllable_sdk/models/batchdetails.py,sha256=TqjwXffSf77omFY2uVJBckSkCFW7MUs_1fnLW
53
53
  syllable_sdk/models/batchproperties.py,sha256=89ZX5kuIyO7VzVhogtOh5vQajSGT7pQWo6AaNoDmWsA,316
54
54
  syllable_sdk/models/batchstatus.py,sha256=NZOhX8BPxuxtr7IP_1pX4_4sy8Oe6p31h1gnATgV4FE,347
55
55
  syllable_sdk/models/body_insights_folder_upload_file.py,sha256=6m577ErqGnhPNsGoDvG9fO7vjwbwA8XNgzTgrxeSzQc,1343
56
- syllable_sdk/models/body_organizations_create.py,sha256=mkYDNoY5b4jQ6kirn5ghTMnEPWw96BamW0JoolhDoWU,3300
56
+ syllable_sdk/models/body_organizations_create.py,sha256=z2TKa8xfLgQ_zXYD7vmhz5ED2cVhwg2Ks-YHqVNtISk,3602
57
57
  syllable_sdk/models/body_organizations_delete.py,sha256=-ooSAYXKGB45bRpcTJrKJhyLg2sLBwgLHIn3ph4FFws,1619
58
- syllable_sdk/models/body_organizations_update.py,sha256=hwiy1OqKWjA-eN1FJc3tybqePUgrp7Y1ysGIk_rYUCI,3702
58
+ syllable_sdk/models/body_organizations_update.py,sha256=8Ofb8sQ3T4XxBqC1yBzPmxO6W2CNYYrzJtujBGQATjE,4134
59
59
  syllable_sdk/models/body_outbound_batch_delete.py,sha256=c-3MzefgLGTnZiYtLKb28AkOMwtCImkMLJg932g5PLY,425
60
60
  syllable_sdk/models/body_outbound_batch_upload.py,sha256=_W1aXZOpZX1KO1GaUJhMAkjEgV1v9nLQazyWcQ6AjYY,1313
61
61
  syllable_sdk/models/campaignproperties.py,sha256=WLVZr50vP5YDKhRCexMcMR_pCpeKqV1N--PFgy3qgrY,485
@@ -210,7 +210,7 @@ syllable_sdk/models/orderbydirection.py,sha256=1Jh50d2n7KXwKBRlkW7gdDUUGl4pexO0l
210
210
  syllable_sdk/models/organizationchannelconfig.py,sha256=u59K0ggMcc2oeAvI0uDWVu5MMY7ZNnci3N1KNwVERVI,2303
211
211
  syllable_sdk/models/organizationchannelcreaterequest.py,sha256=e0OaCYQHw_vrtMgOIWrJigYMz-Ys5wfH9mrYIWgUI1M,2931
212
212
  syllable_sdk/models/organizationchannelupdaterequest.py,sha256=oM35Fr9O_oVSgcYm4PN4Di3qnEJx4Zl8tX_EVwgdyh0,3040
213
- syllable_sdk/models/organizationresponse.py,sha256=gcqBRNwAsVrXOSnjgMSui_VrAZz0AEYJIoItEfnMMxc,3658
213
+ syllable_sdk/models/organizationresponse.py,sha256=zIxSTQw1l_DDzRCWVbngysCd0mhybIKkUPflGeM8Sv8,3928
214
214
  syllable_sdk/models/outbound_batch_addop.py,sha256=5SI0jNm19NE11zdtToh9p3HLhSM9OiJSIx0wVjL-BpI,806
215
215
  syllable_sdk/models/outbound_batch_deleteop.py,sha256=5t4BDaxQYogksgZkvR_gDfkFPoMVeJA0GSrhTZu_uRs,892
216
216
  syllable_sdk/models/outbound_batch_get_by_idop.py,sha256=reCpzH9U9WVQqxIgxjaLeOy2cFcmNWe7C69ppbazmI4,500
@@ -373,6 +373,6 @@ syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,525
373
373
  syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
374
374
  syllable_sdk/v1.py,sha256=zMPQz7GtZxDuziCcmhKk2IS7EfiaW9WfiSIqAGbb-o4,53448
375
375
  syllable_sdk/workflows.py,sha256=kQPJzssdldotkipoWzu1ddas4IKbpFdXkGFDwDkWt1M,64777
376
- syllable_sdk-0.36.10.dist-info/METADATA,sha256=XYux7pSwfXEGmAbBmvkqkkpYw8bO4x5EkwOdQv6Czq4,46217
377
- syllable_sdk-0.36.10.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
378
- syllable_sdk-0.36.10.dist-info/RECORD,,
376
+ syllable_sdk-0.36.11.dist-info/METADATA,sha256=e0sK5dz8u9LFoQnE964AKdQkQ9jFC-xMrqXgLa7cHK8,46217
377
+ syllable_sdk-0.36.11.dist-info/WHEEL,sha256=M5asmiAlL6HEcOq52Yi5mmk9KmTVjY2RDPtO4p9DMrc,88
378
+ syllable_sdk-0.36.11.dist-info/RECORD,,