vika-cli 1.4.0

Generate TypeScript types, Zod schemas, and Fetch-based API clients from OpenAPI/Swagger specifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
use crate::error::Result;
use crate::generator::swagger_parser::resolve_ref;
use crate::generator::swagger_parser::{
    get_schema_name_from_ref, resolve_parameter_ref, resolve_request_body_ref,
    resolve_response_ref, OperationInfo,
};
use crate::generator::ts_typings::TypeScriptType;
use crate::generator::utils::{sanitize_module_name, to_camel_case, to_pascal_case};
use crate::templates::context::{
    ApiContext, Parameter as ApiParameter, RequestBody, Response as ApiResponse,
};
use crate::templates::engine::TemplateEngine;
use crate::templates::registry::TemplateId;
use openapiv3::OpenAPI;
use openapiv3::{Operation, Parameter, ReferenceOr, SchemaKind, Type};

/// Find the common prefix of two paths
fn find_common_prefix(path1: &str, path2: &str) -> String {
    let parts1: Vec<&str> = path1.split('/').collect();
    let parts2: Vec<&str> = path2.split('/').collect();

    let mut common = Vec::new();
    let min_len = parts1.len().min(parts2.len());

    for i in 0..min_len {
        if parts1[i] == parts2[i] {
            common.push(parts1[i]);
        } else {
            break;
        }
    }

    common.join("/")
}

pub struct ApiFunction {
    pub content: String,
}

pub struct ApiGenerationResult {
    pub functions: Vec<ApiFunction>,
    pub response_types: Vec<TypeScriptType>,
}

#[derive(Clone, Debug)]
pub struct ParameterInfo {
    pub name: String,
    pub param_type: ParameterType,
    pub enum_values: Option<Vec<String>>,
    pub enum_type_name: Option<String>,
    pub is_array: bool,
    pub array_item_type: Option<String>,
    pub style: Option<String>,
    pub explode: Option<bool>,
    pub description: Option<String>,
}

#[derive(Clone, Debug)]
pub enum ParameterType {
    String,
    Number,
    Integer,
    Boolean,
    Enum(String),  // enum type name
    Array(String), // array item type
}

#[derive(Clone, Debug)]
pub struct ResponseInfo {
    pub status_code: u16,
    pub body_type: String,
    pub description: Option<String>,
}

#[derive(Clone, Debug)]
pub struct ErrorResponse {
    pub status_code: u16,
    pub body_type: String,
}

pub fn generate_api_client(
    openapi: &OpenAPI,
    operations: &[OperationInfo],
    module_name: &str,
    common_schemas: &[String],
) -> Result<ApiGenerationResult> {
    generate_api_client_with_registry(
        openapi,
        operations,
        module_name,
        common_schemas,
        &mut std::collections::HashMap::new(),
    )
}

pub fn generate_api_client_with_registry(
    openapi: &OpenAPI,
    operations: &[OperationInfo],
    module_name: &str,
    common_schemas: &[String],
    enum_registry: &mut std::collections::HashMap<String, String>,
) -> Result<ApiGenerationResult> {
    generate_api_client_with_registry_and_engine(
        openapi,
        operations,
        module_name,
        common_schemas,
        enum_registry,
        None,
    )
}

pub fn generate_api_client_with_registry_and_engine(
    openapi: &OpenAPI,
    operations: &[OperationInfo],
    module_name: &str,
    common_schemas: &[String],
    enum_registry: &mut std::collections::HashMap<String, String>,
    template_engine: Option<&TemplateEngine>,
) -> Result<ApiGenerationResult> {
    generate_api_client_with_registry_and_engine_and_spec(
        openapi,
        operations,
        module_name,
        common_schemas,
        enum_registry,
        template_engine,
        None,
        None,
        None,
        None,
    )
}

#[allow(clippy::too_many_arguments)]
pub fn generate_api_client_with_registry_and_engine_and_spec(
    openapi: &OpenAPI,
    operations: &[OperationInfo],
    module_name: &str,
    common_schemas: &[String],
    enum_registry: &mut std::collections::HashMap<String, String>,
    template_engine: Option<&TemplateEngine>,
    spec_name: Option<&str>,
    root_dir: Option<&str>,
    apis_dir: Option<&str>,
    schemas_dir: Option<&str>,
) -> Result<ApiGenerationResult> {
    let mut functions = Vec::new();
    let mut response_types = Vec::new();

    for op_info in operations {
        let result = generate_function_for_operation(
            openapi,
            op_info,
            module_name,
            common_schemas,
            enum_registry,
            template_engine,
            spec_name,
            root_dir,
            apis_dir,
            schemas_dir,
        )?;
        functions.push(result.function);
        response_types.extend(result.response_types);
    }

    Ok(ApiGenerationResult {
        functions,
        response_types,
    })
}

struct FunctionGenerationResult {
    function: ApiFunction,
    response_types: Vec<TypeScriptType>,
}

