feat: realistic face avatar + voice input + ASR endpoint
This commit is contained in:
@@ -83,6 +83,13 @@ export const apiService = {
|
||||
byPosition: (position: string) =>
|
||||
request(API_ENDPOINTS.DAILY_QUESTION.BY_POSITION(position), 'GET', undefined, true),
|
||||
},
|
||||
share: {
|
||||
create: (data: { type: string; refId?: string; title?: string; description?: string }) =>
|
||||
request(API_ENDPOINTS.SHARE.CREATE, 'POST', data, true),
|
||||
stats: () => request(API_ENDPOINTS.SHARE.STATS, 'GET', undefined, true),
|
||||
records: () => request(API_ENDPOINTS.SHARE.RECORDS, 'GET', undefined, true),
|
||||
visitors: () => request(API_ENDPOINTS.SHARE.VISITORS, 'GET', undefined, true),
|
||||
},
|
||||
}
|
||||
|
||||
export default apiService
|
||||
|
||||
Reference in New Issue
Block a user