syllable-sdk 0.35.47__py3-none-any.whl → 0.35.50__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.35.47"
6
+ __version__: str = "0.35.50"
7
7
  __openapi_doc_version__: str = "0.0.2"
8
- __gen_version__: str = "2.661.4"
9
- __user_agent__: str = "speakeasy-sdk/python 0.35.47 2.661.4 0.0.2 syllable-sdk"
8
+ __gen_version__: str = "2.662.0"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.35.50 2.662.0 0.0.2 syllable-sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -45,10 +45,10 @@ class BodyOrganizationsCreateTypedDict(TypedDict):
45
45
  r"""The organization logo image file to upload. Must be a PNG file and 120x120 pixels."""
46
46
  display_name: str
47
47
  r"""The human-readable display name of the organization"""
48
- domains: str
49
- r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
50
48
  description: NotRequired[Nullable[str]]
51
49
  r"""Description of the organization"""
50
+ domains: NotRequired[Nullable[str]]
51
+ r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
52
52
 
53
53
 
54
54
  class BodyOrganizationsCreate(BaseModel):
@@ -61,16 +61,16 @@ class BodyOrganizationsCreate(BaseModel):
61
61
  display_name: Annotated[str, FieldMetadata(multipart=True)]
62
62
  r"""The human-readable display name of the organization"""
63
63
 
64
- domains: Annotated[str, FieldMetadata(multipart=True)]
65
- r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
66
-
67
64
  description: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = UNSET
68
65
  r"""Description of the organization"""
69
66
 
67
+ domains: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = UNSET
68
+ r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
69
+
70
70
  @model_serializer(mode="wrap")
71
71
  def serialize_model(self, handler):
72
- optional_fields = ["description"]
73
- nullable_fields = ["description"]
72
+ optional_fields = ["description", "domains"]
73
+ nullable_fields = ["description", "domains"]
74
74
  null_default_fields = []
75
75
 
76
76
  serialized = handler(self)
@@ -43,12 +43,12 @@ class BodyOrganizationsUpdateLogo(BaseModel):
43
43
  class BodyOrganizationsUpdateTypedDict(TypedDict):
44
44
  display_name: str
45
45
  r"""The human-readable display name of the organization"""
46
- domains: str
47
- r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
48
46
  logo: NotRequired[BodyOrganizationsUpdateLogoTypedDict]
49
47
  r"""The organization logo image file to upload. Must be a PNG file and 120x120 pixels. If not provided, the logo will not be updated."""
50
48
  description: NotRequired[Nullable[str]]
51
49
  r"""Description of the organization"""
50
+ domains: NotRequired[Nullable[str]]
51
+ r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
52
52
  update_comments: NotRequired[Nullable[str]]
53
53
  r"""Comments about the update"""
54
54
 
@@ -57,9 +57,6 @@ class BodyOrganizationsUpdate(BaseModel):
57
57
  display_name: Annotated[str, FieldMetadata(multipart=True)]
58
58
  r"""The human-readable display name of the organization"""
59
59
 