#[allow(clippy::too_many_arguments)]
fn generate_function_for_operation(
    openapi: &OpenAPI,
    op_info: &OperationInfo,
    module_name: &str,
    common_schemas: &[String],
    enum_registry: &mut std::collections::HashMap<String, String>,
    template_engine: Option<&TemplateEngine>,
    spec_name: Option<&str>,
    root_dir: Option<&str>,
    apis_dir: Option<&str>,
    schemas_dir: Option<&str>,
) -> Result<FunctionGenerationResult> {
    let operation = &op_info.operation;
    let method = op_info.method.to_lowercase();

    // Generate function name from operation ID or path
    let func_name = if let Some(operation_id) = &operation.operation_id {
        to_camel_case(operation_id)
    } else {
        generate_function_name_from_path(&op_info.path, &op_info.method)
    };

    // Extract path parameters
    let path_params = extract_path_parameters(openapi, operation, enum_registry)?;

    // Extract query parameters
    let query_params = extract_query_parameters(openapi, operation, enum_registry)?;

    // Extract request body
    let request_body_info = extract_request_body(openapi, operation)?;

    // Extract all responses (success + error)
    let all_responses = extract_all_responses(openapi, operation)?;

    // Separate success and error responses
    let success_responses: Vec<ResponseInfo> = all_responses
        .iter()
        .filter(|r| r.status_code >= 200 && r.status_code < 300)
        .cloned()
        .collect();
    let error_responses: Vec<ResponseInfo> = all_responses
        .iter()
        .filter(|r| r.status_code < 200 || r.status_code >= 300)
        .cloned()
        .collect();

    // Get primary success response type (for backward compatibility)
    let response_type = success_responses
        .iter()
        .find(|r| r.status_code == 200)
        .map(|r| r.body_type.clone())
        .unwrap_or_else(|| "any".to_string());

    // Calculate namespace name for qualified type access
    // Replace slashes with underscore and convert to PascalCase (e.g., "tenant/auth" -> "TenantAuth")
    let namespace_name = to_pascal_case(&module_name.replace("/", "_"));

    // Build function signature
    let mut params = Vec::new();
    let mut path_template = op_info.path.clone();
    let mut enum_types = Vec::new();

    // Add path parameters
    for param in &path_params {
        let param_type = match &param.param_type {
            ParameterType::Enum(enum_name) => {
                enum_types.push((
                    enum_name.clone(),
                    param.enum_values.clone().unwrap_or_default(),
                ));
                enum_name.clone()
            }
            ParameterType::String => "string".to_string(),
            ParameterType::Number => "number".to_string(),
            ParameterType::Integer => "number".to_string(),
            ParameterType::Boolean => "boolean".to_string(),
            ParameterType::Array(_) => "string".to_string(), // Arrays in path are serialized as strings
        };
        params.push(format!("{}: {}", param.name, param_type));
        path_template = path_template.replace(
            &format!("{{{}}}", param.name),
            &format!("${{{}}}", param.name),
        );
    }

    // Add request body (check if it's in common schemas)
    if let Some((body_type, _)) = &request_body_info {
        // Don't qualify "any" type with namespace
        if body_type == "any" {
            params.push("body: any".to_string());
        } else {
            let qualified_body_type = if common_schemas.contains(body_type) {
                format!("Common.{}", body_type)
            } else {
                format!("{}.{}", namespace_name, body_type)
            };
            params.push(format!("body: {}", qualified_body_type));
        }
    }

    // Add query parameters (optional) AFTER any required parameters like body,
    // to satisfy TypeScript's \"required parameter cannot follow an optional parameter\" rule.
    // Query params types are now generated in schema files, so we just reference them
    if !query_params.is_empty() {
        let type_name_base = to_pascal_case(&func_name);
        let query_type_name = format!("{}QueryParams", type_name_base);

        // Reference query params type from schemas (namespace-qualified)
        params.push(format!("query?: {}.{}", namespace_name, query_type_name));
    }

    let params_str = params.join(", ");

    // Build function body
    let mut body_lines = Vec::new();

    // Build URL with path parameters
    let mut url_template = op_info.path.clone();
    for param in &path_params {
        url_template = url_template.replace(
            &format!("{{{}}}", param.name),
            &format!("${{{}}}", param.name),
        );
    }

    // Build URL with query parameters
    if !query_params.is_empty() {
        body_lines.push("    const queryString = new URLSearchParams();".to_string());
        for param in &query_params {
            if param.is_array {
                let explode = param.explode.unwrap_or(true);
                if explode {
                    // explode: true -> tags=one&tags=two
                    body_lines.push(format!("    if (query?.{}) {{", param.name));
                    body_lines.push(format!(
                        "      query.{}.forEach((item) => queryString.append(\"{}\", String(item)));",
                        param.name, param.name
                    ));
                    body_lines.push("    }".to_string());
                } else {
                    // explode: false -> tags=one,two
                    body_lines.push(format!(
                        "    if (query?.{}) queryString.append(\"{}\", query.{}.join(\",\"));",
                        param.name, param.name, param.name
                    ));
                }
            } else {
                body_lines.push(format!(
                    "    if (query?.{}) queryString.append(\"{}\", String(query.{}));",
                    param.name, param.name, param.name
                ));
            }
        }
        body_lines.push("    const queryStr = queryString.toString();".to_string());
        body_lines.push(format!(
            "    const url = `{}` + (queryStr ? `?${{queryStr}}` : '');",
            url_template
        ));
    } else {
        body_lines.push(format!("    const url = `{}`;", url_template));
    }

    // Build HTTP call using VikaClient
    let http_method = match method.to_uppercase().as_str() {
        "GET" => "get",
        "POST" => "post",
        "PUT" => "put",
        "DELETE" => "delete",
        "PATCH" => "patch",
        "HEAD" => "head",
        "OPTIONS" => "options",
        _ => "get",
    };

    // Generate type names for success and error maps
    let type_name_base = to_pascal_case(&func_name);
    let success_map_type = format!("{}Responses", type_name_base);
    let error_map_type = format!("{}Errors", type_name_base);

    // Build VikaClient call with generic types
    if let Some((_body_type, _)) = &request_body_info {
        body_lines.push(format!(
            "    return vikaClient.{}<{}, {}>(url, {{ body }});",
            http_method, success_map_type, error_map_type
        ));
    } else {
        body_lines.push(format!(
            "    return vikaClient.{}<{}, {}>(url);",
            http_method, success_map_type, error_map_type
        ));
    }

    // Runtime client is at {root_dir}/runtime/index.ts
    // Calculate relative path from {apis_dir}/{module}/index.ts to {root_dir}/runtime/index.ts
    // For example: src/apis/ecommerce/addresses/index.ts -> src/runtime/index.ts
    // Calculate module depth (module_name can have nested modules like "tenant/auth")
    let module_depth = module_name.matches('/').count() + 1; // +1 for the module directory itself

    let runtime_import = if let (Some(root), Some(apis)) = (root_dir, apis_dir) {
        // Calculate depth: number of path segments from apis_dir to root_dir
        // e.g., if root_dir = "src" and apis_dir = "src/apis/ecommerce", depth = 2
        let root_normalized = root.trim_end_matches('/');
        let apis_normalized = apis
            .trim_start_matches(root_normalized)
            .trim_start_matches('/');

        // Count path segments in apis_dir relative to root_dir
        let apis_depth = if apis_normalized.is_empty() {
            0
        } else {
            apis_normalized.matches('/').count() + 1
        };

        let total_depth = apis_depth + module_depth;

        format!("{}runtime", "../".repeat(total_depth))
    } else {
        // Fallback: assume runtime is at same level as apis (backward compatibility)
        format!("{}runtime", "../".repeat(module_depth))
    };

    // Determine if response type is in common schemas or module-specific
    // We still need schema imports for request/response body types
    let mut type_imports = String::new();
    let mut needs_common_import = false;
    let mut needs_namespace_import = false;

    // Check if response type needs import
    if response_type != "any" {
        let is_common = common_schemas.contains(&response_type);
        if is_common {
            needs_common_import = true;
        } else {
            needs_namespace_import = true;
        }
    }

    // Check if request body type needs import
    if let Some((body_type, _)) = &request_body_info {
        if body_type != "any" {
            if common_schemas.contains(body_type) {
                needs_common_import = true;
            } else {
                needs_namespace_import = true;
            }
        }
    }

    // Check if any response map types need Common import
    for response in success_responses.iter().chain(error_responses.iter()) {
        if response.body_type != "any" && common_schemas.contains(&response.body_type) {
            needs_common_import = true;
            break;
        }
    }

    // Add imports
    // Calculate relative path from {apis_dir}/{module}/index.ts to {schemas_dir}/{module}/index.ts
    // Use actual schemas_dir path from config instead of hardcoded "schemas"
    if needs_common_import || needs_namespace_import {
        let schemas_import_path = if let (Some(apis), Some(schemas)) = (apis_dir, schemas_dir) {
            // Calculate relative path from apis_dir to schemas_dir
            // e.g., apis_dir = "src/apis", schemas_dir = "src/schema"
            // From "src/apis/{module}/index.ts" to "src/schema/{module}/index.ts"
            // Need to go up from module to apis_dir, then calculate path to schemas_dir

            // Normalize paths
            let apis_normalized = apis.trim_end_matches('/');
            let schemas_normalized = schemas.trim_end_matches('/');

            // Find common prefix
            let common_prefix = find_common_prefix(apis_normalized, schemas_normalized);

            // Calculate depth from apis_dir/{module} to common prefix
            let apis_relative = apis_normalized
                .strip_prefix(&common_prefix)
                .unwrap_or(apis_normalized)
                .trim_start_matches('/');
            let apis_depth = if apis_relative.is_empty() {
                0
            } else {
                apis_relative.matches('/').count() + 1
            };

            // Calculate path from common prefix to schemas_dir
            let schemas_relative = schemas_normalized
                .strip_prefix(&common_prefix)
                .unwrap_or(schemas_normalized)
                .trim_start_matches('/');

            // Total depth: module_depth + apis_depth (to get to common prefix)
            let total_depth = module_depth + apis_depth;

            // Build relative path: go up total_depth, then into schemas_relative
            if schemas_relative.is_empty() {
                "../".repeat(total_depth)
            } else {
                format!("{}{}", "../".repeat(total_depth), schemas_relative)
            }
        } else {
            // Fallback: assume schemas is at same level as apis (backward compatibility)
            let schemas_depth = module_depth + 2; // +1 to apis/, +1 to src/
            format!("{}schemas", "../".repeat(schemas_depth))
        };

        // Check if schemas_dir includes spec_name by checking if it ends with spec name
        // If schemas_dir is "src/schema" and spec_name is "ecommerce", schemas_dir doesn't include it
        // If schemas_dir is "src/schemas/ecommerce" and spec_name is "ecommerce", schemas_dir includes it
        let schemas_dir_includes_spec =
            if let (Some(schemas), Some(spec)) = (schemas_dir, spec_name) {
                let schemas_normalized = schemas.trim_end_matches('/');
                let spec_normalized = sanitize_module_name(spec);
                schemas_normalized.ends_with(&spec_normalized)
                    || schemas_normalized.ends_with(&format!("/{}", spec_normalized))
            } else {
                false
            };

        if needs_common_import {
            let common_import = if schemas_dir_includes_spec {
                // Spec name is already in schemas_dir path (e.g., src/schemas/ecommerce)
                format!("{}/common", schemas_import_path.trim_end_matches('/'))
            } else {
                // Spec name is NOT in schemas_dir path, so schemas are at {schemas_dir}/common
                // Don't add spec name to import path
                format!("{}/common", schemas_import_path.trim_end_matches('/'))
            };
            type_imports.push_str(&format!("import * as Common from \"{}\";\n", common_import));
        }
        if needs_namespace_import {
            let sanitized_module_name = sanitize_module_name(module_name);
            let schemas_import = if schemas_dir_includes_spec {
                // Spec name is already in schemas_dir path
                format!(
                    "{}/{}",
                    schemas_import_path.trim_end_matches('/'),
                    sanitized_module_name
                )
            } else {
                // Spec name is NOT in schemas_dir path, so schemas are at {schemas_dir}/{module}
                // Don't add spec name to import path
                format!(
                    "{}/{}",
                    schemas_import_path.trim_end_matches('/'),
                    sanitized_module_name
                )
            };
            type_imports.push_str(&format!(
                "import * as {} from \"{}\";\n",
                namespace_name, schemas_import
            ));
        }
    }

    // Generate response types (Errors, Error union, Responses)
    // Query params types are now generated in schema files, not here
    let response_types = generate_response_types(
        &func_name,
        &success_responses,
        &error_responses,
        &namespace_name,
        common_schemas,
        &enum_types,
    );

    // Always generate Responses and Errors types (even if empty, they'll be Record<never, never>)
    let type_name_base = to_pascal_case(&func_name);
    let success_map_type = format!("{}Responses", type_name_base);
    let error_map_type = format!("{}Errors", type_name_base);

    // Response/Error types are generated and exported in the API file itself
    // They should NOT be imported from schemas - they're defined locally
    // Runtime imports are handled by the template via http_import parameter

    // Enum types are generated locally (in response_types), not imported from schemas
    // Parameter-level enums don't exist in schemas, so they must be generated locally

    // Ensure type_imports ends with newline for proper separation
    if !type_imports.is_empty() && !type_imports.ends_with('\n') {
        type_imports.push('\n');
    }

    // Determine return type - use ApiResult with Responses and Errors maps
    let return_type = format!(
        ": Promise<ApiResult<{}, {}>>",
        success_map_type, error_map_type
    );

    let function_body = body_lines.join("\n");

    // Build API context for template
    let api_path_params: Vec<ApiParameter> = path_params
        .iter()
        .map(|p| {
            let param_type = match &p.param_type {
                ParameterType::Enum(enum_name) => enum_name.clone(),
                ParameterType::Array(item_type) => format!("{}[]", item_type),
                ParameterType::String => "string".to_string(),
                ParameterType::Number => "number".to_string(),
                ParameterType::Integer => "number".to_string(),
                ParameterType::Boolean => "boolean".to_string(),
            };
            ApiParameter::new(p.name.clone(), param_type, false, p.description.clone())
        })
        .collect();

    let api_query_params: Vec<ApiParameter> = query_params
        .iter()
        .map(|p| {
            let param_type = match &p.param_type {
                ParameterType::Enum(enum_name) => enum_name.clone(),
                ParameterType::Array(item_type) => format!("{}[]", item_type),
                ParameterType::String => "string".to_string(),
                ParameterType::Number => "number".to_string(),
                ParameterType::Integer => "number".to_string(),
                ParameterType::Boolean => "boolean".to_string(),
            };
            ApiParameter::new(p.name.clone(), param_type, true, p.description.clone())
        })
        .collect();

    let api_request_body = request_body_info
        .as_ref()
        .map(|(rb_type, rb_desc)| RequestBody::new(rb_type.clone(), rb_desc.clone()));
    let api_responses: Vec<ApiResponse> = all_responses
        .iter()
        .map(|r| ApiResponse::new(r.status_code, r.body_type.clone()))
        .collect();

    // Generate content using template or fallback to string formatting
    // Use description if available and non-empty, otherwise fall back to summary
    // Note: Both description and summary are Option<String> in the OpenAPI crate
    let operation_description = operation
        .description
        .clone()
        .or_else(|| operation.summary.clone())
        .filter(|s| !s.is_empty())
        .unwrap_or_default();

    // Prepare response types content
    let response_types_content: String = response_types
        .iter()
        .map(|rt| rt.content.clone())
        .collect::<Vec<_>>()
        .join("\n\n");

    let content = if let Some(engine) = template_engine {
        let context = ApiContext::new(
            func_name.clone(),
            operation.operation_id.clone(),
            method.clone(),
            op_info.path.clone(),
            api_path_params,
            api_query_params,
            api_request_body,
            api_responses,
            type_imports.clone(),
            runtime_import.to_string(),
            return_type.clone(),
            function_body.clone(),
            response_types_content.clone(),
            module_name.to_string(),
            params_str.clone(),
            operation_description.clone(),
            spec_name.map(|s| s.to_string()),
        );

        engine.render(TemplateId::ApiClientFetch, &context)?
    } else {
        // Fallback to string formatting
        let jsdoc = if !operation_description.is_empty() {
            format!("/**\n * {}\n */\n", operation_description)
        } else {
            String::new()
        };
        if params_str.is_empty() {
            let types_section = if !response_types_content.is_empty() {
                format!("{}\n\n", response_types_content)
            } else {
                String::new()
            };
            format!(
                "import {{ vikaClient, type ApiResult }} from \"{}\";\n{}{}{}{}export const {} = async (){} => {{\n{}\n}};",
                runtime_import,
                type_imports,
                if !type_imports.is_empty() { "\n" } else { "" },
                types_section,
                jsdoc,
                func_name,
                return_type,
                function_body
            )
        } else {
            let types_section = if !response_types_content.is_empty() {
                format!("{}\n\n", response_types_content)
            } else {
                String::new()
            };
            format!(
                "import {{ vikaClient, type ApiResult }} from \"{}\";\n{}{}{}{}export const {} = async ({}){} => {{\n{}\n}};",
                runtime_import,
                type_imports,
                if !type_imports.is_empty() { "\n" } else { "" },
                types_section,
                jsdoc,
                func_name,
                params_str,
                return_type,
                function_body
            )
        }
    };

    Ok(FunctionGenerationResult {
        function: ApiFunction { content },
        response_types,
    })
}

