@rolatech/angular-services 20.1.12 → 20.1.13
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-services",
|
|
3
|
-
"version": "20.1.
|
|
3
|
+
"version": "20.1.13",
|
|
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.1.
|
|
15
|
+
"@rolatech/angular-common": "20.1.13",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
@@ -539,21 +539,7 @@ declare class PropertyService extends BaseService {
|
|
|
539
539
|
confirmViewing(viewingId: string, slotId: string): Observable<any>;
|
|
540
540
|
getViewing(viewingId: string): Observable<any>;
|
|
541
541
|
cancelViewing(id: string): Observable<any>;
|
|
542
|
-
makeOffer(propertyId: string, data: any): Observable<any>;
|
|
543
|
-
findOffers(options: any): Observable<any>;
|
|
544
|
-
findOffersByUser(options: any): Observable<any>;
|
|
545
|
-
findOffersByAgent(options: any): Observable<any>;
|
|
546
542
|
findPropertiesByIds(ids: Array<string>): Observable<any>;
|
|
547
|
-
getOffer(offerId: any): Observable<any>;
|
|
548
|
-
cancelOffer(id: string): Observable<any>;
|
|
549
|
-
acceptOffer(id: string): Observable<any>;
|
|
550
|
-
rejectOffer(id: string, data: any): Observable<any>;
|
|
551
|
-
referencesAccept(id: string): Observable<any>;
|
|
552
|
-
referencesReject(id: string, data: any): Observable<any>;
|
|
553
|
-
createHoldingDepositCheckout(offerId: string, data: any): Observable<any>;
|
|
554
|
-
createSecurityDepositCheckout(offerId: string, data: any): Observable<any>;
|
|
555
|
-
checkOfferPaymentStatus(offerId: any, sessionId: string): Observable<any>;
|
|
556
|
-
offerTimeline(offerId: string): Observable<any>;
|
|
557
543
|
getHighlights<T>(id: string): Observable<T>;
|
|
558
544
|
getFeatures<T>(id: string): Observable<T>;
|
|
559
545
|
findUserFeatures<T>(id: string): Observable<T>;
|
|
@@ -841,6 +827,7 @@ declare class InvoiceService extends BaseService {
|
|
|
841
827
|
getInvoice(id: string): Observable<any>;
|
|
842
828
|
me(options: any): Observable<any>;
|
|
843
829
|
findPendingInvoices(options: any): Observable<any>;
|
|
830
|
+
updateInvoice(invoiceId: string, data: any): Observable<any>;
|
|
844
831
|
static ɵfac: i0.ɵɵFactoryDeclaration<InvoiceService, never>;
|
|
845
832
|
static ɵprov: i0.ɵɵInjectableDeclaration<InvoiceService>;
|
|
846
833
|
}
|
|
@@ -880,6 +867,35 @@ declare class InvoiceStatsService extends BaseService {
|
|
|
880
867
|
static ɵprov: i0.ɵɵInjectableDeclaration<InvoiceStatsService>;
|
|
881
868
|
}
|
|
882
869
|
|
|
870
|
+
declare class PropertyOfferService extends BaseService {
|
|
871
|
+
propertyService: PropertyService;
|
|
872
|
+
init(): void;
|
|
873
|
+
makeOffer(propertyId: string, data: any): Observable<any>;
|
|
874
|
+
findOffers(options: any): Observable<any>;
|
|
875
|
+
findOffersByUser(options: any): Observable<any>;
|
|
876
|
+
findOffersByAgent(options: any): Observable<any>;
|
|
877
|
+
getOffer(offerId: any): Observable<any>;
|
|
878
|
+
cancelOffer(id: string): Observable<any>;
|
|
879
|
+
acceptOffer(id: string): Observable<any>;
|
|
880
|
+
rejectOffer(id: string, data: any): Observable<any>;
|
|
881
|
+
referencesAccept(id: string): Observable<any>;
|
|
882
|
+
referencesReject(id: string, data: any): Observable<any>;
|
|
883
|
+
createHoldingDepositCheckout(offerId: string, data: any): Observable<any>;
|
|
884
|
+
createSecurityDepositCheckout(offerId: string, data: any): Observable<any>;
|
|
885
|
+
checkOfferPaymentStatus(offerId: any, sessionId: string): Observable<any>;
|
|
886
|
+
offerTimeline(offerId: string): Observable<any>;
|
|
887
|
+
updateOffer(offerId: string, data: any): Observable<any>;
|
|
888
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyOfferService, never>;
|
|
889
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyOfferService>;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
declare class PropertyViewingService extends BaseService {
|
|
893
|
+
propertyService: PropertyService;
|
|
894
|
+
init(): void;
|
|
895
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyViewingService, never>;
|
|
896
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyViewingService>;
|
|
897
|
+
}
|
|
898
|
+
|
|
883
899
|
declare class LoadingInterceptor {
|
|
884
900
|
loadingService: LoadingService;
|
|
885
901
|
activeRequests: number;
|
|
@@ -910,5 +926,5 @@ declare const SERVICE_DIRECTIVES: Provider[];
|
|
|
910
926
|
|
|
911
927
|
declare function provideAngularServices(): EnvironmentProviders;
|
|
912
928
|
|
|
913
|
-
export { AmenityService, BackButtonDirective, BaseService, BillingService, BookingService, BreadcrumbService, CartEventType, CartService, CategoryService, ConversationInitService, ConversationService, DialogComponent, DialogService, FacilityService, FeatureService, FloorplanService, FulfillmentService, HideFooterDirective, InventoryService, InvoiceService, InvoiceStatsService, LayoutService, LoadingInterceptor, LoadingService, MediaService, MembershipService, NavigationService, NotificationService, NotificationStore, NotificationTemplateService, OfferingService, OrderPayoutService, OrderService, PaymentService, PostService, ProductCategoryService, ProductService, PropertyHighlightsService, PropertySearchService, PropertyService, PropertyStatsService, ResourceCategoryService, ResourceService, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, TimeZoneService, TitleService, acceptLanguageInterceptor, provideAngularServices };
|
|
929
|
+
export { AmenityService, BackButtonDirective, BaseService, BillingService, BookingService, BreadcrumbService, CartEventType, CartService, CategoryService, ConversationInitService, ConversationService, DialogComponent, DialogService, FacilityService, FeatureService, FloorplanService, FulfillmentService, HideFooterDirective, InventoryService, InvoiceService, InvoiceStatsService, LayoutService, LoadingInterceptor, LoadingService, MediaService, MembershipService, NavigationService, NotificationService, NotificationStore, NotificationTemplateService, OfferingService, OrderPayoutService, OrderService, PaymentService, PostService, ProductCategoryService, ProductService, PropertyHighlightsService, PropertyOfferService, PropertySearchService, PropertyService, PropertyStatsService, PropertyViewingService, ResourceCategoryService, ResourceService, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, TimeZoneService, TitleService, acceptLanguageInterceptor, provideAngularServices };
|
|
914
930
|
export type { ChatMessage, ConversationInitResponse, DialogData, GroupedViewingsByDate, IDynamicDialogConfig, InvoiceStats, PendingInvoice, PropertyStats, UpcomingViewing };
|