Skip to content

Commit 62d3a78

Browse files
committed
regen files
1 parent 3a8858f commit 62d3a78

8 files changed

Lines changed: 12 additions & 10 deletions

File tree

samples/client/petstore/typescript-fetch/builds/sagas-and-records/src/apis/BehaviorApiSagas.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ import {
3232
GetBehaviorTypeResponseRecord,
3333
getBehaviorTypeResponseRecordUtils,
3434
} from '../models/GetBehaviorTypeResponseRecord';
35-
3635
import {
3736
BehaviorType,
3837
} from '../models/BehaviorType';
3938

40-
4139
const createSagaAction = <T>(type: string) => originalCreateSagaAction<T>(type, {namespace: "api_behaviorApi"});
4240

4341
export const behaviorApiSagaMap = new Map<string, () => Generator<any, any, any>>([

samples/client/petstore/typescript-fetch/builds/sagas-and-records/src/apis/PetApiSagas.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,10 @@ import {
6060
PetRegionsResponseRecord,
6161
petRegionsResponseRecordUtils,
6262
} from '../models/PetRegionsResponseRecord';
63-
6463
import {
6564
UserRecord,
6665
} from '../models/UserRecord';
6766

68-
6967
import {
7068
FindPetsByStatusStatusEnum,
7169
} from './PetApi';

samples/client/petstore/typescript-fetch/builds/sagas-and-records/src/apis/PetPartApiSagas.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,13 @@ import {
3232
GetPetPartTypeResponseRecord,
3333
getPetPartTypeResponseRecordUtils,
3434
} from '../models/GetPetPartTypeResponseRecord';
35-
3635
import {
3736
MatchingPartsRecord,
3837
} from '../models/MatchingPartsRecord';
3938
import {
4039
PetPartType,
4140
} from '../models/PetPartType';
4241

43-
4442
const createSagaAction = <T>(type: string) => originalCreateSagaAction<T>(type, {namespace: "api_petPartApi"});
4543

4644
export const petPartApiSagaMap = new Map<string, () => Generator<any, any, any>>([

samples/client/petstore/typescript-fetch/builds/sagas-and-records/src/apis/StoreApiSagas.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ import {
2626
orderRecordUtils,
2727
} from '../models/OrderRecord';
2828

29-
30-
3129
const createSagaAction = <T>(type: string) => originalCreateSagaAction<T>(type, {namespace: "api_storeApi"});
3230

3331
export const storeApiSagaMap = new Map<string, () => Generator<any, any, any>>([

samples/client/petstore/typescript-fetch/builds/sagas-and-records/src/apis/UserApiSagas.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ import {
3333
userRecordUtils,
3434
} from '../models/UserRecord';
3535

36-
37-
3836
const createSagaAction = <T>(type: string) => originalCreateSagaAction<T>(type, {namespace: "api_userApi"});
3937

4038
export const userApiSagaMap = new Map<string, () => Generator<any, any, any>>([

samples/client/petstore/typescript-fetch/builds/without-runtime-checks/src/apis/PetApi.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@
1313
*/
1414

1515
import * as runtime from '../runtime';
16+
import {
17+
type ModelApiResponse,
18+
} from '../models/index';
19+
import {
20+
type Pet,
21+
} from '../models/index';
1622

1723
export interface AddPetRequest {
1824
body: Pet;

samples/client/petstore/typescript-fetch/builds/without-runtime-checks/src/apis/StoreApi.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515
import * as runtime from '../runtime';
16+
import {
17+
type Order,
18+
} from '../models/index';
1619

1720
export interface DeleteOrderRequest {
1821
orderId: string;

samples/client/petstore/typescript-fetch/builds/without-runtime-checks/src/apis/UserApi.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
*/
1414

1515
import * as runtime from '../runtime';
16+
import {
17+
type User,
18+
} from '../models/index';
1619

1720
export interface CreateUserRequest {
1821
body: User;

0 commit comments

Comments
 (0)