pub fn extract_path_parameters(
    openapi: &OpenAPI,
    operation: &Operation,
    enum_registry: &mut std::collections::HashMap<String, String>,
) -> Result<Vec<ParameterInfo>> {
    let mut params = Vec::new();

    for param_ref in &operation.parameters {
        match param_ref {
            ReferenceOr::Reference { reference } => {
                // Resolve parameter reference (with support for nested references up to 3 levels)
                let mut current_ref = Some(reference.clone());
                let mut depth = 0;
                while let Some(ref_path) = current_ref.take() {
                    if depth > 3 {
                        break; // Prevent infinite loops
                    }
                    match resolve_parameter_ref(openapi, &ref_path) {
                        Ok(ReferenceOr::Item(param)) => {
                            if let Parameter::Path { parameter_data, .. } = param {
                                if let Some(param_info) =
                                    extract_parameter_info(openapi, &parameter_data, enum_registry)?
                                {
                                    params.push(param_info);
                                }
                            }
                            break;
                        }
                        Ok(ReferenceOr::Reference {
                            reference: nested_ref,
                        }) => {
                            current_ref = Some(nested_ref);
                            depth += 1;
                        }
                        Err(_) => {
                            // Reference resolution failed - skip
                            break;
                        }
                    }
                }
            }
            ReferenceOr::Item(param) => {
                if let Parameter::Path { parameter_data, .. } = param {
                    if let Some(param_info) =
                        extract_parameter_info(openapi, parameter_data, enum_registry)?
                    {
                        params.push(param_info);
                    }
                }
            }
        }
    }

    Ok(params)
}

