syllable-sdk 0.43.1__py3-none-any.whl → 0.44.1__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.
Files changed (56) hide show
  1. syllable_sdk/_version.py +3 -3
  2. syllable_sdk/agents.py +12 -0
  3. syllable_sdk/basesdk.py +6 -0
  4. syllable_sdk/batches.py +18 -0
  5. syllable_sdk/campaigns.py +10 -0
  6. syllable_sdk/channels.py +8 -0
  7. syllable_sdk/conversation_config.py +411 -0
  8. syllable_sdk/conversations.py +2 -0
  9. syllable_sdk/custom_messages.py +10 -0
  10. syllable_sdk/dashboards.py +12 -0
  11. syllable_sdk/data_sources.py +10 -0
  12. syllable_sdk/directory.py +16 -0
  13. syllable_sdk/events.py +2 -0
  14. syllable_sdk/folders.py +16 -0
  15. syllable_sdk/full_summary.py +2 -0
  16. syllable_sdk/incidents.py +12 -0
  17. syllable_sdk/insights_sdk.py +2 -0
  18. syllable_sdk/insights_tools.py +14 -0
  19. syllable_sdk/language_groups.py +12 -0
  20. syllable_sdk/latency.py +2 -0
  21. syllable_sdk/models/__init__.py +43 -5
  22. syllable_sdk/models/bridgephrasesconfig.py +39 -0
  23. syllable_sdk/models/get_bridge_phrases_configop.py +64 -0
  24. syllable_sdk/models/pronunciationoverridesdictionary.py +6 -3
  25. syllable_sdk/models/schemas_cortex_v1_bridge_phrases_dictionarymetadata.py +67 -0
  26. syllable_sdk/models/{dictionarymetadata.py → schemas_tts_v1_pronunciations_dictionarymetadata.py} +2 -2
  27. syllable_sdk/models/step.py +2 -2
  28. syllable_sdk/models/stepeventactions.py +25 -4
  29. syllable_sdk/models/update_bridge_phrases_configop.py +71 -0
  30. syllable_sdk/numbers.py +6 -0
  31. syllable_sdk/organizations.py +8 -0
  32. syllable_sdk/permissions.py +2 -0
  33. syllable_sdk/prompts.py +14 -0
  34. syllable_sdk/pronunciations.py +18 -4
  35. syllable_sdk/roles.py +10 -0
  36. syllable_sdk/sdk.py +6 -0
  37. syllable_sdk/services.py +10 -0
  38. syllable_sdk/session_debug.py +6 -0
  39. syllable_sdk/session_labels.py +6 -0
  40. syllable_sdk/sessions.py +8 -0
  41. syllable_sdk/takeouts.py +6 -0
  42. syllable_sdk/targets.py +10 -0
  43. syllable_sdk/test.py +2 -0
  44. syllable_sdk/tools.py +10 -0
  45. syllable_sdk/transcript.py +2 -0
  46. syllable_sdk/twilio.py +6 -0
  47. syllable_sdk/users.py +14 -0
  48. syllable_sdk/utils/forms.py +21 -10
  49. syllable_sdk/utils/queryparams.py +14 -2
  50. syllable_sdk/utils/retries.py +69 -5
  51. syllable_sdk/v1.py +14 -0
  52. syllable_sdk/voice_groups.py +12 -0
  53. syllable_sdk/workflows.py +16 -0
  54. {syllable_sdk-0.43.1.dist-info → syllable_sdk-0.44.1.dist-info}/METADATA +6 -1
  55. {syllable_sdk-0.43.1.dist-info → syllable_sdk-0.44.1.dist-info}/RECORD +56 -51
  56. {syllable_sdk-0.43.1.dist-info → syllable_sdk-0.44.1.dist-info}/WHEEL +0 -0
syllable_sdk/directory.py CHANGED
@@ -83,6 +83,7 @@ class Directory(BaseSDK):
83
83
  accept_header_value="application/json",
84
84
  http_headers=http_headers,
85
85
  security=self.sdk_configuration.security,
86
+ allow_empty_value=None,
86
87
  timeout_ms=timeout_ms,
87
88
  )
88
89
 
@@ -196,6 +197,7 @@ class Directory(BaseSDK):
196
197
  accept_header_value="application/json",
197
198
  http_headers=http_headers,
198
199
  security=self.sdk_configuration.security,
200
+ allow_empty_value=None,
199
201
  timeout_ms=timeout_ms,
