robbyson-frontend-library 1.0.76 → 1.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants/angel-friend.constants.js +1 -0
- package/dist/constants/index.js +1 -0
- package/docs/assets/navigation.js +1 -1
- package/docs/assets/search.js +1 -1
- package/docs/classes/index.Socket-1.html +40 -61
- package/docs/enums/constants_sounds_constants.SOUNDS_CONSTANTS.html +2 -0
- package/docs/interfaces/repositories_socket_repository_interface.ISocketRepository.html +2 -2
- package/docs/interfaces/repositories_sounds_repository_interface.ISoundsRepository.html +3 -0
- package/docs/interfaces/services_chat_service_interface.IChatService.html +7 -2
- package/docs/interfaces/states_chat_container_chat_app_state_interface.IChatApp.html +3 -2
- package/docs/modules/components_pages_base_app_page_styles.html +8 -8
- package/docs/modules/constants.html +2 -1
- package/docs/modules/constants_sounds_constants.html +2 -0
- package/docs/modules/index.Socket.html +1 -1
- package/docs/modules/index.html +2 -1
- package/docs/modules/repositories.html +2 -1
- package/docs/modules/repositories_sounds_repository_interface.html +2 -0
- package/docs/types/index.Socket.DisconnectReason.html +1 -1
- package/docs/variables/components_pages_base_app_page_styles.Content.html +1 -0
- package/docs/variables/components_pages_base_app_page_styles.ContextMenu.html +1 -0
- package/docs/variables/components_pages_base_app_page_styles.GenericButton.html +1 -0
- package/docs/variables/components_pages_base_app_page_styles.Header.html +1 -0
- package/docs/variables/components_pages_base_app_page_styles.LeftArrowLarge.html +1 -0
- package/docs/variables/components_pages_base_app_page_styles.PageContainer.html +1 -0
- package/docs/variables/components_pages_base_app_page_styles.SidebarPadding.html +1 -0
- package/docs/variables/components_pages_base_app_page_styles.Title.html +1 -0
- package/package.json +1 -1
- package/src/constants/angel-friend.constants.ts +1 -0
- package/src/constants/index.ts +1 -0
- package/src/models/angel-friend-status.model.ts +8 -1
- package/src/services/angel-friend.service.interface.ts +2 -1
- package/docs/functions/components_pages_base_app_page_styles.Content.html +0 -213
- package/docs/functions/components_pages_base_app_page_styles.ContextMenu.html +0 -213
- package/docs/functions/components_pages_base_app_page_styles.GenericButton.html +0 -213
- package/docs/functions/components_pages_base_app_page_styles.Header.html +0 -213
- package/docs/functions/components_pages_base_app_page_styles.LeftArrowLarge.html +0 -213
- package/docs/functions/components_pages_base_app_page_styles.PageContainer.html +0 -213
- package/docs/functions/components_pages_base_app_page_styles.SidebarPadding.html +0 -213
- package/docs/functions/components_pages_base_app_page_styles.Title.html +0 -213
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const RATING_NOTIFICATIONS_START_DATE = "2024-08-30";
|
package/src/constants/index.ts
CHANGED
|
@@ -8,4 +8,5 @@ export * as UploadConstants from "./upload.constants";
|
|
|
8
8
|
export * as CampaignConstants from "./campaign.constants";
|
|
9
9
|
export * as ResultsConstants from "./result-level.constants";
|
|
10
10
|
export * as AuthenticationConstants from "./authentication.constants";
|
|
11
|
+
export * as AngelFriendConstants from "./angel-friend.constants";
|
|
11
12
|
export * from "./sounds.constants";
|
|
@@ -274,7 +274,7 @@ export interface SponsorshipData {
|
|
|
274
274
|
_id: string;
|
|
275
275
|
createdAt: string;
|
|
276
276
|
expiresIn: string;
|
|
277
|
-
rating:
|
|
277
|
+
rating: IAngelFriendRating[];
|
|
278
278
|
accepted: boolean;
|
|
279
279
|
beginDate: string | null;
|
|
280
280
|
godsonEndLevel?: number;
|
|
@@ -375,3 +375,10 @@ export interface ITimelineItem {
|
|
|
375
375
|
cancelInvite?: Function;
|
|
376
376
|
openChat?: Function;
|
|
377
377
|
}
|
|
378
|
+
|
|
379
|
+
export interface IAngelFriendRating {
|
|
380
|
+
rating: number;
|
|
381
|
+
from: number;
|
|
382
|
+
message: string;
|
|
383
|
+
createdAt: Date;
|
|
384
|
+
}
|
|
@@ -15,7 +15,8 @@ export interface IAngelFriendService {
|
|
|
15
15
|
getNotificationList(
|
|
16
16
|
robbysonUserId: number,
|
|
17
17
|
data: { skip: number },
|
|
18
|
-
limit?: number
|
|
18
|
+
limit?: number,
|
|
19
|
+
ratingNotification?: boolean
|
|
19
20
|
): Promise<INotificationResponse>;
|
|
20
21
|
getNotificationToBeGodfather(): Promise<IHttpGenericResponse>;
|
|
21
22
|
getPossibleGodsons(data: {
|