pub fn extract_query_parameters(
    openapi: &OpenAPI,
    operation: &Operation,
    enum_registry: &mut std::collections::HashMap<String, String>,
) -> Result<Vec<ParameterInfo>> {
    let mut params = Vec::new();

    for param_ref in &operation.parameters {
        match param_ref {
            ReferenceOr::Reference { reference } => {
                // Resolve parameter reference (with support for nested references up to 3 levels)
                let mut current_ref = Some(reference.clone());
                let mut depth = 0;
                while let Some(ref_path) = current_ref.take() {
                    if depth > 3 {
                        break; // Prevent infinite loops
                    }
                    match resolve_parameter_ref(openapi, &ref_path) {
                        Ok(ReferenceOr::Item(param)) => {
                            if let Parameter::Query {
                                parameter_data,
                                style,
                                ..
                            } = param
                            {
                                if let Some(mut param_info) =
                                    extract_parameter_info(openapi, &parameter_data, enum_registry)?
                                {
                                    // Override style and explode for query parameters
                                    param_info.style = Some(format!("{:?}", style));
                                    // explode defaults to true for arrays, false otherwise
                                    param_info.explode =
                                        Some(parameter_data.explode.unwrap_or(false));
                                    params.push(param_info);
                                }
                            }
                            break;
                        }
                        Ok(ReferenceOr::Reference {
                            reference: nested_ref,
                        }) => {
                            current_ref = Some(nested_ref);
                            depth += 1;
                        }
                        Err(_) => {
                            // Reference resolution failed - skip
                            break;
                        }
                    }
                }
            }
            ReferenceOr::Item(param) => {
                if let Parameter::Query {
                    parameter_data,
                    style,
                    ..
                } = param
                {
                    if let Some(mut param_info) =
                        extract_parameter_info(openapi, parameter_data, enum_registry)?
                    {
                        // Override style and explode for query parameters
                        param_info.style = Some(format!("{:?}", style));
                        // explode defaults to true for arrays, false otherwise
                        param_info.explode = Some(parameter_data.explode.unwrap_or(false));
                        params.push(param_info);
                    }
                }
            }
        }
    }

    Ok(params)
}