200
202
  )
201
203
 
@@ -290,6 +292,7 @@ class Directory(BaseSDK):
290
292
  get_serialized_body=lambda: utils.serialize_request_body(
291
293
  request, False, False, "json", models.DirectoryMemberCreate
292
294
  ),
295
+ allow_empty_value=None,
293
296
  timeout_ms=timeout_ms,
294
297
  )
295
298
 
@@ -384,6 +387,7 @@ class Directory(BaseSDK):
384
387
  get_serialized_body=lambda: utils.serialize_request_body(
385
388
  request, False, False, "json", models.DirectoryMemberCreate
386
389
  ),
390
+ allow_empty_value=None,
387
391
  timeout_ms=timeout_ms,
388
392
  )
389
393
 
@@ -473,6 +477,7 @@ class Directory(BaseSDK):
473
477
  accept_header_value="application/json",
474
478
  http_headers=http_headers,
475
479
  security=self.sdk_configuration.security,
480
+ allow_empty_value=None,
476
481
  timeout_ms=timeout_ms,
477
482
  )
478
483
 
@@ -562,6 +567,7 @@ class Directory(BaseSDK):
562
567
  accept_header_value="application/json",
563
568
  http_headers=http_headers,
564
569
  security=self.sdk_configuration.security,
570
+ allow_empty_value=None,
565
571
  timeout_ms=timeout_ms,
566
572
  )
567
573
 
@@ -665,6 +671,7 @@ class Directory(BaseSDK):
665
671
  "json",
666
672
  models.DirectoryMemberUpdate,
667
673
  ),
674
+ allow_empty_value=None,
668
675
  timeout_ms=timeout_ms,
669
676
  )
670
677
 
@@ -768,6 +775,7 @@ class Directory(BaseSDK):
768
775
  "json",
769
776
  models.DirectoryMemberUpdate,
770
777
  ),
778
+ allow_empty_value=None,
771
779
  timeout_ms=timeout_ms,
772
780
  )
773
781
 
@@ -857,6 +865,7 @@ class Directory(BaseSDK):
857
865
  accept_header_value="application/json",
858
866
  http_headers=http_headers,
859
867
  security=self.sdk_configuration.security,
868
+ allow_empty_value=None,
860
869
  timeout_ms=timeout_ms,
861
870
  )
862
871
 
@@ -946,6 +955,7 @@ class Directory(BaseSDK):
946
955
  accept_header_value="application/json",
947
956
  http_headers=http_headers,
948
957
  security=self.sdk_configuration.security,
958
+ allow_empty_value=None,
949
959
  timeout_ms=timeout_ms,
950
960
  )
951
961
 
@@ -1041,6 +1051,7 @@ class Directory(BaseSDK):
1041
1051
  accept_header_value="application/json",
1042
1052
  http_headers=http_headers,
1043
1053
  security=self.sdk_configuration.security,
1054
+ allow_empty_value=None,
1044
1055
  timeout_ms=timeout_ms,
1045
1056
  )
1046
1057
 
@@ -1136,6 +1147,7 @@ class Directory(BaseSDK):
1136
1147
  accept_header_value="application/json",
1137
1148
  http_headers=http_headers,
1138
1149
  security=self.sdk_configuration.security,
1150
+ allow_empty_value=None,
1139
1151
  timeout_ms=timeout_ms,
1140
1152
  )
1141
1153
 
@@ -1231,6 +1243,7 @@ class Directory(BaseSDK):
1231
1243
  get_serialized_body=lambda: utils.serialize_request_body(
1232
1244
  request, False, False, "multipart", models.BodyDirectoryMemberBulkLoad
1233
1245
  ),
1246
+ allow_empty_value=None,
1234
1247
  timeout_ms=timeout_ms,
1235
1248
  )
1236
1249
 
@@ -1326,6 +1339,7 @@ class Directory(BaseSDK):
1326
1339
  get_serialized_body=lambda: utils.serialize_request_body(
1327
1340
  request, False, False, "multipart", models.BodyDirectoryMemberBulkLoad
1328
1341
  ),
1342
+ allow_empty_value=None,
1329
1343
  timeout_ms=timeout_ms,
1330
1344
  )
1331
1345
 
@@ -1408,6 +1422,7 @@ class Directory(BaseSDK):
1408
1422
  accept_header_value="application/json",
1409
1423
  http_headers=http_headers,