60
- domains: Annotated[str, FieldMetadata(multipart=True)]
61
- r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
62
-
63
60
  logo: Annotated[
64
61
  Optional[BodyOrganizationsUpdateLogo],
65
62
  FieldMetadata(multipart=MultipartFormMetadata(file=True)),
@@ -69,6 +66,9 @@ class BodyOrganizationsUpdate(BaseModel):
69
66
  description: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = UNSET
70
67
  r"""Description of the organization"""
71
68
 
69
+ domains: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = UNSET
70
+ r"""Comma-delimited list of domains that users at the organization may have in their email addresses"""
71
+
72
72
  update_comments: Annotated[OptionalNullable[str], FieldMetadata(multipart=True)] = (
73
73
  UNSET
74
74
  )
@@ -76,8 +76,8 @@ class BodyOrganizationsUpdate(BaseModel):
76
76
 
77
77
  @model_serializer(mode="wrap")
78
78
  def serialize_model(self, handler):
79
- optional_fields = ["logo", "description", "update_comments"]
80
- nullable_fields = ["description", "update_comments"]
79
+ optional_fields = ["logo", "description", "domains", "update_comments"]
80
+ nullable_fields = ["description", "domains", "update_comments"]
81
81
  null_default_fields = []
82
82
 
83
83
  serialized = handler(self)
@@ -16,8 +16,6 @@ from typing_extensions import NotRequired, TypedDict
16
16
  class OrganizationResponseTypedDict(TypedDict):
17
17
  display_name: str
18
18
  r"""The human-readable display name of the organization."""
19
- domains: str
20
- r"""Comma-delimited list of domains that users at the organization may have in their email addresses."""
21
19
  id: int
22
20
  r"""The internal ID of the organization."""
23
21
  slug: str
@@ -26,6 +24,8 @@ class OrganizationResponseTypedDict(TypedDict):
26
24
  r"""The timestamp of the most recent update to the organization"""
27
25
  description: NotRequired[Nullable[str]]
28
26
  r"""Description of the organization."""
27
+ domains: NotRequired[Nullable[str]]
28
+ r"""Comma-delimited list of domains that users at the organization may have in their email addresses."""
29
29
  last_updated_comments: NotRequired[Nullable[str]]
30
30
  r"""Comments for the most recent edit to the organization."""
31
31
  last_updated_by: NotRequired[Nullable[str]]
@@ -38,9 +38,6 @@ class OrganizationResponse(BaseModel):
38
38
  display_name: str
39
39
  r"""The human-readable display name of the organization."""
40
40
 
41
- domains: str
42
- r"""Comma-delimited list of domains that users at the organization may have in their email addresses."""
43
-
44
41
  id: int
45
42
  r"""The internal ID of the organization."""
46
43
 
@@ -53,6 +50,9 @@ class OrganizationResponse(BaseModel):
53
50
  description: OptionalNullable[str] = UNSET
54
51
  r"""Description of the organization."""
55
52
 
53
+ domains: OptionalNullable[str] = UNSET
54
+ r"""Comma-delimited list of domains that users at the organization may have in their email addresses."""
55
+
56
56
  last_updated_comments: OptionalNullable[str] = UNSET
57
57
  r"""Comments for the most recent edit to the organization."""
58
58
 
@@ -66,12 +66,14 @@ class OrganizationResponse(BaseModel):
66
66
  def serialize_model(self, handler):
67
67
  optional_fields = [
68
68
  "description",
69
+ "domains",
69
70
  "last_updated_comments",
70
71
  "last_updated_by",
71
72
  "logo_url",
72
73
  ]
73
74
  nullable_fields = [
74
75
  "description",
76
+ "domains",
75
77
  "last_updated_comments",
76
78
  "last_updated_by",
77
79
  "logo_url",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: syllable-sdk
3
- Version: 0.35.47
3
+ Version: 0.35.50
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=9hgzWZsxU2SStp4s6Rwnyv1snmR1OYzZ0ytHh7O97k4,470
6
+ syllable_sdk/_version.py,sha256=TZ1p_qNPl7fgTc6Ra-UNB6E3SskfLZ61F9_Rsx5MkXU,470
7
7
  syllable_sdk/agents.py,sha256=0x4iFVF9VksBu32ThrGcgM3FqMCC9-iP8ggPh2r4R04,46694
8
8
  syllable_sdk/basesdk.py,sha256=dULbDf9e71tjSgOe7YwC9jD-80uIFiMrAhFbFvbEYho,11916
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=USPqyoxoSHU0wxJUgaYkkISmeXKkHBc4uwFGOzDfm4c,3229
56
+ syllable_sdk/models/body_organizations_create.py,sha256=mkYDNoY5b4jQ6kirn5ghTMnEPWw96BamW0JoolhDoWU,3300
57
57
  syllable_sdk/models/body_organizations_delete.py,sha256=-ooSAYXKGB45bRpcTJrKJhyLg2sLBwgLHIn3ph4FFws,1619
58
- syllable_sdk/models/body_organizations_update.py,sha256=dr-5zq7hgYi_-fLme7mWfucNPjPXDTKMNsgiH1c93Kw,3631
58
+ syllable_sdk/models/body_organizations_update.py,sha256=hwiy1OqKWjA-eN1FJc3tybqePUgrp7Y1ysGIk_rYUCI,3702
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=06sF5NzEiwmyQ6WLgHxSccErd2EnmpYge5FI7CFe4hI,467
@@ -206,7 +206,7 @@ syllable_sdk/models/listresponse_toolresponse_.py,sha256=lAgwBYF4-VRgfNp7pyrBMw6
206
206
  syllable_sdk/models/listresponse_userresponse_.py,sha256=zZqujwjjoe589oZZZrSyEj8-74tx2MnSWpY08AJtaK0,2348
207
207
  syllable_sdk/models/logintype.py,sha256=N6VPXZQVqNFkhC2568I0mJzBotKDqCKeqipJFp2a_Pg,285
208
208
  syllable_sdk/models/orderbydirection.py,sha256=1Jh50d2n7KXwKBRlkW7gdDUUGl4pexO0l0XwQWn8Sac,291
209
- syllable_sdk/models/organizationresponse.py,sha256=qmrsK1LauZ6HDpahdxs5pGyMlby0UMzJmL_757aKfcs,3563
209
+ syllable_sdk/models/organizationresponse.py,sha256=gcqBRNwAsVrXOSnjgMSui_VrAZz0AEYJIoItEfnMMxc,3658
210
210
  syllable_sdk/models/outbound_batch_addop.py,sha256=5SI0jNm19NE11zdtToh9p3HLhSM9OiJSIx0wVjL-BpI,806
211
211
  syllable_sdk/models/outbound_batch_deleteop.py,sha256=5t4BDaxQYogksgZkvR_gDfkFPoMVeJA0GSrhTZu_uRs,892
212
212
  syllable_sdk/models/outbound_batch_get_by_idop.py,sha256=reCpzH9U9WVQqxIgxjaLeOy2cFcmNWe7C69ppbazmI4,500
@@ -367,6 +367,6 @@ syllable_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,525
367
367
  syllable_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
368
368
  syllable_sdk/v1.py,sha256=noni4Ds8tZ5oHPZqoEoVJUYGs8L-ts9jGGFDU2E0pyE,53244
369
369
  syllable_sdk/workflows.py,sha256=kQPJzssdldotkipoWzu1ddas4IKbpFdXkGFDwDkWt1M,64777
370
- syllable_sdk-0.35.47.dist-info/METADATA,sha256=QovvwReIBP86_5z1SVip5mvFnHX8ypjKc-x3mo_CZms,45685
371
- syllable_sdk-0.35.47.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
372
- syllable_sdk-0.35.47.dist-info/RECORD,,
370
+ syllable_sdk-0.35.50.dist-info/METADATA,sha256=Q0DxY9gqNQmE-jIQKG-f4O5wMJNKewYNrOiaXLoYC1g,45685
371
+ syllable_sdk-0.35.50.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
372
+ syllable_sdk-0.35.50.dist-info/RECORD,,