fn extract_parameter_info(
    openapi: &OpenAPI,
    parameter_data: &openapiv3::ParameterData,
    enum_registry: &mut std::collections::HashMap<String, String>,
) -> Result<Option<ParameterInfo>> {
    let name = parameter_data.name.clone();
    let description = parameter_data.description.clone();

    // Get schema from parameter
    let schema = match &parameter_data.format {
        openapiv3::ParameterSchemaOrContent::Schema(schema_ref) => match schema_ref {
            ReferenceOr::Reference { reference } => {
                resolve_ref(openapi, reference).ok().and_then(|r| match r {
                    ReferenceOr::Item(s) => Some(s),
                    _ => None,
                })
            }
            ReferenceOr::Item(s) => Some(s.clone()),
        },
        _ => None,
    };

    if let Some(schema) = schema {
        match &schema.schema_kind {
            SchemaKind::Type(type_) => {
                match type_ {
                    Type::String(string_type) => {
                        // Check for enum
                        if !string_type.enumeration.is_empty() {
                            let mut enum_values: Vec<String> = string_type
                                .enumeration
                                .iter()
                                .filter_map(|v| v.as_ref().cloned())
                                .collect();
                            enum_values.sort();
                            let enum_key = enum_values.join(",");

                            // Generate enum name
                            let enum_name = format!("{}Enum", to_pascal_case(&name));
                            let context_key = format!("{}:{}", enum_key, name);

                            // Check registry
                            let final_enum_name = if let Some(existing) = enum_registry
                                .get(&context_key)
                                .or_else(|| enum_registry.get(&enum_key))
                            {
                                existing.clone()
                            } else {
                                enum_registry.insert(context_key.clone(), enum_name.clone());
                                enum_registry.insert(enum_key.clone(), enum_name.clone());
                                enum_name
                            };

                            Ok(Some(ParameterInfo {
                                name,
                                param_type: ParameterType::Enum(final_enum_name.clone()),
                                enum_values: Some(enum_values),
                                enum_type_name: Some(final_enum_name),
                                is_array: false,
                                array_item_type: None,
                                style: Some("simple".to_string()), // default for path
                                explode: Some(false),              // default for path
                                description: description.clone(),
                            }))
                        } else {
                            Ok(Some(ParameterInfo {
                                name,
                                param_type: ParameterType::String,
                                enum_values: None,
                                enum_type_name: None,
                                is_array: false,
                                array_item_type: None,
                                style: Some("simple".to_string()),
                                explode: Some(false),
                                description: description.clone(),
                            }))
                        }
                    }
                    Type::Number(_) => Ok(Some(ParameterInfo {
                        name,
                        param_type: ParameterType::Number,
                        enum_values: None,
                        enum_type_name: None,
                        is_array: false,
                        array_item_type: None,
                        style: Some("simple".to_string()),
                        explode: Some(false),
                        description: description.clone(),
                    })),
                    Type::Integer(_) => Ok(Some(ParameterInfo {
                        name,
                        param_type: ParameterType::Integer,
                        enum_values: None,
                        enum_type_name: None,
                        is_array: false,
                        array_item_type: None,
                        style: Some("simple".to_string()),
                        explode: Some(false),
                        description: description.clone(),
                    })),
                    Type::Boolean(_) => Ok(Some(ParameterInfo {
                        name,
                        param_type: ParameterType::Boolean,
                        enum_values: None,
                        enum_type_name: None,
                        is_array: false,
                        array_item_type: None,
                        style: Some("simple".to_string()),
                        explode: Some(false),
                        description: description.clone(),
                    })),
                    Type::Object(_) => Ok(Some(ParameterInfo {
                        name,
                        param_type: ParameterType::String,
                        enum_values: None,
                        enum_type_name: None,
                        is_array: false,
                        array_item_type: None,
                        style: Some("simple".to_string()),
                        explode: Some(false),
                        description: description.clone(),
                    })),
                    Type::Array(array) => {
                        let item_type = if let Some(items) = &array.items {
                            match items {
                                ReferenceOr::Reference { reference } => {
                                    if let Some(ref_name) = get_schema_name_from_ref(reference) {
                                        to_pascal_case(&ref_name)
                                    } else {
                                        "string".to_string()
                                    }
                                }
                                ReferenceOr::Item(item_schema) => {
                                    // Extract type from item schema
                                    match &item_schema.schema_kind {
                                        SchemaKind::Type(item_type) => match item_type {
                                            Type::String(_) => "string".to_string(),
                                            Type::Number(_) => "number".to_string(),
                                            Type::Integer(_) => "number".to_string(),
                                            Type::Boolean(_) => "boolean".to_string(),
                                            _ => "string".to_string(),
                                        },
                                        _ => "string".to_string(),
                                    }
                                }
                            }
                        } else {
                            "string".to_string()
                        };

                        Ok(Some(ParameterInfo {
                            name,
                            param_type: ParameterType::Array(item_type.clone()),
                            enum_values: None,
                            enum_type_name: None,
                            is_array: true,
                            array_item_type: Some(item_type),
                            style: Some("form".to_string()), // default for query arrays
                            explode: Some(true),             // default for query arrays
                            description: description.clone(),
                        }))
                    }
                }
            }
            _ => Ok(Some(ParameterInfo {
                name,
                param_type: ParameterType::String,
                enum_values: None,
                enum_type_name: None,
                is_array: false,
                array_item_type: None,
                style: Some("simple".to_string()),
                explode: Some(false),
                description: description.clone(),
            })),
        }
    } else {
        // No schema, default to string
        Ok(Some(ParameterInfo {
            name,
            param_type: ParameterType::String,
            enum_values: None,
            enum_type_name: None,
            is_array: false,
            array_item_type: None,
            style: Some("simple".to_string()),
            explode: Some(false),
            description: description.clone(),
        }))
    }
}