1410
1424
  security=self.sdk_configuration.security,
1425
+ allow_empty_value=None,
1411
1426
  timeout_ms=timeout_ms,
1412
1427
  )
1413
1428
 
@@ -1484,6 +1499,7 @@ class Directory(BaseSDK):
1484
1499
  accept_header_value="application/json",
1485
1500
  http_headers=http_headers,
1486
1501
  security=self.sdk_configuration.security,
1502
+ allow_empty_value=None,
1487
1503
  timeout_ms=timeout_ms,
1488
1504
  )
1489
1505
 
syllable_sdk/events.py CHANGED
@@ -80,6 +80,7 @@ class Events(BaseSDK):
80
80
  accept_header_value="application/json",
81
81
  http_headers=http_headers,
82
82
  security=self.sdk_configuration.security,
83
+ allow_empty_value=None,
83
84
  timeout_ms=timeout_ms,
84
85
  )
85
86
 
@@ -191,6 +192,7 @@ class Events(BaseSDK):
191
192
  accept_header_value="application/json",
192
193
  http_headers=http_headers,
193
194
  security=self.sdk_configuration.security,
195
+ allow_empty_value=None,
194
196
  timeout_ms=timeout_ms,
195
197
  )
196
198
 
syllable_sdk/folders.py CHANGED
@@ -81,6 +81,7 @@ class Folders(BaseSDK):
81
81
  accept_header_value="application/json",
82
82
  http_headers=http_headers,
83
83
  security=self.sdk_configuration.security,
84
+ allow_empty_value=None,
84
85
  timeout_ms=timeout_ms,
85
86
  )
86
87
 
@@ -192,6 +193,7 @@ class Folders(BaseSDK):
192
193
  accept_header_value="application/json",
193
194
  http_headers=http_headers,
194
195
  security=self.sdk_configuration.security,
196
+ allow_empty_value=None,
195
197
  timeout_ms=timeout_ms,
196
198
  )
197
199
 
@@ -282,6 +284,7 @@ class Folders(BaseSDK):
282
284
  get_serialized_body=lambda: utils.serialize_request_body(
283
285
  request, False, False, "json", models.InsightsFolderInput
284
286
  ),
287
+ allow_empty_value=None,
285
288
  timeout_ms=timeout_ms,
286
289
  )
287
290
 
@@ -372,6 +375,7 @@ class Folders(BaseSDK):
372
375
  get_serialized_body=lambda: utils.serialize_request_body(
373
376
  request, False, False, "json", models.InsightsFolderInput
374
377
  ),
378
+ allow_empty_value=None,
375
379
  timeout_ms=timeout_ms,
376
380
  )
377
381
 
@@ -459,6 +463,7 @@ class Folders(BaseSDK):
459
463
  accept_header_value="application/json",
460
464
  http_headers=http_headers,
461
465
  security=self.sdk_configuration.security,
466
+ allow_empty_value=None,
462
467
  timeout_ms=timeout_ms,
463
468
  )
464
469
 
@@ -546,6 +551,7 @@ class Folders(BaseSDK):
546
551
  accept_header_value="application/json",
547
552
  http_headers=http_headers,
548
553
  security=self.sdk_configuration.security,
554
+ allow_empty_value=None,
549
555
  timeout_ms=timeout_ms,
550
556
  )
551
557
 
@@ -633,6 +639,7 @@ class Folders(BaseSDK):
633
639
  accept_header_value="application/json",
634
640
  http_headers=http_headers,
635
641
  security=self.sdk_configuration.security,
642
+ allow_empty_value=None,
636
643
  timeout_ms=timeout_ms,
637
644
  )
638
645
 
@@ -720,6 +727,7 @@ class Folders(BaseSDK):
720
727
  accept_header_value="application/json",
721
728
  http_headers=http_headers,
722
729
  security=self.sdk_configuration.security,
730
+ allow_empty_value=None,
723
731
  timeout_ms=timeout_ms,
724
732
  )
725
733
 
@@ -821,6 +829,7 @@ class Folders(BaseSDK):
821
829
  "json",
822
830
  models.InsightsFolderInput,
823
831
  ),
832
+ allow_empty_value=None,
824
833
  timeout_ms=timeout_ms,
825
834
  )
826
835
 
@@ -922,6 +931,7 @@ class Folders(BaseSDK):
922
931
  "json",
923
932
  models.InsightsFolderInput,
924
933
  ),
