@@ -394,107 +394,107 @@ export const zFailureFailure = z.object({
394
394
*
395
395
* Fourth line
396
396
*/
397
- export const zCallWithDescriptionsParameterParameterWithBreaks = z . string ( ) ;
397
+ export const zCallWithDescriptionsParameterParameterWithBreaksData = z . string ( ) ;
398
398
399
399
/**
400
400
* Testing backticks in string: `backticks` and ```multiple backticks``` should work
401
401
*/
402
- export const zCallWithDescriptionsParameterParameterWithBackticks = z . string ( ) ;
402
+ export const zCallWithDescriptionsParameterParameterWithBackticksData = z . string ( ) ;
403
403
404
404
/**
405
405
* Testing slashes in string: \backwards\\\ and /forwards/// should work
406
406
*/
407
- export const zCallWithDescriptionsParameterParameterWithSlashes = z . string ( ) ;
407
+ export const zCallWithDescriptionsParameterParameterWithSlashesData = z . string ( ) ;
408
408
409
409
/**
410
410
* Testing expression placeholders in string: ${expression} should work
411
411
*/
412
- export const zCallWithDescriptionsParameterParameterWithExpressionPlaceholders = z . string ( ) ;
412
+ export const zCallWithDescriptionsParameterParameterWithExpressionPlaceholdersData = z . string ( ) ;
413
413
414
414
/**
415
415
* Testing quotes in string: 'single quote''' and "double quotes""" should work
416
416
*/
417
- export const zCallWithDescriptionsParameterParameterWithQuotes = z . string ( ) ;
417
+ export const zCallWithDescriptionsParameterParameterWithQuotesData = z . string ( ) ;
418
418
419
419
/**
420
420
* Testing reserved characters in string: * inline * and ** inline ** should work
421
421
*/
422
- export const zCallWithDescriptionsParameterParameterWithReservedCharacters = z . string ( ) ;
422
+ export const zCallWithDescriptionsParameterParameterWithReservedCharactersData = z . string ( ) ;
423
423
424
424
/**
425
425
* This is the parameter that goes into the header
426
426
*/
427
- export const zCallWithParametersParameterParameterHeader = z . string ( ) ;
427
+ export const zCallWithParametersParameterParameterHeaderData = z . string ( ) ;
428
428
429
429
/**
430
430
* This is the parameter that goes into the path
431
431
*/
432
- export const zCallWithParametersParameterParameterPath = z . string ( ) ;
432
+ export const zCallWithParametersParameterParameterPathData = z . string ( ) ;
433
433
434
434
/**
435
435
* api-version should be required in standalone clients
436
436
*/
437
- export const zCallWithParametersParameterApiVersion = z . string ( ) ;
437
+ export const zCallWithParametersParameterApiVersionData = z . string ( ) ;
438
438
439
439
/**
440
440
* This is the parameter that goes into the query params
441
441
*/
442
- export const zCallWithParametersParameterParameterQuery = z . string ( ) ;
442
+ export const zCallWithParametersParameterParameterQueryData = z . string ( ) ;
443
443
444
444
/**
445
445
* This is the parameter that goes into the request header
446
446
*/
447
- export const zCallWithWeirdParameterNamesParameterParameterHeader = z . string ( ) ;
447
+ export const zCallWithWeirdParameterNamesParameterParameterHeaderData = z . string ( ) ;
448
448
449
449
/**
450
450
* This is the parameter that goes into the path
451
451
*/
452
- export const zCallWithWeirdParameterNamesParameterParameterPath1 = z . string ( ) ;
452
+ export const zCallWithWeirdParameterNamesParameterParameterPath1Data = z . string ( ) ;
453
453
454
454
/**
455
455
* This is the parameter that goes into the path
456
456
*/
457
- export const zCallWithWeirdParameterNamesParameterParameterPath2 = z . string ( ) ;
457
+ export const zCallWithWeirdParameterNamesParameterParameterPath2Data = z . string ( ) ;
458
458
459
459
/**
460
460
* This is the parameter that goes into the path
461
461
*/
462
- export const zCallWithWeirdParameterNamesParameterParameterPath3 = z . string ( ) ;
462
+ export const zCallWithWeirdParameterNamesParameterParameterPath3Data = z . string ( ) ;
463
463
464
464
/**
465
465
* api-version should be required in standalone clients
466
466
*/
467
- export const zCallWithWeirdParameterNamesParameterApiVersion = z . string ( ) ;
467
+ export const zCallWithWeirdParameterNamesParameterApiVersionData = z . string ( ) ;
468
468
469
469
/**
470
470
* This is the parameter with a reserved keyword
471
471
*/
472
- export const zCallWithWeirdParameterNamesParameterDefault = z . string ( ) ;
472
+ export const zCallWithWeirdParameterNamesParameterDefaultData = z . string ( ) ;
473
473
474
474
/**
475
475
* This is the parameter that goes into the request query params
476
476
*/
477
- export const zCallWithWeirdParameterNamesParameterParameterQuery = z . string ( ) ;
477
+ export const zCallWithWeirdParameterNamesParameterParameterQueryData = z . string ( ) ;
478
478
479
479
/**
480
480
* This is a simple string with default value
481
481
*/
482
- export const zCallWithDefaultParametersParameterParameterString = z . string ( ) . default ( 'Hello World!' ) ;
482
+ export const zCallWithDefaultParametersParameterParameterStringData = z . string ( ) . default ( 'Hello World!' ) ;
483
483
484
484
/**
485
485
* This is a simple number with default value
486
486
*/
487
- export const zCallWithDefaultParametersParameterParameterNumber = z . number ( ) . default ( 123 ) ;
487
+ export const zCallWithDefaultParametersParameterParameterNumberData = z . number ( ) . default ( 123 ) ;
488
488
489
489
/**
490
490
* This is a simple boolean with default value
491
491
*/
492
- export const zCallWithDefaultParametersParameterParameterBoolean = z . boolean ( ) . default ( true ) ;
492
+ export const zCallWithDefaultParametersParameterParameterBooleanData = z . boolean ( ) . default ( true ) ;
493
493
494
494
/**
495
495
* This is a simple enum with default value
496
496
*/
497
- export const zCallWithDefaultParametersParameterParameterEnum = z . enum ( [
497
+ export const zCallWithDefaultParametersParameterParameterEnumData = z . enum ( [
498
498
'Success' ,
499
499
'Warning' ,
500
500
'Error'
@@ -503,7 +503,7 @@ export const zCallWithDefaultParametersParameterParameterEnum = z.enum([
503
503
/**
504
504
* This is a model with one string property
505
505
*/
506
- export const zCallWithDefaultParametersParameterParameterModel = z . object ( {
506
+ export const zCallWithDefaultParametersParameterParameterModelData = z . object ( {
507
507
prop : z . string ( ) . optional ( )
508
508
} ) . default ( {
509
509
prop : 'Hello World!'
@@ -512,22 +512,22 @@ export const zCallWithDefaultParametersParameterParameterModel = z.object({
512
512
/**
513
513
* This is a simple string that is optional with default value
514
514
*/
515
- export const zCallWithDefaultOptionalParametersParameterParameterString = z . string ( ) . default ( 'Hello World!' ) ;
515
+ export const zCallWithDefaultOptionalParametersParameterParameterStringData = z . string ( ) . default ( 'Hello World!' ) ;
516
516
517
517
/**
518
518
* This is a simple number that is optional with default value
519
519
*/
520
- export const zCallWithDefaultOptionalParametersParameterParameterNumber = z . number ( ) . default ( 123 ) ;
520
+ export const zCallWithDefaultOptionalParametersParameterParameterNumberData = z . number ( ) . default ( 123 ) ;
521
521
522
522
/**
523
523
* This is a simple boolean that is optional with default value
524
524
*/
525
- export const zCallWithDefaultOptionalParametersParameterParameterBoolean = z . boolean ( ) . default ( true ) ;
525
+ export const zCallWithDefaultOptionalParametersParameterParameterBooleanData = z . boolean ( ) . default ( true ) ;
526
526
527
527
/**
528
528
* This is a simple enum that is optional with default value
529
529
*/
530
- export const zCallWithDefaultOptionalParametersParameterParameterEnum = z . enum ( [
530
+ export const zCallWithDefaultOptionalParametersParameterParameterEnumData = z . enum ( [
531
531
'Success' ,
532
532
'Warning' ,
533
533
'Error'
@@ -536,45 +536,45 @@ export const zCallWithDefaultOptionalParametersParameterParameterEnum = z.enum([
536
536
/**
537
537
* This is a optional string with default
538
538
*/
539
- export const zCallToTestOrderOfParamsParameterParameterOptionalStringWithDefault = z . string ( ) . default ( 'Hello World!' ) ;
539
+ export const zCallToTestOrderOfParamsParameterParameterOptionalStringWithDefaultData = z . string ( ) . default ( 'Hello World!' ) ;
540
540
541
541
/**
542
542
* This is a optional string with empty default
543
543
*/
544
- export const zCallToTestOrderOfParamsParameterParameterOptionalStringWithEmptyDefault = z . string ( ) . default ( '' ) ;
544
+ export const zCallToTestOrderOfParamsParameterParameterOptionalStringWithEmptyDefaultData = z . string ( ) . default ( '' ) ;
545
545
546
546
/**
547
547
* This is a optional string with no default
548
548
*/
549
- export const zCallToTestOrderOfParamsParameterParameterOptionalStringWithNoDefault = z . string ( ) ;
549
+ export const zCallToTestOrderOfParamsParameterParameterOptionalStringWithNoDefaultData = z . string ( ) ;
550
550
551
551
/**
552
552
* This is a string with default
553
553
*/
554
- export const zCallToTestOrderOfParamsParameterParameterStringWithDefault = z . string ( ) . default ( 'Hello World!' ) ;
554
+ export const zCallToTestOrderOfParamsParameterParameterStringWithDefaultData = z . string ( ) . default ( 'Hello World!' ) ;
555
555
556
556
/**
557
557
* This is a string with empty default
558
558
*/
559
- export const zCallToTestOrderOfParamsParameterParameterStringWithEmptyDefault = z . string ( ) . default ( '' ) ;
559
+ export const zCallToTestOrderOfParamsParameterParameterStringWithEmptyDefaultData = z . string ( ) . default ( '' ) ;
560
560
561
561
/**
562
562
* This is a string with no default
563
563
*/
564
- export const zCallToTestOrderOfParamsParameterParameterStringWithNoDefault = z . string ( ) ;
564
+ export const zCallToTestOrderOfParamsParameterParameterStringWithNoDefaultData = z . string ( ) ;
565
565
566
566
/**
567
567
* This is a string that can be null with no default
568
568
*/
569
- export const zCallToTestOrderOfParamsParameterParameterStringNullableWithNoDefault = z . union ( [
569
+ export const zCallToTestOrderOfParamsParameterParameterStringNullableWithNoDefaultData = z . union ( [
570
570
z . string ( ) ,
571
571
z . null ( )
572
572
] ) ;
573
573
574
574
/**
575
575
* This is a string that can be null with default
576
576
*/
577
- export const zCallToTestOrderOfParamsParameterParameterStringNullableWithDefault = z . union ( [
577
+ export const zCallToTestOrderOfParamsParameterParameterStringNullableWithDefaultData = z . union ( [
578
578
z . string ( ) ,
579
579
z . null ( )
580
580
] ) . default ( null ) ;
@@ -607,62 +607,62 @@ export const zCallWithResponsesResponse = z.union([
607
607
/**
608
608
* This is an array parameter that is sent as csv format (comma-separated values)
609
609
*/
610
- export const zCollectionFormatParameterParameterArrayCsv = z . array ( z . string ( ) ) ;
610
+ export const zCollectionFormatParameterParameterArrayCsvData = z . array ( z . string ( ) ) ;
611
611
612
612
/**
613
613
* This is an array parameter that is sent as ssv format (space-separated values)
614
614
*/
615
- export const zCollectionFormatParameterParameterArraySsv = z . array ( z . string ( ) ) ;
615
+ export const zCollectionFormatParameterParameterArraySsvData = z . array ( z . string ( ) ) ;
616
616
617
617
/**
618
618
* This is an array parameter that is sent as tsv format (tab-separated values)
619
619
*/
620
- export const zCollectionFormatParameterParameterArrayTsv = z . array ( z . string ( ) ) ;
620
+ export const zCollectionFormatParameterParameterArrayTsvData = z . array ( z . string ( ) ) ;
621
621
622
622
/**
623
623
* This is an array parameter that is sent as pipes format (pipe-separated values)
624
624
*/
625
- export const zCollectionFormatParameterParameterArrayPipes = z . array ( z . string ( ) ) ;
625
+ export const zCollectionFormatParameterParameterArrayPipesData = z . array ( z . string ( ) ) ;
626
626
627
627
/**
628
628
* This is an array parameter that is sent as multi format (multiple parameter instances)
629
629
*/
630
- export const zCollectionFormatParameterParameterArrayMulti = z . array ( z . string ( ) ) ;
630
+ export const zCollectionFormatParameterParameterArrayMultiData = z . array ( z . string ( ) ) ;
631
631
632
632
/**
633
633
* This is a number parameter
634
634
*/
635
- export const zTypesParameterId = z . number ( ) . int ( ) ;
635
+ export const zTypesParameterIdData = z . number ( ) . int ( ) ;
636
636
637
637
/**
638
638
* This is a number parameter
639
639
*/
640
- export const zTypesParameterParameterNumber = z . number ( ) . default ( 123 ) ;
640
+ export const zTypesParameterParameterNumberData = z . number ( ) . default ( 123 ) ;
641
641
642
642
/**
643
643
* This is a string parameter
644
644
*/
645
- export const zTypesParameterParameterString = z . string ( ) . default ( 'default' ) ;
645
+ export const zTypesParameterParameterStringData = z . string ( ) . default ( 'default' ) ;
646
646
647
647
/**
648
648
* This is a boolean parameter
649
649
*/
650
- export const zTypesParameterParameterBoolean = z . boolean ( ) . default ( true ) ;
650
+ export const zTypesParameterParameterBooleanData = z . boolean ( ) . default ( true ) ;
651
651
652
652
/**
653
653
* This is an array parameter
654
654
*/
655
- export const zTypesParameterParameterArray = z . array ( z . string ( ) ) ;
655
+ export const zTypesParameterParameterArrayData = z . array ( z . string ( ) ) ;
656
656
657
657
/**
658
658
* This is a dictionary parameter
659
659
*/
660
- export const zTypesParameterParameterDictionary = z . object ( { } ) ;
660
+ export const zTypesParameterParameterDictionaryData = z . object ( { } ) ;
661
661
662
662
/**
663
663
* This is an enum parameter
664
664
*/
665
- export const zTypesParameterParameterEnum = z . enum ( [
665
+ export const zTypesParameterParameterEnumData = z . enum ( [
666
666
'Success' ,
667
667
'Warning' ,
668
668
'Error'
@@ -678,7 +678,7 @@ export const zTypesResponse = z.union([
678
678
/**
679
679
* Parameter containing object
680
680
*/
681
- export const zComplexTypesParameterParameterObject = z . object ( {
681
+ export const zComplexTypesParameterParameterObjectData = z . object ( {
682
682
first : z . object ( {
683
683
second : z . object ( {
684
684
third : z . string ( ) . optional ( )
@@ -689,7 +689,7 @@ export const zComplexTypesParameterParameterObject = z.object({
689
689
/**
690
690
* This is a model with one string property
691
691
*/
692
- export const zComplexTypesParameterParameterReference = z . object ( {
692
+ export const zComplexTypesParameterParameterReferenceData = z . object ( {
693
693
prop : z . string ( ) . optional ( )
694
694
} ) ;
695
695
@@ -701,12 +701,12 @@ export const zComplexTypesResponse = z.array(zModelWithString);
701
701
/**
702
702
* Status code to return
703
703
*/
704
- export const zTestErrorCodeParameterStatus = z . string ( ) ;
704
+ export const zTestErrorCodeParameterStatusData = z . string ( ) ;
705
705
706
706
/**
707
707
* Dummy input param
708
708
*/
709
- export const zNonAsciiæøåÆøÅöôêÊ字符串ParameterNonAsciiParamæøåÆøÅöôêÊ = z . number ( ) . int ( ) ;
709
+ export const zNonAsciiæøåÆøÅöôêÊ字符串ParameterNonAsciiParamæøåÆøÅöôêÊData = z . number ( ) . int ( ) ;
710
710
711
711
/**
712
712
* Successful response
0 commit comments