pub fn extract_request_body(
    openapi: &OpenAPI,
    operation: &Operation,
) -> Result<Option<(String, Option<String>)>> {
    if let Some(request_body) = &operation.request_body {
        match request_body {
            ReferenceOr::Reference { reference } => {
                // Resolve request body reference
                match resolve_request_body_ref(openapi, reference) {
                    Ok(ReferenceOr::Item(body)) => {
                        let description = body.description.clone();
                        if let Some(json_media) = body.content.get("application/json") {
                            if let Some(schema_ref) = &json_media.schema {
                                match schema_ref {
                                    ReferenceOr::Reference { reference } => {
                                        if let Some(ref_name) = get_schema_name_from_ref(reference)
                                        {
                                            Ok(Some((to_pascal_case(&ref_name), description)))
                                        } else {
                                            Ok(Some(("any".to_string(), description)))
                                        }
                                    }
                                    ReferenceOr::Item(_schema) => {
                                        // Inline schemas: These are schema definitions embedded directly
                                        // in the request body. Generating proper types would require
                                        // recursive type generation at this point, which is complex.
                                        // For now, we use 'any' as a fallback. This can be enhanced
                                        // to generate inline types if needed.
                                        Ok(Some(("any".to_string(), description)))
                                    }
                                }
                            } else {
                                Ok(Some(("any".to_string(), description)))
                            }
                        } else {
                            Ok(Some(("any".to_string(), description)))
                        }
                    }
                    Ok(ReferenceOr::Reference { .. }) => {
                        // Nested reference - return any
                        Ok(Some(("any".to_string(), None)))
                    }
                    Err(_) => {
                        // Reference resolution failed - return any
                        Ok(Some(("any".to_string(), None)))
                    }
                }
            }
            ReferenceOr::Item(body) => {
                let description = body.description.clone();
                if let Some(json_media) = body.content.get("application/json") {
                    if let Some(schema_ref) = &json_media.schema {
                        match schema_ref {
                            ReferenceOr::Reference { reference } => {
                                if let Some(ref_name) = get_schema_name_from_ref(reference) {
                                    Ok(Some((to_pascal_case(&ref_name), description)))
                                } else {
                                    Ok(Some(("any".to_string(), description)))
                                }
                            }
                            ReferenceOr::Item(_schema) => {
                                // Inline schemas: These are schema definitions embedded directly
                                // in the request body. Generating proper types would require
                                // recursive type generation at this point, which is complex.
                                // For now, we use 'any' as a fallback. This can be enhanced
                                // to generate inline types if needed.
                                Ok(Some(("any".to_string(), description)))
                            }
                        }
                    } else {
                        Ok(Some(("any".to_string(), description)))
                    }
                } else {
                    Ok(Some(("any".to_string(), description)))
                }
            }
        }
    } else {
        Ok(None)
    }
}

