@@ -563,7 +563,6 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
563
563
export { OpenAPI } from './core/OpenAPI';
564
564
export type { OpenAPIConfig } from './core/OpenAPI';
565
565
566
- export type { _default } from './models/_default';
567
566
export type { ArrayWithArray } from './models/ArrayWithArray';
568
567
export type { ArrayWithBooleans } from './models/ArrayWithBooleans';
569
568
export type { ArrayWithNumbers } from './models/ArrayWithNumbers';
@@ -577,6 +576,7 @@ export type { CommentWithQuotes } from './models/CommentWithQuotes';
577
576
export type { CommentWithReservedCharacters } from './models/CommentWithReservedCharacters';
578
577
export type { CommentWithSlashes } from './models/CommentWithSlashes';
579
578
export type { Date } from './models/Date';
579
+ export type { Default } from './models/Default';
580
580
export type { DictionaryWithArray } from './models/DictionaryWithArray';
581
581
export type { DictionaryWithDictionary } from './models/DictionaryWithDictionary';
582
582
export type { DictionaryWithProperties } from './models/DictionaryWithProperties';
@@ -612,7 +612,6 @@ export type { SimpleReference } from './models/SimpleReference';
612
612
export type { SimpleString } from './models/SimpleString';
613
613
export type { SimpleStringWithPattern } from './models/SimpleStringWithPattern';
614
614
615
- export { $_default } from './schemas/$_default';
616
615
export { $ArrayWithArray } from './schemas/$ArrayWithArray';
617
616
export { $ArrayWithBooleans } from './schemas/$ArrayWithBooleans';
618
617
export { $ArrayWithNumbers } from './schemas/$ArrayWithNumbers';
@@ -626,6 +625,7 @@ export { $CommentWithQuotes } from './schemas/$CommentWithQuotes';
626
625
export { $CommentWithReservedCharacters } from './schemas/$CommentWithReservedCharacters';
627
626
export { $CommentWithSlashes } from './schemas/$CommentWithSlashes';
628
627
export { $Date } from './schemas/$Date';
628
+ export { $Default } from './schemas/$Default';
629
629
export { $DictionaryWithArray } from './schemas/$DictionaryWithArray';
630
630
export { $DictionaryWithDictionary } from './schemas/$DictionaryWithDictionary';
631
631
export { $DictionaryWithProperties } from './schemas/$DictionaryWithProperties';
@@ -680,18 +680,6 @@ export { TypesService } from './services/TypesService';
680
680
"
681
681
`;
682
682
683
- exports[`v2 should generate: test/generated/v2/models/_default.ts 1`] = `
684
- "/* istanbul ignore file */
685
- /* tslint:disable */
686
- /* eslint-disable */
687
-
688
- export type _default = {
689
- name?: string;
690
- };
691
-
692
- "
693
- `;
694
-
695
683
exports[`v2 should generate: test/generated/v2/models/ArrayWithArray.ts 1`] = `
696
684
"/* istanbul ignore file */
697
685
/* tslint:disable */
@@ -858,6 +846,18 @@ export type Date = string;
858
846
"
859
847
`;
860
848
849
+ exports[`v2 should generate: test/generated/v2/models/Default.ts 1`] = `
850
+ "/* istanbul ignore file */
851
+ /* tslint:disable */
852
+ /* eslint-disable */
853
+
854
+ export type Default = {
855
+ name?: string;
856
+ };
857
+
858
+ "
859
+ `;
860
+
861
861
exports[`v2 should generate: test/generated/v2/models/DictionaryWithArray.ts 1`] = `
862
862
"/* istanbul ignore file */
863
863
/* tslint:disable */
@@ -1469,20 +1469,6 @@ export type SimpleStringWithPattern = string;
1469
1469
"
1470
1470
`;
1471
1471
1472
- exports[`v2 should generate: test/generated/v2/schemas/$_default.ts 1`] = `
1473
- "/* istanbul ignore file */
1474
- /* tslint:disable */
1475
- /* eslint-disable */
1476
- export const $_default = {
1477
- properties: {
1478
- name: {
1479
- type: 'string',
1480
- },
1481
- },
1482
- } as const;
1483
- "
1484
- `;
1485
-
1486
1472
exports[`v2 should generate: test/generated/v2/schemas/$ArrayWithArray.ts 1`] = `
1487
1473
"/* istanbul ignore file */
1488
1474
/* tslint:disable */
@@ -1651,6 +1637,20 @@ export const $Date = {
1651
1637
"
1652
1638
`;
1653
1639
1640
+ exports[`v2 should generate: test/generated/v2/schemas/$Default.ts 1`] = `
1641
+ "/* istanbul ignore file */
1642
+ /* tslint:disable */
1643
+ /* eslint-disable */
1644
+ export const $Default = {
1645
+ properties: {
1646
+ name: {
1647
+ type: 'string',
1648
+ },
1649
+ },
1650
+ } as const;
1651
+ "
1652
+ `;
1653
+
1654
1654
exports[`v2 should generate: test/generated/v2/schemas/$DictionaryWithArray.ts 1`] = `
1655
1655
"/* istanbul ignore file */
1656
1656
/* tslint:disable */
0 commit comments