@rolatech/angular-services 20.2.7-beta.2 → 20.2.8-bete.1

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.
@@ -3323,6 +3323,23 @@ class PropertyOfferService extends BaseService {
3323
3323
  withCredentials: true,
3324
3324
  });
3325
3325
  }
3326
+ createRental(payload) {
3327
+ return this.http.post(`${this.actionUrl}/offers/rental`, payload, {
3328
+ withCredentials: true,
3329
+ });
3330
+ }
3331
+ createSale(payload) {
3332
+ return this.http.post(`${this.actionUrl}/offers/sale`, payload, {
3333
+ withCredentials: true,
3334
+ });
3335
+ }
3336
+ getCopyText(id, redactContact = true) {
3337
+ const params = new HttpParams().set('redactContact', String(redactContact));
3338
+ return this.http.get(`${this.actionUrl}/offers/${id}/copy-text`, {
3339
+ params,
3340
+ withCredentials: true,
3341
+ });
3342
+ }
3326
3343
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: PropertyOfferService, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
3327
3344
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.0.6", ngImport: i0, type: PropertyOfferService, providedIn: 'root' });
3328
3345
  }
@@ -3741,6 +3758,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.6", ngImpor
3741
3758
 
3742
3759
  const SERVICE_DIRECTIVES = [BackButtonDirective];
3743
3760
 
3761
+ var PropertyOfferStatus;
3762
+ (function (PropertyOfferStatus) {
3763
+ // ── Applicant action ─────────────────────
3764
+ PropertyOfferStatus["SUBMITTED"] = "Submitted";
3765
+ // ── Decision / negotiation ───────────────
3766
+ PropertyOfferStatus["ACCEPTED"] = "Accepted";
3767
+ PropertyOfferStatus["COUNTERED"] = "Countered";
3768
+ PropertyOfferStatus["REJECTED"] = "Rejected";
3769
+ // ── Market / listing state ───────────────
3770
+ PropertyOfferStatus["UNDER_OFFER"] = "Under offer";
3771
+ // ── Holding deposit ──────────────────────
3772
+ PropertyOfferStatus["HOLDING_DEPOSIT_PENDING"] = "Holding deposit pending";
3773
+ PropertyOfferStatus["HOLDING_DEPOSIT_PAID"] = "Holding deposit paid";
3774
+ // ── Financial & checks ───────────────────
3775
+ PropertyOfferStatus["REFERENCING"] = "Referencing";
3776
+ PropertyOfferStatus["REFERENCES_PASSED"] = "References passed";
3777
+ PropertyOfferStatus["REFERENCES_FAILED"] = "References failed";
3778
+ // ── Contract ─────────────────────────────
3779
+ PropertyOfferStatus["CONTRACT_PENDING"] = "Contract pending";
3780
+ PropertyOfferStatus["CONTRACT_SIGNED"] = "Contract signed";
3781
+ PropertyOfferStatus["CONTRACT_FAILED"] = "Contract failed";
3782
+ // ── Move-in payments ─────────────────────
3783
+ PropertyOfferStatus["SECURITY_DEPOSIT_PENDING"] = "Security deposit pending";
3784
+ PropertyOfferStatus["SECURITY_DEPOSIT_PAID"] = "Security deposit paid";
3785
+ PropertyOfferStatus["FIRST_RENT_PENDING"] = "First rent pending";
3786
+ PropertyOfferStatus["MOVE_IN_PAYMENT_PAID"] = "Move-in payment paid";
3787
+ // ── Completion ───────────────────────────
3788
+ PropertyOfferStatus["COMPLETED"] = "Completed";
3789
+ // ── Terminal / cancellation ──────────────
3790
+ PropertyOfferStatus["FAILED"] = "Failed";
3791
+ PropertyOfferStatus["WITHDRAWN"] = "Withdrawn";
3792
+ PropertyOfferStatus["EXPIRED"] = "Expired";
3793
+ PropertyOfferStatus["CANCELLED"] = "Cancelled";
3794
+ })(PropertyOfferStatus || (PropertyOfferStatus = {}));
3795
+
3744
3796
  // angular-automation/src/lib/models/automation.models.ts
3745
3797
  const SCHEDULE_CRON_META = [
3746
3798
  { value: 'EVERY_5_MINUTES', label: 'Every 5 minutes', description: 'Runs every 5 minutes' },
@@ -3781,5 +3833,5 @@ function provideAngularServices() {
3781
3833
  * Generated bundle index. Do not edit.
3782
3834
  */
3783
3835
 
3784
- export { AmenityService, AutomationService, BackButtonDirective, BaseService, BillingService, BookingService, BreadcrumbService, CartEventType, CartService, CategoryService, ConversationInitService, ConversationService, DialogComponent, DialogService, EnumApiClient, EnumCacheService, FacilityService, FeatureService, FloorplanService, FulfillmentService, HideFooterDirective, InventoryService, InvoiceLineService, 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, SCHEDULE_CRON_META, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, TimeZoneService, TitleService, acceptLanguageInterceptor, provideAngularServices };
3836
+ export { AmenityService, AutomationService, BackButtonDirective, BaseService, BillingService, BookingService, BreadcrumbService, CartEventType, CartService, CategoryService, ConversationInitService, ConversationService, DialogComponent, DialogService, EnumApiClient, EnumCacheService, FacilityService, FeatureService, FloorplanService, FulfillmentService, HideFooterDirective, InventoryService, InvoiceLineService, InvoiceService, InvoiceStatsService, LayoutService, LoadingInterceptor, LoadingService, MediaService, MembershipService, NavigationService, NotificationService, NotificationStore, NotificationTemplateService, OfferingService, OrderPayoutService, OrderService, PaymentService, PostService, ProductCategoryService, ProductService, PropertyHighlightsService, PropertyOfferService, PropertyOfferStatus, PropertySearchService, PropertyService, PropertyStatsService, PropertyViewingService, ResourceCategoryService, ResourceService, SCHEDULE_CRON_META, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, TimeZoneService, TitleService, acceptLanguageInterceptor, provideAngularServices };
3785
3837
  //# sourceMappingURL=rolatech-angular-services.mjs.map