@rolatech/angular-services 20.0.2-beta.1 → 20.0.2-beta.3

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/index.d.ts CHANGED
@@ -517,25 +517,31 @@ declare class PropertyService extends BaseService {
517
517
  createSecurityDepositCheckout(offerId: string, data: any): Observable<any>;
518
518
  checkOfferPaymentStatus(offerId: any, sessionId: string): Observable<any>;
519
519
  offerTimeline(offerId: string): Observable<any>;
520
+ getHighlights<T>(id: string): Observable<T>;
520
521
  findFeatures<T>(id: string): Observable<T>;
521
522
  updateFeatures<T>(id: string, data: any): Observable<T>;
522
523
  updateLocation<T>(id: string, data: any): Observable<T>;
523
524
  updateAgent<T>(id: string, data: any): Observable<T>;
524
- getVideoTour<T>(id: string): Observable<T>;
525
- addVideoTour<T>(id: string, data: any): Observable<T>;
526
- updateVideoTour<T>(id: string, data: any): Observable<T>;
527
- deleteVideoTour<T>(id: string, videoTourId: string): Observable<T>;
525
+ getVideos<T>(id: string): Observable<T>;
526
+ addVideo<T>(id: string, data: any): Observable<T>;
527
+ updateVideo<T>(id: string, videoId: string, data: any): Observable<T>;
528
+ deleteVideo<T>(id: string, videoId: string): Observable<T>;
529
+ uploadVideoThumbnail(videoId: any, data: FormData): Observable<any>;
528
530
  findTenants<T>(options: any): Observable<T>;
529
531
  getTenant<T>(id: string): Observable<T>;
530
532
  createTenant<T>(data: any): Observable<T>;
531
533
  updateTenant<T>(id: string, data: any): Observable<T>;
532
534
  deleteTenant<T>(id: string): Observable<T>;
533
- uploadVideoTourInit(propertyId: string, data: any): Observable<any>;
534
- uploadVideoTourPartsToProperty(propertyId: string, data: FormData): Observable<any>;
535
- completePartUpload(propertyId: string, data: any): Observable<any>;
535
+ uploadVideosInit(propertyId: string, data: any): Observable<any>;
536
+ uploadVideosPartsToProperty(propertyId: string, data: FormData): Observable<any>;
537
+ completePartUpload(videoId: string, data: any): Observable<any>;
536
538
  uploadVideoToProperty(propertyId: string, data: any): Observable<any>;
537
539
  deletePropertyVideo(propertyId: string, videoId: any): Observable<any>;
538
540
  uploadPropertyVideoThumbnail(videoId: any, data: FormData): Observable<any>;
541
+ getEpc<T>(id: string): Observable<T>;
542
+ addEpc<T>(id: string, data: any): Observable<T>;
543
+ updateEpc<T>(id: string, data: any): Observable<T>;
544
+ deleteEpc<T>(id: string): Observable<T>;
539
545
  static ɵfac: i0.ɵɵFactoryDeclaration<PropertyService, never>;
540
546
  static ɵprov: i0.ɵɵInjectableDeclaration<PropertyService>;
541
547
  }
@@ -617,10 +623,10 @@ declare class OfferingService extends BaseService {
617
623
  findFeatures<T>(id: string): Observable<T>;
618
624
  updateFeatures<T>(id: string, data: any): Observable<T>;
619
625
  updateLocation<T>(id: string, data: any): Observable<T>;
620
- getVideoTour<T>(id: string): Observable<T>;
621
- addVideoTour<T>(id: string, data: any): Observable<T>;
622
- updateVideoTour<T>(id: string, data: any): Observable<T>;
623
- deleteVideoTour<T>(id: string, videoTourId: string, y: any): Observable<T>;
626
+ getVideos<T>(id: string): Observable<T>;
627
+ addVideo<T>(id: string, data: any): Observable<T>;
628
+ updateVideo<T>(id: string, data: any): Observable<T>;
629
+ deleteVideo<T>(id: string, videoId: string, y: any): Observable<T>;
624
630
  static ɵfac: i0.ɵɵFactoryDeclaration<OfferingService, never>;
625
631
  static ɵprov: i0.ɵɵInjectableDeclaration<OfferingService>;
626
632
  }
@@ -663,6 +669,8 @@ interface GroupEvent {
663
669
  mediaUrl?: string;
664
670
  link?: string;
665
671
  price?: number;
672
+ address?: string;
673
+ phone?: string;
666
674
  }
667
675
  interface ToolEvent {
668
676
  type: 'tool';
@@ -749,6 +757,12 @@ declare class ConversationInitService {
749
757
  static ɵprov: i0.ɵɵInjectableDeclaration<ConversationInitService>;
750
758
  }
751
759
 
760
+ declare class PropertySearchService extends BaseService {
761
+ init(): void;
762
+ static ɵfac: i0.ɵɵFactoryDeclaration<PropertySearchService, never>;
763
+ static ɵprov: i0.ɵɵInjectableDeclaration<PropertySearchService>;
764
+ }
765
+
752
766
  declare class LoadingInterceptor {
753
767
  private loadingService;
754
768
  activeRequests: number;
@@ -778,5 +792,5 @@ declare const SERVICE_DIRECTIVES: Provider[];
778
792
 
779
793
  declare function provideAngularServices(): EnvironmentProviders;
780
794
 
781
- export { AmenityService, BackButtonDirective, BaseService, BookingService, BreadcrumbService, CartEventType, CartService, CategoryService, ConversationInitService, ConversationService, DialogComponent, DialogService, FacilityService, FeatureService, FulfillmentService, HideFooterDirective, InventoryService, LayoutService, LoadingInterceptor, LoadingService, MediaService, MembershipService, NavigationService, NotificationService, NotificationStore, NotificationTemplateService, OfferingService, OrderPayoutService, OrderService, PaymentService, PostService, ProductCategoryService, ProductService, PropertyService, ResourceCategoryService, ResourceService, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, TitleService, provideAngularServices };
795
+ export { AmenityService, BackButtonDirective, BaseService, BookingService, BreadcrumbService, CartEventType, CartService, CategoryService, ConversationInitService, ConversationService, DialogComponent, DialogService, FacilityService, FeatureService, FulfillmentService, HideFooterDirective, InventoryService, LayoutService, LoadingInterceptor, LoadingService, MediaService, MembershipService, NavigationService, NotificationService, NotificationStore, NotificationTemplateService, OfferingService, OrderPayoutService, OrderService, PaymentService, PostService, ProductCategoryService, ProductService, PropertySearchService, PropertyService, ResourceCategoryService, ResourceService, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, TitleService, provideAngularServices };
782
796
  export type { ChatMessage, ConversationInitResponse, DialogData, IDynamicDialogConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rolatech/angular-services",
3
- "version": "20.0.2-beta.1",
3
+ "version": "20.0.2-beta.3",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
@@ -12,7 +12,7 @@
12
12
  "rxjs": "^6.5.3 || ^7.4.0"
13
13
  },
14
14
  "dependencies": {
15
- "@rolatech/angular-common": "20.0.2-beta.1",
15
+ "@rolatech/angular-common": "20.0.2-beta.3",
16
16
  "tslib": "^2.3.0"
17
17
  },
18
18
  "repository": {