#[allow(dead_code)]
fn extract_response_type(openapi: &OpenAPI, operation: &Operation) -> Result<String> {
    // Try to get 200 response
    if let Some(success_response) = operation
        .responses
        .responses
        .get(&openapiv3::StatusCode::Code(200))
    {
        match success_response {
            ReferenceOr::Reference { reference } => {
                // Resolve response reference
                match resolve_response_ref(openapi, reference) {
                    Ok(ReferenceOr::Item(response)) => {
                        if let Some(json_media) = response.content.get("application/json") {
                            if let Some(schema_ref) = &json_media.schema {
                                match schema_ref {
                                    ReferenceOr::Reference { reference } => {
                                        if let Some(ref_name) = get_schema_name_from_ref(reference)
                                        {
                                            Ok(to_pascal_case(&ref_name))
                                        } else {
                                            Ok("any".to_string())
                                        }
                                    }
                                    ReferenceOr::Item(_) => Ok("any".to_string()),
                                }
                            } else {
                                Ok("any".to_string())
                            }
                        } else {
                            Ok("any".to_string())
                        }
                    }
                    Ok(ReferenceOr::Reference { .. }) => {
                        // Nested reference - return any
                        Ok("any".to_string())
                    }
                    Err(_) => {
                        // Reference resolution failed - return any
                        Ok("any".to_string())
                    }
                }
            }
            ReferenceOr::Item(response) => {
                if let Some(json_media) = response.content.get("application/json") {
                    if let Some(schema_ref) = &json_media.schema {
                        match schema_ref {
                            ReferenceOr::Reference { reference } => {
                                if let Some(ref_name) = get_schema_name_from_ref(reference) {
                                    Ok(to_pascal_case(&ref_name))
                                } else {
                                    Ok("any".to_string())
                                }
                            }
                            ReferenceOr::Item(_) => Ok("any".to_string()),
                        }
                    } else {
                        Ok("any".to_string())
                    }
                } else {
                    Ok("any".to_string())
                }
            }
        }
    } else {
        Ok("any".to_string())
    }
}

pub fn extract_all_responses(
    openapi: &OpenAPI,
    operation: &Operation,
) -> Result<Vec<ResponseInfo>> {
    let mut responses = Vec::new();

    for (status_code, response_ref) in &operation.responses.responses {
        let status_num = match status_code {
            openapiv3::StatusCode::Code(code) => *code,
            openapiv3::StatusCode::Range(range) => {
                // For ranges like 4xx, 5xx, extract the range value
                // Range is an enum, check its variant
                match format!("{:?}", range).as_str() {
                    s if s.contains("4") => 400,
                    s if s.contains("5") => 500,
                    _ => 0,
                }
            }
        };

        // Extract response info (description and body type)
        let (description, body_type) = match response_ref {
            ReferenceOr::Reference { reference } => {
                match resolve_response_ref(openapi, reference) {
                    Ok(ReferenceOr::Item(response)) => {
                        let desc = response.description.clone();
                        let body = extract_response_body_type(openapi, &response);
                        (Some(desc), body)
                    }
                    _ => (None, "any".to_string()),
                }
            }
            ReferenceOr::Item(response) => {
                let desc = response.description.clone();
                let body = extract_response_body_type(openapi, response);
                (Some(desc), body)
            }
        };

        responses.push(ResponseInfo {
            status_code: status_num,
            body_type,
            description,
        });
    }

    Ok(responses)
}

#[allow(dead_code)]
fn extract_error_responses(openapi: &OpenAPI, operation: &Operation) -> Result<Vec<ErrorResponse>> {
    let all_responses = extract_all_responses(openapi, operation)?;
    let errors: Vec<ErrorResponse> = all_responses
        .iter()
        .filter(|r| r.status_code < 200 || r.status_code >= 300)
        .map(|r| ErrorResponse {
            status_code: r.status_code,
            body_type: r.body_type.clone(),
        })
        .collect();
    Ok(errors)
}