934
+ allow_empty_value=None,
925
935
  timeout_ms=timeout_ms,
926
936
  )
927
937
 
@@ -1048,6 +1058,7 @@ class Folders(BaseSDK):
1048
1058
  "multipart",
1049
1059
  Optional[models.BodyInsightsFolderUploadFile],
1050
1060
  ),
1061
+ allow_empty_value=None,
1051
1062
  timeout_ms=timeout_ms,
1052
1063
  )
1053
1064
 
@@ -1174,6 +1185,7 @@ class Folders(BaseSDK):
1174
1185
  "multipart",
1175
1186
  Optional[models.BodyInsightsFolderUploadFile],
1176
1187
  ),
1188
+ allow_empty_value=None,
1177
1189
  timeout_ms=timeout_ms,
1178
1190
  )
1179
1191
 
@@ -1288,6 +1300,7 @@ class Folders(BaseSDK):
1288
1300
  accept_header_value="application/json",
1289
1301
  http_headers=http_headers,
1290
1302
  security=self.sdk_configuration.security,
1303
+ allow_empty_value=None,
1291
1304
  timeout_ms=timeout_ms,
1292
1305
  )
1293
1306
 
@@ -1404,6 +1417,7 @@ class Folders(BaseSDK):
1404
1417
  accept_header_value="application/json",
1405
1418
  http_headers=http_headers,
1406
1419
  security=self.sdk_configuration.security,
1420
+ allow_empty_value=None,
1407
1421
  timeout_ms=timeout_ms,
1408
1422
  )
1409
1423
 
@@ -1507,6 +1521,7 @@ class Folders(BaseSDK):
1507
1521
  "json",
1508
1522
  models.InsightsFolderFileMove,
1509
1523
  ),
1524
+ allow_empty_value=None,
1510
1525
  timeout_ms=timeout_ms,
1511
1526
  )
1512
1527
 
@@ -1608,6 +1623,7 @@ class Folders(BaseSDK):
1608
1623
  "json",
1609
1624
  models.InsightsFolderFileMove,
1610
1625
  ),
1626
+ allow_empty_value=None,
1611
1627
  timeout_ms=timeout_ms,
1612
1628
  )
1613
1629
 
@@ -54,6 +54,7 @@ class FullSummary(BaseSDK):
54
54
  accept_header_value="application/json",
55
55
  http_headers=http_headers,
56
56
  security=self.sdk_configuration.security,
57
+ allow_empty_value=None,
57
58
  timeout_ms=timeout_ms,
58
59
  )
59
60
 
@@ -141,6 +142,7 @@ class FullSummary(BaseSDK):
141
142
  accept_header_value="application/json",
142
143
  http_headers=http_headers,
143
144
  security=self.sdk_configuration.security,
145
+ allow_empty_value=None,
144
146
  timeout_ms=timeout_ms,
145
147
  )
146
148
 
syllable_sdk/incidents.py CHANGED
@@ -82,6 +82,7 @@ class Incidents(BaseSDK):
82
82
  accept_header_value="application/json",
83
83
  http_headers=http_headers,
84
84
  security=self.sdk_configuration.security,
85
+ allow_empty_value=None,
85
86
  timeout_ms=timeout_ms,
86
87
  )
87
88
 
@@ -197,6 +198,7 @@ class Incidents(BaseSDK):
197
198
  accept_header_value="application/json",
198
199
  http_headers=http_headers,
199
200
  security=self.sdk_configuration.security,
201
+ allow_empty_value=None,
200
202
  timeout_ms=timeout_ms,
201
203
  )
202
204
 
@@ -293,6 +295,7 @@ class Incidents(BaseSDK):
293
295
  get_serialized_body=lambda: utils.serialize_request_body(
294
296
  request, False, False, "json", models.IncidentCreateRequest
295
297
  ),
298
+ allow_empty_value=None,
296
299
  timeout_ms=timeout_ms,
297
300
  )
298
301
 
@@ -387,6 +390,7 @@ class Incidents(BaseSDK):
387
390
  get_serialized_body=lambda: utils.serialize_request_body(
388
391
  request, False, False, "json", models.IncidentCreateRequest
389
392
  ),
393
+ allow_empty_value=None,
390
394
  timeout_ms=timeout_ms,
391
395
  )
392
396
 
