feat(customer): add customer availability, booking, location, product… #73
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
…, and schedule functions
This commit adds new files and functions related to customer availability, booking, location, product, and schedule. It includes the following changes:
chore(get.spec.ts): update import path for CustomerScheduleServiceCreate in get.spec.ts chore(upsert.spec.ts): update import path for CustomerScheduleServiceCreate in upsert.spec.ts chore(list-ids.spec.ts): update import path for CustomerScheduleServiceCreate in list-ids.spec.ts chore(list.spec.ts): update import path for CustomerScheduleServiceCreate in list.spec.ts chore(create.ts): update import path for CustomerScheduleServiceCreate in create.ts chore(destroy.spec.ts): update import path for CustomerScheduleServiceCreate in destroy.spec.ts chore(destroy.ts): update import path for CustomerScheduleServiceDestroy in destroy.ts chore(get.spec.ts): update import path for CustomerScheduleServiceCreate in get.spec.ts chore(get.ts): update import path for CustomerScheduleServiceGet in get.ts chore(list.spec.ts): update import path for CustomerScheduleServiceList in list.spec.ts chore(list.ts
feat(schedule): add create, destroy, get, and getWithCustomer services
feat(schedule/create): add CustomerScheduleServiceCreate function
feat(schedule/destroy): add CustomerScheduleServiceDestroy function
feat(schedule/get): add CustomerScheduleServiceGet function
feat(schedule/getWithCustomer): add CustomerScheduleServiceGetWithCustomer function
test(schedule/create.spec): add tests for CustomerScheduleServiceCreate function
test(schedule/destroy.spec): add tests for CustomerScheduleServiceDestroy function
test(schedule/get.spec): add tests for CustomerScheduleServiceGet function
test(schedule/get-with-customer.spec): add tests for CustomerScheduleServiceGetWithCustomer function
feat(schedule): add list, update, and get-with-customer services
feat(schedule/list): add service to retrieve all schedules for a customerId
feat(schedule/update): add service to update a schedule
feat(schedule/get-with-customer): add service to retrieve a schedule with customer information
fix(schedule): fix import path in user/services/schedule.spec.ts
fix(availability): fix import path in generate-availability.ts