Skip to content

Commit d5463e0

Browse files
committed
regenerate sample files
1 parent a991213 commit d5463e0

96 files changed

Lines changed: 442 additions & 446 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

samples/client/others/typescript-fetch/infinite-recursion-issue/apis/TestApi.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
import * as runtime from '../runtime';
17-
import type {
18-
TestBaseDto,
19-
} from '../models/index';
2016
import {
17+
type TestBaseDto,
2118
TestBaseDtoFromJSON,
2219
TestBaseDtoToJSON,
23-
} from '../models/index';
20+
} from '../models/TestBaseDto';
2421

2522
/**
2623
*

samples/client/others/typescript-fetch/infinite-recursion-issue/runtime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
export const BASE_PATH = "http://localhost:8080".replace(/\/+$/, "");
1716

1817
export interface ConfigurationParameters {

samples/client/others/typescript-fetch/self-import-issue/runtime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
export const BASE_PATH = "http://localhost".replace(/\/+$/, "");
1716

1817
export interface ConfigurationParameters {

samples/client/petstore/typescript-fetch/builds/allOf-nullable/apis/DefaultApi.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
import * as runtime from '../runtime';
17-
import type {
18-
Club,
19-
} from '../models/index';
2016
import {
17+
type Club,
2118
ClubFromJSON,
2219
ClubToJSON,
23-
} from '../models/index';
20+
} from '../models/Club';
2421

2522
export interface ListRequest {
2623
personId: string;

samples/client/petstore/typescript-fetch/builds/allOf-nullable/runtime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
export const BASE_PATH = "http://api.example.xyz/v1".replace(/\/+$/, "");
1716

1817
export interface ConfigurationParameters {

samples/client/petstore/typescript-fetch/builds/allOf-readonly/apis/DefaultApi.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
import * as runtime from '../runtime';
17-
import type {
18-
Club,
19-
} from '../models/index';
2016
import {
17+
type Club,
2118
ClubFromJSON,
2219
ClubToJSON,
23-
} from '../models/index';
20+
} from '../models/Club';
2421

2522
export interface ListRequest {
2623
personId: string;

samples/client/petstore/typescript-fetch/builds/allOf-readonly/runtime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
export const BASE_PATH = "http://api.example.xyz/v1".replace(/\/+$/, "");
1716

1817
export interface ConfigurationParameters {

samples/client/petstore/typescript-fetch/builds/default-v3.0/apis/AnotherFakeApi.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
import * as runtime from '../runtime';
17-
import type {
18-
Client,
19-
} from '../models/index';
2016
import {
17+
type Client,
2118
ClientFromJSON,
2219
ClientToJSON,
23-
} from '../models/index';
20+
} from '../models/Client';
2421

2522
export interface 123testSpecialTagsRequest {
2623
client: Client;

samples/client/petstore/typescript-fetch/builds/default-v3.0/apis/DefaultApi.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,12 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
import * as runtime from '../runtime';
17-
import type {
18-
FooGetDefaultResponse,
19-
} from '../models/index';
2016
import {
17+
type FooGetDefaultResponse,
2118
FooGetDefaultResponseFromJSON,
2219
FooGetDefaultResponseToJSON,
23-
} from '../models/index';
20+
} from '../models/FooGetDefaultResponse';
2421

2522
/**
2623
*

samples/client/petstore/typescript-fetch/builds/default-v3.0/apis/FakeApi.ts

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,45 +12,62 @@
1212
* Do not edit the class manually.
1313
*/
1414

15-
1615
import * as runtime from '../runtime';
17-
import type {
18-
ChildWithNullable,
19-
Client,
20-
EnumClass,
21-
FakeBigDecimalMap200Response,
22-
FileSchemaTestClass,
23-
HealthCheckResult,
24-
OuterComposite,
25-
OuterObjectWithEnumProperty,
26-
Pet,
27-
TestInlineFreeformAdditionalPropertiesRequest,
28-
User,
29-
} from '../models/index';
3016
import {
17+
type ChildWithNullable,
3118
ChildWithNullableFromJSON,
3219
ChildWithNullableToJSON,
20+
} from '../models/ChildWithNullable';
21+
import {
22+
type Client,
3323
ClientFromJSON,
3424
ClientToJSON,
25+
} from '../models/Client';
26+
import {
27+
type EnumClass,
3528
EnumClassFromJSON,
3629
EnumClassToJSON,
30+
} from '../models/EnumClass';
31+
import {
32+
type FakeBigDecimalMap200Response,
3733
FakeBigDecimalMap200ResponseFromJSON,
3834
FakeBigDecimalMap200ResponseToJSON,
35+
} from '../models/FakeBigDecimalMap200Response';
36+
import {
37+
type FileSchemaTestClass,
3938
FileSchemaTestClassFromJSON,
4039
FileSchemaTestClassToJSON,
40+
} from '../models/FileSchemaTestClass';
41+
import {
42+
type HealthCheckResult,
4143
HealthCheckResultFromJSON,
4244
HealthCheckResultToJSON,
45+
} from '../models/HealthCheckResult';
46+
import {
47+
type OuterComposite,
4348
OuterCompositeFromJSON,
4449
OuterCompositeToJSON,
50+
} from '../models/OuterComposite';
51+
import {
52+
type OuterObjectWithEnumProperty,
4553
OuterObjectWithEnumPropertyFromJSON,
4654
OuterObjectWithEnumPropertyToJSON,
55+
} from '../models/OuterObjectWithEnumProperty';
56+
import {
57+
type Pet,
4758
PetFromJSON,
4859
PetToJSON,
60+
} from '../models/Pet';
61+
import {
62+
type TestInlineFreeformAdditionalPropertiesRequest,
4963
TestInlineFreeformAdditionalPropertiesRequestFromJSON,
5064
TestInlineFreeformAdditionalPropertiesRequestToJSON,
65+
} from '../models/TestInlineFreeformAdditionalPropertiesRequest';
66+
import {
67+
type User,
5168
UserFromJSON,
5269
UserToJSON,
53-
} from '../models/index';
70+
} from '../models/User';
5471

5572
export interface FakeHttpSignatureTestRequest {
5673
pet: Pet;

0 commit comments

Comments
 (0)