@@ -11,25 +11,25 @@ import {
1111 USER_ENTITY_KEY ,
1212} from './auth' ;
1313import {
14- createPetResource ,
14+ petResource ,
1515 PetEntity ,
1616 PetTagEntity ,
1717 PET_TAG_ENTITY_KEY ,
1818} from './resources/pet' ;
1919import {
20- createPetVaccinationResource ,
20+ petVaccinationResource ,
2121 PetVaccinationEntity ,
2222} from './resources/pet-vaccination' ;
23- import { createTagResource , TagEntity } from './resources/tag' ;
23+ import { tagResource , TagEntity } from './resources/tag' ;
2424import { PetShareEntity , PetShareModule } from './resources/pet-share' ;
2525import { PET_SHARE_ENTITY_KEY } from './resources/pet-share/pet-share.constants' ;
2626import { PetTransferModule } from './resources/pet-transfer' ;
2727import { AdminModule } from './admin' ;
2828import {
2929 AppointmentEntity ,
3030 ReminderEntity ,
31- createAppointmentResource ,
32- createReminderResource ,
31+ appointmentResource ,
32+ reminderResource ,
3333} from './resources/appointment' ;
3434import { AuditLogEntity , AuditModule } from './audit' ;
3535import { AUDIT_LOG_ENTITY_KEY } from './audit/audit-log.constants' ;
@@ -79,11 +79,11 @@ import { EventsModule } from './events';
7979 // pet and petVaccination entities are auto-contributed by their
8080 // respective defineResource() bundles below.
8181 resources : [
82- createPetResource ( ) ,
83- createPetVaccinationResource ( ) ,
84- createTagResource ( ) ,
85- createAppointmentResource ( ) ,
86- createReminderResource ( ) ,
82+ petResource ,
83+ petVaccinationResource ,
84+ tagResource ,
85+ appointmentResource ,
86+ reminderResource ,
8787 ] ,
8888 } ) ,
8989 PetShareModule ,
0 commit comments