Skip to content

Commit 3989b40

Browse files
committed
Chore: Regenerate samples
1 parent a0581a5 commit 3989b40

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export function AbstractUserDtoFromJSONTyped(json: any, ignoreDiscriminator: boo
7171
if (json['type'] === 'remote-authenticated') {
7272
return RemoteAuthenticatedUserDtoFromJSONTyped(json, ignoreDiscriminator);
7373
}
74+
7475
}
7576
return {
7677

samples/client/petstore/typescript-fetch/builds/default-v3.0/models/Animal.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export function AnimalFromJSONTyped(json: any, ignoreDiscriminator: boolean): An
5858
if (json['className'] === 'DOG') {
5959
return DogFromJSONTyped(json, ignoreDiscriminator);
6060
}
61+
6162
}
6263
return {
6364

samples/client/petstore/typescript-fetch/builds/default-v3.0/models/ParentWithNullable.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export function ParentWithNullableFromJSONTyped(json: any, ignoreDiscriminator:
6363
if (json['type'] === 'ChildWithNullable') {
6464
return ChildWithNullableFromJSONTyped(json, ignoreDiscriminator);
6565
}
66+
6667
}
6768
return {
6869

samples/client/petstore/typescript-fetch/builds/snakecase-discriminator/models/Animal.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export function AnimalFromJSONTyped(json: any, ignoreDiscriminator: boolean): An
5858
if (json['class_name'] === 'DOG') {
5959
return DogFromJSONTyped(json, ignoreDiscriminator);
6060
}
61+
6162
}
6263
return {
6364

0 commit comments

Comments
 (0)