@rolatech/angular-services 20.3.1-beta.2 → 20.3.1-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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rolatech/angular-services",
|
|
3
|
-
"version": "20.3.1-beta.
|
|
3
|
+
"version": "20.3.1-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.3.1-beta.
|
|
15
|
+
"@rolatech/angular-common": "20.3.1-beta.3",
|
|
16
16
|
"tslib": "^2.3.0"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
@@ -911,13 +911,14 @@ interface OfferReferencingView {
|
|
|
911
911
|
|
|
912
912
|
type OnboardingStatus = 'DRAFT' | 'IN_PROGRESS' | 'SUBMITTED' | 'IN_REVIEW' | 'NEED_MORE_INFO' | 'APPROVED' | 'FAILED';
|
|
913
913
|
type OnboardingApplicantType = 'INDIVIDUAL' | 'COMPANY';
|
|
914
|
+
type OnboardingProvisionStatus = string;
|
|
914
915
|
type OnboardingDocumentType = 'PASSPORT' | 'CERTIFICATE_OF_INCORPORATION' | 'INDUSTRY_CERTIFICATE' | 'PROOF_OF_ADDRESS' | 'BANK_STATEMENT' | 'OTHER';
|
|
915
916
|
type OnboardingIssueType = 'FIELD' | 'DOCUMENT' | 'GENERAL';
|
|
916
917
|
type OnboardingVatMode = 'NON_VAT_REGISTERED' | 'VAT_REGISTERED' | 'MANUAL_REVIEW_REQUIRED';
|
|
917
918
|
interface CreateOnboardingApplicationRequest {
|
|
918
|
-
applicationId
|
|
919
|
+
applicationId?: string;
|
|
919
920
|
applicantType: OnboardingApplicantType;
|
|
920
|
-
|
|
921
|
+
countryCode: string;
|
|
921
922
|
}
|
|
922
923
|
interface SaveOnboardingProfileRequest {
|
|
923
924
|
organizationName: string;
|
|
@@ -1015,29 +1016,40 @@ interface OnboardingProgress {
|
|
|
1015
1016
|
}
|
|
1016
1017
|
interface OnboardingApplicationResponse {
|
|
1017
1018
|
id: string;
|
|
1018
|
-
|
|
1019
|
+
appId?: string | null;
|
|
1020
|
+
applicantUserId?: string | null;
|
|
1019
1021
|
status: OnboardingStatus;
|
|
1020
1022
|
applicantType: OnboardingApplicantType;
|
|
1021
|
-
|
|
1023
|
+
provisionStatus?: OnboardingProvisionStatus | null;
|
|
1024
|
+
countryCode: string;
|
|
1022
1025
|
organizationName?: string | null;
|
|
1023
1026
|
contactName?: string | null;
|
|
1024
1027
|
contactEmail?: string | null;
|
|
1025
1028
|
contactPhone?: string | null;
|
|
1026
|
-
|
|
1029
|
+
emailVerified?: boolean;
|
|
1030
|
+
organizationId?: string | null;
|
|
1027
1031
|
progress?: OnboardingProgress;
|
|
1028
1032
|
createdAt?: string;
|
|
1029
1033
|
updatedAt?: string;
|
|
1030
1034
|
}
|
|
1031
1035
|
interface OnboardingApplicationDetailResponse extends OnboardingApplicationResponse {
|
|
1036
|
+
appId?: string | null;
|
|
1037
|
+
applicantUserId?: string | null;
|
|
1032
1038
|
vatMode?: OnboardingVatMode | null;
|
|
1033
1039
|
vatNumber?: string | null;
|
|
1034
1040
|
bankName?: string | null;
|
|
1035
1041
|
accountHolderName?: string | null;
|
|
1036
1042
|
sortCode?: string | null;
|
|
1037
1043
|
accountNumber?: string | null;
|
|
1044
|
+
emailVerified?: boolean;
|
|
1045
|
+
organizationId?: string | null;
|
|
1046
|
+
submittedAt?: string | null;
|
|
1047
|
+
approvedAt?: string | null;
|
|
1048
|
+
failedAt?: string | null;
|
|
1038
1049
|
documents: OnboardingDocumentResponse[];
|
|
1039
1050
|
issues: OnboardingIssueResponse[];
|
|
1040
1051
|
timeline: OnboardingTimelineResponse[];
|
|
1052
|
+
countryCode: string;
|
|
1041
1053
|
}
|
|
1042
1054
|
interface OnboardingAdminListQuery {
|
|
1043
1055
|
status?: OnboardingStatus;
|
|
@@ -2239,7 +2251,7 @@ declare class OrganizationMemberService extends BaseService {
|
|
|
2239
2251
|
declare class OnboardingApplicantService extends BaseService {
|
|
2240
2252
|
init(): void;
|
|
2241
2253
|
createApplication(payload: CreateOnboardingApplicationRequest): Observable<OnboardingApplicationResponse>;
|
|
2242
|
-
listMine(
|
|
2254
|
+
listMine(): Observable<OnboardingApplicationResponse[]>;
|
|
2243
2255
|
getApplication(applicationId: string): Observable<OnboardingApplicationDetailResponse>;
|
|
2244
2256
|
saveProfile(applicationId: string, payload: SaveOnboardingProfileRequest): Observable<OnboardingApplicationResponse>;
|
|
2245
2257
|
saveFinancial(applicationId: string, payload: SaveOnboardingFinancialRequest): Observable<OnboardingApplicationResponse>;
|
|
@@ -2363,4 +2375,4 @@ declare function onboardingIssueTypeLabel(type: OnboardingIssueType | null | und
|
|
|
2363
2375
|
declare function onboardingVatModeLabel(mode: OnboardingVatMode | null | undefined): string;
|
|
2364
2376
|
|
|
2365
2377
|
export { AmenityService, ApplicationService, AutomationService, BackButtonDirective, BaseService, BillingService, BookingService, BreadcrumbService, CartEventType, CartService, CategoryService, ConversationInitService, ConversationService, DialogComponent, DialogService, EnumApiClient, EnumCacheService, FacilityService, FeatureService, FloorplanService, FulfillmentService, HideFooterDirective, I18nLocaleService, InventoryService, InvoiceLineService, InvoiceService, InvoiceStatsService, LanguageService, 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 };
|
|
2366
|
-
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 };
|
|
2378
|
+
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, OnboardingProvisionStatus, 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 };
|