retell-sdk 5.45.0 → 5.46.0
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.
- package/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/resources/agent.d.mts +3 -3
- package/resources/agent.d.mts.map +1 -1
- package/resources/agent.d.ts +3 -3
- package/resources/agent.d.ts.map +1 -1
- package/resources/batch-call.d.mts +4 -4
- package/resources/batch-call.d.mts.map +1 -1
- package/resources/batch-call.d.ts +4 -4
- package/resources/batch-call.d.ts.map +1 -1
- package/resources/call.d.mts +12 -12
- package/resources/call.d.mts.map +1 -1
- package/resources/call.d.ts +12 -12
- package/resources/call.d.ts.map +1 -1
- package/resources/chat-agent.d.mts +3 -3
- package/resources/chat-agent.d.mts.map +1 -1
- package/resources/chat-agent.d.ts +3 -3
- package/resources/chat-agent.d.ts.map +1 -1
- package/resources/chat.d.mts +15 -0
- package/resources/chat.d.mts.map +1 -1
- package/resources/chat.d.ts +15 -0
- package/resources/chat.d.ts.map +1 -1
- package/resources/conversation-flow-component.d.mts +42 -42
- package/resources/conversation-flow-component.d.mts.map +1 -1
- package/resources/conversation-flow-component.d.ts +42 -42
- package/resources/conversation-flow-component.d.ts.map +1 -1
- package/resources/conversation-flow.d.mts +87 -87
- package/resources/conversation-flow.d.mts.map +1 -1
- package/resources/conversation-flow.d.ts +87 -87
- package/resources/conversation-flow.d.ts.map +1 -1
- package/resources/llm.d.mts +6 -6
- package/resources/llm.d.mts.map +1 -1
- package/resources/llm.d.ts +6 -6
- package/resources/llm.d.ts.map +1 -1
- package/resources/tests.d.mts +3 -3
- package/resources/tests.d.mts.map +1 -1
- package/resources/tests.d.ts +3 -3
- package/resources/tests.d.ts.map +1 -1
- package/src/resources/agent.ts +6 -0
- package/src/resources/batch-call.ts +14 -1
- package/src/resources/call.ts +42 -3
- package/src/resources/chat-agent.ts +6 -0
- package/src/resources/chat.ts +19 -0
- package/src/resources/conversation-flow-component.ts +84 -0
- package/src/resources/conversation-flow.ts +174 -0
- package/src/resources/llm.ts +30 -3
- package/src/resources/tests.ts +6 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/src/resources/call.ts
CHANGED
|
@@ -4528,6 +4528,8 @@ export namespace CallCreatePhoneCallParams {
|
|
|
4528
4528
|
| 'gpt-5.4-mini'
|
|
4529
4529
|
| 'gpt-5.4-nano'
|
|
4530
4530
|
| 'gpt-5.5'
|
|
4531
|
+
| 'gpt-5.6-terra'
|
|
4532
|
+
| 'gpt-5.6-luna'
|
|
4531
4533
|
| 'claude-4.5-sonnet'
|
|
4532
4534
|
| 'claude-4.6-sonnet'
|
|
4533
4535
|
| 'claude-5-sonnet'
|
|
@@ -5275,6 +5277,8 @@ export namespace CallCreatePhoneCallParams {
|
|
|
5275
5277
|
| 'gpt-5.4-mini'
|
|
5276
5278
|
| 'gpt-5.4-nano'
|
|
5277
5279
|
| 'gpt-5.5'
|
|
5280
|
+
| 'gpt-5.6-terra'
|
|
5281
|
+
| 'gpt-5.6-luna'
|
|
5278
5282
|
| 'claude-4.5-sonnet'
|
|
5279
5283
|
| 'claude-4.6-sonnet'
|
|
5280
5284
|
| 'claude-5-sonnet'
|
|
@@ -5343,6 +5347,8 @@ export namespace CallCreatePhoneCallParams {
|
|
|
5343
5347
|
| 'gpt-5.4-mini'
|
|
5344
5348
|
| 'gpt-5.4-nano'
|
|
5345
5349
|
| 'gpt-5.5'
|
|
5350
|
+
| 'gpt-5.6-terra'
|
|
5351
|
+
| 'gpt-5.6-luna'
|
|
5346
5352
|
| 'claude-4.5-sonnet'
|
|
5347
5353
|
| 'claude-4.6-sonnet'
|
|
5348
5354
|
| 'claude-5-sonnet'
|
|
@@ -5371,7 +5377,14 @@ export namespace CallCreatePhoneCallParams {
|
|
|
5371
5377
|
* Select the underlying speech to speech model. Can only set this or model, not
|
|
5372
5378
|
* both.
|
|
5373
5379
|
*/
|
|
5374
|
-
s2s_model?:
|
|
5380
|
+
s2s_model?:
|
|
5381
|
+
| 'gpt-realtime-2.1'
|
|
5382
|
+
| 'gpt-realtime-2.1-mini'
|
|
5383
|
+
| 'gpt-realtime-2'
|
|
5384
|
+
| 'gpt-realtime-1.5'
|
|
5385
|
+
| 'gpt-realtime'
|
|
5386
|
+
| 'gpt-realtime-mini'
|
|
5387
|
+
| null;
|
|
5375
5388
|
|
|
5376
5389
|
/**
|
|
5377
5390
|
* The speaker who starts the conversation. Required. Must be either 'user' or
|
|
@@ -5898,6 +5911,8 @@ export namespace CallRegisterPhoneCallParams {
|
|
|
5898
5911
|
| 'gpt-5.4-mini'
|
|
5899
5912
|
| 'gpt-5.4-nano'
|
|
5900
5913
|
| 'gpt-5.5'
|
|
5914
|
+
| 'gpt-5.6-terra'
|
|
5915
|
+
| 'gpt-5.6-luna'
|
|
5901
5916
|
| 'claude-4.5-sonnet'
|
|
5902
5917
|
| 'claude-4.6-sonnet'
|
|
5903
5918
|
| 'claude-5-sonnet'
|
|
@@ -6645,6 +6660,8 @@ export namespace CallRegisterPhoneCallParams {
|
|
|
6645
6660
|
| 'gpt-5.4-mini'
|
|
6646
6661
|
| 'gpt-5.4-nano'
|
|
6647
6662
|
| 'gpt-5.5'
|
|
6663
|
+
| 'gpt-5.6-terra'
|
|
6664
|
+
| 'gpt-5.6-luna'
|
|
6648
6665
|
| 'claude-4.5-sonnet'
|
|
6649
6666
|
| 'claude-4.6-sonnet'
|
|
6650
6667
|
| 'claude-5-sonnet'
|
|
@@ -6713,6 +6730,8 @@ export namespace CallRegisterPhoneCallParams {
|
|
|
6713
6730
|
| 'gpt-5.4-mini'
|
|
6714
6731
|
| 'gpt-5.4-nano'
|
|
6715
6732
|
| 'gpt-5.5'
|
|
6733
|
+
| 'gpt-5.6-terra'
|
|
6734
|
+
| 'gpt-5.6-luna'
|
|
6716
6735
|
| 'claude-4.5-sonnet'
|
|
6717
6736
|
| 'claude-4.6-sonnet'
|
|
6718
6737
|
| 'claude-5-sonnet'
|
|
@@ -6741,7 +6760,14 @@ export namespace CallRegisterPhoneCallParams {
|
|
|
6741
6760
|
* Select the underlying speech to speech model. Can only set this or model, not
|
|
6742
6761
|
* both.
|
|
6743
6762
|
*/
|
|
6744
|
-
s2s_model?:
|
|
6763
|
+
s2s_model?:
|
|
6764
|
+
| 'gpt-realtime-2.1'
|
|
6765
|
+
| 'gpt-realtime-2.1-mini'
|
|
6766
|
+
| 'gpt-realtime-2'
|
|
6767
|
+
| 'gpt-realtime-1.5'
|
|
6768
|
+
| 'gpt-realtime'
|
|
6769
|
+
| 'gpt-realtime-mini'
|
|
6770
|
+
| null;
|
|
6745
6771
|
|
|
6746
6772
|
/**
|
|
6747
6773
|
* The speaker who starts the conversation. Required. Must be either 'user' or
|
|
@@ -7268,6 +7294,8 @@ export namespace CallCreateWebCallParams {
|
|
|
7268
7294
|
| 'gpt-5.4-mini'
|
|
7269
7295
|
| 'gpt-5.4-nano'
|
|
7270
7296
|
| 'gpt-5.5'
|
|
7297
|
+
| 'gpt-5.6-terra'
|
|
7298
|
+
| 'gpt-5.6-luna'
|
|
7271
7299
|
| 'claude-4.5-sonnet'
|
|
7272
7300
|
| 'claude-4.6-sonnet'
|
|
7273
7301
|
| 'claude-5-sonnet'
|
|
@@ -8015,6 +8043,8 @@ export namespace CallCreateWebCallParams {
|
|
|
8015
8043
|
| 'gpt-5.4-mini'
|
|
8016
8044
|
| 'gpt-5.4-nano'
|
|
8017
8045
|
| 'gpt-5.5'
|
|
8046
|
+
| 'gpt-5.6-terra'
|
|
8047
|
+
| 'gpt-5.6-luna'
|
|
8018
8048
|
| 'claude-4.5-sonnet'
|
|
8019
8049
|
| 'claude-4.6-sonnet'
|
|
8020
8050
|
| 'claude-5-sonnet'
|
|
@@ -8083,6 +8113,8 @@ export namespace CallCreateWebCallParams {
|
|
|
8083
8113
|
| 'gpt-5.4-mini'
|
|
8084
8114
|
| 'gpt-5.4-nano'
|
|
8085
8115
|
| 'gpt-5.5'
|
|
8116
|
+
| 'gpt-5.6-terra'
|
|
8117
|
+
| 'gpt-5.6-luna'
|
|
8086
8118
|
| 'claude-4.5-sonnet'
|
|
8087
8119
|
| 'claude-4.6-sonnet'
|
|
8088
8120
|
| 'claude-5-sonnet'
|
|
@@ -8111,7 +8143,14 @@ export namespace CallCreateWebCallParams {
|
|
|
8111
8143
|
* Select the underlying speech to speech model. Can only set this or model, not
|
|
8112
8144
|
* both.
|
|
8113
8145
|
*/
|
|
8114
|
-
s2s_model?:
|
|
8146
|
+
s2s_model?:
|
|
8147
|
+
| 'gpt-realtime-2.1'
|
|
8148
|
+
| 'gpt-realtime-2.1-mini'
|
|
8149
|
+
| 'gpt-realtime-2'
|
|
8150
|
+
| 'gpt-realtime-1.5'
|
|
8151
|
+
| 'gpt-realtime'
|
|
8152
|
+
| 'gpt-realtime-mini'
|
|
8153
|
+
| null;
|
|
8115
8154
|
|
|
8116
8155
|
/**
|
|
8117
8156
|
* The speaker who starts the conversation. Required. Must be either 'user' or
|
|
@@ -436,6 +436,8 @@ export interface ChatAgentResponse {
|
|
|
436
436
|
| 'gpt-5.4-mini'
|
|
437
437
|
| 'gpt-5.4-nano'
|
|
438
438
|
| 'gpt-5.5'
|
|
439
|
+
| 'gpt-5.6-terra'
|
|
440
|
+
| 'gpt-5.6-luna'
|
|
439
441
|
| 'claude-4.5-sonnet'
|
|
440
442
|
| 'claude-4.6-sonnet'
|
|
441
443
|
| 'claude-5-sonnet'
|
|
@@ -1075,6 +1077,8 @@ export interface ChatAgentCreateParams {
|
|
|
1075
1077
|
| 'gpt-5.4-mini'
|
|
1076
1078
|
| 'gpt-5.4-nano'
|
|
1077
1079
|
| 'gpt-5.5'
|
|
1080
|
+
| 'gpt-5.6-terra'
|
|
1081
|
+
| 'gpt-5.6-luna'
|
|
1078
1082
|
| 'claude-4.5-sonnet'
|
|
1079
1083
|
| 'claude-4.6-sonnet'
|
|
1080
1084
|
| 'claude-5-sonnet'
|
|
@@ -1712,6 +1716,8 @@ export interface ChatAgentUpdateParams {
|
|
|
1712
1716
|
| 'gpt-5.4-mini'
|
|
1713
1717
|
| 'gpt-5.4-nano'
|
|
1714
1718
|
| 'gpt-5.5'
|
|
1719
|
+
| 'gpt-5.6-terra'
|
|
1720
|
+
| 'gpt-5.6-luna'
|
|
1715
1721
|
| 'claude-4.5-sonnet'
|
|
1716
1722
|
| 'claude-4.6-sonnet'
|
|
1717
1723
|
| 'claude-5-sonnet'
|
package/src/resources/chat.ts
CHANGED
|
@@ -941,6 +941,11 @@ export namespace ChatListParams {
|
|
|
941
941
|
*/
|
|
942
942
|
agent?: Array<FilterCriteria.Agent>;
|
|
943
943
|
|
|
944
|
+
/**
|
|
945
|
+
* Filter by agent environment tag(s) (e.g. "prod", "staging").
|
|
946
|
+
*/
|
|
947
|
+
agent_tag?: FilterCriteria.AgentTag;
|
|
948
|
+
|
|
944
949
|
/**
|
|
945
950
|
* Filter by chat ID.
|
|
946
951
|
*/
|
|
@@ -1015,6 +1020,20 @@ export namespace ChatListParams {
|
|
|
1015
1020
|
version?: Array<number>;
|
|
1016
1021
|
}
|
|
1017
1022
|
|
|
1023
|
+
/**
|
|
1024
|
+
* Filter by agent environment tag(s) (e.g. "prod", "staging").
|
|
1025
|
+
*/
|
|
1026
|
+
export interface AgentTag {
|
|
1027
|
+
/**
|
|
1028
|
+
* in: value is one of the listed values
|
|
1029
|
+
*/
|
|
1030
|
+
op: 'in';
|
|
1031
|
+
|
|
1032
|
+
type: 'enum';
|
|
1033
|
+
|
|
1034
|
+
value: Array<string>;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1018
1037
|
/**
|
|
1019
1038
|
* Filter by chat ID.
|
|
1020
1039
|
*/
|
|
@@ -782,6 +782,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
782
782
|
| 'gpt-5.4-mini'
|
|
783
783
|
| 'gpt-5.4-nano'
|
|
784
784
|
| 'gpt-5.5'
|
|
785
|
+
| 'gpt-5.6-terra'
|
|
786
|
+
| 'gpt-5.6-luna'
|
|
785
787
|
| 'claude-4.5-sonnet'
|
|
786
788
|
| 'claude-4.6-sonnet'
|
|
787
789
|
| 'claude-5-sonnet'
|
|
@@ -1487,6 +1489,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
1487
1489
|
| 'gpt-5.4-mini'
|
|
1488
1490
|
| 'gpt-5.4-nano'
|
|
1489
1491
|
| 'gpt-5.5'
|
|
1492
|
+
| 'gpt-5.6-terra'
|
|
1493
|
+
| 'gpt-5.6-luna'
|
|
1490
1494
|
| 'claude-4.5-sonnet'
|
|
1491
1495
|
| 'claude-4.6-sonnet'
|
|
1492
1496
|
| 'claude-5-sonnet'
|
|
@@ -2990,6 +2994,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
2990
2994
|
| 'gpt-5.4-mini'
|
|
2991
2995
|
| 'gpt-5.4-nano'
|
|
2992
2996
|
| 'gpt-5.5'
|
|
2997
|
+
| 'gpt-5.6-terra'
|
|
2998
|
+
| 'gpt-5.6-luna'
|
|
2993
2999
|
| 'claude-4.5-sonnet'
|
|
2994
3000
|
| 'claude-4.6-sonnet'
|
|
2995
3001
|
| 'claude-5-sonnet'
|
|
@@ -3466,6 +3472,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
3466
3472
|
| 'gpt-5.4-mini'
|
|
3467
3473
|
| 'gpt-5.4-nano'
|
|
3468
3474
|
| 'gpt-5.5'
|
|
3475
|
+
| 'gpt-5.6-terra'
|
|
3476
|
+
| 'gpt-5.6-luna'
|
|
3469
3477
|
| 'claude-4.5-sonnet'
|
|
3470
3478
|
| 'claude-4.6-sonnet'
|
|
3471
3479
|
| 'claude-5-sonnet'
|
|
@@ -3949,6 +3957,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
3949
3957
|
| 'gpt-5.4-mini'
|
|
3950
3958
|
| 'gpt-5.4-nano'
|
|
3951
3959
|
| 'gpt-5.5'
|
|
3960
|
+
| 'gpt-5.6-terra'
|
|
3961
|
+
| 'gpt-5.6-luna'
|
|
3952
3962
|
| 'claude-4.5-sonnet'
|
|
3953
3963
|
| 'claude-4.6-sonnet'
|
|
3954
3964
|
| 'claude-5-sonnet'
|
|
@@ -4619,6 +4629,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
4619
4629
|
| 'gpt-5.4-mini'
|
|
4620
4630
|
| 'gpt-5.4-nano'
|
|
4621
4631
|
| 'gpt-5.5'
|
|
4632
|
+
| 'gpt-5.6-terra'
|
|
4633
|
+
| 'gpt-5.6-luna'
|
|
4622
4634
|
| 'claude-4.5-sonnet'
|
|
4623
4635
|
| 'claude-4.6-sonnet'
|
|
4624
4636
|
| 'claude-5-sonnet'
|
|
@@ -5063,6 +5075,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
5063
5075
|
| 'gpt-5.4-mini'
|
|
5064
5076
|
| 'gpt-5.4-nano'
|
|
5065
5077
|
| 'gpt-5.5'
|
|
5078
|
+
| 'gpt-5.6-terra'
|
|
5079
|
+
| 'gpt-5.6-luna'
|
|
5066
5080
|
| 'claude-4.5-sonnet'
|
|
5067
5081
|
| 'claude-4.6-sonnet'
|
|
5068
5082
|
| 'claude-5-sonnet'
|
|
@@ -5488,6 +5502,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
5488
5502
|
| 'gpt-5.4-mini'
|
|
5489
5503
|
| 'gpt-5.4-nano'
|
|
5490
5504
|
| 'gpt-5.5'
|
|
5505
|
+
| 'gpt-5.6-terra'
|
|
5506
|
+
| 'gpt-5.6-luna'
|
|
5491
5507
|
| 'claude-4.5-sonnet'
|
|
5492
5508
|
| 'claude-4.6-sonnet'
|
|
5493
5509
|
| 'claude-5-sonnet'
|
|
@@ -5926,6 +5942,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
5926
5942
|
| 'gpt-5.4-mini'
|
|
5927
5943
|
| 'gpt-5.4-nano'
|
|
5928
5944
|
| 'gpt-5.5'
|
|
5945
|
+
| 'gpt-5.6-terra'
|
|
5946
|
+
| 'gpt-5.6-luna'
|
|
5929
5947
|
| 'claude-4.5-sonnet'
|
|
5930
5948
|
| 'claude-4.6-sonnet'
|
|
5931
5949
|
| 'claude-5-sonnet'
|
|
@@ -6493,6 +6511,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
6493
6511
|
| 'gpt-5.4-mini'
|
|
6494
6512
|
| 'gpt-5.4-nano'
|
|
6495
6513
|
| 'gpt-5.5'
|
|
6514
|
+
| 'gpt-5.6-terra'
|
|
6515
|
+
| 'gpt-5.6-luna'
|
|
6496
6516
|
| 'claude-4.5-sonnet'
|
|
6497
6517
|
| 'claude-4.6-sonnet'
|
|
6498
6518
|
| 'claude-5-sonnet'
|
|
@@ -6878,6 +6898,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
6878
6898
|
| 'gpt-5.4-mini'
|
|
6879
6899
|
| 'gpt-5.4-nano'
|
|
6880
6900
|
| 'gpt-5.5'
|
|
6901
|
+
| 'gpt-5.6-terra'
|
|
6902
|
+
| 'gpt-5.6-luna'
|
|
6881
6903
|
| 'claude-4.5-sonnet'
|
|
6882
6904
|
| 'claude-4.6-sonnet'
|
|
6883
6905
|
| 'claude-5-sonnet'
|
|
@@ -7363,6 +7385,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
7363
7385
|
| 'gpt-5.4-mini'
|
|
7364
7386
|
| 'gpt-5.4-nano'
|
|
7365
7387
|
| 'gpt-5.5'
|
|
7388
|
+
| 'gpt-5.6-terra'
|
|
7389
|
+
| 'gpt-5.6-luna'
|
|
7366
7390
|
| 'claude-4.5-sonnet'
|
|
7367
7391
|
| 'claude-4.6-sonnet'
|
|
7368
7392
|
| 'claude-5-sonnet'
|
|
@@ -8045,6 +8069,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
8045
8069
|
| 'gpt-5.4-mini'
|
|
8046
8070
|
| 'gpt-5.4-nano'
|
|
8047
8071
|
| 'gpt-5.5'
|
|
8072
|
+
| 'gpt-5.6-terra'
|
|
8073
|
+
| 'gpt-5.6-luna'
|
|
8048
8074
|
| 'claude-4.5-sonnet'
|
|
8049
8075
|
| 'claude-4.6-sonnet'
|
|
8050
8076
|
| 'claude-5-sonnet'
|
|
@@ -8318,6 +8344,8 @@ export namespace ConversationFlowComponentResponse {
|
|
|
8318
8344
|
| 'gpt-5.4-mini'
|
|
8319
8345
|
| 'gpt-5.4-nano'
|
|
8320
8346
|
| 'gpt-5.5'
|
|
8347
|
+
| 'gpt-5.6-terra'
|
|
8348
|
+
| 'gpt-5.6-luna'
|
|
8321
8349
|
| 'claude-4.5-sonnet'
|
|
8322
8350
|
| 'claude-4.6-sonnet'
|
|
8323
8351
|
| 'claude-5-sonnet'
|
|
@@ -9323,6 +9351,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
9323
9351
|
| 'gpt-5.4-mini'
|
|
9324
9352
|
| 'gpt-5.4-nano'
|
|
9325
9353
|
| 'gpt-5.5'
|
|
9354
|
+
| 'gpt-5.6-terra'
|
|
9355
|
+
| 'gpt-5.6-luna'
|
|
9326
9356
|
| 'claude-4.5-sonnet'
|
|
9327
9357
|
| 'claude-4.6-sonnet'
|
|
9328
9358
|
| 'claude-5-sonnet'
|
|
@@ -10028,6 +10058,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
10028
10058
|
| 'gpt-5.4-mini'
|
|
10029
10059
|
| 'gpt-5.4-nano'
|
|
10030
10060
|
| 'gpt-5.5'
|
|
10061
|
+
| 'gpt-5.6-terra'
|
|
10062
|
+
| 'gpt-5.6-luna'
|
|
10031
10063
|
| 'claude-4.5-sonnet'
|
|
10032
10064
|
| 'claude-4.6-sonnet'
|
|
10033
10065
|
| 'claude-5-sonnet'
|
|
@@ -11531,6 +11563,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
11531
11563
|
| 'gpt-5.4-mini'
|
|
11532
11564
|
| 'gpt-5.4-nano'
|
|
11533
11565
|
| 'gpt-5.5'
|
|
11566
|
+
| 'gpt-5.6-terra'
|
|
11567
|
+
| 'gpt-5.6-luna'
|
|
11534
11568
|
| 'claude-4.5-sonnet'
|
|
11535
11569
|
| 'claude-4.6-sonnet'
|
|
11536
11570
|
| 'claude-5-sonnet'
|
|
@@ -12007,6 +12041,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
12007
12041
|
| 'gpt-5.4-mini'
|
|
12008
12042
|
| 'gpt-5.4-nano'
|
|
12009
12043
|
| 'gpt-5.5'
|
|
12044
|
+
| 'gpt-5.6-terra'
|
|
12045
|
+
| 'gpt-5.6-luna'
|
|
12010
12046
|
| 'claude-4.5-sonnet'
|
|
12011
12047
|
| 'claude-4.6-sonnet'
|
|
12012
12048
|
| 'claude-5-sonnet'
|
|
@@ -12490,6 +12526,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
12490
12526
|
| 'gpt-5.4-mini'
|
|
12491
12527
|
| 'gpt-5.4-nano'
|
|
12492
12528
|
| 'gpt-5.5'
|
|
12529
|
+
| 'gpt-5.6-terra'
|
|
12530
|
+
| 'gpt-5.6-luna'
|
|
12493
12531
|
| 'claude-4.5-sonnet'
|
|
12494
12532
|
| 'claude-4.6-sonnet'
|
|
12495
12533
|
| 'claude-5-sonnet'
|
|
@@ -13160,6 +13198,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
13160
13198
|
| 'gpt-5.4-mini'
|
|
13161
13199
|
| 'gpt-5.4-nano'
|
|
13162
13200
|
| 'gpt-5.5'
|
|
13201
|
+
| 'gpt-5.6-terra'
|
|
13202
|
+
| 'gpt-5.6-luna'
|
|
13163
13203
|
| 'claude-4.5-sonnet'
|
|
13164
13204
|
| 'claude-4.6-sonnet'
|
|
13165
13205
|
| 'claude-5-sonnet'
|
|
@@ -13604,6 +13644,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
13604
13644
|
| 'gpt-5.4-mini'
|
|
13605
13645
|
| 'gpt-5.4-nano'
|
|
13606
13646
|
| 'gpt-5.5'
|
|
13647
|
+
| 'gpt-5.6-terra'
|
|
13648
|
+
| 'gpt-5.6-luna'
|
|
13607
13649
|
| 'claude-4.5-sonnet'
|
|
13608
13650
|
| 'claude-4.6-sonnet'
|
|
13609
13651
|
| 'claude-5-sonnet'
|
|
@@ -14029,6 +14071,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
14029
14071
|
| 'gpt-5.4-mini'
|
|
14030
14072
|
| 'gpt-5.4-nano'
|
|
14031
14073
|
| 'gpt-5.5'
|
|
14074
|
+
| 'gpt-5.6-terra'
|
|
14075
|
+
| 'gpt-5.6-luna'
|
|
14032
14076
|
| 'claude-4.5-sonnet'
|
|
14033
14077
|
| 'claude-4.6-sonnet'
|
|
14034
14078
|
| 'claude-5-sonnet'
|
|
@@ -14467,6 +14511,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
14467
14511
|
| 'gpt-5.4-mini'
|
|
14468
14512
|
| 'gpt-5.4-nano'
|
|
14469
14513
|
| 'gpt-5.5'
|
|
14514
|
+
| 'gpt-5.6-terra'
|
|
14515
|
+
| 'gpt-5.6-luna'
|
|
14470
14516
|
| 'claude-4.5-sonnet'
|
|
14471
14517
|
| 'claude-4.6-sonnet'
|
|
14472
14518
|
| 'claude-5-sonnet'
|
|
@@ -15034,6 +15080,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
15034
15080
|
| 'gpt-5.4-mini'
|
|
15035
15081
|
| 'gpt-5.4-nano'
|
|
15036
15082
|
| 'gpt-5.5'
|
|
15083
|
+
| 'gpt-5.6-terra'
|
|
15084
|
+
| 'gpt-5.6-luna'
|
|
15037
15085
|
| 'claude-4.5-sonnet'
|
|
15038
15086
|
| 'claude-4.6-sonnet'
|
|
15039
15087
|
| 'claude-5-sonnet'
|
|
@@ -15419,6 +15467,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
15419
15467
|
| 'gpt-5.4-mini'
|
|
15420
15468
|
| 'gpt-5.4-nano'
|
|
15421
15469
|
| 'gpt-5.5'
|
|
15470
|
+
| 'gpt-5.6-terra'
|
|
15471
|
+
| 'gpt-5.6-luna'
|
|
15422
15472
|
| 'claude-4.5-sonnet'
|
|
15423
15473
|
| 'claude-4.6-sonnet'
|
|
15424
15474
|
| 'claude-5-sonnet'
|
|
@@ -15904,6 +15954,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
15904
15954
|
| 'gpt-5.4-mini'
|
|
15905
15955
|
| 'gpt-5.4-nano'
|
|
15906
15956
|
| 'gpt-5.5'
|
|
15957
|
+
| 'gpt-5.6-terra'
|
|
15958
|
+
| 'gpt-5.6-luna'
|
|
15907
15959
|
| 'claude-4.5-sonnet'
|
|
15908
15960
|
| 'claude-4.6-sonnet'
|
|
15909
15961
|
| 'claude-5-sonnet'
|
|
@@ -16586,6 +16638,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
16586
16638
|
| 'gpt-5.4-mini'
|
|
16587
16639
|
| 'gpt-5.4-nano'
|
|
16588
16640
|
| 'gpt-5.5'
|
|
16641
|
+
| 'gpt-5.6-terra'
|
|
16642
|
+
| 'gpt-5.6-luna'
|
|
16589
16643
|
| 'claude-4.5-sonnet'
|
|
16590
16644
|
| 'claude-4.6-sonnet'
|
|
16591
16645
|
| 'claude-5-sonnet'
|
|
@@ -16859,6 +16913,8 @@ export namespace ConversationFlowComponentCreateParams {
|
|
|
16859
16913
|
| 'gpt-5.4-mini'
|
|
16860
16914
|
| 'gpt-5.4-nano'
|
|
16861
16915
|
| 'gpt-5.5'
|
|
16916
|
+
| 'gpt-5.6-terra'
|
|
16917
|
+
| 'gpt-5.6-luna'
|
|
16862
16918
|
| 'claude-4.5-sonnet'
|
|
16863
16919
|
| 'claude-4.6-sonnet'
|
|
16864
16920
|
| 'claude-5-sonnet'
|
|
@@ -17901,6 +17957,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
17901
17957
|
| 'gpt-5.4-mini'
|
|
17902
17958
|
| 'gpt-5.4-nano'
|
|
17903
17959
|
| 'gpt-5.5'
|
|
17960
|
+
| 'gpt-5.6-terra'
|
|
17961
|
+
| 'gpt-5.6-luna'
|
|
17904
17962
|
| 'claude-4.5-sonnet'
|
|
17905
17963
|
| 'claude-4.6-sonnet'
|
|
17906
17964
|
| 'claude-5-sonnet'
|
|
@@ -18606,6 +18664,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
18606
18664
|
| 'gpt-5.4-mini'
|
|
18607
18665
|
| 'gpt-5.4-nano'
|
|
18608
18666
|
| 'gpt-5.5'
|
|
18667
|
+
| 'gpt-5.6-terra'
|
|
18668
|
+
| 'gpt-5.6-luna'
|
|
18609
18669
|
| 'claude-4.5-sonnet'
|
|
18610
18670
|
| 'claude-4.6-sonnet'
|
|
18611
18671
|
| 'claude-5-sonnet'
|
|
@@ -20109,6 +20169,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
20109
20169
|
| 'gpt-5.4-mini'
|
|
20110
20170
|
| 'gpt-5.4-nano'
|
|
20111
20171
|
| 'gpt-5.5'
|
|
20172
|
+
| 'gpt-5.6-terra'
|
|
20173
|
+
| 'gpt-5.6-luna'
|
|
20112
20174
|
| 'claude-4.5-sonnet'
|
|
20113
20175
|
| 'claude-4.6-sonnet'
|
|
20114
20176
|
| 'claude-5-sonnet'
|
|
@@ -20585,6 +20647,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
20585
20647
|
| 'gpt-5.4-mini'
|
|
20586
20648
|
| 'gpt-5.4-nano'
|
|
20587
20649
|
| 'gpt-5.5'
|
|
20650
|
+
| 'gpt-5.6-terra'
|
|
20651
|
+
| 'gpt-5.6-luna'
|
|
20588
20652
|
| 'claude-4.5-sonnet'
|
|
20589
20653
|
| 'claude-4.6-sonnet'
|
|
20590
20654
|
| 'claude-5-sonnet'
|
|
@@ -21068,6 +21132,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
21068
21132
|
| 'gpt-5.4-mini'
|
|
21069
21133
|
| 'gpt-5.4-nano'
|
|
21070
21134
|
| 'gpt-5.5'
|
|
21135
|
+
| 'gpt-5.6-terra'
|
|
21136
|
+
| 'gpt-5.6-luna'
|
|
21071
21137
|
| 'claude-4.5-sonnet'
|
|
21072
21138
|
| 'claude-4.6-sonnet'
|
|
21073
21139
|
| 'claude-5-sonnet'
|
|
@@ -21738,6 +21804,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
21738
21804
|
| 'gpt-5.4-mini'
|
|
21739
21805
|
| 'gpt-5.4-nano'
|
|
21740
21806
|
| 'gpt-5.5'
|
|
21807
|
+
| 'gpt-5.6-terra'
|
|
21808
|
+
| 'gpt-5.6-luna'
|
|
21741
21809
|
| 'claude-4.5-sonnet'
|
|
21742
21810
|
| 'claude-4.6-sonnet'
|
|
21743
21811
|
| 'claude-5-sonnet'
|
|
@@ -22182,6 +22250,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
22182
22250
|
| 'gpt-5.4-mini'
|
|
22183
22251
|
| 'gpt-5.4-nano'
|
|
22184
22252
|
| 'gpt-5.5'
|
|
22253
|
+
| 'gpt-5.6-terra'
|
|
22254
|
+
| 'gpt-5.6-luna'
|
|
22185
22255
|
| 'claude-4.5-sonnet'
|
|
22186
22256
|
| 'claude-4.6-sonnet'
|
|
22187
22257
|
| 'claude-5-sonnet'
|
|
@@ -22607,6 +22677,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
22607
22677
|
| 'gpt-5.4-mini'
|
|
22608
22678
|
| 'gpt-5.4-nano'
|
|
22609
22679
|
| 'gpt-5.5'
|
|
22680
|
+
| 'gpt-5.6-terra'
|
|
22681
|
+
| 'gpt-5.6-luna'
|
|
22610
22682
|
| 'claude-4.5-sonnet'
|
|
22611
22683
|
| 'claude-4.6-sonnet'
|
|
22612
22684
|
| 'claude-5-sonnet'
|
|
@@ -23045,6 +23117,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
23045
23117
|
| 'gpt-5.4-mini'
|
|
23046
23118
|
| 'gpt-5.4-nano'
|
|
23047
23119
|
| 'gpt-5.5'
|
|
23120
|
+
| 'gpt-5.6-terra'
|
|
23121
|
+
| 'gpt-5.6-luna'
|
|
23048
23122
|
| 'claude-4.5-sonnet'
|
|
23049
23123
|
| 'claude-4.6-sonnet'
|
|
23050
23124
|
| 'claude-5-sonnet'
|
|
@@ -23612,6 +23686,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
23612
23686
|
| 'gpt-5.4-mini'
|
|
23613
23687
|
| 'gpt-5.4-nano'
|
|
23614
23688
|
| 'gpt-5.5'
|
|
23689
|
+
| 'gpt-5.6-terra'
|
|
23690
|
+
| 'gpt-5.6-luna'
|
|
23615
23691
|
| 'claude-4.5-sonnet'
|
|
23616
23692
|
| 'claude-4.6-sonnet'
|
|
23617
23693
|
| 'claude-5-sonnet'
|
|
@@ -23997,6 +24073,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
23997
24073
|
| 'gpt-5.4-mini'
|
|
23998
24074
|
| 'gpt-5.4-nano'
|
|
23999
24075
|
| 'gpt-5.5'
|
|
24076
|
+
| 'gpt-5.6-terra'
|
|
24077
|
+
| 'gpt-5.6-luna'
|
|
24000
24078
|
| 'claude-4.5-sonnet'
|
|
24001
24079
|
| 'claude-4.6-sonnet'
|
|
24002
24080
|
| 'claude-5-sonnet'
|
|
@@ -24482,6 +24560,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
24482
24560
|
| 'gpt-5.4-mini'
|
|
24483
24561
|
| 'gpt-5.4-nano'
|
|
24484
24562
|
| 'gpt-5.5'
|
|
24563
|
+
| 'gpt-5.6-terra'
|
|
24564
|
+
| 'gpt-5.6-luna'
|
|
24485
24565
|
| 'claude-4.5-sonnet'
|
|
24486
24566
|
| 'claude-4.6-sonnet'
|
|
24487
24567
|
| 'claude-5-sonnet'
|
|
@@ -25164,6 +25244,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
25164
25244
|
| 'gpt-5.4-mini'
|
|
25165
25245
|
| 'gpt-5.4-nano'
|
|
25166
25246
|
| 'gpt-5.5'
|
|
25247
|
+
| 'gpt-5.6-terra'
|
|
25248
|
+
| 'gpt-5.6-luna'
|
|
25167
25249
|
| 'claude-4.5-sonnet'
|
|
25168
25250
|
| 'claude-4.6-sonnet'
|
|
25169
25251
|
| 'claude-5-sonnet'
|
|
@@ -25437,6 +25519,8 @@ export namespace ConversationFlowComponentUpdateParams {
|
|
|
25437
25519
|
| 'gpt-5.4-mini'
|
|
25438
25520
|
| 'gpt-5.4-nano'
|
|
25439
25521
|
| 'gpt-5.5'
|
|
25522
|
+
| 'gpt-5.6-terra'
|
|
25523
|
+
| 'gpt-5.6-luna'
|
|
25440
25524
|
| 'claude-4.5-sonnet'
|
|
25441
25525
|
| 'claude-4.6-sonnet'
|
|
25442
25526
|
| 'claude-5-sonnet'
|