@@ -481,6 +485,7 @@ class Incidents(BaseSDK):
481
485
  get_serialized_body=lambda: utils.serialize_request_body(
482
486
  request, False, False, "json", models.IncidentUpdateRequest
483
487
  ),
488
+ allow_empty_value=None,
484
489
  timeout_ms=timeout_ms,
485
490
  )
486
491
 
@@ -575,6 +580,7 @@ class Incidents(BaseSDK):
575
580
  get_serialized_body=lambda: utils.serialize_request_body(
576
581
  request, False, False, "json", models.IncidentUpdateRequest
577
582
  ),
583
+ allow_empty_value=None,
578
584
  timeout_ms=timeout_ms,
579
585
  )
580
586
 
@@ -657,6 +663,7 @@ class Incidents(BaseSDK):
657
663
  accept_header_value="application/json",
658
664
  http_headers=http_headers,
659
665
  security=self.sdk_configuration.security,
666
+ allow_empty_value=None,
660
667
  timeout_ms=timeout_ms,
661
668
  )
662
669
 
@@ -735,6 +742,7 @@ class Incidents(BaseSDK):
735
742
  accept_header_value="application/json",
736
743
  http_headers=http_headers,
737
744
  security=self.sdk_configuration.security,
745
+ allow_empty_value=None,
738
746
  timeout_ms=timeout_ms,
739
747
  )
740
748
 
@@ -820,6 +828,7 @@ class Incidents(BaseSDK):
820
828
  accept_header_value="application/json",
821
829
  http_headers=http_headers,
822
830
  security=self.sdk_configuration.security,
831
+ allow_empty_value=None,
823
832
  timeout_ms=timeout_ms,
824
833
  )
825
834
 
@@ -909,6 +918,7 @@ class Incidents(BaseSDK):
909
918
  accept_header_value="application/json",
910
919
  http_headers=http_headers,
911
920
  security=self.sdk_configuration.security,
921
+ allow_empty_value=None,
912
922
  timeout_ms=timeout_ms,
913
923
  )
914
924
 
@@ -1001,6 +1011,7 @@ class Incidents(BaseSDK):
1001
1011
  accept_header_value="application/json",
1002
1012
  http_headers=http_headers,
1003
1013
  security=self.sdk_configuration.security,
1014
+ allow_empty_value=None,
1004
1015
  timeout_ms=timeout_ms,
1005
1016
  )
1006
1017
 
@@ -1093,6 +1104,7 @@ class Incidents(BaseSDK):
1093
1104
  accept_header_value="application/json",
1094
1105
  http_headers=http_headers,
1095
1106
  security=self.sdk_configuration.security,
1107
+ allow_empty_value=None,
1096
1108
  timeout_ms=timeout_ms,
1097
1109
  )
1098
1110
 
@@ -105,6 +105,7 @@ class InsightsSDK(BaseSDK):
105
105
  accept_header_value="application/json",
106
106
  http_headers=http_headers,
107
107
  security=self.sdk_configuration.security,
108
+ allow_empty_value=None,
108
109
  timeout_ms=timeout_ms,
109
110
  )
110
111
 
@@ -218,6 +219,7 @@ class InsightsSDK(BaseSDK):
218
219
  accept_header_value="application/json",
219
220
  http_headers=http_headers,
220
221
  security=self.sdk_configuration.security,
222
+ allow_empty_value=None,
221
223
  timeout_ms=timeout_ms,
222
224
  )
223
225
 
@@ -82,6 +82,7 @@ class InsightsTools(BaseSDK):
82
82
  accept_header_value="application/json",
83
83
  http_headers=http_headers,
84
84
  security=self.sdk_configuration.security,
85
+ allow_empty_value=None,
85
86
  timeout_ms=timeout_ms,
86
87
  )
87
88
 
@@ -197,6 +198,7 @@ class InsightsTools(BaseSDK):
197
198
  accept_header_value="application/json",
198
199
  http_headers=http_headers,
199
200
  security=self.sdk_configuration.security,
201
+ allow_empty_value=None,
200
202
  timeout_ms=timeout_ms,
201
203
  )
202
204
 
@@ -291,6 +293,7 @@ class InsightsTools(BaseSDK):
291
293
  get_serialized_body=lambda: utils.serialize_request_body(
292
294
  request, False, False, "json", models.InsightToolInput
293
295
  ),
296
+ allow_empty_value=None,
294
297
  timeout_ms=timeout_ms,
295
298
  )
296
299
 
