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.
Files changed (39) hide show
  1. package/dist/constants/angel-friend.constants.js +1 -0
  2. package/dist/constants/index.js +1 -0
  3. package/docs/assets/navigation.js +1 -1
  4. package/docs/assets/search.js +1 -1
  5. package/docs/classes/index.Socket-1.html +40 -61
  6. package/docs/enums/constants_sounds_constants.SOUNDS_CONSTANTS.html +2 -0
  7. package/docs/interfaces/repositories_socket_repository_interface.ISocketRepository.html +2 -2
  8. package/docs/interfaces/repositories_sounds_repository_interface.ISoundsRepository.html +3 -0
  9. package/docs/interfaces/services_chat_service_interface.IChatService.html +7 -2
  10. package/docs/interfaces/states_chat_container_chat_app_state_interface.IChatApp.html +3 -2
  11. package/docs/modules/components_pages_base_app_page_styles.html +8 -8
  12. package/docs/modules/constants.html +2 -1
  13. package/docs/modules/constants_sounds_constants.html +2 -0
  14. package/docs/modules/index.Socket.html +1 -1
  15. package/docs/modules/index.html +2 -1
  16. package/docs/modules/repositories.html +2 -1
  17. package/docs/modules/repositories_sounds_repository_interface.html +2 -0
  18. package/docs/types/index.Socket.DisconnectReason.html +1 -1
  19. package/docs/variables/components_pages_base_app_page_styles.Content.html +1 -0
  20. package/docs/variables/components_pages_base_app_page_styles.ContextMenu.html +1 -0
  21. package/docs/variables/components_pages_base_app_page_styles.GenericButton.html +1 -0
  22. package/docs/variables/components_pages_base_app_page_styles.Header.html +1 -0
  23. package/docs/variables/components_pages_base_app_page_styles.LeftArrowLarge.html +1 -0
  24. package/docs/variables/components_pages_base_app_page_styles.PageContainer.html +1 -0
  25. package/docs/variables/components_pages_base_app_page_styles.SidebarPadding.html +1 -0
  26. package/docs/variables/components_pages_base_app_page_styles.Title.html +1 -0
  27. package/package.json +1 -1
  28. package/src/constants/angel-friend.constants.ts +1 -0
  29. package/src/constants/index.ts +1 -0
  30. package/src/models/angel-friend-status.model.ts +8 -1
  31. package/src/services/angel-friend.service.interface.ts +2 -1
  32. package/docs/functions/components_pages_base_app_page_styles.Content.html +0 -213
  33. package/docs/functions/components_pages_base_app_page_styles.ContextMenu.html +0 -213
  34. package/docs/functions/components_pages_base_app_page_styles.GenericButton.html +0 -213
  35. package/docs/functions/components_pages_base_app_page_styles.Header.html +0 -213
  36. package/docs/functions/components_pages_base_app_page_styles.LeftArrowLarge.html +0 -213
  37. package/docs/functions/components_pages_base_app_page_styles.PageContainer.html +0 -213
  38. package/docs/functions/components_pages_base_app_page_styles.SidebarPadding.html +0 -213
  39. 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";
@@ -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: string[];
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: {