@otr-app/shared-backend-generated-client 2.3.71 → 2.3.73
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/dist/angular/.openapi-generator/FILES +18 -11
- package/dist/angular/api/api.ts +5 -3
- package/dist/angular/api/caseController.service.ts +5 -5
- package/dist/angular/api/violationController.service.ts +504 -0
- package/dist/angular/api/workflowStateController.service.ts +161 -0
- package/dist/angular/api.module.ts +2 -1
- package/dist/angular/model/addActionToCaseResponse.ts +2 -2
- package/dist/angular/model/caseModel.ts +108 -0
- package/dist/angular/model/caseModelReq.ts +108 -0
- package/dist/angular/model/caseModelRes.ts +108 -0
- package/dist/angular/model/citationModel.ts +134 -0
- package/dist/angular/model/citationModelReq.ts +134 -0
- package/dist/angular/model/citationModelRes.ts +134 -0
- package/dist/angular/model/createCitationResponse.ts +2 -2
- package/dist/angular/model/deleteCitationResponse.ts +2 -2
- package/dist/angular/model/getCaseFromCitationResponse.ts +2 -2
- package/dist/angular/model/getCaseResponse.ts +2 -2
- package/dist/angular/model/getCitationResponse.ts +2 -2
- package/dist/angular/model/getCitationsResponse.ts +2 -2
- package/dist/angular/model/getClientCasesResponse.ts +4 -4
- package/dist/angular/model/getDeclinedCasesResponse.ts +2 -2
- package/dist/angular/model/getInvalidCasesWithStripeChargeResponse.ts +2 -2
- package/dist/angular/model/getPendingCasesResponse.ts +2 -2
- package/dist/angular/model/getUserCasesResponse.ts +4 -4
- package/dist/angular/model/lawfirmCaseModel.ts +51 -0
- package/dist/angular/model/lawfirmCaseModelReq.ts +51 -0
- package/dist/angular/model/lawfirmCaseModelRes.ts +51 -0
- package/dist/angular/model/legalServiceModel.ts +49 -0
- package/dist/angular/model/matchInnerCaseModel.ts +1 -1
- package/dist/angular/model/models.ts +16 -10
- package/dist/angular/model/validateDirectMailResponse.ts +2 -1
- package/dist/angular/model/violationModel.ts +10 -6
- package/dist/angular/model/violationPenaltyModel.ts +44 -0
- package/dist/angular/model/workflowCaseModel.ts +34 -0
- package/dist/angular/model/workflowCitationModel.ts +33 -0
- package/dist/angular/model/workflowStateResponse.ts +19 -0
- package/dist/angular/model/workflowViolationModel.ts +87 -0
- package/dist/angular/model/workflowViolationPenaltyModel.ts +40 -0
- package/dist/otrBackendService.js +36 -0
- package/dist/otrBackendService.min.js +1 -1
- package/dist/typescript/api/ActionRequiredControllerApi.ts +58 -0
- package/dist/typescript/api/ActivityFeedControllerApi.ts +71 -0
- package/dist/typescript/api/AddressControllerApi.ts +117 -0
- package/dist/typescript/api/AlertNotificationControllerApi.ts +87 -0
- package/dist/typescript/api/AppEventsControllerApi.ts +58 -0
- package/dist/typescript/api/AuditLawfirmEventsControllerApi.ts +78 -0
- package/dist/typescript/api/AuthenticationControllerApi.ts +51 -0
- package/dist/typescript/api/AwsCredentialsControllerApi.ts +58 -0
- package/dist/typescript/api/BlogWebhookControllerApi.ts +58 -0
- package/dist/typescript/api/BranchLinkControllerApi.ts +58 -0
- package/dist/typescript/api/CaseActionsControllerApi.ts +239 -0
- package/dist/typescript/api/CaseControllerApi.d.ts +1 -1
- package/dist/typescript/api/CaseControllerApi.ts +558 -0
- package/dist/typescript/api/CaseCreationControllerApi.ts +89 -0
- package/dist/typescript/api/CaseNotesControllerApi.ts +94 -0
- package/dist/typescript/api/CasePaymentControllerApi.ts +599 -0
- package/dist/typescript/api/CaseReferralCodeControllerApi.ts +101 -0
- package/dist/typescript/api/CaseRefundControllerApi.ts +173 -0
- package/dist/typescript/api/CaseResolutionControllerApi.ts +58 -0
- package/dist/typescript/api/CaseStatusControllerApi.ts +83 -0
- package/dist/typescript/api/CaseTransferControllerApi.ts +94 -0
- package/dist/typescript/api/CertificateControllerApi.ts +61 -0
- package/dist/typescript/api/CitationAuditControllerApi.ts +78 -0
- package/dist/typescript/api/CitationControllerApi.ts +614 -0
- package/dist/typescript/api/ConfigurationControllerApi.ts +51 -0
- package/dist/typescript/api/ConsoleListControllerApi.ts +479 -0
- package/dist/typescript/api/ContactTimelineControllerApi.ts +58 -0
- package/dist/typescript/api/ConversationControllerApi.ts +287 -0
- package/dist/typescript/api/CountyControllerApi.ts +61 -0
- package/dist/typescript/api/CourtControllerApi.ts +342 -0
- package/dist/typescript/api/CrmControllerApi.ts +269 -0
- package/dist/typescript/api/CustomerLeadControllerApi.ts +58 -0
- package/dist/typescript/api/CustomerReviewControllerApi.ts +301 -0
- package/dist/typescript/api/CustomerServiceAgentBookingsControllerApi.ts +140 -0
- package/dist/typescript/api/CustomerServiceAgentControllerApi.ts +56 -0
- package/dist/typescript/api/DashboardControllerApi.ts +290 -0
- package/dist/typescript/api/DirectMailControllerApi.ts +261 -0
- package/dist/typescript/api/DripControllerApi.ts +58 -0
- package/dist/typescript/api/DripWebhooksControllerApi.ts +87 -0
- package/dist/typescript/api/EmailSubscriptionControllerApi.ts +58 -0
- package/dist/typescript/api/ExternalTicketLookupControllerApi.ts +143 -0
- package/dist/typescript/api/FeedbackControllerApi.ts +63 -0
- package/dist/typescript/api/FreshcallerControllerApi.ts +58 -0
- package/dist/typescript/api/FreshdeskTicketControllerApi.ts +137 -0
- package/dist/typescript/api/GetCaseControllerApi.ts +116 -0
- package/dist/typescript/api/HouseholdMateControllerApi.ts +214 -0
- package/dist/typescript/api/InsuranceCalculatorControllerApi.ts +58 -0
- package/dist/typescript/api/LawfirmCaseDecisionControllerApi.ts +65 -0
- package/dist/typescript/api/LawfirmCasesControllerApi.ts +95 -0
- package/dist/typescript/api/LawfirmControllerApi.ts +799 -0
- package/dist/typescript/api/LawfirmDocumentControllerApi.ts +256 -0
- package/dist/typescript/api/LawfirmFeeCoverageControllerApi.ts +394 -0
- package/dist/typescript/api/LawfirmPaymentModelControllerApi.ts +51 -0
- package/dist/typescript/api/LawfirmRatesControllerApi.ts +58 -0
- package/dist/typescript/api/LawfirmSettingsControllerApi.ts +169 -0
- package/dist/typescript/api/LawfirmStorefrontControllerApi.ts +66 -0
- package/dist/typescript/api/LawfirmSurchargeControllerApi.ts +135 -0
- package/dist/typescript/api/LawfirmTransactionsControllerApi.ts +516 -0
- package/dist/typescript/api/LawyerControllerApi.ts +333 -0
- package/dist/typescript/api/LegalServicesControllerApi.ts +101 -0
- package/dist/typescript/api/LineItemControllerApi.ts +195 -0
- package/dist/typescript/api/ListCasesControllerApi.ts +141 -0
- package/dist/typescript/api/MediaCreationControllerApi.ts +58 -0
- package/dist/typescript/api/MessagesControllerApi.ts +76 -0
- package/dist/typescript/api/NotesControllerApi.ts +277 -0
- package/dist/typescript/api/OcrPredictionControllerApi.ts +58 -0
- package/dist/typescript/api/OnDemandRequestControllerApi.ts +65 -0
- package/dist/typescript/api/OneTimePasswordControllerApi.ts +53 -0
- package/dist/typescript/api/PhoneLeadsControllerApi.ts +87 -0
- package/dist/typescript/api/PushNotificationControllerApi.ts +294 -0
- package/dist/typescript/api/RecurringBillingControllerApi.ts +218 -0
- package/dist/typescript/api/RefLinkControllerApi.ts +58 -0
- package/dist/typescript/api/ReferralCodeControllerApi.ts +201 -0
- package/dist/typescript/api/ReferralControllerApi.ts +112 -0
- package/dist/typescript/api/ReferralSourceControllerApi.ts +85 -0
- package/dist/typescript/api/RefundEligibilityControllerApi.ts +58 -0
- package/dist/typescript/api/RegistrationControllerApi.ts +87 -0
- package/dist/typescript/api/ReportingControllerApi.ts +168 -0
- package/dist/typescript/api/ScheduledTaskControllerApi.ts +123 -0
- package/dist/typescript/api/SingleSignOnControllerApi.ts +91 -0
- package/dist/typescript/api/SnsListenerControllerApi.ts +87 -0
- package/dist/typescript/api/SocialLoginControllerApi.ts +203 -0
- package/dist/typescript/api/StripeCardControllerApi.ts +393 -0
- package/dist/typescript/api/StripeControllerApi.ts +184 -0
- package/dist/typescript/api/StripeSyncControllerApi.ts +196 -0
- package/dist/typescript/api/StripeWebhookControllerApi.ts +77 -0
- package/dist/typescript/api/TicketReviewControllerApi.ts +123 -0
- package/dist/typescript/api/UrlRedirectControllerApi.ts +117 -0
- package/dist/typescript/api/UserAccountControllerApi.ts +137 -0
- package/dist/typescript/api/UserAuditControllerApi.ts +112 -0
- package/dist/typescript/api/UserControllerApi.ts +354 -0
- package/dist/typescript/api/UserPasswordControllerApi.ts +271 -0
- package/dist/typescript/api/UserProfileControllerApi.ts +324 -0
- package/dist/typescript/api/UserSearchControllerApi.ts +87 -0
- package/dist/typescript/api/UserSettingsControllerApi.ts +176 -0
- package/dist/typescript/api/UtilityControllerApi.ts +112 -0
- package/dist/typescript/api/ValidationControllerApi.ts +61 -0
- package/dist/typescript/api/VerificationControllerApi.ts +61 -0
- package/dist/typescript/api/ViolationControllerApi.d.ts +61 -0
- package/dist/typescript/api/ViolationControllerApi.js +195 -0
- package/dist/typescript/api/ViolationControllerApi.ts +224 -0
- package/dist/typescript/api/ViolationPenaltyControllerApi.ts +157 -0
- package/dist/typescript/api/WorkflowStateControllerApi.d.ts +28 -0
- package/dist/typescript/api/WorkflowStateControllerApi.js +56 -0
- package/dist/typescript/api/WorkflowStateControllerApi.ts +61 -0
- package/dist/typescript/api/api.d.ts +5 -3
- package/dist/typescript/api/api.js +5 -3
- package/dist/typescript/api/api.ts +201 -0
- package/dist/typescript/api.module.js +3 -2
- package/dist/typescript/api.module.ts +2 -1
- package/dist/typescript/model/AccountLevelFee.ts +93 -0
- package/dist/typescript/model/AccountLevelFeeRequest.ts +18 -0
- package/dist/typescript/model/AccountLevelFeeResponse.ts +19 -0
- package/dist/typescript/model/AccountLevelFeeToSave.ts +88 -0
- package/dist/typescript/model/ActionByEntityModel.ts +95 -0
- package/dist/typescript/model/ActivityFeedModel.ts +39 -0
- package/dist/typescript/model/AddACHToStripeAccountRequest.ts +20 -0
- package/dist/typescript/model/AddActionToCaseRequest.ts +18 -0
- package/dist/typescript/model/AddActionToCaseResponse.d.ts +1 -1
- package/dist/typescript/model/AddActionToCaseResponse.ts +18 -0
- package/dist/typescript/model/AddCardToStripeAccountRequest.ts +21 -0
- package/dist/typescript/model/AddCardToStripeAccountResponse.ts +20 -0
- package/dist/typescript/model/AddCaseMessageResponse.ts +18 -0
- package/dist/typescript/model/AddCourtCoverageRequest.ts +87 -0
- package/dist/typescript/model/AddCourtRequest.ts +20 -0
- package/dist/typescript/model/AddCustomerLeadRequest.ts +18 -0
- package/dist/typescript/model/AddExtraAccountRequest.ts +20 -0
- package/dist/typescript/model/AddInnerCourt.ts +37 -0
- package/dist/typescript/model/AddInnerCourtAddress.ts +24 -0
- package/dist/typescript/model/AddNewCaseMessageRequest.ts +18 -0
- package/dist/typescript/model/AddNoteToPhoneLeadRequest.ts +34 -0
- package/dist/typescript/model/AddPenaltyRequest.ts +18 -0
- package/dist/typescript/model/AddRedirectUrlRequest.ts +33 -0
- package/dist/typescript/model/AddReviewRequest.ts +40 -0
- package/dist/typescript/model/AddViolationRequest.ts +84 -0
- package/dist/typescript/model/AddViolationResponse.ts +90 -0
- package/dist/typescript/model/AddViolationsToCitationRequest.ts +18 -0
- package/dist/typescript/model/AddressDomain.ts +98 -0
- package/dist/typescript/model/AddressDomainReq.ts +97 -0
- package/dist/typescript/model/AddressDomainRes.ts +98 -0
- package/dist/typescript/model/AgentBookingStats.ts +23 -0
- package/dist/typescript/model/AgentBookingsSummary.ts +20 -0
- package/dist/typescript/model/AggregateBySource.ts +31 -0
- package/dist/typescript/model/AggregateRatingMetrics.ts +21 -0
- package/dist/typescript/model/AggregateReferralCredit.ts +20 -0
- package/dist/typescript/model/Alert.ts +35 -0
- package/dist/typescript/model/AlertNotificationResponse.ts +19 -0
- package/dist/typescript/model/AppEventCreateRequest.ts +27 -0
- package/dist/typescript/model/AppearanceAttorneyDomain.ts +21 -0
- package/dist/typescript/model/AppleLoginRequest.ts +22 -0
- package/dist/typescript/model/AssignCitationOwnerRequest.ts +18 -0
- package/dist/typescript/model/AuthorModel.ts +32 -0
- package/dist/typescript/model/AuthorizeChargeForCasePaymentRequest.ts +19 -0
- package/dist/typescript/model/AuthorizeChargeForCasePaymentResponse.ts +18 -0
- package/dist/typescript/model/AvailablePaymentPlan.ts +27 -0
- package/dist/typescript/model/AvailableRegion.ts +19 -0
- package/dist/typescript/model/AwsCredentialsRequest.ts +23 -0
- package/dist/typescript/model/BackfillLawfirmTransactionRecordsRequest.ts +22 -0
- package/dist/typescript/model/BackfillLawfirmTransactionRecordsResponse.ts +18 -0
- package/dist/typescript/model/BillingInvoiceModel.ts +32 -0
- package/dist/typescript/model/BillingPriceModel.ts +42 -0
- package/dist/typescript/model/BillingProductModel.ts +24 -0
- package/dist/typescript/model/BillingSubscriberAggregateModel.ts +20 -0
- package/dist/typescript/model/BillingSubscriberModel.ts +23 -0
- package/dist/typescript/model/BillingSubscriptionItemModel.ts +49 -0
- package/dist/typescript/model/BillingSubscriptionModel.ts +38 -0
- package/dist/typescript/model/BillingUpcomingInvoiceModel.ts +21 -0
- package/dist/typescript/model/BlogDocument.ts +20 -0
- package/dist/typescript/model/BlogEvent.ts +21 -0
- package/dist/typescript/model/BlogMetadata.ts +20 -0
- package/dist/typescript/model/Booking.ts +125 -0
- package/dist/typescript/model/BookingCancelation.ts +127 -0
- package/dist/typescript/model/CallContact.ts +69 -0
- package/dist/typescript/model/CancelBillingSubscriptionResponse.ts +34 -0
- package/dist/typescript/model/CancelCaseRequest.ts +62 -0
- package/dist/typescript/model/CancelationDetails.ts +21 -0
- package/dist/typescript/model/CancelationDetailsReq.ts +21 -0
- package/dist/typescript/model/CancelationDetailsRes.ts +21 -0
- package/dist/typescript/model/CaptureChargeFromCasePaymentRequest.ts +19 -0
- package/dist/typescript/model/Case.ts +117 -0
- package/dist/typescript/model/CaseActionDomain.ts +46 -0
- package/dist/typescript/model/CaseActionRequestModel.ts +39 -0
- package/dist/typescript/model/CaseAlert.ts +36 -0
- package/dist/typescript/model/CaseBookingsStats.ts +25 -0
- package/dist/typescript/model/CaseChargeResponsePojo.ts +19 -0
- package/dist/typescript/model/CaseCreationRequest.ts +22 -0
- package/dist/typescript/model/CaseLineItemDomainReq.ts +61 -0
- package/dist/typescript/model/CaseLineItemDomainRes.ts +61 -0
- package/dist/typescript/model/CaseLineItemsSummary.ts +30 -0
- package/dist/typescript/model/CaseMessageDomain.ts +42 -0
- package/dist/typescript/model/CaseModel.d.ts +93 -0
- package/dist/typescript/model/CaseModel.js +69 -0
- package/dist/typescript/model/CaseModel.ts +96 -0
- package/dist/typescript/model/CaseModelReq.d.ts +93 -0
- package/dist/typescript/model/CaseModelReq.js +69 -0
- package/dist/typescript/model/CaseModelReq.ts +96 -0
- package/dist/typescript/model/CaseModelRes.d.ts +93 -0
- package/dist/typescript/model/CaseModelRes.js +69 -0
- package/dist/typescript/model/CaseModelRes.ts +96 -0
- package/dist/typescript/model/CaseNotesDomain.ts +19 -0
- package/dist/typescript/model/CasePaymentDomain.ts +64 -0
- package/dist/typescript/model/CasePaymentModel.ts +20 -0
- package/dist/typescript/model/CaseStatusDetailsResponse.ts +67 -0
- package/dist/typescript/model/CaseStatusDomain.ts +73 -0
- package/dist/typescript/model/CaseSummaryDomain.ts +46 -0
- package/dist/typescript/model/CaseTransferHistory.ts +43 -0
- package/dist/typescript/model/CaseTransferResponse.ts +18 -0
- package/dist/typescript/model/CaseViolationPenalty.ts +39 -0
- package/dist/typescript/model/CaseWithCoverageObtained.ts +89 -0
- package/dist/typescript/model/ChangeUserPasswordRequest.ts +20 -0
- package/dist/typescript/model/ChargeFeeToLawfirmRequest.ts +44 -0
- package/dist/typescript/model/ChargeFeeToLawfirmResponse.ts +18 -0
- package/dist/typescript/model/CitationAuditEventModel.ts +91 -0
- package/dist/typescript/model/CitationInputRequest.ts +94 -0
- package/dist/typescript/model/CitationModel.d.ts +123 -0
- package/dist/typescript/model/CitationModel.js +99 -0
- package/dist/typescript/model/CitationModel.ts +126 -0
- package/dist/typescript/model/CitationModelReq.d.ts +123 -0
- package/dist/typescript/model/CitationModelReq.js +99 -0
- package/dist/typescript/model/CitationModelReq.ts +126 -0
- package/dist/typescript/model/CitationModelRes.d.ts +123 -0
- package/dist/typescript/model/CitationModelRes.js +99 -0
- package/dist/typescript/model/CitationModelRes.ts +126 -0
- package/dist/typescript/model/CitationViolationModel.ts +84 -0
- package/dist/typescript/model/CitationWithMissingCourt.ts +76 -0
- package/dist/typescript/model/CitationWithMissingFields.ts +103 -0
- package/dist/typescript/model/CitationsResponseModel.ts +202 -0
- package/dist/typescript/model/ClientActionRequiredRequest.ts +27 -0
- package/dist/typescript/model/ClientConfirmedUnpaidCase.ts +28 -0
- package/dist/typescript/model/ClientLeadDomain.ts +24 -0
- package/dist/typescript/model/CommonHeader.ts +22 -0
- package/dist/typescript/model/ConfidenceField.ts +19 -0
- package/dist/typescript/model/ContactTimelineResponse.ts +20 -0
- package/dist/typescript/model/ConvertPdfToImageModel.ts +26 -0
- package/dist/typescript/model/ConvertPdfToImageRequest.ts +20 -0
- package/dist/typescript/model/ConvertPdfToImageResponse.ts +20 -0
- package/dist/typescript/model/CountryDomain.ts +19 -0
- package/dist/typescript/model/CountryRegion.ts +22 -0
- package/dist/typescript/model/CountyDomain.ts +75 -0
- package/dist/typescript/model/CourtCoverageCountyRecord.ts +26 -0
- package/dist/typescript/model/CourtCoverageRecord.ts +29 -0
- package/dist/typescript/model/CourtCoverageStateRecord.ts +25 -0
- package/dist/typescript/model/CourtDomain.ts +43 -0
- package/dist/typescript/model/CourtDomainReq.ts +43 -0
- package/dist/typescript/model/CourtDomainRes.ts +43 -0
- package/dist/typescript/model/CourtInputRequest.ts +18 -0
- package/dist/typescript/model/CourtResponseModel.ts +39 -0
- package/dist/typescript/model/CoverageToRemove.ts +82 -0
- package/dist/typescript/model/CreateBillingSubscriptionItemModel.ts +49 -0
- package/dist/typescript/model/CreateBillingSubscriptionRequest.ts +19 -0
- package/dist/typescript/model/CreateBillingSubscriptionResponse.ts +33 -0
- package/dist/typescript/model/CreateBranchLinkRequest.ts +26 -0
- package/dist/typescript/model/CreateCitationRequest.ts +100 -0
- package/dist/typescript/model/CreateCitationResponse.d.ts +1 -1
- package/dist/typescript/model/CreateCitationResponse.ts +18 -0
- package/dist/typescript/model/CreateConnectAccountLinkRequest.ts +20 -0
- package/dist/typescript/model/CreateConnectAccountLinkResponse.ts +18 -0
- package/dist/typescript/model/CreateLawfirmModel.ts +59 -0
- package/dist/typescript/model/CreateNewLawfirmRequest.ts +22 -0
- package/dist/typescript/model/CreateNoteInput.ts +28 -0
- package/dist/typescript/model/CreateNoteRequest.ts +18 -0
- package/dist/typescript/model/CreateNoteResponse.ts +18 -0
- package/dist/typescript/model/CreateReferralCodeRequest.ts +39 -0
- package/dist/typescript/model/CreateReferralCodeResponse.ts +18 -0
- package/dist/typescript/model/CreateReferralSourceForCitation.ts +18 -0
- package/dist/typescript/model/CreateStripeConnectAccountRequest.ts +25 -0
- package/dist/typescript/model/CreateStripeConnectAccountResponse.ts +19 -0
- package/dist/typescript/model/Cursor.ts +19 -0
- package/dist/typescript/model/CursorModel.ts +19 -0
- package/dist/typescript/model/CustomerLead.ts +95 -0
- package/dist/typescript/model/CustomerOverduePayment.ts +24 -0
- package/dist/typescript/model/CustomerReview.ts +56 -0
- package/dist/typescript/model/CustomerServiceAgentBookingDomain.ts +24 -0
- package/dist/typescript/model/CustomerServiceAgentDomain.ts +24 -0
- package/dist/typescript/model/DashboardAddressModel.ts +22 -0
- package/dist/typescript/model/DashboardAuthorModel.ts +20 -0
- package/dist/typescript/model/DashboardCaseModel.ts +30 -0
- package/dist/typescript/model/DashboardCitationModel.ts +34 -0
- package/dist/typescript/model/DashboardCourtModel.ts +19 -0
- package/dist/typescript/model/DashboardStatusModel.ts +68 -0
- package/dist/typescript/model/DefaultClassModel.ts +80 -0
- package/dist/typescript/model/DeleteCitationResponse.d.ts +1 -1
- package/dist/typescript/model/DeleteCitationResponse.ts +18 -0
- package/dist/typescript/model/DeleteLawyerLicenseRequest.ts +18 -0
- package/dist/typescript/model/DeleteNotificationByPagesRequest.ts +28 -0
- package/dist/typescript/model/DeleteNotificationEventRequest.ts +29 -0
- package/dist/typescript/model/DirectMailContact.ts +42 -0
- package/dist/typescript/model/DirectMailContactResponse.ts +18 -0
- package/dist/typescript/model/DirectMailGetRequest.ts +19 -0
- package/dist/typescript/model/DirectMailSendRequest.ts +28 -0
- package/dist/typescript/model/DirectMailTemplate.ts +30 -0
- package/dist/typescript/model/DirectMailTemplateResponse.ts +18 -0
- package/dist/typescript/model/DirectMailTemplateToAdd.ts +30 -0
- package/dist/typescript/model/DismissCitationsFromContactListRequest.ts +18 -0
- package/dist/typescript/model/DismissPhoneLeadRequest.ts +33 -0
- package/dist/typescript/model/DocumentDecisionRequest.ts +19 -0
- package/dist/typescript/model/DripRemoveRequest.ts +27 -0
- package/dist/typescript/model/DripWebhookData.ts +20 -0
- package/dist/typescript/model/DripWebhookEvent.ts +20 -0
- package/dist/typescript/model/Duration.ts +22 -0
- package/dist/typescript/model/EditConversationMessageRequest.ts +18 -0
- package/dist/typescript/model/EnableViolationModel.ts +81 -0
- package/dist/typescript/model/EnableViolationResponseModel.ts +18 -0
- package/dist/typescript/model/EnableViolationsForLawfirmRequest.ts +18 -0
- package/dist/typescript/model/EnableViolationsForLawfirmResponse.ts +18 -0
- package/dist/typescript/model/EstimateInsuranceSavingsRequest.ts +76 -0
- package/dist/typescript/model/EstimateInsuranceSavingsResponse.ts +20 -0
- package/dist/typescript/model/ExternalTicketCourt.ts +21 -0
- package/dist/typescript/model/FeedbackAttachmentModel.ts +19 -0
- package/dist/typescript/model/FeedbackDomain.ts +31 -0
- package/dist/typescript/model/FinancialTransaction.ts +61 -0
- package/dist/typescript/model/FindChargeDisputesResponse.ts +18 -0
- package/dist/typescript/model/FindCourtsWithNoCoverageResponse.ts +19 -0
- package/dist/typescript/model/FindDisputesRequest.ts +19 -0
- package/dist/typescript/model/FindMatchingUser.ts +43 -0
- package/dist/typescript/model/FindMatchingUsersRequest.ts +22 -0
- package/dist/typescript/model/FindMatchingUsersResponse.ts +18 -0
- package/dist/typescript/model/FindsCourtsResponse.ts +19 -0
- package/dist/typescript/model/FreshDeskConversation.ts +23 -0
- package/dist/typescript/model/FreshDeskRequester.ts +19 -0
- package/dist/typescript/model/FreshDeskTicket.ts +77 -0
- package/dist/typescript/model/FreshDeskTicketReq.ts +78 -0
- package/dist/typescript/model/FreshDeskTicketRes.ts +77 -0
- package/dist/typescript/model/FreshdeskAttachment.ts +24 -0
- package/dist/typescript/model/FreshdeskAttachmentReq.ts +24 -0
- package/dist/typescript/model/FreshdeskAttachmentRes.ts +24 -0
- package/dist/typescript/model/FreshdeskTicketReferenceDomain.ts +40 -0
- package/dist/typescript/model/FreshdeskWebhookRequest.ts +26 -0
- package/dist/typescript/model/FuturePayment.ts +34 -0
- package/dist/typescript/model/GenerateTemplateRequest.ts +62 -0
- package/dist/typescript/model/GenericAdminListRequest.ts +18 -0
- package/dist/typescript/model/GeoRatesRequest.ts +23 -0
- package/dist/typescript/model/GetActivityFeedResponse.ts +19 -0
- package/dist/typescript/model/GetAddressInnerResponse.ts +24 -0
- package/dist/typescript/model/GetAppConfigResponse.ts +19 -0
- package/dist/typescript/model/GetAppearanceAttorneysResponse.ts +18 -0
- package/dist/typescript/model/GetAvailablePaymentPlansResponse.ts +18 -0
- package/dist/typescript/model/GetBookingsRequest.ts +20 -0
- package/dist/typescript/model/GetBookingsResponse.ts +22 -0
- package/dist/typescript/model/GetCaseActionResponse.ts +18 -0
- package/dist/typescript/model/GetCaseActionTimelineResponse.ts +19 -0
- package/dist/typescript/model/GetCaseActionTypesResponse.ts +37 -0
- package/dist/typescript/model/GetCaseCostsAttorneyResponse.ts +23 -0
- package/dist/typescript/model/GetCaseDocumentResponse.ts +18 -0
- package/dist/typescript/model/GetCaseFromCitationResponse.d.ts +1 -1
- package/dist/typescript/model/GetCaseFromCitationResponse.ts +20 -0
- package/dist/typescript/model/GetCaseMessagesResponse.ts +19 -0
- package/dist/typescript/model/GetCaseNotesResponse.ts +18 -0
- package/dist/typescript/model/GetCasePaymentsResponse.ts +18 -0
- package/dist/typescript/model/GetCaseResolutionStatusesResponse.ts +18 -0
- package/dist/typescript/model/GetCaseResponse.d.ts +1 -1
- package/dist/typescript/model/GetCaseResponse.ts +20 -0
- package/dist/typescript/model/GetCasesWithCoverageObtainedResponse.ts +18 -0
- package/dist/typescript/model/GetCasesWithMissingLawfirmPayoutsResponse.ts +19 -0
- package/dist/typescript/model/GetCasesWithOverduePaymentsResponse.ts +19 -0
- package/dist/typescript/model/GetCasesWithUncapturedChargesRequest.ts +19 -0
- package/dist/typescript/model/GetCitationPhoneLeadsRequest.ts +18 -0
- package/dist/typescript/model/GetCitationPhoneLeadsResponse.ts +18 -0
- package/dist/typescript/model/GetCitationResponse.d.ts +1 -1
- package/dist/typescript/model/GetCitationResponse.ts +18 -0
- package/dist/typescript/model/GetCitationsResponse.d.ts +1 -1
- package/dist/typescript/model/GetCitationsResponse.ts +18 -0
- package/dist/typescript/model/GetCitationsWithMissingFieldsRequest.ts +81 -0
- package/dist/typescript/model/GetCitationsWithMissingFieldsResponse.ts +23 -0
- package/dist/typescript/model/GetClientCasesResponse.d.ts +2 -2
- package/dist/typescript/model/GetClientCasesResponse.ts +22 -0
- package/dist/typescript/model/GetClientConfirmedUnpaidCasesResponse.ts +19 -0
- package/dist/typescript/model/GetCompetitionResponseModel.ts +21 -0
- package/dist/typescript/model/GetCountOfMatchingUsersRequest.ts +18 -0
- package/dist/typescript/model/GetCountOfMatchingUsersResponse.ts +18 -0
- package/dist/typescript/model/GetCountiesResponse.ts +18 -0
- package/dist/typescript/model/GetCountryListResponse.ts +18 -0
- package/dist/typescript/model/GetCountryRegionsResponse.ts +18 -0
- package/dist/typescript/model/GetCourtCoverageForCountyReportResponse.ts +18 -0
- package/dist/typescript/model/GetCourtCoverageForStateReportResponse.ts +19 -0
- package/dist/typescript/model/GetCourtCoverageReportResponse.ts +18 -0
- package/dist/typescript/model/GetCourtResponse.ts +18 -0
- package/dist/typescript/model/GetCourtsByQueryResponse.ts +19 -0
- package/dist/typescript/model/GetCourtsInnerResponse.ts +22 -0
- package/dist/typescript/model/GetCurrentUserResponse.ts +23 -0
- package/dist/typescript/model/GetCustomerServiceAgentsResponse.ts +19 -0
- package/dist/typescript/model/GetDeclinedCasesRequest.ts +18 -0
- package/dist/typescript/model/GetDeclinedCasesResponse.d.ts +1 -1
- package/dist/typescript/model/GetDeclinedCasesResponse.ts +18 -0
- package/dist/typescript/model/GetDocumentsRequest.ts +18 -0
- package/dist/typescript/model/GetEmailTemplateResponse.ts +19 -0
- package/dist/typescript/model/GetExternalTicketInputParamsResponse.ts +18 -0
- package/dist/typescript/model/GetExternalTicketModel.ts +30 -0
- package/dist/typescript/model/GetExternalTicketsResponse.ts +27 -0
- package/dist/typescript/model/GetHouseHoldMateModel.ts +39 -0
- package/dist/typescript/model/GetHouseholdMatesResponse.ts +18 -0
- package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.d.ts +1 -1
- package/dist/typescript/model/GetInvalidCasesWithStripeChargeResponse.ts +18 -0
- package/dist/typescript/model/GetInviteByTokenResponse.ts +43 -0
- package/dist/typescript/model/GetLastLoginResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmAddressesResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmCaseStatsResponse.ts +20 -0
- package/dist/typescript/model/GetLawfirmCoverageReportResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmCoverageResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmFeeCoverageModel.ts +32 -0
- package/dist/typescript/model/GetLawfirmFeeCoverageResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmFeeModel.ts +92 -0
- package/dist/typescript/model/GetLawfirmFeesResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmFinancialTransactionsResponse.ts +27 -0
- package/dist/typescript/model/GetLawfirmInboxMessagesResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmJobTitleResponse.ts +35 -0
- package/dist/typescript/model/GetLawfirmLawyersResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmLeadsRequest.ts +18 -0
- package/dist/typescript/model/GetLawfirmLeadsResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmModel.ts +121 -0
- package/dist/typescript/model/GetLawfirmPaymentMethodsResponse.ts +19 -0
- package/dist/typescript/model/GetLawfirmPayoutReversalsResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmPayoutsResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmSettingsResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmSummaryCaseRequest.ts +110 -0
- package/dist/typescript/model/GetLawfirmSummaryCasesResponse.ts +25 -0
- package/dist/typescript/model/GetLawfirmSupportedStatesResponse.ts +18 -0
- package/dist/typescript/model/GetLawfirmTransactionsForCaseResponse.ts +24 -0
- package/dist/typescript/model/GetLawfirmsResponse.ts +19 -0
- package/dist/typescript/model/GetLawyerResponse.ts +18 -0
- package/dist/typescript/model/GetLineItemTypesResponse.ts +38 -0
- package/dist/typescript/model/GetLineItemsResponse.ts +19 -0
- package/dist/typescript/model/GetListOfCitationsWithMissingCourtResponse.ts +18 -0
- package/dist/typescript/model/GetLocationResponse.ts +22 -0
- package/dist/typescript/model/GetLostCasesWithTransferNotReversedRequest.ts +20 -0
- package/dist/typescript/model/GetLostCasesWithTransferNotReversedResponse.ts +18 -0
- package/dist/typescript/model/GetMessagesByEntityResponse.ts +21 -0
- package/dist/typescript/model/GetNoViolationCitationsResponse.ts +18 -0
- package/dist/typescript/model/GetOutgoingContactsResponse.ts +18 -0
- package/dist/typescript/model/GetOverduePaymentsResponse.ts +19 -0
- package/dist/typescript/model/GetPaymentMethodsForUserResponse.ts +19 -0
- package/dist/typescript/model/GetPaymentModelTypesResponse.ts +25 -0
- package/dist/typescript/model/GetPenaltyType.ts +38 -0
- package/dist/typescript/model/GetPenaltyTypesResponse.ts +18 -0
- package/dist/typescript/model/GetPendingCasesResponse.d.ts +1 -1
- package/dist/typescript/model/GetPendingCasesResponse.ts +18 -0
- package/dist/typescript/model/GetPendingTicketReviewsRequest.ts +20 -0
- package/dist/typescript/model/GetPendingTicketReviewsResponse.ts +18 -0
- package/dist/typescript/model/GetPotentialCustomersRequest.ts +21 -0
- package/dist/typescript/model/GetPotentialCustomersResponse.ts +19 -0
- package/dist/typescript/model/GetRedirectUrlResponse.ts +21 -0
- package/dist/typescript/model/GetReferralCodeResponse.ts +39 -0
- package/dist/typescript/model/GetReferralCodesResponse.ts +18 -0
- package/dist/typescript/model/GetReferralsHistoryResponse.ts +18 -0
- package/dist/typescript/model/GetRegionsWithViolationsResponse.ts +18 -0
- package/dist/typescript/model/GetStripeChargeResponse.ts +18 -0
- package/dist/typescript/model/GetStripeChargesResponse.ts +18 -0
- package/dist/typescript/model/GetStripeConnectedAccountsResponse.ts +18 -0
- package/dist/typescript/model/GetSupportTicketsResponse.ts +18 -0
- package/dist/typescript/model/GetTicketReviewResponse.ts +18 -0
- package/dist/typescript/model/GetTrafficViolationModel.ts +95 -0
- package/dist/typescript/model/GetTrafficViolationTypesResponse.ts +19 -0
- package/dist/typescript/model/GetUserAddressesResponse.ts +18 -0
- package/dist/typescript/model/GetUserCasesResponse.d.ts +2 -2
- package/dist/typescript/model/GetUserCasesResponse.ts +21 -0
- package/dist/typescript/model/GetUserDetailsResponse.ts +19 -0
- package/dist/typescript/model/GetUserRefLinksResponse.ts +18 -0
- package/dist/typescript/model/GetUserReferralSourceTypesResponse.ts +18 -0
- package/dist/typescript/model/GetUserRegistrationsRequest.ts +20 -0
- package/dist/typescript/model/GetUserRegistrationsResponse.ts +19 -0
- package/dist/typescript/model/GetUserResponse.ts +18 -0
- package/dist/typescript/model/GetUserSettingsRequest.ts +18 -0
- package/dist/typescript/model/GetUserSettingsResponse.ts +19 -0
- package/dist/typescript/model/GetUserStripeAccountResponse.ts +18 -0
- package/dist/typescript/model/GhostUser.ts +44 -0
- package/dist/typescript/model/GhostUserResponse.ts +43 -0
- package/dist/typescript/model/GoogleLoginRequest.ts +18 -0
- package/dist/typescript/model/GraphRequest.ts +63 -0
- package/dist/typescript/model/HandleOrphanedStripeChargeRequest.ts +19 -0
- package/dist/typescript/model/HandleOrphanedStripeChargeResponse.ts +20 -0
- package/dist/typescript/model/IncomingEmail.ts +24 -0
- package/dist/typescript/model/IncomingEmailModels.ts +20 -0
- package/dist/typescript/model/IncomingEmailRequest.ts +22 -0
- package/dist/typescript/model/IncomingHeader.ts +19 -0
- package/dist/typescript/model/InitiateCaseAndChargeCustomerRequest.ts +26 -0
- package/dist/typescript/model/InitiateCaseAndChargeCustomerResponse.ts +19 -0
- package/dist/typescript/model/InsertCaseLineItemResponse.ts +18 -0
- package/dist/typescript/model/InsertInvoiceLineItemRequest.ts +18 -0
- package/dist/typescript/model/InviteHouseholdMateRequest.ts +29 -0
- package/dist/typescript/model/InviteLawyerToLawfirmRequest.ts +27 -0
- package/dist/typescript/model/IsRefundEligibleResponse.ts +25 -0
- package/dist/typescript/model/IsUserLoggedInResponse.ts +19 -0
- package/dist/typescript/model/LastLoginDateModel.ts +42 -0
- package/dist/typescript/model/LawfirmAuditEventModel.ts +91 -0
- package/dist/typescript/model/LawfirmBookingSummary.ts +79 -0
- package/dist/typescript/model/LawfirmCaseDocument.ts +36 -0
- package/dist/typescript/model/LawfirmCaseModel.d.ts +44 -0
- package/dist/typescript/model/LawfirmCaseModel.js +33 -0
- package/dist/typescript/model/LawfirmCaseModel.ts +47 -0
- package/dist/typescript/model/LawfirmCaseModelReq.d.ts +44 -0
- package/dist/typescript/model/LawfirmCaseModelReq.js +33 -0
- package/dist/typescript/model/LawfirmCaseModelReq.ts +47 -0
- package/dist/typescript/model/LawfirmCaseModelRes.d.ts +44 -0
- package/dist/typescript/model/LawfirmCaseModelRes.js +33 -0
- package/dist/typescript/model/LawfirmCaseModelRes.ts +47 -0
- package/dist/typescript/model/LawfirmCourtCoverageDomain.ts +33 -0
- package/dist/typescript/model/LawfirmCoverageRecord.ts +28 -0
- package/dist/typescript/model/LawfirmDocument.ts +36 -0
- package/dist/typescript/model/LawfirmDocumentResponse.ts +18 -0
- package/dist/typescript/model/LawfirmDocumentTemplate.ts +35 -0
- package/dist/typescript/model/LawfirmDocumentTemplateResponse.ts +18 -0
- package/dist/typescript/model/LawfirmFeeDomain.ts +52 -0
- package/dist/typescript/model/LawfirmInboxMessageDomain.ts +105 -0
- package/dist/typescript/model/LawfirmLeadDomain.ts +109 -0
- package/dist/typescript/model/LawfirmPayoutDomain.ts +48 -0
- package/dist/typescript/model/LawfirmPictureRequest.ts +20 -0
- package/dist/typescript/model/LawfirmRatesResponse.ts +51 -0
- package/dist/typescript/model/LawfirmRedirectModel.ts +27 -0
- package/dist/typescript/model/LawfirmSettingsDomain.ts +40 -0
- package/dist/typescript/model/LawfirmSettingsDomainReq.ts +40 -0
- package/dist/typescript/model/LawfirmSettingsDomainRes.ts +40 -0
- package/dist/typescript/model/LawfirmStorefrontModel.ts +53 -0
- package/dist/typescript/model/LawfirmVacationRequest.ts +21 -0
- package/dist/typescript/model/LawfirmsRatesResponse.ts +18 -0
- package/dist/typescript/model/LawyerInviteByTokenModel.ts +20 -0
- package/dist/typescript/model/LawyerInviteModel.ts +38 -0
- package/dist/typescript/model/LawyerLicenseModel.ts +79 -0
- package/dist/typescript/model/LawyerModel.ts +60 -0
- package/dist/typescript/model/LegalServiceModel.d.ts +42 -0
- package/dist/typescript/model/LegalServiceModel.js +31 -0
- package/dist/typescript/model/LegalServiceModel.ts +46 -0
- package/dist/typescript/model/LetterOfEngagement.ts +20 -0
- package/dist/typescript/model/LineItem.ts +40 -0
- package/dist/typescript/model/LineItemModel.ts +46 -0
- package/dist/typescript/model/LineItemRequest.ts +49 -0
- package/dist/typescript/model/ListAgentBookingsResponse.ts +20 -0
- package/dist/typescript/model/ListBillingProductsResponse.ts +18 -0
- package/dist/typescript/model/ListBillingSubscribersRequest.ts +18 -0
- package/dist/typescript/model/ListBillingSubscribersResponse.ts +19 -0
- package/dist/typescript/model/ListBillingSubscriptionModel.ts +42 -0
- package/dist/typescript/model/ListBillingSubscriptionsResponse.ts +19 -0
- package/dist/typescript/model/ListCitationAuditEventsResponse.ts +20 -0
- package/dist/typescript/model/ListCitationsRequest.ts +104 -0
- package/dist/typescript/model/ListCitationsResponse.ts +20 -0
- package/dist/typescript/model/ListContactTimelineResponse.ts +18 -0
- package/dist/typescript/model/ListCostItemsForCustomerResponse.ts +22 -0
- package/dist/typescript/model/ListDashboardCasesResponse.ts +19 -0
- package/dist/typescript/model/ListEligibleStatusResponse.ts +59 -0
- package/dist/typescript/model/ListLawfirmAuditEventsByCursorResponse.ts +20 -0
- package/dist/typescript/model/ListLawfirmStorefrontsResponse.ts +20 -0
- package/dist/typescript/model/ListLawfirmSurchargeModel.ts +40 -0
- package/dist/typescript/model/ListLawfirmSurchargeTypeModel.ts +30 -0
- package/dist/typescript/model/ListLawfirmSurchargesResponse.ts +18 -0
- package/dist/typescript/model/ListNotesResponse.ts +21 -0
- package/dist/typescript/model/ListReferralsResponse.ts +19 -0
- package/dist/typescript/model/ListReviewsResponse.ts +20 -0
- package/dist/typescript/model/ListSubscriptionInvoicesResponse.ts +18 -0
- package/dist/typescript/model/ListUserAuditEventsByCursorResponse.ts +20 -0
- package/dist/typescript/model/ListUserAuditEventsCursorModel.ts +18 -0
- package/dist/typescript/model/ListViolationClassificationResponse.ts +18 -0
- package/dist/typescript/model/LobEvent.ts +20 -0
- package/dist/typescript/model/LobEventRequest.ts +21 -0
- package/dist/typescript/model/LobMailingAddress.ts +23 -0
- package/dist/typescript/model/LocalTime.ts +21 -0
- package/dist/typescript/model/LookupParamValue.ts +33 -0
- package/dist/typescript/model/LostCaseWithTransferNotReversed.ts +43 -0
- package/dist/typescript/model/MarkActionAsDeletedResponse.ts +18 -0
- package/dist/typescript/model/MarkCaseAsResolvedRequest.ts +63 -0
- package/dist/typescript/model/MarkCaseAsResolvedResponse.ts +70 -0
- package/dist/typescript/model/MatchCaseResponse.ts +20 -0
- package/dist/typescript/model/MatchCaseViolationPenaltyModel.ts +39 -0
- package/dist/typescript/model/MatchCitationModel.ts +28 -0
- package/dist/typescript/model/MatchCitationResponse.ts +28 -0
- package/dist/typescript/model/MatchInnerCaseModel.d.ts +1 -1
- package/dist/typescript/model/MatchInnerCaseModel.ts +30 -0
- package/dist/typescript/model/MatchInnerCaseResponse.ts +36 -0
- package/dist/typescript/model/MatchLawfirmCaseResponse.ts +22 -0
- package/dist/typescript/model/MatchLegalServiceModel.ts +46 -0
- package/dist/typescript/model/MatchLegalServicesRequest.ts +34 -0
- package/dist/typescript/model/MatchLegalServicesResponse.ts +19 -0
- package/dist/typescript/model/MatchingFieldValue.ts +26 -0
- package/dist/typescript/model/MediaItemModel.ts +29 -0
- package/dist/typescript/model/MergeStatusReport.ts +19 -0
- package/dist/typescript/model/MergeTableChange.ts +18 -0
- package/dist/typescript/model/MergeTableRecord.ts +19 -0
- package/dist/typescript/model/MergeTicketResponse.ts +20 -0
- package/dist/typescript/model/MergeUserRequest.ts +19 -0
- package/dist/typescript/model/MergeUserResponse.ts +18 -0
- package/dist/typescript/model/MessageByEntityModel.ts +80 -0
- package/dist/typescript/model/MessageInputModel.ts +35 -0
- package/dist/typescript/model/MissingLawfirmPayoutResult.ts +123 -0
- package/dist/typescript/model/MissingPaymentDomain.ts +82 -0
- package/dist/typescript/model/NewUser.ts +36 -0
- package/dist/typescript/model/NewUserResponse.ts +22 -0
- package/dist/typescript/model/NoLawyerAvailableRequest.ts +19 -0
- package/dist/typescript/model/NoViolationCitation.ts +66 -0
- package/dist/typescript/model/NoteAuthor.ts +20 -0
- package/dist/typescript/model/NoteEntity.ts +33 -0
- package/dist/typescript/model/NoteModel.ts +33 -0
- package/dist/typescript/model/NotificationEvent.ts +23 -0
- package/dist/typescript/model/NotificationEvents.ts +19 -0
- package/dist/typescript/model/OCRPredictionCaseResponse.ts +63 -0
- package/dist/typescript/model/OutgoingContactDomain.ts +29 -0
- package/dist/typescript/model/PaymentPlanTypeModel.ts +26 -0
- package/dist/typescript/model/PaymentPlanTypeModelReq.ts +26 -0
- package/dist/typescript/model/PaymentPlanTypeModelRes.ts +26 -0
- package/dist/typescript/model/Penalty.ts +43 -0
- package/dist/typescript/model/PenaltyModel.ts +42 -0
- package/dist/typescript/model/PenaltyRequest.ts +19 -0
- package/dist/typescript/model/PersistTicketEvaluationRequest.ts +31 -0
- package/dist/typescript/model/PhoneNumberDomain.ts +46 -0
- package/dist/typescript/model/PhoneNumberDomainReq.ts +46 -0
- package/dist/typescript/model/PhoneNumberDomainRes.ts +46 -0
- package/dist/typescript/model/PostCourtCoverageRequest.ts +18 -0
- package/dist/typescript/model/PostFeedbackRequest.ts +18 -0
- package/dist/typescript/model/PotentialCustomerDomain.ts +136 -0
- package/dist/typescript/model/PredictCitationTextRequest.ts +25 -0
- package/dist/typescript/model/PreviewDocumentRequest.ts +20 -0
- package/dist/typescript/model/PriceMatchRequest.ts +24 -0
- package/dist/typescript/model/PriceMatchResponse.ts +28 -0
- package/dist/typescript/model/PublishReferralContactsResponse.ts +18 -0
- package/dist/typescript/model/PublishReferralRequest.ts +19 -0
- package/dist/typescript/model/PureDate.ts +18 -0
- package/dist/typescript/model/PushNotificationRegistrationRequest.ts +26 -0
- package/dist/typescript/model/PushNotificationRequest.ts +35 -0
- package/dist/typescript/model/PutDocumentRequest.ts +33 -0
- package/dist/typescript/model/ReferralContact.ts +20 -0
- package/dist/typescript/model/ReferralContactStatus.ts +27 -0
- package/dist/typescript/model/ReferralResponse.ts +77 -0
- package/dist/typescript/model/ReferralResponseByUser.ts +30 -0
- package/dist/typescript/model/RefundCasePaymentRequest.ts +31 -0
- package/dist/typescript/model/RefundLawfirmFeeRequest.ts +32 -0
- package/dist/typescript/model/RegisterGhostUserRequest.ts +29 -0
- package/dist/typescript/model/RegisterGhostUserResponse.ts +18 -0
- package/dist/typescript/model/RegisterNewUserRequest.ts +59 -0
- package/dist/typescript/model/RegisterNewUserResponse.ts +21 -0
- package/dist/typescript/model/RemoveCoverageRequest.ts +18 -0
- package/dist/typescript/model/RemoveLawfirmSurchargeRequest.ts +18 -0
- package/dist/typescript/model/ReplyToReviewRequest.ts +19 -0
- package/dist/typescript/model/ReplyToTicketRequest.ts +35 -0
- package/dist/typescript/model/RescheduleTaskRequest.ts +18 -0
- package/dist/typescript/model/ResetFeeForLawfirmModel.ts +18 -0
- package/dist/typescript/model/ResetFeesForLawfirmRequest.ts +18 -0
- package/dist/typescript/model/ResetFeesForLawfirmResponse.ts +18 -0
- package/dist/typescript/model/ResetUserPasswordRequest.ts +19 -0
- package/dist/typescript/model/ResetViolationModel.ts +81 -0
- package/dist/typescript/model/Results.ts +18 -0
- package/dist/typescript/model/ReverseLawfirmPayoutRequest.ts +30 -0
- package/dist/typescript/model/ReviewCommentModel.ts +23 -0
- package/dist/typescript/model/ReviewRatingModel.ts +20 -0
- package/dist/typescript/model/ReviewVoteAggregateModel.ts +19 -0
- package/dist/typescript/model/SNSNotificationRequest.ts +21 -0
- package/dist/typescript/model/SSLCertificateResponse.ts +18 -0
- package/dist/typescript/model/SaveAgentBookingRequest.ts +22 -0
- package/dist/typescript/model/SaveAgentBookingResponse.ts +18 -0
- package/dist/typescript/model/SaveCaseNotesRequest.ts +18 -0
- package/dist/typescript/model/SaveLawfirmSurchargeModel.ts +50 -0
- package/dist/typescript/model/SaveLawfirmSurchargesRequest.ts +18 -0
- package/dist/typescript/model/SaveLawyerLeadRequest.ts +35 -0
- package/dist/typescript/model/SaveLawyerLicenseModel.ts +79 -0
- package/dist/typescript/model/SaveLawyerLicensesRequest.ts +18 -0
- package/dist/typescript/model/SaveLawyerRequest.ts +41 -0
- package/dist/typescript/model/SaveNotesRequest.ts +29 -0
- package/dist/typescript/model/ScheduleNewPaymentRequest.ts +44 -0
- package/dist/typescript/model/ScheduledTaskGetResponse.ts +18 -0
- package/dist/typescript/model/ScheduledTaskResponse.ts +41 -0
- package/dist/typescript/model/SearchNotesResponse.ts +18 -0
- package/dist/typescript/model/SendBookingReceiptRequest.ts +19 -0
- package/dist/typescript/model/SendConsolidatedEmailToUser.ts +62 -0
- package/dist/typescript/model/SendDirectCheckResponse.ts +23 -0
- package/dist/typescript/model/SendDirectMailResponse.ts +18 -0
- package/dist/typescript/model/SendDirectReferralCheckRequest.ts +19 -0
- package/dist/typescript/model/SendEmailToUserRequest.ts +73 -0
- package/dist/typescript/model/SendEmailToUsersRequest.ts +61 -0
- package/dist/typescript/model/SendOneTimePasswordRequest.ts +19 -0
- package/dist/typescript/model/SendPayoutToLawfirmRequest.ts +44 -0
- package/dist/typescript/model/SendPayoutToLawfirmResponse.ts +18 -0
- package/dist/typescript/model/SetArchiveCaseModel.ts +18 -0
- package/dist/typescript/model/SetArchiveOnCasesRequest.ts +20 -0
- package/dist/typescript/model/SetCourtDateForCaseRequest.ts +19 -0
- package/dist/typescript/model/SetFlagOnMessageModel.ts +18 -0
- package/dist/typescript/model/SetFlagOnMessagesRequest.ts +20 -0
- package/dist/typescript/model/SetLawfirmCaseDecisionRequest.ts +30 -0
- package/dist/typescript/model/SetReferralSourceRequest.ts +49 -0
- package/dist/typescript/model/SetStarOnMessageModel.ts +19 -0
- package/dist/typescript/model/SetStarOnMessagesRequest.ts +20 -0
- package/dist/typescript/model/SettingRequest.ts +19 -0
- package/dist/typescript/model/SettingResponse.ts +29 -0
- package/dist/typescript/model/SignRecordingUrlRequest.ts +18 -0
- package/dist/typescript/model/SignRecordingUrlResponse.ts +18 -0
- package/dist/typescript/model/SimpleCredentialsResponse.ts +19 -0
- package/dist/typescript/model/SingleSignOnResponse.ts +21 -0
- package/dist/typescript/model/SocialLoginRequest.ts +48 -0
- package/dist/typescript/model/SocialLoginResponse.ts +21 -0
- package/dist/typescript/model/SocialLoginUser.ts +27 -0
- package/dist/typescript/model/SocialPhoneNumber.ts +29 -0
- package/dist/typescript/model/SqlResponse.ts +18 -0
- package/dist/typescript/model/StripeAccountLinkDomain.ts +20 -0
- package/dist/typescript/model/StripeApplicationFeeDomain.ts +30 -0
- package/dist/typescript/model/StripeApplicationFeeRefundDomain.ts +23 -0
- package/dist/typescript/model/StripeApplicationFeeRefundSyncResults.ts +20 -0
- package/dist/typescript/model/StripeApplicationFeeSyncResults.ts +21 -0
- package/dist/typescript/model/StripeCardDomain.ts +34 -0
- package/dist/typescript/model/StripeChargeDomain.ts +41 -0
- package/dist/typescript/model/StripeChargeSyncResults.ts +23 -0
- package/dist/typescript/model/StripeConnectedAccountDomain.ts +36 -0
- package/dist/typescript/model/StripeCustomerAccountDomain.ts +35 -0
- package/dist/typescript/model/StripeDisputeDomain.ts +88 -0
- package/dist/typescript/model/StripeFieldVerification.ts +20 -0
- package/dist/typescript/model/StripePaymentDomain.ts +31 -0
- package/dist/typescript/model/StripePaymentRefundDomain.ts +26 -0
- package/dist/typescript/model/StripePaymentRefundSyncResults.ts +20 -0
- package/dist/typescript/model/StripePaymentSourceDomain.ts +23 -0
- package/dist/typescript/model/StripePaymentSyncResults.ts +21 -0
- package/dist/typescript/model/StripeRefundDomain.ts +27 -0
- package/dist/typescript/model/StripeRefundSyncResults.ts +20 -0
- package/dist/typescript/model/StripeReversalSyncResults.ts +20 -0
- package/dist/typescript/model/StripeTransferDomain.ts +31 -0
- package/dist/typescript/model/StripeTransferReversalDomain.ts +26 -0
- package/dist/typescript/model/StripeTransferSyncResults.ts +21 -0
- package/dist/typescript/model/SubscribeRequest.ts +18 -0
- package/dist/typescript/model/Subscriber.ts +27 -0
- package/dist/typescript/model/SubscriberDomain.ts +27 -0
- package/dist/typescript/model/SyncStripeChargesRequest.ts +20 -0
- package/dist/typescript/model/SyncStripeChargesResponse.ts +18 -0
- package/dist/typescript/model/SyncStripeDisputeResponse.ts +18 -0
- package/dist/typescript/model/SyncStripePaymentsRequest.ts +20 -0
- package/dist/typescript/model/SyncStripePaymentsResponse.ts +18 -0
- package/dist/typescript/model/SyncStripeRefundsRequest.ts +19 -0
- package/dist/typescript/model/SyncStripeTransfersRequest.ts +20 -0
- package/dist/typescript/model/SyncStripeTransfersResponse.ts +18 -0
- package/dist/typescript/model/TemporalUnit.ts +21 -0
- package/dist/typescript/model/TicketLeadDomain.ts +86 -0
- package/dist/typescript/model/TicketReviewRequest.ts +38 -0
- package/dist/typescript/model/TicketReviewRequestReq.ts +38 -0
- package/dist/typescript/model/TicketReviewRequestRes.ts +38 -0
- package/dist/typescript/model/TimeZone.ts +21 -0
- package/dist/typescript/model/TimeZoneReq.ts +19 -0
- package/dist/typescript/model/TimeZoneRes.ts +21 -0
- package/dist/typescript/model/Timestamp.ts +27 -0
- package/dist/typescript/model/TimestampReq.ts +25 -0
- package/dist/typescript/model/TimestampRes.ts +27 -0
- package/dist/typescript/model/TrafficViolationInputRequest.ts +18 -0
- package/dist/typescript/model/TransferCaseRequest.ts +20 -0
- package/dist/typescript/model/USStateDomain.ts +19 -0
- package/dist/typescript/model/UpdateAddress.ts +24 -0
- package/dist/typescript/model/UpdateCaseActionRequest.ts +18 -0
- package/dist/typescript/model/UpdateCaseActionResponse.ts +18 -0
- package/dist/typescript/model/UpdateCaseDeclineTicketsRequest.ts +20 -0
- package/dist/typescript/model/UpdateCasePaymentRequest.ts +44 -0
- package/dist/typescript/model/UpdateCitationAddressRequest.ts +18 -0
- package/dist/typescript/model/UpdateCitationPictureRequest.ts +20 -0
- package/dist/typescript/model/UpdateCitationRequest.ts +18 -0
- package/dist/typescript/model/UpdateCourtRequest.ts +18 -0
- package/dist/typescript/model/UpdateDisputeRequest.ts +18 -0
- package/dist/typescript/model/UpdateInvoiceLineItemRequest.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmFeeRequest.ts +42 -0
- package/dist/typescript/model/UpdateLawfirmFeeResponse.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmModel.ts +61 -0
- package/dist/typescript/model/UpdateLawfirmPaymentModelRequest.ts +25 -0
- package/dist/typescript/model/UpdateLawfirmPayoutRequest.ts +39 -0
- package/dist/typescript/model/UpdateLawfirmPayoutResponse.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmRequest.ts +18 -0
- package/dist/typescript/model/UpdateLawfirmSettingsRequest.ts +18 -0
- package/dist/typescript/model/UpdateLawyerRoleRequest.ts +28 -0
- package/dist/typescript/model/UpdateNoteInput.ts +18 -0
- package/dist/typescript/model/UpdateNoteRequest.ts +18 -0
- package/dist/typescript/model/UpdateNoteResponse.ts +18 -0
- package/dist/typescript/model/UpdatePaymentDueDateRequest.ts +19 -0
- package/dist/typescript/model/UpdatePhoneNumber.ts +41 -0
- package/dist/typescript/model/UpdateProfilePictureRequest.ts +19 -0
- package/dist/typescript/model/UpdateRefundEligibilityForCaseRequest.ts +25 -0
- package/dist/typescript/model/UpdateReplyForCustomerReview.ts +19 -0
- package/dist/typescript/model/UpdateUserDetailsResponse.ts +18 -0
- package/dist/typescript/model/UpdateUserModel.ts +65 -0
- package/dist/typescript/model/UpdateUserPhoneNumberRequest.ts +19 -0
- package/dist/typescript/model/UpdateUserProfileRequest.ts +18 -0
- package/dist/typescript/model/UpdateUserRolesRequest.ts +29 -0
- package/dist/typescript/model/UpdateUserSettingsRequest.ts +18 -0
- package/dist/typescript/model/UpdateUserSettingsResponse.ts +18 -0
- package/dist/typescript/model/UpdateViolationRequest.ts +90 -0
- package/dist/typescript/model/UpsertAddressRequest.ts +18 -0
- package/dist/typescript/model/User.ts +20 -0
- package/dist/typescript/model/UserAccountModel.ts +34 -0
- package/dist/typescript/model/UserAuditEventModel.ts +91 -0
- package/dist/typescript/model/UserBookingsDomain.ts +19 -0
- package/dist/typescript/model/UserDetails.ts +21 -0
- package/dist/typescript/model/UserDomain.ts +98 -0
- package/dist/typescript/model/UserDomainReq.ts +97 -0
- package/dist/typescript/model/UserDomainRes.ts +98 -0
- package/dist/typescript/model/UserRefLinkDomain.ts +20 -0
- package/dist/typescript/model/UserReferralSourceTypeModel.ts +24 -0
- package/dist/typescript/model/UserRegistrationStats.ts +25 -0
- package/dist/typescript/model/UserRoleDomain.ts +28 -0
- package/dist/typescript/model/UserSubscriptionPlanModel.ts +31 -0
- package/dist/typescript/model/UserSubscriptionPlanModelReq.ts +31 -0
- package/dist/typescript/model/UserSubscriptionPlanModelRes.ts +31 -0
- package/dist/typescript/model/UserToContact.ts +19 -0
- package/dist/typescript/model/ValidateDirectMailRequest.ts +19 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.ts +287 -0
- package/dist/typescript/model/ValidateUserEmailResponse.ts +20 -0
- package/dist/typescript/model/VerifyMailingAddressRequest.ts +18 -0
- package/dist/typescript/model/VerifyMailingAddressResponse.ts +20 -0
- package/dist/typescript/model/VerifyPasswordResetTokenResponse.ts +19 -0
- package/dist/typescript/model/VerifyUserAccountResponse.ts +20 -0
- package/dist/typescript/model/Violation.ts +23 -0
- package/dist/typescript/model/ViolationClassificationModel.ts +82 -0
- package/dist/typescript/model/ViolationInput.ts +18 -0
- package/dist/typescript/model/ViolationInputRequest.ts +18 -0
- package/dist/typescript/model/ViolationModel.d.ts +9 -5
- package/dist/typescript/model/ViolationModel.ts +89 -0
- package/dist/typescript/model/ViolationPenaltyModel.d.ts +39 -0
- package/dist/typescript/model/ViolationPenaltyModel.js +35 -0
- package/dist/typescript/model/ViolationPenaltyModel.ts +43 -0
- package/dist/typescript/model/ViolationPenaltyResponse.ts +19 -0
- package/dist/typescript/model/ViolationResponse.ts +85 -0
- package/dist/typescript/model/WorkflowCaseModel.d.ts +27 -0
- package/dist/typescript/model/WorkflowCaseModel.js +22 -0
- package/dist/typescript/model/WorkflowCaseModel.ts +30 -0
- package/dist/typescript/model/WorkflowCitationModel.d.ts +26 -0
- package/dist/typescript/model/WorkflowCitationModel.js +13 -0
- package/dist/typescript/model/WorkflowCitationModel.ts +29 -0
- package/dist/typescript/model/WorkflowStateResponse.d.ts +16 -0
- package/dist/typescript/model/WorkflowStateResponse.js +13 -0
- package/dist/typescript/model/WorkflowStateResponse.ts +19 -0
- package/dist/typescript/model/WorkflowViolationModel.d.ts +82 -0
- package/dist/typescript/model/WorkflowViolationModel.js +77 -0
- package/dist/typescript/model/WorkflowViolationModel.ts +85 -0
- package/dist/typescript/model/WorkflowViolationPenaltyModel.d.ts +35 -0
- package/dist/typescript/model/WorkflowViolationPenaltyModel.js +35 -0
- package/dist/typescript/model/WorkflowViolationPenaltyModel.ts +39 -0
- package/dist/typescript/model/ZoneId.ts +19 -0
- package/dist/typescript/model/ZoneOffset.ts +20 -0
- package/dist/typescript/model/ZoneOffsetTransition.ts +25 -0
- package/dist/typescript/model/ZoneOffsetTransitionRule.ts +56 -0
- package/dist/typescript/model/ZoneRules.ts +20 -0
- package/dist/typescript/model/models.d.ts +16 -10
- package/dist/typescript/model/models.js +16 -10
- package/dist/typescript/model/models.ts +671 -0
- package/package.json +1 -1
|
@@ -88,7 +88,6 @@ api/stripeController.service.ts
|
|
|
88
88
|
api/stripeSyncController.service.ts
|
|
89
89
|
api/stripeWebhookController.service.ts
|
|
90
90
|
api/ticketReviewController.service.ts
|
|
91
|
-
api/trafficViolationController.service.ts
|
|
92
91
|
api/urlRedirectController.service.ts
|
|
93
92
|
api/userAccountController.service.ts
|
|
94
93
|
api/userAuditController.service.ts
|
|
@@ -100,7 +99,9 @@ api/userSettingsController.service.ts
|
|
|
100
99
|
api/utilityController.service.ts
|
|
101
100
|
api/validationController.service.ts
|
|
102
101
|
api/verificationController.service.ts
|
|
102
|
+
api/violationController.service.ts
|
|
103
103
|
api/violationPenaltyController.service.ts
|
|
104
|
+
api/workflowStateController.service.ts
|
|
104
105
|
configuration.ts
|
|
105
106
|
encoder.ts
|
|
106
107
|
git_push.sh
|
|
@@ -180,13 +181,13 @@ model/caseAlert.ts
|
|
|
180
181
|
model/caseBookingsStats.ts
|
|
181
182
|
model/caseChargeResponsePojo.ts
|
|
182
183
|
model/caseCreationRequest.ts
|
|
183
|
-
model/caseDomain.ts
|
|
184
|
-
model/caseDomainReq.ts
|
|
185
|
-
model/caseDomainRes.ts
|
|
186
184
|
model/caseLineItemDomainReq.ts
|
|
187
185
|
model/caseLineItemDomainRes.ts
|
|
188
186
|
model/caseLineItemsSummary.ts
|
|
189
187
|
model/caseMessageDomain.ts
|
|
188
|
+
model/caseModel.ts
|
|
189
|
+
model/caseModelReq.ts
|
|
190
|
+
model/caseModelRes.ts
|
|
190
191
|
model/caseNotesDomain.ts
|
|
191
192
|
model/casePaymentDomain.ts
|
|
192
193
|
model/casePaymentModel.ts
|
|
@@ -201,10 +202,10 @@ model/changeUserPasswordRequest.ts
|
|
|
201
202
|
model/chargeFeeToLawfirmRequest.ts
|
|
202
203
|
model/chargeFeeToLawfirmResponse.ts
|
|
203
204
|
model/citationAuditEventModel.ts
|
|
204
|
-
model/citationDomain.ts
|
|
205
|
-
model/citationDomainReq.ts
|
|
206
|
-
model/citationDomainRes.ts
|
|
207
205
|
model/citationInputRequest.ts
|
|
206
|
+
model/citationModel.ts
|
|
207
|
+
model/citationModelReq.ts
|
|
208
|
+
model/citationModelRes.ts
|
|
208
209
|
model/citationViolationModel.ts
|
|
209
210
|
model/citationWithMissingCourt.ts
|
|
210
211
|
model/citationWithMissingFields.ts
|
|
@@ -458,9 +459,9 @@ model/lastLoginDateModel.ts
|
|
|
458
459
|
model/lawfirmAuditEventModel.ts
|
|
459
460
|
model/lawfirmBookingSummary.ts
|
|
460
461
|
model/lawfirmCaseDocument.ts
|
|
461
|
-
model/
|
|
462
|
-
model/
|
|
463
|
-
model/
|
|
462
|
+
model/lawfirmCaseModel.ts
|
|
463
|
+
model/lawfirmCaseModelReq.ts
|
|
464
|
+
model/lawfirmCaseModelRes.ts
|
|
464
465
|
model/lawfirmCourtCoverageDomain.ts
|
|
465
466
|
model/lawfirmCoverageRecord.ts
|
|
466
467
|
model/lawfirmDocument.ts
|
|
@@ -484,6 +485,7 @@ model/lawyerInviteByTokenModel.ts
|
|
|
484
485
|
model/lawyerInviteModel.ts
|
|
485
486
|
model/lawyerLicenseModel.ts
|
|
486
487
|
model/lawyerModel.ts
|
|
488
|
+
model/legalServiceModel.ts
|
|
487
489
|
model/letterOfEngagement.ts
|
|
488
490
|
model/lineItem.ts
|
|
489
491
|
model/lineItemModel.ts
|
|
@@ -696,7 +698,6 @@ model/timestamp.ts
|
|
|
696
698
|
model/timestampReq.ts
|
|
697
699
|
model/timestampRes.ts
|
|
698
700
|
model/trafficViolationInputRequest.ts
|
|
699
|
-
model/trafficViolationTypeDomain.ts
|
|
700
701
|
model/transferCaseRequest.ts
|
|
701
702
|
model/uSStateDomain.ts
|
|
702
703
|
model/updateAddress.ts
|
|
@@ -764,8 +765,14 @@ model/violationClassificationModel.ts
|
|
|
764
765
|
model/violationInput.ts
|
|
765
766
|
model/violationInputRequest.ts
|
|
766
767
|
model/violationModel.ts
|
|
768
|
+
model/violationPenaltyModel.ts
|
|
767
769
|
model/violationPenaltyResponse.ts
|
|
768
770
|
model/violationResponse.ts
|
|
771
|
+
model/workflowCaseModel.ts
|
|
772
|
+
model/workflowCitationModel.ts
|
|
773
|
+
model/workflowStateResponse.ts
|
|
774
|
+
model/workflowViolationModel.ts
|
|
775
|
+
model/workflowViolationPenaltyModel.ts
|
|
769
776
|
model/zoneId.ts
|
|
770
777
|
model/zoneOffset.ts
|
|
771
778
|
model/zoneOffsetTransition.ts
|
package/dist/angular/api/api.ts
CHANGED
|
@@ -170,8 +170,6 @@ export * from './stripeWebhookController.service';
|
|
|
170
170
|
import { StripeWebhookControllerService } from './stripeWebhookController.service';
|
|
171
171
|
export * from './ticketReviewController.service';
|
|
172
172
|
import { TicketReviewControllerService } from './ticketReviewController.service';
|
|
173
|
-
export * from './trafficViolationController.service';
|
|
174
|
-
import { TrafficViolationControllerService } from './trafficViolationController.service';
|
|
175
173
|
export * from './urlRedirectController.service';
|
|
176
174
|
import { UrlRedirectControllerService } from './urlRedirectController.service';
|
|
177
175
|
export * from './userAccountController.service';
|
|
@@ -194,6 +192,10 @@ export * from './validationController.service';
|
|
|
194
192
|
import { ValidationControllerService } from './validationController.service';
|
|
195
193
|
export * from './verificationController.service';
|
|
196
194
|
import { VerificationControllerService } from './verificationController.service';
|
|
195
|
+
export * from './violationController.service';
|
|
196
|
+
import { ViolationControllerService } from './violationController.service';
|
|
197
197
|
export * from './violationPenaltyController.service';
|
|
198
198
|
import { ViolationPenaltyControllerService } from './violationPenaltyController.service';
|
|
199
|
-
export
|
|
199
|
+
export * from './workflowStateController.service';
|
|
200
|
+
import { WorkflowStateControllerService } from './workflowStateController.service';
|
|
201
|
+
export const APIS = [ActionRequiredControllerService, ActivityFeedControllerService, AddressControllerService, AlertNotificationControllerService, AppEventsControllerService, AuditLawfirmEventsControllerService, AuthenticationControllerService, AwsCredentialsControllerService, BlogWebhookControllerService, BranchLinkControllerService, CaseActionsControllerService, CaseControllerService, CaseCreationControllerService, CaseNotesControllerService, CasePaymentControllerService, CaseReferralCodeControllerService, CaseRefundControllerService, CaseResolutionControllerService, CaseStatusControllerService, CaseTransferControllerService, CertificateControllerService, CitationAuditControllerService, CitationControllerService, ConfigurationControllerService, ConsoleListControllerService, ContactTimelineControllerService, ConversationControllerService, CountyControllerService, CourtControllerService, CrmControllerService, CustomerLeadControllerService, CustomerReviewControllerService, CustomerServiceAgentBookingsControllerService, CustomerServiceAgentControllerService, DashboardControllerService, DirectMailControllerService, DripControllerService, DripWebhooksControllerService, EmailSubscriptionControllerService, ExternalTicketLookupControllerService, FeedbackControllerService, FreshcallerControllerService, FreshdeskTicketControllerService, GetCaseControllerService, HouseholdMateControllerService, InsuranceCalculatorControllerService, LawfirmCaseDecisionControllerService, LawfirmCasesControllerService, LawfirmControllerService, LawfirmDocumentControllerService, LawfirmFeeCoverageControllerService, LawfirmPaymentModelControllerService, LawfirmRatesControllerService, LawfirmSettingsControllerService, LawfirmStorefrontControllerService, LawfirmSurchargeControllerService, LawfirmTransactionsControllerService, LawyerControllerService, LegalServicesControllerService, LineItemControllerService, ListCasesControllerService, MediaCreationControllerService, MessagesControllerService, NotesControllerService, OcrPredictionControllerService, OnDemandRequestControllerService, OneTimePasswordControllerService, PhoneLeadsControllerService, PushNotificationControllerService, RecurringBillingControllerService, RefLinkControllerService, ReferralCodeControllerService, ReferralControllerService, ReferralSourceControllerService, RefundEligibilityControllerService, RegistrationControllerService, ReportingControllerService, ScheduledTaskControllerService, SingleSignOnControllerService, SnsListenerControllerService, SocialLoginControllerService, StripeCardControllerService, StripeControllerService, StripeSyncControllerService, StripeWebhookControllerService, TicketReviewControllerService, UrlRedirectControllerService, UserAccountControllerService, UserAuditControllerService, UserControllerService, UserPasswordControllerService, UserProfileControllerService, UserSearchControllerService, UserSettingsControllerService, UtilityControllerService, ValidationControllerService, VerificationControllerService, ViolationControllerService, ViolationPenaltyControllerService, WorkflowStateControllerService];
|
|
@@ -21,7 +21,7 @@ import { Observable } from 'rxjs';
|
|
|
21
21
|
// @ts-ignore
|
|
22
22
|
import { AddViolationsToCitationRequest } from '../model/addViolationsToCitationRequest';
|
|
23
23
|
// @ts-ignore
|
|
24
|
-
import {
|
|
24
|
+
import { CaseModelReq } from '../model/caseModelReq';
|
|
25
25
|
// @ts-ignore
|
|
26
26
|
import { FindChargeDisputesResponse } from '../model/findChargeDisputesResponse';
|
|
27
27
|
// @ts-ignore
|
|
@@ -1034,10 +1034,10 @@ export class CaseControllerService {
|
|
|
1034
1034
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1035
1035
|
* @param reportProgress flag to report request and response progress.
|
|
1036
1036
|
*/
|
|
1037
|
-
public updateCaseUsingPUT(caseId: string, caseFromRequest:
|
|
1038
|
-
public updateCaseUsingPUT(caseId: string, caseFromRequest:
|
|
1039
|
-
public updateCaseUsingPUT(caseId: string, caseFromRequest:
|
|
1040
|
-
public updateCaseUsingPUT(caseId: string, caseFromRequest:
|
|
1037
|
+
public updateCaseUsingPUT(caseId: string, caseFromRequest: CaseModelReq, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetCaseResponse>;
|
|
1038
|
+
public updateCaseUsingPUT(caseId: string, caseFromRequest: CaseModelReq, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetCaseResponse>>;
|
|
1039
|
+
public updateCaseUsingPUT(caseId: string, caseFromRequest: CaseModelReq, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetCaseResponse>>;
|
|
1040
|
+
public updateCaseUsingPUT(caseId: string, caseFromRequest: CaseModelReq, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
1041
1041
|
if (caseId === null || caseId === undefined) {
|
|
1042
1042
|
throw new Error('Required parameter caseId was null or undefined when calling updateCaseUsingPUT.');
|
|
1043
1043
|
}
|
|
@@ -0,0 +1,504 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* OffTheRecord Rest Service API - Devo
|
|
3
|
+
* A service to handle your traffic tickets
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/* tslint:disable:no-unused-variable member-ordering */
|
|
13
|
+
|
|
14
|
+
import { Inject, Injectable, Optional } from '@angular/core';
|
|
15
|
+
import { HttpClient, HttpHeaders, HttpParams,
|
|
16
|
+
HttpResponse, HttpEvent, HttpParameterCodec, HttpContext
|
|
17
|
+
} from '@angular/common/http';
|
|
18
|
+
import { CustomHttpParameterCodec } from '../encoder';
|
|
19
|
+
import { Observable } from 'rxjs';
|
|
20
|
+
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { AddViolationRequest } from '../model/addViolationRequest';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { AddViolationResponse } from '../model/addViolationResponse';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { GetRegionsWithViolationsResponse } from '../model/getRegionsWithViolationsResponse';
|
|
27
|
+
// @ts-ignore
|
|
28
|
+
import { GetTrafficViolationTypesResponse } from '../model/getTrafficViolationTypesResponse';
|
|
29
|
+
// @ts-ignore
|
|
30
|
+
import { ListViolationClassificationResponse } from '../model/listViolationClassificationResponse';
|
|
31
|
+
// @ts-ignore
|
|
32
|
+
import { UpdateViolationRequest } from '../model/updateViolationRequest';
|
|
33
|
+
|
|
34
|
+
// @ts-ignore
|
|
35
|
+
import { BASE_PATH, COLLECTION_FORMATS } from '../variables';
|
|
36
|
+
import { Configuration } from '../configuration';
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
@Injectable({
|
|
41
|
+
providedIn: 'root'
|
|
42
|
+
})
|
|
43
|
+
export class ViolationControllerService {
|
|
44
|
+
|
|
45
|
+
protected basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
|
|
46
|
+
public defaultHeaders = new HttpHeaders();
|
|
47
|
+
public configuration = new Configuration();
|
|
48
|
+
public encoder: HttpParameterCodec;
|
|
49
|
+
|
|
50
|
+
constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string|string[], @Optional() configuration: Configuration) {
|
|
51
|
+
if (configuration) {
|
|
52
|
+
this.configuration = configuration;
|
|
53
|
+
}
|
|
54
|
+
if (typeof this.configuration.basePath !== 'string') {
|
|
55
|
+
if (Array.isArray(basePath) && basePath.length > 0) {
|
|
56
|
+
basePath = basePath[0];
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (typeof basePath !== 'string') {
|
|
60
|
+
basePath = this.basePath;
|
|
61
|
+
}
|
|
62
|
+
this.configuration.basePath = basePath;
|
|
63
|
+
}
|
|
64
|
+
this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
// @ts-ignore
|
|
69
|
+
private addToHttpParams(httpParams: HttpParams, value: any, key?: string): HttpParams {
|
|
70
|
+
if (typeof value === "object" && value instanceof Date === false) {
|
|
71
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value);
|
|
72
|
+
} else {
|
|
73
|
+
httpParams = this.addToHttpParamsRecursive(httpParams, value, key);
|
|
74
|
+
}
|
|
75
|
+
return httpParams;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
private addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string): HttpParams {
|
|
79
|
+
if (value == null) {
|
|
80
|
+
return httpParams;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
if (typeof value === "object") {
|
|
84
|
+
if (Array.isArray(value)) {
|
|
85
|
+
(value as any[]).forEach( elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));
|
|
86
|
+
} else if (value instanceof Date) {
|
|
87
|
+
if (key != null) {
|
|
88
|
+
httpParams = httpParams.append(key, (value as Date).toISOString().substr(0, 10));
|
|
89
|
+
} else {
|
|
90
|
+
throw Error("key may not be null if value is Date");
|
|
91
|
+
}
|
|
92
|
+
} else {
|
|
93
|
+
Object.keys(value).forEach( k => httpParams = this.addToHttpParamsRecursive(
|
|
94
|
+
httpParams, value[k], key != null ? `${key}.${k}` : k));
|
|
95
|
+
}
|
|
96
|
+
} else if (key != null) {
|
|
97
|
+
httpParams = httpParams.append(key, value);
|
|
98
|
+
} else {
|
|
99
|
+
throw Error("key may not be null if value is not object or array");
|
|
100
|
+
}
|
|
101
|
+
return httpParams;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* addViolation
|
|
106
|
+
* @param isLive isLive
|
|
107
|
+
* @param request request
|
|
108
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
109
|
+
* @param reportProgress flag to report request and response progress.
|
|
110
|
+
*/
|
|
111
|
+
public addViolationUsingPOST(isLive: boolean, request: AddViolationRequest, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<AddViolationResponse>;
|
|
112
|
+
public addViolationUsingPOST(isLive: boolean, request: AddViolationRequest, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<AddViolationResponse>>;
|
|
113
|
+
public addViolationUsingPOST(isLive: boolean, request: AddViolationRequest, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<AddViolationResponse>>;
|
|
114
|
+
public addViolationUsingPOST(isLive: boolean, request: AddViolationRequest, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
115
|
+
if (isLive === null || isLive === undefined) {
|
|
116
|
+
throw new Error('Required parameter isLive was null or undefined when calling addViolationUsingPOST.');
|
|
117
|
+
}
|
|
118
|
+
if (request === null || request === undefined) {
|
|
119
|
+
throw new Error('Required parameter request was null or undefined when calling addViolationUsingPOST.');
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
let localVarQueryParameters = new HttpParams({encoder: this.encoder});
|
|
123
|
+
if (isLive !== undefined && isLive !== null) {
|
|
124
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
125
|
+
<any>isLive, 'isLive');
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
let localVarHeaders = this.defaultHeaders;
|
|
129
|
+
|
|
130
|
+
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
131
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
132
|
+
// to determine the Accept header
|
|
133
|
+
const httpHeaderAccepts: string[] = [
|
|
134
|
+
'*/*'
|
|
135
|
+
];
|
|
136
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
137
|
+
}
|
|
138
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
139
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
143
|
+
if (localVarHttpContext === undefined) {
|
|
144
|
+
localVarHttpContext = new HttpContext();
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
// to determine the Content-Type header
|
|
149
|
+
const consumes: string[] = [
|
|
150
|
+
'application/json'
|
|
151
|
+
];
|
|
152
|
+
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
|
|
153
|
+
if (httpContentTypeSelected !== undefined) {
|
|
154
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
158
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
159
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
160
|
+
responseType_ = 'text';
|
|
161
|
+
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
162
|
+
responseType_ = 'json';
|
|
163
|
+
} else {
|
|
164
|
+
responseType_ = 'blob';
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
let localVarPath = `/api/v1/violations`;
|
|
169
|
+
return this.httpClient.request<AddViolationResponse>('post', `${this.configuration.basePath}${localVarPath}`,
|
|
170
|
+
{
|
|
171
|
+
context: localVarHttpContext,
|
|
172
|
+
body: request,
|
|
173
|
+
params: localVarQueryParameters,
|
|
174
|
+
responseType: <any>responseType_,
|
|
175
|
+
withCredentials: this.configuration.withCredentials,
|
|
176
|
+
headers: localVarHeaders,
|
|
177
|
+
observe: observe,
|
|
178
|
+
reportProgress: reportProgress
|
|
179
|
+
}
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* deleteViolation
|
|
185
|
+
* @param violationId violationId
|
|
186
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
187
|
+
* @param reportProgress flag to report request and response progress.
|
|
188
|
+
*/
|
|
189
|
+
public deleteViolationUsingDELETE(violationId: number, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<any>;
|
|
190
|
+
public deleteViolationUsingDELETE(violationId: number, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<HttpResponse<any>>;
|
|
191
|
+
public deleteViolationUsingDELETE(violationId: number, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<HttpEvent<any>>;
|
|
192
|
+
public deleteViolationUsingDELETE(violationId: number, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<any> {
|
|
193
|
+
if (violationId === null || violationId === undefined) {
|
|
194
|
+
throw new Error('Required parameter violationId was null or undefined when calling deleteViolationUsingDELETE.');
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
let localVarHeaders = this.defaultHeaders;
|
|
198
|
+
|
|
199
|
+
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
200
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
201
|
+
// to determine the Accept header
|
|
202
|
+
const httpHeaderAccepts: string[] = [
|
|
203
|
+
];
|
|
204
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
205
|
+
}
|
|
206
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
207
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
211
|
+
if (localVarHttpContext === undefined) {
|
|
212
|
+
localVarHttpContext = new HttpContext();
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
217
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
218
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
219
|
+
responseType_ = 'text';
|
|
220
|
+
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
221
|
+
responseType_ = 'json';
|
|
222
|
+
} else {
|
|
223
|
+
responseType_ = 'blob';
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
let localVarPath = `/api/v1/violations/${this.configuration.encodeParam({name: "violationId", value: violationId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64"})}`;
|
|
228
|
+
return this.httpClient.request<any>('delete', `${this.configuration.basePath}${localVarPath}`,
|
|
229
|
+
{
|
|
230
|
+
context: localVarHttpContext,
|
|
231
|
+
responseType: <any>responseType_,
|
|
232
|
+
withCredentials: this.configuration.withCredentials,
|
|
233
|
+
headers: localVarHeaders,
|
|
234
|
+
observe: observe,
|
|
235
|
+
reportProgress: reportProgress
|
|
236
|
+
}
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* getRegionsWithViolations
|
|
242
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
243
|
+
* @param reportProgress flag to report request and response progress.
|
|
244
|
+
*/
|
|
245
|
+
public getRegionsWithViolationsUsingGET(observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetRegionsWithViolationsResponse>;
|
|
246
|
+
public getRegionsWithViolationsUsingGET(observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetRegionsWithViolationsResponse>>;
|
|
247
|
+
public getRegionsWithViolationsUsingGET(observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetRegionsWithViolationsResponse>>;
|
|
248
|
+
public getRegionsWithViolationsUsingGET(observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
249
|
+
|
|
250
|
+
let localVarHeaders = this.defaultHeaders;
|
|
251
|
+
|
|
252
|
+
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
253
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
254
|
+
// to determine the Accept header
|
|
255
|
+
const httpHeaderAccepts: string[] = [
|
|
256
|
+
'*/*'
|
|
257
|
+
];
|
|
258
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
259
|
+
}
|
|
260
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
261
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
265
|
+
if (localVarHttpContext === undefined) {
|
|
266
|
+
localVarHttpContext = new HttpContext();
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
271
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
272
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
273
|
+
responseType_ = 'text';
|
|
274
|
+
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
275
|
+
responseType_ = 'json';
|
|
276
|
+
} else {
|
|
277
|
+
responseType_ = 'blob';
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
let localVarPath = `/api/v1/violations/region-availability`;
|
|
282
|
+
return this.httpClient.request<GetRegionsWithViolationsResponse>('get', `${this.configuration.basePath}${localVarPath}`,
|
|
283
|
+
{
|
|
284
|
+
context: localVarHttpContext,
|
|
285
|
+
responseType: <any>responseType_,
|
|
286
|
+
withCredentials: this.configuration.withCredentials,
|
|
287
|
+
headers: localVarHeaders,
|
|
288
|
+
observe: observe,
|
|
289
|
+
reportProgress: reportProgress
|
|
290
|
+
}
|
|
291
|
+
);
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* getTrafficViolationTypes
|
|
296
|
+
* @param audience audience
|
|
297
|
+
* @param flavor flavor
|
|
298
|
+
* @param includePenalties includePenalties
|
|
299
|
+
* @param state state
|
|
300
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
301
|
+
* @param reportProgress flag to report request and response progress.
|
|
302
|
+
*/
|
|
303
|
+
public getTrafficViolationTypesUsingGET(audience?: string, flavor?: string, includePenalties?: boolean, state?: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetTrafficViolationTypesResponse>;
|
|
304
|
+
public getTrafficViolationTypesUsingGET(audience?: string, flavor?: string, includePenalties?: boolean, state?: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetTrafficViolationTypesResponse>>;
|
|
305
|
+
public getTrafficViolationTypesUsingGET(audience?: string, flavor?: string, includePenalties?: boolean, state?: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetTrafficViolationTypesResponse>>;
|
|
306
|
+
public getTrafficViolationTypesUsingGET(audience?: string, flavor?: string, includePenalties?: boolean, state?: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
307
|
+
|
|
308
|
+
let localVarQueryParameters = new HttpParams({encoder: this.encoder});
|
|
309
|
+
if (audience !== undefined && audience !== null) {
|
|
310
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
311
|
+
<any>audience, 'audience');
|
|
312
|
+
}
|
|
313
|
+
if (flavor !== undefined && flavor !== null) {
|
|
314
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
315
|
+
<any>flavor, 'flavor');
|
|
316
|
+
}
|
|
317
|
+
if (includePenalties !== undefined && includePenalties !== null) {
|
|
318
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
319
|
+
<any>includePenalties, 'includePenalties');
|
|
320
|
+
}
|
|
321
|
+
if (state !== undefined && state !== null) {
|
|
322
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
323
|
+
<any>state, 'state');
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
let localVarHeaders = this.defaultHeaders;
|
|
327
|
+
|
|
328
|
+
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
329
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
330
|
+
// to determine the Accept header
|
|
331
|
+
const httpHeaderAccepts: string[] = [
|
|
332
|
+
'*/*'
|
|
333
|
+
];
|
|
334
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
335
|
+
}
|
|
336
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
337
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
341
|
+
if (localVarHttpContext === undefined) {
|
|
342
|
+
localVarHttpContext = new HttpContext();
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
347
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
348
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
349
|
+
responseType_ = 'text';
|
|
350
|
+
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
351
|
+
responseType_ = 'json';
|
|
352
|
+
} else {
|
|
353
|
+
responseType_ = 'blob';
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
let localVarPath = `/api/v1/violations`;
|
|
358
|
+
return this.httpClient.request<GetTrafficViolationTypesResponse>('get', `${this.configuration.basePath}${localVarPath}`,
|
|
359
|
+
{
|
|
360
|
+
context: localVarHttpContext,
|
|
361
|
+
params: localVarQueryParameters,
|
|
362
|
+
responseType: <any>responseType_,
|
|
363
|
+
withCredentials: this.configuration.withCredentials,
|
|
364
|
+
headers: localVarHeaders,
|
|
365
|
+
observe: observe,
|
|
366
|
+
reportProgress: reportProgress
|
|
367
|
+
}
|
|
368
|
+
);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* listViolationClassifications
|
|
373
|
+
* @param regionCode regionCode
|
|
374
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
375
|
+
* @param reportProgress flag to report request and response progress.
|
|
376
|
+
*/
|
|
377
|
+
public listViolationClassificationsUsingGET(regionCode?: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<ListViolationClassificationResponse>;
|
|
378
|
+
public listViolationClassificationsUsingGET(regionCode?: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<ListViolationClassificationResponse>>;
|
|
379
|
+
public listViolationClassificationsUsingGET(regionCode?: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<ListViolationClassificationResponse>>;
|
|
380
|
+
public listViolationClassificationsUsingGET(regionCode?: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
|
|
381
|
+
|
|
382
|
+
let localVarQueryParameters = new HttpParams({encoder: this.encoder});
|
|
383
|
+
if (regionCode !== undefined && regionCode !== null) {
|
|
384
|
+
localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
|
|
385
|
+
<any>regionCode, 'regionCode');
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
let localVarHeaders = this.defaultHeaders;
|
|
389
|
+
|
|
390
|
+
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
391
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
392
|
+
// to determine the Accept header
|
|
393
|
+
const httpHeaderAccepts: string[] = [
|
|
394
|
+
'*/*'
|
|
395
|
+
];
|
|
396
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
397
|
+
}
|
|
398
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
399
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
403
|
+
if (localVarHttpContext === undefined) {
|
|
404
|
+
localVarHttpContext = new HttpContext();
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
409
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
410
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
411
|
+
responseType_ = 'text';
|
|
412
|
+
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
413
|
+
responseType_ = 'json';
|
|
414
|
+
} else {
|
|
415
|
+
responseType_ = 'blob';
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
let localVarPath = `/api/v1/violations/classifications`;
|
|
420
|
+
return this.httpClient.request<ListViolationClassificationResponse>('get', `${this.configuration.basePath}${localVarPath}`,
|
|
421
|
+
{
|
|
422
|
+
context: localVarHttpContext,
|
|
423
|
+
params: localVarQueryParameters,
|
|
424
|
+
responseType: <any>responseType_,
|
|
425
|
+
withCredentials: this.configuration.withCredentials,
|
|
426
|
+
headers: localVarHeaders,
|
|
427
|
+
observe: observe,
|
|
428
|
+
reportProgress: reportProgress
|
|
429
|
+
}
|
|
430
|
+
);
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* updateViolation
|
|
435
|
+
* @param violationId violationId
|
|
436
|
+
* @param request request
|
|
437
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
438
|
+
* @param reportProgress flag to report request and response progress.
|
|
439
|
+
*/
|
|
440
|
+
public updateViolationUsingPUT(violationId: number, request: UpdateViolationRequest, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<any>;
|
|
441
|
+
public updateViolationUsingPUT(violationId: number, request: UpdateViolationRequest, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<HttpResponse<any>>;
|
|
442
|
+
public updateViolationUsingPUT(violationId: number, request: UpdateViolationRequest, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<HttpEvent<any>>;
|
|
443
|
+
public updateViolationUsingPUT(violationId: number, request: UpdateViolationRequest, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: undefined, context?: HttpContext}): Observable<any> {
|
|
444
|
+
if (violationId === null || violationId === undefined) {
|
|
445
|
+
throw new Error('Required parameter violationId was null or undefined when calling updateViolationUsingPUT.');
|
|
446
|
+
}
|
|
447
|
+
if (request === null || request === undefined) {
|
|
448
|
+
throw new Error('Required parameter request was null or undefined when calling updateViolationUsingPUT.');
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
let localVarHeaders = this.defaultHeaders;
|
|
452
|
+
|
|
453
|
+
let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
|
|
454
|
+
if (localVarHttpHeaderAcceptSelected === undefined) {
|
|
455
|
+
// to determine the Accept header
|
|
456
|
+
const httpHeaderAccepts: string[] = [
|
|
457
|
+
];
|
|
458
|
+
localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
459
|
+
}
|
|
460
|
+
if (localVarHttpHeaderAcceptSelected !== undefined) {
|
|
461
|
+
localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
let localVarHttpContext: HttpContext | undefined = options && options.context;
|
|
465
|
+
if (localVarHttpContext === undefined) {
|
|
466
|
+
localVarHttpContext = new HttpContext();
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
// to determine the Content-Type header
|
|
471
|
+
const consumes: string[] = [
|
|
472
|
+
'application/json'
|
|
473
|
+
];
|
|
474
|
+
const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);
|
|
475
|
+
if (httpContentTypeSelected !== undefined) {
|
|
476
|
+
localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
let responseType_: 'text' | 'json' | 'blob' = 'json';
|
|
480
|
+
if (localVarHttpHeaderAcceptSelected) {
|
|
481
|
+
if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
|
|
482
|
+
responseType_ = 'text';
|
|
483
|
+
} else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
|
|
484
|
+
responseType_ = 'json';
|
|
485
|
+
} else {
|
|
486
|
+
responseType_ = 'blob';
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
let localVarPath = `/api/v1/violations/${this.configuration.encodeParam({name: "violationId", value: violationId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int64"})}`;
|
|
491
|
+
return this.httpClient.request<any>('put', `${this.configuration.basePath}${localVarPath}`,
|
|
492
|
+
{
|
|
493
|
+
context: localVarHttpContext,
|
|
494
|
+
body: request,
|
|
495
|
+
responseType: <any>responseType_,
|
|
496
|
+
withCredentials: this.configuration.withCredentials,
|
|
497
|
+
headers: localVarHeaders,
|
|
498
|
+
observe: observe,
|
|
499
|
+
reportProgress: reportProgress
|
|
500
|
+
}
|
|
501
|
+
);
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
}
|