@@ -383,6 +386,7 @@ class InsightsTools(BaseSDK):
383
386
  get_serialized_body=lambda: utils.serialize_request_body(
384
387
  request, False, False, "json", models.InsightToolInput
385
388
  ),
389
+ allow_empty_value=None,
386
390
  timeout_ms=timeout_ms,
387
391
  )
388
392
 
@@ -472,6 +476,7 @@ class InsightsTools(BaseSDK):
472
476
  accept_header_value="application/json",
473
477
  http_headers=http_headers,
474
478
  security=self.sdk_configuration.security,
479
+ allow_empty_value=None,
475
480
  timeout_ms=timeout_ms,
476
481
  )
477
482
 
@@ -561,6 +566,7 @@ class InsightsTools(BaseSDK):
561
566
  accept_header_value="application/json",
562
567
  http_headers=http_headers,
563
568
  security=self.sdk_configuration.security,
569
+ allow_empty_value=None,
564
570
  timeout_ms=timeout_ms,
565
571
  )
566
572
 
@@ -650,6 +656,7 @@ class InsightsTools(BaseSDK):
650
656
  accept_header_value="application/json",
651
657
  http_headers=http_headers,
652
658
  security=self.sdk_configuration.security,
659
+ allow_empty_value=None,
653
660
  timeout_ms=timeout_ms,
654
661
  )
655
662
 
@@ -739,6 +746,7 @@ class InsightsTools(BaseSDK):
739
746
  accept_header_value="application/json",
740
747
  http_headers=http_headers,
741
748
  security=self.sdk_configuration.security,
749
+ allow_empty_value=None,
742
750
  timeout_ms=timeout_ms,
743
751
  )
744
752
 
@@ -842,6 +850,7 @@ class InsightsTools(BaseSDK):
842
850
  "json",
843
851
  models.InsightToolInput,
844
852
  ),
853
+ allow_empty_value=None,
845
854
  timeout_ms=timeout_ms,
846
855
  )
847
856
 
@@ -945,6 +954,7 @@ class InsightsTools(BaseSDK):
945
954
  "json",
946
955
  models.InsightToolInput,
947
956
  ),
957
+ allow_empty_value=None,
948
958
  timeout_ms=timeout_ms,
949
959
  )
950
960
 
@@ -1039,6 +1049,7 @@ class InsightsTools(BaseSDK):
1039
1049
  get_serialized_body=lambda: utils.serialize_request_body(
1040
1050
  request, False, False, "json", models.InsightToolTestInput
1041
1051
  ),
1052
+ allow_empty_value=None,
1042
1053
  timeout_ms=timeout_ms,
1043
1054
  )
1044
1055
 
@@ -1133,6 +1144,7 @@ class InsightsTools(BaseSDK):
1133
1144
  get_serialized_body=lambda: utils.serialize_request_body(
1134
1145
  request, False, False, "json", models.InsightToolTestInput
1135
1146
  ),
1147
+ allow_empty_value=None,
1136
1148
  timeout_ms=timeout_ms,
1137
1149
  )
1138
1150
 
@@ -1215,6 +1227,7 @@ class InsightsTools(BaseSDK):
1215
1227
  accept_header_value="application/json",
1216
1228
  http_headers=http_headers,
1217
1229
  security=self.sdk_configuration.security,
1230
+ allow_empty_value=None,
1218
1231
  timeout_ms=timeout_ms,
1219
1232
  )
1220
1233
 
@@ -1291,6 +1304,7 @@ class InsightsTools(BaseSDK):
1291
1304
  accept_header_value="application/json",
1292
1305
  http_headers=http_headers,
1293
1306
  security=self.sdk_configuration.security,
1307
+ allow_empty_value=None,
1294
1308
  timeout_ms=timeout_ms,
1295
1309
  )
1296
1310
 
@@ -87,6 +87,7 @@ class LanguageGroups(BaseSDK):
87
87
  accept_header_value="application/json",
88
88
  http_headers=http_headers,
89
89
  security=self.sdk_configuration.security,
90
+ allow_empty_value=None,
90
91
  timeout_ms=timeout_ms,
91
92
  )
92
93
 
@@ -205,6 +206,7 @@ class LanguageGroups(BaseSDK):
205
206
  accept_header_value="application/json",
206
207
  http_headers=http_headers,
207
208
  security=self.sdk_configuration.security,
209
+ allow_empty_value=None,
208
210
  timeout_ms=timeout_ms,
