@@ -115,7 +115,7 @@ const injectedRtkApi = api.injectEndpoints({
115
115
}),
116
116
overrideExisting: false,
117
117
});
118
- export { injectedRtkApi as api };
118
+ export { injectedRtkApi as enhancedApi };
119
119
export type GetHealthcheckApiResponse = /** status 200 OK */ {
120
120
message: string;
121
121
};
@@ -292,7 +292,7 @@ const injectedRtkApi = api.injectEndpoints({
292
292
}),
293
293
overrideExisting: false,
294
294
});
295
- export { injectedRtkApi as api };
295
+ export { injectedRtkApi as enhancedApi };
296
296
export type PlaceOrderApiResponse = /** status 200 successful operation */ Order;
297
297
export type PlaceOrderApiArg = {
298
298
order: Order;
@@ -339,7 +339,7 @@ const injectedRtkApi = api.injectEndpoints({
339
339
}),
340
340
overrideExisting: false,
341
341
});
342
- export { injectedRtkApi as api };
342
+ export { injectedRtkApi as enhancedApi };
343
343
export type LoginUserApiResponse = /** status 200 successful operation */ string;
344
344
export type LoginUserApiArg = {
345
345
/** The user name for login */
@@ -364,15 +364,15 @@ const injectedRtkApi = api.injectEndpoints({
364
364
}),
365
365
overrideExisting: false,
366
366
});
367
- export { injectedRtkApi as api };
367
+ export { injectedRtkApi as enhancedApi };
368
368
export type LoginUserApiResponse = /** status 200 successful operation */ string;
369
369
export type LoginUserApiArg = {
370
370
/** The user name for login */
371
371
username?: string;
372
372
/** The password for login in clear text */
373
373
password?: string;
374
374
};
375
- export const { useLoginUserMutation } = enhancedApi ;
375
+ export const { useLoginUserMutation } = injectedRtkApi ;
376
376
377
377
`;
378
378
@@ -393,7 +393,7 @@ const injectedRtkApi = api.injectEndpoints({
393
393
}),
394
394
overrideExisting: false,
395
395
});
396
- export { injectedRtkApi as api };
396
+ export { injectedRtkApi as enhancedApi };
397
397
export type AddPetApiResponse = /** status 200 Successful operation */ Pet;
398
398
export type AddPetApiArg = {
399
399
/** Create a new pet in the store */
@@ -420,7 +420,7 @@ export type Pet = {
420
420
tags?: Tag[];
421
421
status?: 'available' | 'pending' | 'sold';
422
422
};
423
- export const { useAddPetMutation, useGetPetByIdQuery } = enhancedApi ;
423
+ export const { useAddPetMutation, useGetPetByIdQuery } = injectedRtkApi ;
424
424
425
425
`;
426
426
@@ -437,7 +437,7 @@ const injectedRtkApi = api.injectEndpoints({
437
437
}),
438
438
overrideExisting: false,
439
439
});
440
- export { injectedRtkApi as api };
440
+ export { injectedRtkApi as enhancedApi };
441
441
export type PatchApiV1ListByItemIdApiResponse = /** status 200 A successful response. */ string;
442
442
export type PatchApiV1ListByItemIdApiArg = {
443
443
'item.id': string;
@@ -557,7 +557,7 @@ const injectedRtkApi = api.injectEndpoints({
557
557
}),
558
558
overrideExisting: false,
559
559
});
560
- export { injectedRtkApi as api };
560
+ export { injectedRtkApi as enhancedApi };
561
561
export type UpdatePetApiResponse = /** status 200 Successful operation */ Pet;
562
562
export type UpdatePetApiArg = {
563
563
/** Update an existent pet in the store */
@@ -718,7 +718,7 @@ export const {
718
718
useGetUserByNameQuery,
719
719
useUpdateUserMutation,
720
720
useDeleteUserMutation,
721
- } = enhancedApi ;
721
+ } = injectedRtkApi ;
722
722
723
723
`;
724
724
@@ -744,7 +744,7 @@ const injectedRtkApi = api.injectEndpoints({
744
744
}),
745
745
overrideExisting: false,
746
746
});
747
- export { injectedRtkApi as api };
747
+ export { injectedRtkApi as enhancedApi };
748
748
export type GetStructureDefinitionApiResponse = unknown;
749
749
export type GetStructureDefinitionApiArg = {
750
750
/** Some description */
@@ -764,7 +764,7 @@ export type GetStructureDefinitionApiArg = {
764
764
/** Some description */
765
765
naming_conflict?: any;
766
766
};
767
- export const { useGetStructureDefinitionQuery } = enhancedApi ;
767
+ export const { useGetStructureDefinitionQuery } = injectedRtkApi ;
768
768
769
769
`;
770
770
0 commit comments