fn generate_response_types(
    func_name: &str,
    success_responses: &[ResponseInfo],
    error_responses: &[ResponseInfo],
    namespace_name: &str,
    common_schemas: &[String],
    enum_types: &[(String, Vec<String>)],
) -> Vec<TypeScriptType> {
    let mut types = Vec::new();
    let type_name_base = to_pascal_case(func_name);

    // Generate enum types for parameters (these are parameter-level enums, not schema enums)
    // They need to be generated locally since they're not in schemas
    for (enum_name, enum_values) in enum_types {
        let variants = enum_values
            .iter()
            .map(|v| format!("\"{}\"", v))
            .collect::<Vec<_>>()
            .join(" |\n");
        let enum_type = format!("export type {} =\n{};", enum_name, variants);
        types.push(TypeScriptType { content: enum_type });
    }

    // Generate Errors type
    if !error_responses.is_empty() {
        let mut error_fields = Vec::new();
        for error in error_responses {
            if error.status_code > 0 {
                // For common types, use Common.TypeName
                // For module-specific types, use namespace.TypeName (e.g., Addresses.TypeName)
                let qualified_type = if error.body_type != "any" {
                    if common_schemas.contains(&error.body_type) {
                        format!("Common.{}", error.body_type)
                    } else {
                        // Type is in schemas, use namespace qualification
                        format!("{}.{}", namespace_name, error.body_type)
                    }
                } else {
                    "any".to_string()
                };

                let description = error
                    .description
                    .as_ref()
                    .map(|d| format!("    /**\n     * {}\n     */", d))
                    .unwrap_or_default();

                error_fields.push(format!(
                    "{}\n    {}: {};",
                    description, error.status_code, qualified_type
                ));
            }
        }

        if !error_fields.is_empty() {
            let errors_type = format!(
                "export type {}Errors = {{\n{}\n}};",
                type_name_base,
                error_fields.join("\n")
            );
            types.push(TypeScriptType {
                content: errors_type,
            });

            // Generate Error union type
            let error_union_type = format!(
                "export type {}Error = {}Errors[keyof {}Errors];",
                type_name_base, type_name_base, type_name_base
            );
            types.push(TypeScriptType {
                content: error_union_type,
            });
        } else {
            // Generate empty Errors type
            let errors_type = format!(
                "export type {}Errors = Record<never, never>;",
                type_name_base
            );
            types.push(TypeScriptType {
                content: errors_type,
            });
        }
    }

    // Generate Responses type (only if we have success responses with schemas)
    let success_with_schemas: Vec<&ResponseInfo> = success_responses
        .iter()
        .filter(|r| r.status_code >= 200 && r.status_code < 300 && r.body_type != "any")
        .collect();

    if !success_with_schemas.is_empty() {
        let mut response_fields = Vec::new();
        for response in success_with_schemas {
            // For common types, use Common.TypeName
            // For module-specific types, use namespace.TypeName (e.g., Addresses.TypeName)
            let qualified_type = if common_schemas.contains(&response.body_type) {
                format!("Common.{}", response.body_type)
            } else {
                // Type is in schemas, use namespace qualification
                format!("{}.{}", namespace_name, response.body_type)
            };

            let description = response
                .description
                .as_ref()
                .map(|d| format!("    /**\n     * {}\n     */", d))
                .unwrap_or_default();

            response_fields.push(format!(
                "{}\n    {}: {};",
                description, response.status_code, qualified_type
            ));
        }

        if !response_fields.is_empty() {
            let responses_type = format!(
                "export type {}Responses = {{\n{}\n}};",
                type_name_base,
                response_fields.join("\n")
            );
            types.push(TypeScriptType {
                content: responses_type,
            });
        } else {
            // Generate empty Responses type
            let responses_type = format!(
                "export type {}Responses = Record<never, never>;",
                type_name_base
            );
            types.push(TypeScriptType {
                content: responses_type,
            });
        }
    } else {
        // Generate empty Responses type if no success responses
        let responses_type = format!(
            "export type {}Responses = Record<never, never>;",
            type_name_base
        );
        types.push(TypeScriptType {
            content: responses_type,
        });
    }

    types
}

fn extract_response_body_type(_openapi: &OpenAPI, response: &openapiv3::Response) -> String {
    if let Some(json_media) = response.content.get("application/json") {
        if let Some(schema_ref) = &json_media.schema {
            match schema_ref {
                ReferenceOr::Reference { reference } => {
                    if let Some(ref_name) = get_schema_name_from_ref(reference) {
                        to_pascal_case(&ref_name)
                    } else {
                        "any".to_string()
                    }
                }
                ReferenceOr::Item(_) => "any".to_string(),
            }
        } else {
            "any".to_string()
        }
    } else {
        "any".to_string()
    }
}

fn generate_function_name_from_path(path: &str, method: &str) -> String {
    let path_parts: Vec<&str> = path
        .trim_start_matches('/')
        .split('/')
        .filter(|p| !p.starts_with('{'))
        .collect();

    // Map HTTP methods to common prefixes
    let method_upper = method.to_uppercase();
    let method_lower = method.to_lowercase();
    let method_prefix = match method_upper.as_str() {
        "GET" => "get",
        "POST" => "create",
        "PUT" => "update",
        "DELETE" => "delete",
        "PATCH" => "patch",
        _ => method_lower.as_str(),
    };

    let base_name = if path_parts.is_empty() {
        method_prefix.to_string()
    } else {
        // Extract resource name from path (usually the first or last part)
        let resource_name = if path_parts.len() > 1 {
            // For nested paths like /users/{id}/posts, use the last resource
            path_parts.last().unwrap_or(&"")
        } else {
            path_parts.first().unwrap_or(&"")
        };

        // Handle common patterns
        if resource_name.ends_with("s") && path.contains('{') {
            // Plural resource with ID: /products/{id} -> getProductById
            let singular = &resource_name[..resource_name.len() - 1];
            format!("{}{}ById", method_prefix, to_pascal_case(singular))
        } else if path.contains('{') {
            // Resource with ID: /user/{id} -> getUserById
            format!("{}{}ById", method_prefix, to_pascal_case(resource_name))
        } else {
            // No ID: /products -> getProducts
            format!("{}{}", method_prefix, to_pascal_case(resource_name))
        }
    };

    to_camel_case(&base_name)
}