@rolatech/angular-services 20.2.9-beta.7 → 20.3.0-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.
|
@@ -4,7 +4,7 @@ import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, BehaviorSubject, Subject } from 'rxjs';
|
|
6
6
|
import { HttpClient, HttpRequest, HttpHandler, HttpEvent, HttpInterceptorFn } from '@angular/common/http';
|
|
7
|
-
import { AppConfig, ApiResponse } from '@rolatech/angular-common';
|
|
7
|
+
import { AppConfig, ApiResponse, ApiRequestOptions as ApiRequestOptions$1 } from '@rolatech/angular-common';
|
|
8
8
|
import { Location } from '@angular/common';
|
|
9
9
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
10
10
|
import { BreakpointObserver, MediaMatcher } from '@angular/cdk/layout';
|
|
@@ -53,6 +53,7 @@ declare class BaseService {
|
|
|
53
53
|
endpoint: string;
|
|
54
54
|
constructor();
|
|
55
55
|
init(): void;
|
|
56
|
+
protected params(options?: Record<string, any>): Record<string, any>;
|
|
56
57
|
find<T>(options?: any, withCredentials?: boolean): Observable<T>;
|
|
57
58
|
get<T>(id: string, options?: any, withCredentials?: boolean): Observable<T>;
|
|
58
59
|
create<T>(item: T): Observable<T>;
|
|
@@ -686,11 +687,750 @@ declare class TitleService {
|
|
|
686
687
|
static ɵprov: i0.ɵɵInjectableDeclaration<TitleService>;
|
|
687
688
|
}
|
|
688
689
|
|
|
690
|
+
type ApplicationStatus = 'ACTIVE' | 'INACTIVE' | 'DRAFT';
|
|
691
|
+
interface ApplicationSummaryResponse {
|
|
692
|
+
id: string;
|
|
693
|
+
name: string;
|
|
694
|
+
code: string;
|
|
695
|
+
type?: string | null;
|
|
696
|
+
description?: string | null;
|
|
697
|
+
status: ApplicationStatus;
|
|
698
|
+
active: boolean;
|
|
699
|
+
organizationCount: number;
|
|
700
|
+
roleCount: number;
|
|
701
|
+
updatedAt?: string | null;
|
|
702
|
+
}
|
|
703
|
+
interface ApplicationDetailResponse extends ApplicationSummaryResponse {
|
|
704
|
+
memberCount: number;
|
|
705
|
+
createdAt?: string | null;
|
|
706
|
+
}
|
|
707
|
+
interface ApplicationOrganizationResponse {
|
|
708
|
+
id: string;
|
|
709
|
+
name: string;
|
|
710
|
+
code: string;
|
|
711
|
+
status: ApplicationStatus;
|
|
712
|
+
memberCount: number;
|
|
713
|
+
ownerUserId?: string | null;
|
|
714
|
+
ownerDisplayName?: string | null;
|
|
715
|
+
ownerEmail?: string | null;
|
|
716
|
+
ownerStatus?: string | null;
|
|
717
|
+
}
|
|
718
|
+
interface ApplicationPageResponse {
|
|
719
|
+
items: ApplicationSummaryResponse[];
|
|
720
|
+
total: number;
|
|
721
|
+
}
|
|
722
|
+
interface ApplicationOrganizationPageResponse {
|
|
723
|
+
items: ApplicationOrganizationResponse[];
|
|
724
|
+
total: number;
|
|
725
|
+
}
|
|
726
|
+
interface ApplicationMemberVerificationResponse {
|
|
727
|
+
emailVerified: boolean;
|
|
728
|
+
phoneVerified: boolean;
|
|
729
|
+
identityVerified: boolean;
|
|
730
|
+
status?: string | null;
|
|
731
|
+
}
|
|
732
|
+
interface ApplicationMemberOrganizationMembershipResponse {
|
|
733
|
+
orgId: string;
|
|
734
|
+
orgCode?: string | null;
|
|
735
|
+
orgName?: string | null;
|
|
736
|
+
roles: string[];
|
|
737
|
+
}
|
|
738
|
+
interface ApplicationMemberSummaryResponse {
|
|
739
|
+
memberId: string;
|
|
740
|
+
userId?: string | null;
|
|
741
|
+
username?: string | null;
|
|
742
|
+
name?: string | null;
|
|
743
|
+
fullName?: string | null;
|
|
744
|
+
firstName?: string | null;
|
|
745
|
+
lastName?: string | null;
|
|
746
|
+
email?: string | null;
|
|
747
|
+
phone?: string | null;
|
|
748
|
+
status?: string | null;
|
|
749
|
+
joinedAt?: string | null;
|
|
750
|
+
roles: string[];
|
|
751
|
+
organizationCount?: number | null;
|
|
752
|
+
verification?: ApplicationMemberVerificationResponse | null;
|
|
753
|
+
}
|
|
754
|
+
interface ApplicationMemberDetailResponse extends ApplicationMemberSummaryResponse {
|
|
755
|
+
permissions?: string[] | null;
|
|
756
|
+
platformRoles?: string[] | null;
|
|
757
|
+
applicationRoles?: string[] | null;
|
|
758
|
+
organizations?: ApplicationMemberOrganizationMembershipResponse[] | null;
|
|
759
|
+
}
|
|
760
|
+
interface ApplicationMemberPageResponse {
|
|
761
|
+
items: ApplicationMemberSummaryResponse[];
|
|
762
|
+
total: number;
|
|
763
|
+
}
|
|
764
|
+
interface CreateApplicationRequest {
|
|
765
|
+
name: string;
|
|
766
|
+
code: string;
|
|
767
|
+
type?: string | null;
|
|
768
|
+
description?: string | null;
|
|
769
|
+
active: boolean;
|
|
770
|
+
}
|
|
771
|
+
interface UpdateApplicationRequest extends CreateApplicationRequest {
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
/** Mirrors AbstractBaseEntity (common fields in your backend). */
|
|
775
|
+
interface BaseEntity {
|
|
776
|
+
id: string;
|
|
777
|
+
createdAt?: string;
|
|
778
|
+
updatedAt?: string;
|
|
779
|
+
version?: number;
|
|
780
|
+
}
|
|
781
|
+
/** ---- Enums ---- */
|
|
782
|
+
type AutomationExecutionStatus = 'QUEUED' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'CANCELLED';
|
|
783
|
+
type AutomationLogLevel = 'INFO' | 'WARN' | 'ERROR' | 'DEBUG';
|
|
784
|
+
type ScheduleCron = 'EVERY_5_MINUTES' | 'EVERY_15_MINUTES' | 'HOURLY' | 'DAILY' | 'WEEKLY';
|
|
785
|
+
/** ---- Entities ---- */
|
|
786
|
+
interface AutomationDefinition extends BaseEntity {
|
|
787
|
+
code: string;
|
|
788
|
+
name: string;
|
|
789
|
+
description?: string | null;
|
|
790
|
+
handlerKey: string;
|
|
791
|
+
defaultInputJson?: string | null;
|
|
792
|
+
enabled: boolean;
|
|
793
|
+
}
|
|
794
|
+
interface AutomationExecution extends BaseEntity {
|
|
795
|
+
definitionId: string;
|
|
796
|
+
scheduleId?: string | null;
|
|
797
|
+
status: AutomationExecutionStatus;
|
|
798
|
+
queuedAt?: string | null;
|
|
799
|
+
startedAt?: string | null;
|
|
800
|
+
finishedAt?: string | null;
|
|
801
|
+
processed: number;
|
|
802
|
+
total: number;
|
|
803
|
+
lastSeq: number;
|
|
804
|
+
inputJson?: string | null;
|
|
805
|
+
metadata?: Record<string, any> | null;
|
|
806
|
+
idempotencyKey?: string | null;
|
|
807
|
+
errorMessage?: string | null;
|
|
808
|
+
}
|
|
809
|
+
interface AutomationSchedule extends BaseEntity {
|
|
810
|
+
definitionId: string;
|
|
811
|
+
name: string;
|
|
812
|
+
schedule: ScheduleCron;
|
|
813
|
+
inputJson?: string | null;
|
|
814
|
+
enabled: boolean;
|
|
815
|
+
nextRunAt?: string | null;
|
|
816
|
+
lastRunAt?: string | null;
|
|
817
|
+
}
|
|
818
|
+
interface AutomationExecutionLog extends BaseEntity {
|
|
819
|
+
executionId: string;
|
|
820
|
+
level: AutomationLogLevel;
|
|
821
|
+
message: string;
|
|
822
|
+
}
|
|
823
|
+
/** ---- Optional: enum metadata for UI (label/description) ---- */
|
|
824
|
+
interface ScheduleCronMeta {
|
|
825
|
+
value: ScheduleCron;
|
|
826
|
+
label: string;
|
|
827
|
+
description: string;
|
|
828
|
+
}
|
|
829
|
+
declare const SCHEDULE_CRON_META: readonly ScheduleCronMeta[];
|
|
830
|
+
|
|
831
|
+
type ApiRequestOptions = Record<string, any>;
|
|
832
|
+
interface AutomationSummaryResponse {
|
|
833
|
+
[k: string]: any;
|
|
834
|
+
}
|
|
835
|
+
type AutomationDefinitionDto = AutomationDefinition;
|
|
836
|
+
interface CreateDefinitionRequest {
|
|
837
|
+
code: string;
|
|
838
|
+
name: string;
|
|
839
|
+
description?: string | null;
|
|
840
|
+
handlerKey: string;
|
|
841
|
+
defaultInputJson?: string | null;
|
|
842
|
+
enabled?: boolean;
|
|
843
|
+
}
|
|
844
|
+
interface UpdateDefinitionRequest {
|
|
845
|
+
name?: string;
|
|
846
|
+
description?: string | null;
|
|
847
|
+
handlerKey?: string;
|
|
848
|
+
defaultInputJson?: string | null;
|
|
849
|
+
enabled?: boolean;
|
|
850
|
+
}
|
|
851
|
+
interface AutomationExecutionDto extends AutomationExecution {
|
|
852
|
+
definitionCode?: string;
|
|
853
|
+
}
|
|
854
|
+
interface EnqueueExecutionRequest {
|
|
855
|
+
definitionCode: string;
|
|
856
|
+
inputJson?: string | null;
|
|
857
|
+
idempotencyKey?: string | null;
|
|
858
|
+
scheduleId?: string | null;
|
|
859
|
+
}
|
|
860
|
+
interface CancelStateResponse {
|
|
861
|
+
cancelRequested: boolean;
|
|
862
|
+
status: string;
|
|
863
|
+
}
|
|
864
|
+
interface ExecutionLogDto {
|
|
865
|
+
id: string;
|
|
866
|
+
executionId: string;
|
|
867
|
+
level: string;
|
|
868
|
+
message: string;
|
|
869
|
+
createdAt?: string | null;
|
|
870
|
+
}
|
|
871
|
+
interface AutomationScheduleDto extends AutomationSchedule {
|
|
872
|
+
definitionCode?: string;
|
|
873
|
+
schedule: ScheduleCron;
|
|
874
|
+
}
|
|
875
|
+
interface ScheduleOptionResponse {
|
|
876
|
+
code: string;
|
|
877
|
+
value: ScheduleCron;
|
|
878
|
+
label: string;
|
|
879
|
+
description: string;
|
|
880
|
+
}
|
|
881
|
+
interface CreateScheduleRequest {
|
|
882
|
+
definitionId: string;
|
|
883
|
+
name: string;
|
|
884
|
+
schedule: ScheduleCron;
|
|
885
|
+
inputJson?: string | null;
|
|
886
|
+
enabled?: boolean;
|
|
887
|
+
}
|
|
888
|
+
interface UpdateScheduleRequest {
|
|
889
|
+
name?: string;
|
|
890
|
+
schedule?: ScheduleCron;
|
|
891
|
+
inputJson?: string | null;
|
|
892
|
+
enabled?: boolean;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
interface EnumOption {
|
|
896
|
+
value: string;
|
|
897
|
+
label: string;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
type ReferenceProvider = 'GOODLORD' | 'LET_ALLIANCE' | 'HOMELET' | 'OTHER';
|
|
901
|
+
interface OfferReferencingPatchPayload {
|
|
902
|
+
referenceProvider: ReferenceProvider;
|
|
903
|
+
referenceProviderOther?: string | null;
|
|
904
|
+
}
|
|
905
|
+
interface OfferReferencingView {
|
|
906
|
+
referenceProvider: ReferenceProvider | null;
|
|
907
|
+
referenceProviderOther: string | null;
|
|
908
|
+
updatedBy?: string | null;
|
|
909
|
+
updatedAt?: string | null;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
type OnboardingStatus = 'DRAFT' | 'IN_PROGRESS' | 'SUBMITTED' | 'IN_REVIEW' | 'NEED_MORE_INFO' | 'APPROVED' | 'FAILED';
|
|
913
|
+
type OnboardingApplicantType = 'INDIVIDUAL' | 'COMPANY';
|
|
914
|
+
type OnboardingDocumentType = 'PASSPORT' | 'CERTIFICATE_OF_INCORPORATION' | 'INDUSTRY_CERTIFICATE' | 'PROOF_OF_ADDRESS' | 'BANK_STATEMENT' | 'OTHER';
|
|
915
|
+
type OnboardingIssueType = 'FIELD' | 'DOCUMENT' | 'GENERAL';
|
|
916
|
+
type OnboardingVatMode = 'NON_VAT_REGISTERED' | 'VAT_REGISTERED' | 'MANUAL_REVIEW_REQUIRED';
|
|
917
|
+
interface CreateOnboardingApplicationRequest {
|
|
918
|
+
applicationId: string;
|
|
919
|
+
applicantType: OnboardingApplicantType;
|
|
920
|
+
companyCountry: string;
|
|
921
|
+
}
|
|
922
|
+
interface SaveOnboardingProfileRequest {
|
|
923
|
+
organizationName: string;
|
|
924
|
+
contactName: string;
|
|
925
|
+
contactEmail: string;
|
|
926
|
+
contactPhone: string;
|
|
927
|
+
countryCode: string;
|
|
928
|
+
}
|
|
929
|
+
interface SaveOnboardingFinancialRequest {
|
|
930
|
+
vatMode: OnboardingVatMode;
|
|
931
|
+
vatNumber?: string | null;
|
|
932
|
+
}
|
|
933
|
+
interface SaveOnboardingBankingRequest {
|
|
934
|
+
bankName: string;
|
|
935
|
+
accountHolderName: string;
|
|
936
|
+
sortCode: string;
|
|
937
|
+
accountNumber: string;
|
|
938
|
+
}
|
|
939
|
+
interface RequestOnboardingUploadUrlRequest {
|
|
940
|
+
documentType: OnboardingDocumentType;
|
|
941
|
+
filename: string;
|
|
942
|
+
contentType: string;
|
|
943
|
+
fileSize: number;
|
|
944
|
+
replacedDocumentId?: string;
|
|
945
|
+
}
|
|
946
|
+
interface ConfirmOnboardingDocumentUploadRequest {
|
|
947
|
+
documentType: OnboardingDocumentType;
|
|
948
|
+
storageType: string;
|
|
949
|
+
objectKey: string;
|
|
950
|
+
objectUrl: string;
|
|
951
|
+
originalFilename: string;
|
|
952
|
+
contentType: string;
|
|
953
|
+
fileSize: number;
|
|
954
|
+
replacedDocumentId?: string;
|
|
955
|
+
}
|
|
956
|
+
interface OnboardingUploadUrlResponse {
|
|
957
|
+
uploadUrl: string;
|
|
958
|
+
storageType: string;
|
|
959
|
+
objectKey: string;
|
|
960
|
+
uploadHeaders?: Record<string, string>;
|
|
961
|
+
expiresAt?: string | null;
|
|
962
|
+
}
|
|
963
|
+
interface OnboardingDocumentPreviewUrlResponse {
|
|
964
|
+
documentId: string;
|
|
965
|
+
previewUrl: string;
|
|
966
|
+
}
|
|
967
|
+
interface NeedMoreInfoOnboardingIssueRequest {
|
|
968
|
+
issueType: OnboardingIssueType;
|
|
969
|
+
comment: string;
|
|
970
|
+
fieldKey?: string;
|
|
971
|
+
documentType?: OnboardingDocumentType;
|
|
972
|
+
}
|
|
973
|
+
interface NeedMoreInfoOnboardingApplicationRequest {
|
|
974
|
+
comment: string;
|
|
975
|
+
issues: NeedMoreInfoOnboardingIssueRequest[];
|
|
976
|
+
}
|
|
977
|
+
interface ApproveOnboardingApplicationRequest {
|
|
978
|
+
comment: string;
|
|
979
|
+
}
|
|
980
|
+
interface FailOnboardingApplicationRequest {
|
|
981
|
+
comment: string;
|
|
982
|
+
}
|
|
983
|
+
interface OnboardingIssueResponse {
|
|
984
|
+
id: string;
|
|
985
|
+
issueType: OnboardingIssueType;
|
|
986
|
+
comment: string;
|
|
987
|
+
fieldKey?: string | null;
|
|
988
|
+
documentType?: OnboardingDocumentType | null;
|
|
989
|
+
resolved?: boolean;
|
|
990
|
+
createdAt?: string;
|
|
991
|
+
}
|
|
992
|
+
interface OnboardingTimelineResponse {
|
|
993
|
+
id: string;
|
|
994
|
+
type: string;
|
|
995
|
+
title?: string | null;
|
|
996
|
+
description?: string | null;
|
|
997
|
+
createdAt: string;
|
|
998
|
+
}
|
|
999
|
+
interface OnboardingDocumentResponse {
|
|
1000
|
+
id: string;
|
|
1001
|
+
documentType: OnboardingDocumentType;
|
|
1002
|
+
originalFilename: string;
|
|
1003
|
+
contentType?: string;
|
|
1004
|
+
fileSize?: number;
|
|
1005
|
+
version: number;
|
|
1006
|
+
status?: string;
|
|
1007
|
+
reviewerComment?: string | null;
|
|
1008
|
+
uploadedAt?: string;
|
|
1009
|
+
}
|
|
1010
|
+
interface OnboardingProgress {
|
|
1011
|
+
profileCompleted: boolean;
|
|
1012
|
+
qualificationCompleted: boolean;
|
|
1013
|
+
financialCompleted: boolean;
|
|
1014
|
+
bankingCompleted: boolean;
|
|
1015
|
+
}
|
|
1016
|
+
interface OnboardingApplicationResponse {
|
|
1017
|
+
id: string;
|
|
1018
|
+
applicationId: string;
|
|
1019
|
+
status: OnboardingStatus;
|
|
1020
|
+
applicantType: OnboardingApplicantType;
|
|
1021
|
+
companyCountry: string;
|
|
1022
|
+
organizationName?: string | null;
|
|
1023
|
+
contactName?: string | null;
|
|
1024
|
+
contactEmail?: string | null;
|
|
1025
|
+
contactPhone?: string | null;
|
|
1026
|
+
countryCode?: string | null;
|
|
1027
|
+
progress?: OnboardingProgress;
|
|
1028
|
+
createdAt?: string;
|
|
1029
|
+
updatedAt?: string;
|
|
1030
|
+
}
|
|
1031
|
+
interface OnboardingApplicationDetailResponse extends OnboardingApplicationResponse {
|
|
1032
|
+
vatMode?: OnboardingVatMode | null;
|
|
1033
|
+
vatNumber?: string | null;
|
|
1034
|
+
bankName?: string | null;
|
|
1035
|
+
accountHolderName?: string | null;
|
|
1036
|
+
sortCode?: string | null;
|
|
1037
|
+
accountNumber?: string | null;
|
|
1038
|
+
documents: OnboardingDocumentResponse[];
|
|
1039
|
+
issues: OnboardingIssueResponse[];
|
|
1040
|
+
timeline: OnboardingTimelineResponse[];
|
|
1041
|
+
}
|
|
1042
|
+
interface OnboardingAdminListQuery {
|
|
1043
|
+
status?: OnboardingStatus;
|
|
1044
|
+
search?: string;
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
type OrganizationInvitationStatus = 'PENDING' | 'ACCEPTED' | 'EXPIRED' | 'REVOKED';
|
|
1048
|
+
interface OrganizationInvitationResponse {
|
|
1049
|
+
id: string;
|
|
1050
|
+
email: string;
|
|
1051
|
+
roleCode: string;
|
|
1052
|
+
status: OrganizationInvitationStatus;
|
|
1053
|
+
invitedBy?: string | null;
|
|
1054
|
+
createdAt: string;
|
|
1055
|
+
expiresAt?: string | null;
|
|
1056
|
+
respondedAt?: string | null;
|
|
1057
|
+
}
|
|
1058
|
+
interface OrganizationInvitationPageResponse {
|
|
1059
|
+
items: OrganizationInvitationResponse[];
|
|
1060
|
+
total: number;
|
|
1061
|
+
}
|
|
1062
|
+
interface CreateOrganizationInvitationRequest {
|
|
1063
|
+
email: string;
|
|
1064
|
+
roleCode: string;
|
|
1065
|
+
expiresInDays?: number | null;
|
|
1066
|
+
}
|
|
1067
|
+
interface OrganizationInvitationAcceptanceResponse {
|
|
1068
|
+
memberId: string;
|
|
1069
|
+
appId: string;
|
|
1070
|
+
orgId: string;
|
|
1071
|
+
userId: string;
|
|
1072
|
+
roleCodes: string[];
|
|
1073
|
+
}
|
|
1074
|
+
type OrganizationMembershipStatus = string;
|
|
1075
|
+
interface OrganizationMemberResponse {
|
|
1076
|
+
memberId: string;
|
|
1077
|
+
userId?: string | null;
|
|
1078
|
+
username?: string | null;
|
|
1079
|
+
firstName?: string | null;
|
|
1080
|
+
lastName?: string | null;
|
|
1081
|
+
fullName?: string | null;
|
|
1082
|
+
email: string;
|
|
1083
|
+
phone?: string | null;
|
|
1084
|
+
avatar?: string | null;
|
|
1085
|
+
status: OrganizationMembershipStatus;
|
|
1086
|
+
joinedAt?: string | null;
|
|
1087
|
+
invitedByUserId?: string | null;
|
|
1088
|
+
roles: string[];
|
|
1089
|
+
}
|
|
1090
|
+
interface OrganizationMemberCollectionResponse {
|
|
1091
|
+
items?: OrganizationMemberResponse[] | null;
|
|
1092
|
+
total?: number | null;
|
|
1093
|
+
}
|
|
1094
|
+
interface UpdateOrganizationMemberRolesRequest {
|
|
1095
|
+
roleIds: string[];
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
type RoleManageScope = 'PLATFORM' | 'APP' | 'ORG';
|
|
1099
|
+
type PermissionScope = 'PLATFORM' | 'APP' | 'ORG';
|
|
1100
|
+
type PermissionSource = 'ENDPOINT' | 'SYSTEM' | 'MANUAL';
|
|
1101
|
+
interface RolePermissionContext {
|
|
1102
|
+
manageScope: RoleManageScope;
|
|
1103
|
+
applicationId?: string | null;
|
|
1104
|
+
organizationId?: string | null;
|
|
1105
|
+
}
|
|
1106
|
+
interface RolePermissionIndexItem {
|
|
1107
|
+
id: string;
|
|
1108
|
+
name: string;
|
|
1109
|
+
code: string;
|
|
1110
|
+
scope: PermissionScope;
|
|
1111
|
+
applicationId?: string | null;
|
|
1112
|
+
applicationName?: string | null;
|
|
1113
|
+
organizationId?: string | null;
|
|
1114
|
+
organizationName?: string | null;
|
|
1115
|
+
permissionCount: number;
|
|
1116
|
+
memberCount: number;
|
|
1117
|
+
active: boolean;
|
|
1118
|
+
updatedAt?: string | null;
|
|
1119
|
+
}
|
|
1120
|
+
interface RolePermissionSummary {
|
|
1121
|
+
roleId: string;
|
|
1122
|
+
roleName: string;
|
|
1123
|
+
roleCode: string;
|
|
1124
|
+
roleDescription?: string | null;
|
|
1125
|
+
roleScope: PermissionScope;
|
|
1126
|
+
applicationId?: string | null;
|
|
1127
|
+
applicationName?: string | null;
|
|
1128
|
+
organizationId?: string | null;
|
|
1129
|
+
organizationName?: string | null;
|
|
1130
|
+
active: boolean;
|
|
1131
|
+
assignedPermissionCount: number;
|
|
1132
|
+
availablePermissionCount: number;
|
|
1133
|
+
memberCount: number;
|
|
1134
|
+
updatedAt?: string | null;
|
|
1135
|
+
}
|
|
1136
|
+
interface PermissionSummary {
|
|
1137
|
+
id: string;
|
|
1138
|
+
code: string;
|
|
1139
|
+
name: string;
|
|
1140
|
+
resource?: string | null;
|
|
1141
|
+
module?: string | null;
|
|
1142
|
+
scope: PermissionScope;
|
|
1143
|
+
description?: string | null;
|
|
1144
|
+
source?: PermissionSource | null;
|
|
1145
|
+
assigned: boolean;
|
|
1146
|
+
}
|
|
1147
|
+
interface PermissionGroup {
|
|
1148
|
+
key: string;
|
|
1149
|
+
label: string;
|
|
1150
|
+
count: number;
|
|
1151
|
+
assignedCount: number;
|
|
1152
|
+
items: PermissionSummary[];
|
|
1153
|
+
}
|
|
1154
|
+
interface FindRolePermissionRolesOptions extends RolePermissionContext {
|
|
1155
|
+
keyword?: string | null;
|
|
1156
|
+
scope?: 'ALL' | PermissionScope | null;
|
|
1157
|
+
active?: boolean | null;
|
|
1158
|
+
}
|
|
1159
|
+
interface FindRolePermissionSummaryOptions extends RolePermissionContext {
|
|
1160
|
+
}
|
|
1161
|
+
interface FindAssignablePermissionsOptions extends RolePermissionContext {
|
|
1162
|
+
keyword?: string | null;
|
|
1163
|
+
module?: string | null;
|
|
1164
|
+
assigned?: boolean | null;
|
|
1165
|
+
}
|
|
1166
|
+
interface SaveRolePermissionsRequest extends RolePermissionContext {
|
|
1167
|
+
permissionIds: string[];
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
interface PlatformEndpointSummaryResponse {
|
|
1171
|
+
id: string;
|
|
1172
|
+
code?: string | null;
|
|
1173
|
+
name: string;
|
|
1174
|
+
resource?: string | null;
|
|
1175
|
+
path?: string | null;
|
|
1176
|
+
method?: string | null;
|
|
1177
|
+
serviceName?: string | null;
|
|
1178
|
+
authType?: string | null;
|
|
1179
|
+
status?: string | null;
|
|
1180
|
+
enabled: boolean;
|
|
1181
|
+
publicAccess: boolean;
|
|
1182
|
+
permissionCount: number;
|
|
1183
|
+
updatedAt?: string | null;
|
|
1184
|
+
}
|
|
1185
|
+
interface PlatformEndpointDetailResponse extends PlatformEndpointSummaryResponse {
|
|
1186
|
+
description?: string | null;
|
|
1187
|
+
uri?: string | null;
|
|
1188
|
+
scopes: string[];
|
|
1189
|
+
roles: string[];
|
|
1190
|
+
attributes?: Record<string, unknown> | null;
|
|
1191
|
+
}
|
|
1192
|
+
interface PlatformEndpointPageResponse {
|
|
1193
|
+
items: PlatformEndpointSummaryResponse[];
|
|
1194
|
+
total: number;
|
|
1195
|
+
}
|
|
1196
|
+
interface PlatformServiceRegistrySummaryResponse {
|
|
1197
|
+
id: string;
|
|
1198
|
+
code?: string | null;
|
|
1199
|
+
name: string;
|
|
1200
|
+
namespace?: string | null;
|
|
1201
|
+
serviceType?: string | null;
|
|
1202
|
+
version?: string | null;
|
|
1203
|
+
baseUrl?: string | null;
|
|
1204
|
+
healthStatus?: string | null;
|
|
1205
|
+
status?: string | null;
|
|
1206
|
+
enabled: boolean;
|
|
1207
|
+
instanceCount: number;
|
|
1208
|
+
endpointCount: number;
|
|
1209
|
+
updatedAt?: string | null;
|
|
1210
|
+
}
|
|
1211
|
+
interface PlatformServiceRegistryDetailResponse extends PlatformServiceRegistrySummaryResponse {
|
|
1212
|
+
description?: string | null;
|
|
1213
|
+
tags: string[];
|
|
1214
|
+
attributes?: Record<string, unknown> | null;
|
|
1215
|
+
}
|
|
1216
|
+
interface PlatformServiceRegistryPageResponse {
|
|
1217
|
+
items: PlatformServiceRegistrySummaryResponse[];
|
|
1218
|
+
total: number;
|
|
1219
|
+
}
|
|
1220
|
+
interface CreatePlatformServiceRegistryRequest {
|
|
1221
|
+
code?: string | null;
|
|
1222
|
+
name: string;
|
|
1223
|
+
namespace?: string | null;
|
|
1224
|
+
serviceType?: string | null;
|
|
1225
|
+
version?: string | null;
|
|
1226
|
+
baseUrl?: string | null;
|
|
1227
|
+
description?: string | null;
|
|
1228
|
+
enabled: boolean;
|
|
1229
|
+
tags: string[];
|
|
1230
|
+
attributes?: Record<string, unknown> | null;
|
|
1231
|
+
}
|
|
1232
|
+
interface UpdatePlatformServiceRegistryRequest extends CreatePlatformServiceRegistryRequest {
|
|
1233
|
+
}
|
|
1234
|
+
interface PlatformAuthClientSummaryResponse {
|
|
1235
|
+
id: string;
|
|
1236
|
+
clientId: string;
|
|
1237
|
+
name: string;
|
|
1238
|
+
description?: string | null;
|
|
1239
|
+
status?: string | null;
|
|
1240
|
+
enabled: boolean;
|
|
1241
|
+
confidential: boolean;
|
|
1242
|
+
grantTypes: string[];
|
|
1243
|
+
redirectUris: string[];
|
|
1244
|
+
scopes: string[];
|
|
1245
|
+
updatedAt?: string | null;
|
|
1246
|
+
createdAt?: string | null;
|
|
1247
|
+
}
|
|
1248
|
+
interface PlatformAuthClientDetailResponse extends PlatformAuthClientSummaryResponse {
|
|
1249
|
+
appId?: string | null;
|
|
1250
|
+
appSecret?: string | null;
|
|
1251
|
+
clientSecret?: string | null;
|
|
1252
|
+
permissions: string[];
|
|
1253
|
+
attributes?: Record<string, unknown> | null;
|
|
1254
|
+
}
|
|
1255
|
+
interface PlatformAuthClientPageResponse {
|
|
1256
|
+
items: PlatformAuthClientSummaryResponse[];
|
|
1257
|
+
total: number;
|
|
1258
|
+
}
|
|
1259
|
+
interface CreatePlatformAuthClientRequest {
|
|
1260
|
+
clientId?: string | null;
|
|
1261
|
+
name: string;
|
|
1262
|
+
description?: string | null;
|
|
1263
|
+
enabled: boolean;
|
|
1264
|
+
confidential: boolean;
|
|
1265
|
+
grantTypes: string[];
|
|
1266
|
+
redirectUris: string[];
|
|
1267
|
+
scopes: string[];
|
|
1268
|
+
permissions: string[];
|
|
1269
|
+
appId?: string | null;
|
|
1270
|
+
appSecret?: string | null;
|
|
1271
|
+
attributes?: Record<string, unknown> | null;
|
|
1272
|
+
}
|
|
1273
|
+
interface UpdatePlatformAuthClientRequest extends CreatePlatformAuthClientRequest {
|
|
1274
|
+
}
|
|
1275
|
+
interface PlatformAuthClientSecretResetResponse {
|
|
1276
|
+
clientSecret: string;
|
|
1277
|
+
updatedAt?: string | null;
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
type PostStatus = 'DRAFT' | 'PUBLISHED' | 'ARCHIVED';
|
|
1281
|
+
interface PostAuthorSummary {
|
|
1282
|
+
id?: string | null;
|
|
1283
|
+
name?: string | null;
|
|
1284
|
+
username?: string | null;
|
|
1285
|
+
avatar?: string | null;
|
|
1286
|
+
}
|
|
1287
|
+
interface PostRecord {
|
|
1288
|
+
id: string;
|
|
1289
|
+
title: string;
|
|
1290
|
+
content: string;
|
|
1291
|
+
summary?: string | null;
|
|
1292
|
+
excerpt?: string | null;
|
|
1293
|
+
slug?: string | null;
|
|
1294
|
+
coverImage?: string | null;
|
|
1295
|
+
cover?: string | null;
|
|
1296
|
+
tags?: string[] | null;
|
|
1297
|
+
status?: PostStatus | string | null;
|
|
1298
|
+
author?: PostAuthorSummary | null;
|
|
1299
|
+
authorName?: string | null;
|
|
1300
|
+
createdAt?: string | null;
|
|
1301
|
+
updatedAt?: string | null;
|
|
1302
|
+
publishedAt?: string | null;
|
|
1303
|
+
}
|
|
1304
|
+
interface PostPageResponse {
|
|
1305
|
+
items: PostRecord[];
|
|
1306
|
+
total: number;
|
|
1307
|
+
}
|
|
1308
|
+
interface PostQuery {
|
|
1309
|
+
page?: number;
|
|
1310
|
+
limit?: number;
|
|
1311
|
+
search?: string;
|
|
1312
|
+
status?: string;
|
|
1313
|
+
sort?: string;
|
|
1314
|
+
tag?: string;
|
|
1315
|
+
}
|
|
1316
|
+
interface SavePostRequest {
|
|
1317
|
+
title: string;
|
|
1318
|
+
content: string;
|
|
1319
|
+
summary?: string | null;
|
|
1320
|
+
excerpt?: string | null;
|
|
1321
|
+
slug?: string | null;
|
|
1322
|
+
coverImage?: string | null;
|
|
1323
|
+
cover?: string | null;
|
|
1324
|
+
tags?: string[];
|
|
1325
|
+
status?: PostStatus | string;
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
interface PlatformUserApplicationMembershipResponse {
|
|
1329
|
+
appId: string;
|
|
1330
|
+
appCode?: string | null;
|
|
1331
|
+
appName?: string | null;
|
|
1332
|
+
roles: string[];
|
|
1333
|
+
}
|
|
1334
|
+
interface PlatformUserOrganizationMembershipResponse {
|
|
1335
|
+
appId: string;
|
|
1336
|
+
orgId: string;
|
|
1337
|
+
orgCode?: string | null;
|
|
1338
|
+
orgName?: string | null;
|
|
1339
|
+
roles: string[];
|
|
1340
|
+
}
|
|
1341
|
+
interface PlatformUserContextResponse {
|
|
1342
|
+
userId: string;
|
|
1343
|
+
username?: string | null;
|
|
1344
|
+
platformRoles: string[];
|
|
1345
|
+
applications: PlatformUserApplicationMembershipResponse[];
|
|
1346
|
+
organizations: PlatformUserOrganizationMembershipResponse[];
|
|
1347
|
+
permissions?: string[] | null;
|
|
1348
|
+
}
|
|
1349
|
+
interface PlatformUserSummaryResponse {
|
|
1350
|
+
id: string;
|
|
1351
|
+
name?: string | null;
|
|
1352
|
+
username?: string | null;
|
|
1353
|
+
email?: string | null;
|
|
1354
|
+
phone?: string | null;
|
|
1355
|
+
avatar?: string | null;
|
|
1356
|
+
firstName?: string | null;
|
|
1357
|
+
lastName?: string | null;
|
|
1358
|
+
status?: string | null;
|
|
1359
|
+
createdAt?: string | null;
|
|
1360
|
+
roles: string[];
|
|
1361
|
+
}
|
|
1362
|
+
interface PlatformUserDetailResponse extends PlatformUserSummaryResponse {
|
|
1363
|
+
bio?: string | null;
|
|
1364
|
+
permissions?: string[] | null;
|
|
1365
|
+
platformRoles?: string[] | null;
|
|
1366
|
+
applications?: PlatformUserApplicationMembershipResponse[] | null;
|
|
1367
|
+
organizations?: PlatformUserOrganizationMembershipResponse[] | null;
|
|
1368
|
+
}
|
|
1369
|
+
interface PlatformUserPageResponse {
|
|
1370
|
+
items: PlatformUserSummaryResponse[];
|
|
1371
|
+
total: number;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
type AuthScope = 'PLATFORM' | 'APP' | 'ORG';
|
|
1375
|
+
type RoleScopeType = 'platform' | 'application' | 'organization';
|
|
1376
|
+
interface RoleResponse {
|
|
1377
|
+
scope: AuthScope;
|
|
1378
|
+
id: string;
|
|
1379
|
+
appId: string | null;
|
|
1380
|
+
orgId: string | null;
|
|
1381
|
+
code: string;
|
|
1382
|
+
name: string;
|
|
1383
|
+
description: string | null;
|
|
1384
|
+
enabled: boolean;
|
|
1385
|
+
permissionIds: string[];
|
|
1386
|
+
}
|
|
1387
|
+
interface RolePermissionCatalogItemResponse {
|
|
1388
|
+
id: string;
|
|
1389
|
+
code: string;
|
|
1390
|
+
action: string;
|
|
1391
|
+
name: string;
|
|
1392
|
+
description: string | null;
|
|
1393
|
+
serviceId: string | null;
|
|
1394
|
+
sortOrder: number;
|
|
1395
|
+
enabled: boolean;
|
|
1396
|
+
assigned: boolean;
|
|
1397
|
+
}
|
|
1398
|
+
interface RolePermissionCatalogGroupResponse {
|
|
1399
|
+
module: string;
|
|
1400
|
+
moduleName: string;
|
|
1401
|
+
permissions: RolePermissionCatalogItemResponse[];
|
|
1402
|
+
}
|
|
1403
|
+
interface RolePermissionPageResponse {
|
|
1404
|
+
role: RoleResponse;
|
|
1405
|
+
permissionCatalog: RolePermissionCatalogGroupResponse[];
|
|
1406
|
+
}
|
|
1407
|
+
interface CreateRoleRequest {
|
|
1408
|
+
code: string;
|
|
1409
|
+
name: string;
|
|
1410
|
+
description?: string | null;
|
|
1411
|
+
enabled?: boolean | null;
|
|
1412
|
+
}
|
|
1413
|
+
interface UpdateRoleRequest {
|
|
1414
|
+
name: string;
|
|
1415
|
+
description?: string | null;
|
|
1416
|
+
enabled: boolean;
|
|
1417
|
+
}
|
|
1418
|
+
interface UpdateRolePermissionsRequest {
|
|
1419
|
+
permissionIds: string[];
|
|
1420
|
+
}
|
|
1421
|
+
|
|
689
1422
|
declare class PostService extends BaseService {
|
|
690
1423
|
init(): void;
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
1424
|
+
list(options?: PostQuery, withCredentials?: boolean): Observable<any>;
|
|
1425
|
+
listPublished(options?: PostQuery): Observable<any>;
|
|
1426
|
+
getByIdOrSlug(idOrSlug: string, withCredentials?: boolean): Observable<any>;
|
|
1427
|
+
me(options?: PostQuery): Observable<any>;
|
|
1428
|
+
merchant(options?: PostQuery): Observable<any>;
|
|
1429
|
+
createPost(payload: SavePostRequest): Observable<PostRecord>;
|
|
1430
|
+
updatePost(id: string, payload: Partial<SavePostRequest>): Observable<PostRecord>;
|
|
1431
|
+
saveDraft(id: string, payload?: Partial<SavePostRequest>): Observable<PostRecord>;
|
|
1432
|
+
publish(id: string, payload?: Partial<SavePostRequest>): Observable<PostRecord>;
|
|
1433
|
+
preview(payload: Partial<SavePostRequest>): Observable<any>;
|
|
694
1434
|
static ɵfac: i0.ɵɵFactoryDeclaration<PostService, never>;
|
|
695
1435
|
static ɵprov: i0.ɵɵInjectableDeclaration<PostService>;
|
|
696
1436
|
}
|
|
@@ -1157,144 +1897,6 @@ declare class InvoiceStatsService extends BaseService {
|
|
|
1157
1897
|
static ɵprov: i0.ɵɵInjectableDeclaration<InvoiceStatsService>;
|
|
1158
1898
|
}
|
|
1159
1899
|
|
|
1160
|
-
/** Mirrors AbstractBaseEntity (common fields in your backend). */
|
|
1161
|
-
interface BaseEntity {
|
|
1162
|
-
id: string;
|
|
1163
|
-
createdAt?: string;
|
|
1164
|
-
updatedAt?: string;
|
|
1165
|
-
version?: number;
|
|
1166
|
-
}
|
|
1167
|
-
/** ---- Enums ---- */
|
|
1168
|
-
type AutomationExecutionStatus = 'QUEUED' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'CANCELLED';
|
|
1169
|
-
type AutomationLogLevel = 'INFO' | 'WARN' | 'ERROR' | 'DEBUG';
|
|
1170
|
-
type ScheduleCron = 'EVERY_5_MINUTES' | 'EVERY_15_MINUTES' | 'HOURLY' | 'DAILY' | 'WEEKLY';
|
|
1171
|
-
/** ---- Entities ---- */
|
|
1172
|
-
interface AutomationDefinition extends BaseEntity {
|
|
1173
|
-
code: string;
|
|
1174
|
-
name: string;
|
|
1175
|
-
description?: string | null;
|
|
1176
|
-
handlerKey: string;
|
|
1177
|
-
defaultInputJson?: string | null;
|
|
1178
|
-
enabled: boolean;
|
|
1179
|
-
}
|
|
1180
|
-
interface AutomationExecution extends BaseEntity {
|
|
1181
|
-
definitionId: string;
|
|
1182
|
-
scheduleId?: string | null;
|
|
1183
|
-
status: AutomationExecutionStatus;
|
|
1184
|
-
queuedAt?: string | null;
|
|
1185
|
-
startedAt?: string | null;
|
|
1186
|
-
finishedAt?: string | null;
|
|
1187
|
-
processed: number;
|
|
1188
|
-
total: number;
|
|
1189
|
-
lastSeq: number;
|
|
1190
|
-
inputJson?: string | null;
|
|
1191
|
-
metadata?: Record<string, any> | null;
|
|
1192
|
-
idempotencyKey?: string | null;
|
|
1193
|
-
errorMessage?: string | null;
|
|
1194
|
-
}
|
|
1195
|
-
interface AutomationSchedule extends BaseEntity {
|
|
1196
|
-
definitionId: string;
|
|
1197
|
-
name: string;
|
|
1198
|
-
schedule: ScheduleCron;
|
|
1199
|
-
inputJson?: string | null;
|
|
1200
|
-
enabled: boolean;
|
|
1201
|
-
nextRunAt?: string | null;
|
|
1202
|
-
lastRunAt?: string | null;
|
|
1203
|
-
}
|
|
1204
|
-
interface AutomationExecutionLog extends BaseEntity {
|
|
1205
|
-
executionId: string;
|
|
1206
|
-
level: AutomationLogLevel;
|
|
1207
|
-
message: string;
|
|
1208
|
-
}
|
|
1209
|
-
/** ---- Optional: enum metadata for UI (label/description) ---- */
|
|
1210
|
-
interface ScheduleCronMeta {
|
|
1211
|
-
value: ScheduleCron;
|
|
1212
|
-
label: string;
|
|
1213
|
-
description: string;
|
|
1214
|
-
}
|
|
1215
|
-
declare const SCHEDULE_CRON_META: readonly ScheduleCronMeta[];
|
|
1216
|
-
|
|
1217
|
-
type ApiRequestOptions = Record<string, any>;
|
|
1218
|
-
interface AutomationSummaryResponse {
|
|
1219
|
-
[k: string]: any;
|
|
1220
|
-
}
|
|
1221
|
-
type AutomationDefinitionDto = AutomationDefinition;
|
|
1222
|
-
interface CreateDefinitionRequest {
|
|
1223
|
-
code: string;
|
|
1224
|
-
name: string;
|
|
1225
|
-
description?: string | null;
|
|
1226
|
-
handlerKey: string;
|
|
1227
|
-
defaultInputJson?: string | null;
|
|
1228
|
-
enabled?: boolean;
|
|
1229
|
-
}
|
|
1230
|
-
interface UpdateDefinitionRequest {
|
|
1231
|
-
name?: string;
|
|
1232
|
-
description?: string | null;
|
|
1233
|
-
handlerKey?: string;
|
|
1234
|
-
defaultInputJson?: string | null;
|
|
1235
|
-
enabled?: boolean;
|
|
1236
|
-
}
|
|
1237
|
-
interface AutomationExecutionDto extends AutomationExecution {
|
|
1238
|
-
definitionCode?: string;
|
|
1239
|
-
}
|
|
1240
|
-
interface EnqueueExecutionRequest {
|
|
1241
|
-
definitionCode: string;
|
|
1242
|
-
inputJson?: string | null;
|
|
1243
|
-
idempotencyKey?: string | null;
|
|
1244
|
-
scheduleId?: string | null;
|
|
1245
|
-
}
|
|
1246
|
-
interface CancelStateResponse {
|
|
1247
|
-
cancelRequested: boolean;
|
|
1248
|
-
status: string;
|
|
1249
|
-
}
|
|
1250
|
-
interface ExecutionLogDto {
|
|
1251
|
-
id: string;
|
|
1252
|
-
executionId: string;
|
|
1253
|
-
level: string;
|
|
1254
|
-
message: string;
|
|
1255
|
-
createdAt?: string | null;
|
|
1256
|
-
}
|
|
1257
|
-
interface AutomationScheduleDto extends AutomationSchedule {
|
|
1258
|
-
definitionCode?: string;
|
|
1259
|
-
schedule: ScheduleCron;
|
|
1260
|
-
}
|
|
1261
|
-
interface ScheduleOptionResponse {
|
|
1262
|
-
code: string;
|
|
1263
|
-
value: ScheduleCron;
|
|
1264
|
-
label: string;
|
|
1265
|
-
description: string;
|
|
1266
|
-
}
|
|
1267
|
-
interface CreateScheduleRequest {
|
|
1268
|
-
definitionId: string;
|
|
1269
|
-
name: string;
|
|
1270
|
-
schedule: ScheduleCron;
|
|
1271
|
-
inputJson?: string | null;
|
|
1272
|
-
enabled?: boolean;
|
|
1273
|
-
}
|
|
1274
|
-
interface UpdateScheduleRequest {
|
|
1275
|
-
name?: string;
|
|
1276
|
-
schedule?: ScheduleCron;
|
|
1277
|
-
inputJson?: string | null;
|
|
1278
|
-
enabled?: boolean;
|
|
1279
|
-
}
|
|
1280
|
-
|
|
1281
|
-
interface EnumOption {
|
|
1282
|
-
value: string;
|
|
1283
|
-
label: string;
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
type ReferenceProvider = 'GOODLORD' | 'LET_ALLIANCE' | 'HOMELET' | 'OTHER';
|
|
1287
|
-
interface OfferReferencingPatchPayload {
|
|
1288
|
-
referenceProvider: ReferenceProvider;
|
|
1289
|
-
referenceProviderOther?: string | null;
|
|
1290
|
-
}
|
|
1291
|
-
interface OfferReferencingView {
|
|
1292
|
-
referenceProvider: ReferenceProvider | null;
|
|
1293
|
-
referenceProviderOther: string | null;
|
|
1294
|
-
updatedBy?: string | null;
|
|
1295
|
-
updatedAt?: string | null;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
1900
|
declare class PropertyOfferService extends BaseService {
|
|
1299
1901
|
propertyService: PropertyService;
|
|
1300
1902
|
init(): void;
|
|
@@ -1443,6 +2045,219 @@ declare class PropertyOfferCounterService extends BaseService {
|
|
|
1443
2045
|
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyOfferCounterService>;
|
|
1444
2046
|
}
|
|
1445
2047
|
|
|
2048
|
+
declare class ApplicationService extends BaseService {
|
|
2049
|
+
init(): void;
|
|
2050
|
+
findApplications(options?: ApiRequestOptions$1): Observable<ApplicationPageResponse>;
|
|
2051
|
+
findApplicationById(id: string): Observable<ApplicationDetailResponse>;
|
|
2052
|
+
createApplication(request: CreateApplicationRequest): Observable<ApplicationDetailResponse>;
|
|
2053
|
+
updateApplication(id: string, request: UpdateApplicationRequest): Observable<ApplicationDetailResponse>;
|
|
2054
|
+
findApplicationOrganizations(id: string, options?: ApiRequestOptions$1): Observable<ApplicationOrganizationPageResponse>;
|
|
2055
|
+
findApplicationMembers(id: string, options?: ApiRequestOptions$1): Observable<ApplicationMemberPageResponse>;
|
|
2056
|
+
findApplicationMemberById(id: string, memberId: string): Observable<ApplicationMemberDetailResponse>;
|
|
2057
|
+
resetOrganizationOwnerPassword(id: string, organizationId: string): Observable<void>;
|
|
2058
|
+
private toApplicationPage;
|
|
2059
|
+
private toOrganizationPage;
|
|
2060
|
+
private toMemberPage;
|
|
2061
|
+
private toMemberDetail;
|
|
2062
|
+
private toMemberSummary;
|
|
2063
|
+
private readVerification;
|
|
2064
|
+
private readOrganizationMemberships;
|
|
2065
|
+
private readRoles;
|
|
2066
|
+
private readStringArray;
|
|
2067
|
+
private readString;
|
|
2068
|
+
private readOptionalString;
|
|
2069
|
+
private readNumber;
|
|
2070
|
+
private readBoolean;
|
|
2071
|
+
private asRecord;
|
|
2072
|
+
private unwrapData;
|
|
2073
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationService, never>;
|
|
2074
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationService>;
|
|
2075
|
+
}
|
|
2076
|
+
|
|
2077
|
+
declare class PlatformEndpointService extends BaseService {
|
|
2078
|
+
init(): void;
|
|
2079
|
+
findEndpoints(options?: ApiRequestOptions$1): Observable<PlatformEndpointPageResponse>;
|
|
2080
|
+
findEndpointById(id: string): Observable<PlatformEndpointDetailResponse>;
|
|
2081
|
+
private toPage;
|
|
2082
|
+
private toSummary;
|
|
2083
|
+
private toDetail;
|
|
2084
|
+
private readStringArray;
|
|
2085
|
+
private readNumber;
|
|
2086
|
+
private readBoolean;
|
|
2087
|
+
private readString;
|
|
2088
|
+
private readOptionalString;
|
|
2089
|
+
private asRecord;
|
|
2090
|
+
private unwrapData;
|
|
2091
|
+
private extractAttributes;
|
|
2092
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlatformEndpointService, never>;
|
|
2093
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PlatformEndpointService>;
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
declare class PlatformServiceRegistryService extends BaseService {
|
|
2097
|
+
init(): void;
|
|
2098
|
+
findServices(options?: ApiRequestOptions$1): Observable<PlatformServiceRegistryPageResponse>;
|
|
2099
|
+
findServiceById(id: string): Observable<PlatformServiceRegistryDetailResponse>;
|
|
2100
|
+
createService(request: CreatePlatformServiceRegistryRequest): Observable<PlatformServiceRegistryDetailResponse>;
|
|
2101
|
+
updateService(id: string, request: UpdatePlatformServiceRegistryRequest): Observable<PlatformServiceRegistryDetailResponse>;
|
|
2102
|
+
deleteService(id: string): Observable<void>;
|
|
2103
|
+
private toPage;
|
|
2104
|
+
private toSummary;
|
|
2105
|
+
private toDetail;
|
|
2106
|
+
private readStringArray;
|
|
2107
|
+
private readNumber;
|
|
2108
|
+
private readBoolean;
|
|
2109
|
+
private readString;
|
|
2110
|
+
private readOptionalString;
|
|
2111
|
+
private asRecord;
|
|
2112
|
+
private unwrapData;
|
|
2113
|
+
private extractAttributes;
|
|
2114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlatformServiceRegistryService, never>;
|
|
2115
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PlatformServiceRegistryService>;
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
declare class PlatformAuthClientService extends BaseService {
|
|
2119
|
+
init(): void;
|
|
2120
|
+
findClients(options?: ApiRequestOptions$1): Observable<PlatformAuthClientPageResponse>;
|
|
2121
|
+
findClientById(id: string): Observable<PlatformAuthClientDetailResponse>;
|
|
2122
|
+
createClient(request: CreatePlatformAuthClientRequest): Observable<PlatformAuthClientDetailResponse>;
|
|
2123
|
+
updateClient(id: string, request: UpdatePlatformAuthClientRequest): Observable<PlatformAuthClientDetailResponse>;
|
|
2124
|
+
deleteClient(id: string): Observable<void>;
|
|
2125
|
+
resetClientSecret(id: string): Observable<PlatformAuthClientSecretResetResponse>;
|
|
2126
|
+
private toPage;
|
|
2127
|
+
private toSummary;
|
|
2128
|
+
private toDetail;
|
|
2129
|
+
private toSecretReset;
|
|
2130
|
+
private readStringArray;
|
|
2131
|
+
private readNumber;
|
|
2132
|
+
private readBoolean;
|
|
2133
|
+
private readString;
|
|
2134
|
+
private readOptionalString;
|
|
2135
|
+
private asRecord;
|
|
2136
|
+
private unwrapData;
|
|
2137
|
+
private extractAttributes;
|
|
2138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlatformAuthClientService, never>;
|
|
2139
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PlatformAuthClientService>;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
declare class PlatformUserService extends BaseService {
|
|
2143
|
+
init(): void;
|
|
2144
|
+
findUsers(options?: ApiRequestOptions$1): Observable<PlatformUserPageResponse>;
|
|
2145
|
+
findUserById(id: string): Observable<PlatformUserDetailResponse>;
|
|
2146
|
+
findUserContext(id: string): Observable<PlatformUserContextResponse | null>;
|
|
2147
|
+
private toUserPage;
|
|
2148
|
+
private toUserSummary;
|
|
2149
|
+
private toUserDetail;
|
|
2150
|
+
private toUserContext;
|
|
2151
|
+
private readRoles;
|
|
2152
|
+
private readApplicationMemberships;
|
|
2153
|
+
private readOrganizationMemberships;
|
|
2154
|
+
private readStringArray;
|
|
2155
|
+
private readString;
|
|
2156
|
+
private readOptionalString;
|
|
2157
|
+
private asRecord;
|
|
2158
|
+
private unwrapData;
|
|
2159
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlatformUserService, never>;
|
|
2160
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PlatformUserService>;
|
|
2161
|
+
}
|
|
2162
|
+
|
|
2163
|
+
declare class PermissionService extends BaseService {
|
|
2164
|
+
init(): void;
|
|
2165
|
+
findRoles(options: FindRolePermissionRolesOptions): Observable<ApiResponse<RolePermissionIndexItem[]>>;
|
|
2166
|
+
getRoleSummary(roleId: string, options: FindRolePermissionSummaryOptions): Observable<ApiResponse<RolePermissionSummary>>;
|
|
2167
|
+
findAssignablePermissions(roleId: string, options: FindAssignablePermissionsOptions): Observable<ApiResponse<PermissionSummary[]>>;
|
|
2168
|
+
saveRolePermissions(roleId: string, request: SaveRolePermissionsRequest): Observable<ApiResponse<void>>;
|
|
2169
|
+
buildGroups(items: PermissionSummary[]): PermissionGroup[];
|
|
2170
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PermissionService, never>;
|
|
2171
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PermissionService>;
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
declare class RoleService extends BaseService {
|
|
2175
|
+
init(): void;
|
|
2176
|
+
findPlatformRoles(options?: ApiRequestOptions$1): Observable<RoleResponse[]>;
|
|
2177
|
+
findPlatformRoleById(id: string): Observable<RoleResponse>;
|
|
2178
|
+
createPlatformRole(request: CreateRoleRequest): Observable<RoleResponse>;
|
|
2179
|
+
updatePlatformRole(id: string, request: UpdateRoleRequest): Observable<RoleResponse>;
|
|
2180
|
+
findPlatformRolePermissionPage(id: string): Observable<RolePermissionPageResponse>;
|
|
2181
|
+
updatePlatformRolePermissions(id: string, request: UpdateRolePermissionsRequest): Observable<RoleResponse>;
|
|
2182
|
+
deletePlatformRoleById(id: string): Observable<string>;
|
|
2183
|
+
findApplicationRoles(appId?: string | null, options?: ApiRequestOptions$1): Observable<RoleResponse[]>;
|
|
2184
|
+
findApplicationRoleById(id: string, appId?: string | null): Observable<RoleResponse>;
|
|
2185
|
+
createApplicationRole(request: CreateRoleRequest, appId?: string | null): Observable<RoleResponse>;
|
|
2186
|
+
updateApplicationRole(id: string, request: UpdateRoleRequest, appId?: string | null): Observable<RoleResponse>;
|
|
2187
|
+
findApplicationRolePermissionPage(id: string, appId?: string | null): Observable<RolePermissionPageResponse>;
|
|
2188
|
+
updateApplicationRolePermissions(id: string, request: UpdateRolePermissionsRequest, appId?: string | null): Observable<RoleResponse>;
|
|
2189
|
+
deleteApplicationRoleById(id: string, appId?: string | null): Observable<string>;
|
|
2190
|
+
findOrganizationRoles(orgId: string): Observable<RoleResponse[]>;
|
|
2191
|
+
findOrganizationRoleById(orgId: string, id: string): Observable<RoleResponse>;
|
|
2192
|
+
createOrganizationRole(orgId: string, request: CreateRoleRequest): Observable<RoleResponse>;
|
|
2193
|
+
updateOrganizationRole(orgId: string, id: string, request: UpdateRoleRequest): Observable<RoleResponse>;
|
|
2194
|
+
findOrganizationRolePermissionPage(orgId: string, id: string): Observable<RolePermissionPageResponse>;
|
|
2195
|
+
updateOrganizationRolePermissions(orgId: string, id: string, request: UpdateRolePermissionsRequest): Observable<RoleResponse>;
|
|
2196
|
+
deleteOrganizationRoleById(orgId: string, id: string): Observable<string>;
|
|
2197
|
+
private toParams;
|
|
2198
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoleService, never>;
|
|
2199
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<RoleService>;
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
declare class OrganizationInvitationService extends BaseService {
|
|
2203
|
+
init(): void;
|
|
2204
|
+
findInvitations(orgId: string): Observable<OrganizationInvitationPageResponse>;
|
|
2205
|
+
createInvitation(orgId: string, request: CreateOrganizationInvitationRequest): Observable<OrganizationInvitationResponse>;
|
|
2206
|
+
resendInvitation(orgId: string, invitationId: string): Observable<void>;
|
|
2207
|
+
acceptInvitation(orgId: string, token: string): Observable<OrganizationInvitationAcceptanceResponse>;
|
|
2208
|
+
revokeInvitation(orgId: string, invitationId: string): Observable<void>;
|
|
2209
|
+
private toInvitationPage;
|
|
2210
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrganizationInvitationService, never>;
|
|
2211
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrganizationInvitationService>;
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
declare class OrganizationMemberService extends BaseService {
|
|
2215
|
+
init(): void;
|
|
2216
|
+
findMembers(orgId: string): Observable<OrganizationMemberResponse[]>;
|
|
2217
|
+
findMemberById(orgId: string, memberId: string): Observable<OrganizationMemberResponse>;
|
|
2218
|
+
updateMemberRoles(orgId: string, memberId: string, request: UpdateOrganizationMemberRolesRequest): Observable<OrganizationMemberResponse>;
|
|
2219
|
+
resetMemberPassword(orgId: string, memberId: string): Observable<void>;
|
|
2220
|
+
private toMembers;
|
|
2221
|
+
private normalizeMember;
|
|
2222
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrganizationMemberService, never>;
|
|
2223
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrganizationMemberService>;
|
|
2224
|
+
}
|
|
2225
|
+
|
|
2226
|
+
declare class OnboardingApplicantService extends BaseService {
|
|
2227
|
+
init(): void;
|
|
2228
|
+
createApplication(payload: CreateOnboardingApplicationRequest): Observable<OnboardingApplicationResponse>;
|
|
2229
|
+
listMine(applicationId: string): Observable<OnboardingApplicationResponse[]>;
|
|
2230
|
+
getApplication(applicationId: string): Observable<OnboardingApplicationDetailResponse>;
|
|
2231
|
+
saveProfile(applicationId: string, payload: SaveOnboardingProfileRequest): Observable<OnboardingApplicationResponse>;
|
|
2232
|
+
saveFinancial(applicationId: string, payload: SaveOnboardingFinancialRequest): Observable<OnboardingApplicationResponse>;
|
|
2233
|
+
saveBanking(applicationId: string, payload: SaveOnboardingBankingRequest): Observable<OnboardingApplicationResponse>;
|
|
2234
|
+
requestUploadUrl(applicationId: string, payload: RequestOnboardingUploadUrlRequest): Observable<OnboardingUploadUrlResponse>;
|
|
2235
|
+
confirmDocumentUpload(applicationId: string, payload: ConfirmOnboardingDocumentUploadRequest): Observable<OnboardingApplicationDetailResponse>;
|
|
2236
|
+
submit(applicationId: string): Observable<OnboardingApplicationResponse>;
|
|
2237
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnboardingApplicantService, never>;
|
|
2238
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OnboardingApplicantService>;
|
|
2239
|
+
}
|
|
2240
|
+
|
|
2241
|
+
declare class OnboardingAdminService extends BaseService {
|
|
2242
|
+
init(): void;
|
|
2243
|
+
list(query: OnboardingAdminListQuery): Observable<OnboardingApplicationResponse[]>;
|
|
2244
|
+
getApplication(applicationId: string): Observable<OnboardingApplicationDetailResponse>;
|
|
2245
|
+
getDocumentPreviewUrl(applicationId: string, documentId: string): Observable<OnboardingDocumentPreviewUrlResponse>;
|
|
2246
|
+
startReview(applicationId: string): Observable<OnboardingApplicationResponse>;
|
|
2247
|
+
needMoreInfo(applicationId: string, payload: NeedMoreInfoOnboardingApplicationRequest): Observable<OnboardingApplicationResponse>;
|
|
2248
|
+
approve(applicationId: string, payload: ApproveOnboardingApplicationRequest): Observable<OnboardingApplicationResponse>;
|
|
2249
|
+
fail(applicationId: string, payload: FailOnboardingApplicationRequest): Observable<OnboardingApplicationResponse>;
|
|
2250
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnboardingAdminService, never>;
|
|
2251
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OnboardingAdminService>;
|
|
2252
|
+
}
|
|
2253
|
+
|
|
2254
|
+
declare class OnboardingDocumentService extends BaseService {
|
|
2255
|
+
init(): void;
|
|
2256
|
+
getPreviewUrl(documentId: string): Observable<OnboardingDocumentPreviewUrlResponse>;
|
|
2257
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OnboardingDocumentService, never>;
|
|
2258
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OnboardingDocumentService>;
|
|
2259
|
+
}
|
|
2260
|
+
|
|
1446
2261
|
declare class LoadingInterceptor {
|
|
1447
2262
|
loadingService: LoadingService;
|
|
1448
2263
|
activeRequests: number;
|
|
@@ -1476,5 +2291,16 @@ declare function provideAngularServices(): EnvironmentProviders;
|
|
|
1476
2291
|
declare const PROPERTY_OFFER_STATUS_LABEL: Record<PropertyOfferStatus, string>;
|
|
1477
2292
|
declare function offerStatusLabel(status: PropertyOfferStatus | null | undefined): string;
|
|
1478
2293
|
|
|
1479
|
-
|
|
1480
|
-
|
|
2294
|
+
declare const ONBOARDING_STATUS_LABEL: Record<OnboardingStatus, string>;
|
|
2295
|
+
declare const ONBOARDING_APPLICANT_TYPE_LABEL: Record<OnboardingApplicantType, string>;
|
|
2296
|
+
declare const ONBOARDING_DOCUMENT_TYPE_LABEL: Record<OnboardingDocumentType, string>;
|
|
2297
|
+
declare const ONBOARDING_ISSUE_TYPE_LABEL: Record<OnboardingIssueType, string>;
|
|
2298
|
+
declare const ONBOARDING_VAT_MODE_LABEL: Record<OnboardingVatMode, string>;
|
|
2299
|
+
declare function onboardingStatusLabel(status: OnboardingStatus | null | undefined): string;
|
|
2300
|
+
declare function onboardingApplicantTypeLabel(type: OnboardingApplicantType | null | undefined): string;
|
|
2301
|
+
declare function onboardingDocumentTypeLabel(type: OnboardingDocumentType | null | undefined): string;
|
|
2302
|
+
declare function onboardingIssueTypeLabel(type: OnboardingIssueType | null | undefined): string;
|
|
2303
|
+
declare function onboardingVatModeLabel(mode: OnboardingVatMode | null | undefined): string;
|
|
2304
|
+
|
|
2305
|
+
export { AmenityService, ApplicationService, 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, ONBOARDING_APPLICANT_TYPE_LABEL, ONBOARDING_DOCUMENT_TYPE_LABEL, ONBOARDING_ISSUE_TYPE_LABEL, ONBOARDING_STATUS_LABEL, ONBOARDING_VAT_MODE_LABEL, OfferingService, OnboardingAdminService, OnboardingApplicantService, OnboardingDocumentService, OrderPayoutService, OrderService, OrganizationInvitationService, OrganizationMemberService, PROPERTY_OFFER_STATUS_LABEL, PaymentService, PermissionService, PlatformAuthClientService, PlatformEndpointService, PlatformServiceRegistryService, PlatformUserService, PostService, ProductCategoryService, ProductService, PropertyHighlightsService, PropertyOfferCounterService, PropertyOfferService, PropertyOfferStatus, PropertySearchService, PropertyService, PropertyStatsService, PropertyViewingService, ResourceCategoryService, ResourceService, RoleService, SCHEDULE_CRON_META, SERVICE_DIRECTIVES, SidenavService, SnackBarService, SupportService, ThemeService, TimeZoneService, TitleService, acceptLanguageInterceptor, offerStatusLabel, onboardingApplicantTypeLabel, onboardingDocumentTypeLabel, onboardingIssueTypeLabel, onboardingStatusLabel, onboardingVatModeLabel, provideAngularServices };
|
|
2306
|
+
export type { AdverseCreditStatus, ApiRequestOptions, ApplicantType, ApplicationDetailResponse, ApplicationMemberDetailResponse, ApplicationMemberOrganizationMembershipResponse, ApplicationMemberPageResponse, ApplicationMemberSummaryResponse, ApplicationMemberVerificationResponse, ApplicationOrganizationPageResponse, ApplicationOrganizationResponse, ApplicationPageResponse, ApplicationStatus, ApplicationSummaryResponse, ApproveOnboardingApplicationRequest, AuthScope, AutomationDefinition, AutomationDefinitionDto, AutomationExecution, AutomationExecutionDto, AutomationExecutionLog, AutomationExecutionStatus, AutomationLogLevel, AutomationSchedule, AutomationScheduleDto, AutomationSummaryResponse, BaseEntity, CancelStateResponse, ChatMessage, ConfirmOnboardingDocumentUploadRequest, ConversationInitResponse, CopyTextResponse, CreateApplicationRequest, CreateDefinitionRequest, CreateOnboardingApplicationRequest, CreateOrganizationInvitationRequest, CreatePlatformAuthClientRequest, CreatePlatformServiceRegistryRequest, CreateRentalOfferPayload, CreateRoleRequest, CreateSaleOfferPayload, CreateScheduleRequest, DialogData, EditLockDto, EditLockResponse, EmploymentStatus, EnqueueExecutionRequest, EnumOption, ExecutionLogDto, FailOnboardingApplicationRequest, FindAssignablePermissionsOptions, FindRolePermissionRolesOptions, FindRolePermissionSummaryOptions, FurnitureRequirement, Gender, GroupedViewingsByDate, Guarantor, GuarantorRelationshipType, GuarantorType, HistoryDto, IDynamicDialogConfig, InvoiceStats, NeedMoreInfoOnboardingApplicationRequest, NeedMoreInfoOnboardingIssueRequest, OfferDto, OfferInvoiceOption, OfferReferencingPatchPayload, OfferReferencingView, OfferSummary, OfferType, OnboardingAdminListQuery, OnboardingApplicantType, OnboardingApplicationDetailResponse, OnboardingApplicationResponse, OnboardingDocumentPreviewUrlResponse, OnboardingDocumentResponse, OnboardingDocumentType, OnboardingIssueResponse, OnboardingIssueType, OnboardingProgress, OnboardingStatus, OnboardingTimelineResponse, OnboardingUploadUrlResponse, OnboardingVatMode, OrganizationInvitationAcceptanceResponse, OrganizationInvitationPageResponse, OrganizationInvitationResponse, OrganizationInvitationStatus, OrganizationMemberCollectionResponse, OrganizationMemberResponse, OrganizationMembershipStatus, PaymentFrequency, PendingInvoice, PermissionGroup, PermissionScope, PermissionSource, PermissionSummary, PermissionsDto, PersonAddress, PlatformAuthClientDetailResponse, PlatformAuthClientPageResponse, PlatformAuthClientSecretResetResponse, PlatformAuthClientSummaryResponse, PlatformEndpointDetailResponse, PlatformEndpointPageResponse, PlatformEndpointSummaryResponse, PlatformServiceRegistryDetailResponse, PlatformServiceRegistryPageResponse, PlatformServiceRegistrySummaryResponse, PlatformUserApplicationMembershipResponse, PlatformUserContextResponse, PlatformUserDetailResponse, PlatformUserOrganizationMembershipResponse, PlatformUserPageResponse, PlatformUserSummaryResponse, PostAuthorSummary, PostPageResponse, PostQuery, PostRecord, PostStatus, PropertyOfferActor, PropertyOfferCounterRequest, PropertyOfferHistory, PropertyOfferInternalNoteResponse, PropertyOfferItem, PropertyOfferItemMedia, PropertyOfferNegotiationView, PropertyOfferResponse, PropertyOfferVersion, PropertyStats, ReferenceProvider, RentalOfferTerms, RequestOnboardingUploadUrlRequest, RoleManageScope, RolePermissionCatalogGroupResponse, RolePermissionCatalogItemResponse, RolePermissionContext, RolePermissionIndexItem, RolePermissionPageResponse, RolePermissionSummary, RoleResponse, RoleScopeType, SaleOfferDetails, SalePaymentMethod, SaveOnboardingBankingRequest, SaveOnboardingFinancialRequest, SaveOnboardingProfileRequest, SavePostRequest, SaveRolePermissionsRequest, ScheduleCron, ScheduleCronMeta, ScheduleOptionResponse, Tenant, UpcomingViewing, UpdateApplicationRequest, UpdateDefinitionRequest, UpdateOrganizationMemberRolesRequest, UpdatePlatformAuthClientRequest, UpdatePlatformServiceRegistryRequest, UpdatePropertyOfferInternalNoteRequest, UpdateRolePermissionsRequest, UpdateRoleRequest, UpdateScheduleRequest, VersionDto, VisaShareCodeStatus, VisaStatus };
|