209
211
  )
210
212
 
@@ -305,6 +307,7 @@ class LanguageGroups(BaseSDK):
305
307
  get_serialized_body=lambda: utils.serialize_request_body(
306
308
  request, False, False, "json", models.LanguageGroupCreateRequest
307
309
  ),
310
+ allow_empty_value=None,
308
311
  timeout_ms=timeout_ms,
309
312
  )
310
313
 
@@ -403,6 +406,7 @@ class LanguageGroups(BaseSDK):
403
406
  get_serialized_body=lambda: utils.serialize_request_body(
404
407
  request, False, False, "json", models.LanguageGroupCreateRequest
405
408
  ),
409
+ allow_empty_value=None,
406
410
  timeout_ms=timeout_ms,
407
411
  )
408
412
 
@@ -501,6 +505,7 @@ class LanguageGroups(BaseSDK):
501
505
  get_serialized_body=lambda: utils.serialize_request_body(
502
506
  request, False, False, "json", models.LanguageGroupUpdateRequest
503
507
  ),
508
+ allow_empty_value=None,
504
509
  timeout_ms=timeout_ms,
505
510
  )
506
511
 
@@ -599,6 +604,7 @@ class LanguageGroups(BaseSDK):
599
604
  get_serialized_body=lambda: utils.serialize_request_body(
600
605
  request, False, False, "json", models.LanguageGroupUpdateRequest
601
606
  ),
607
+ allow_empty_value=None,
602
608
  timeout_ms=timeout_ms,
603
609
  )
604
610
 
@@ -691,6 +697,7 @@ class LanguageGroups(BaseSDK):
691
697
  accept_header_value="application/json",
692
698
  http_headers=http_headers,
693
699
  security=self.sdk_configuration.security,
700
+ allow_empty_value=None,
694
701
  timeout_ms=timeout_ms,
695
702
  )
696
703
 
@@ -783,6 +790,7 @@ class LanguageGroups(BaseSDK):
783
790
  accept_header_value="application/json",
784
791
  http_headers=http_headers,
785
792
  security=self.sdk_configuration.security,
793
+ allow_empty_value=None,
786
794
  timeout_ms=timeout_ms,
787
795
  )
788
796
 
@@ -878,6 +886,7 @@ class LanguageGroups(BaseSDK):
878
886
  accept_header_value="application/json",
879
887
  http_headers=http_headers,
880
888
  security=self.sdk_configuration.security,
889
+ allow_empty_value=None,
881
890
  timeout_ms=timeout_ms,
882
891
  )
883
892
 
@@ -973,6 +982,7 @@ class LanguageGroups(BaseSDK):
973
982
  accept_header_value="application/json",
974
983
  http_headers=http_headers,
975
984
  security=self.sdk_configuration.security,
985
+ allow_empty_value=None,
976
986
  timeout_ms=timeout_ms,
977
987
  )
978
988
 
@@ -1071,6 +1081,7 @@ class LanguageGroups(BaseSDK):
1071
1081
  get_serialized_body=lambda: utils.serialize_request_body(
1072
1082
  request, False, False, "json", models.LanguageSampleCreateRequest
1073
1083
  ),
1084
+ allow_empty_value=None,
1074
1085
  timeout_ms=timeout_ms,
1075
1086
  )
1076
1087
 
@@ -1172,6 +1183,7 @@ class LanguageGroups(BaseSDK):
1172
1183
  get_serialized_body=lambda: utils.serialize_request_body(
1173
1184
  request, False, False, "json", models.LanguageSampleCreateRequest
1174
1185
  ),
1186
+ allow_empty_value=None,
1175
1187
  timeout_ms=timeout_ms,
1176
1188
  )
1177
1189
 
syllable_sdk/latency.py CHANGED
@@ -54,6 +54,7 @@ class Latency(BaseSDK):
54
54
  accept_header_value="application/json",
55
55
  http_headers=http_headers,
56
56
  security=self.sdk_configuration.security,
57
+ allow_empty_value=None,
57
58
  timeout_ms=timeout_ms,
58
59
  )
59
60
 
@@ -141,6 +142,7 @@ class Latency(BaseSDK):
141
142
  accept_header_value="application/json",
142
143
  http_headers=http_headers,
143
144
  security=self.sdk_configuration.security,
145
+ allow_empty_value=None,
144
146
  timeout_ms=timeout_ms,
145
147
  )
146
148