@otr-app/shared-backend-generated-client 2.5.129 → 2.5.131

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.
Files changed (46) hide show
  1. package/dist/angular/.openapi-generator/FILES +3 -0
  2. package/dist/angular/api/activityFeedController.service.ts +4 -4
  3. package/dist/angular/api/api.ts +3 -1
  4. package/dist/angular/api/lawfirmDashboardController.service.ts +173 -0
  5. package/dist/angular/api.module.ts +1 -0
  6. package/dist/angular/model/addNewCaseMessageRequest.ts +1 -0
  7. package/dist/angular/model/caseOutcomeModel.ts +15 -2
  8. package/dist/angular/model/earningsByPeriodDto.ts +18 -0
  9. package/dist/angular/model/getLawfirmGrossEarningsResponse.ts +18 -0
  10. package/dist/angular/model/models.ts +2 -0
  11. package/dist/otrBackendService.js +54 -0
  12. package/dist/otrBackendService.min.js +4 -4
  13. package/dist/typescript/api/ActivityFeedControllerApi.d.ts +1 -1
  14. package/dist/typescript/api/LawfirmDashboardControllerApi.d.ts +29 -0
  15. package/dist/typescript/api/LawfirmDashboardControllerApi.js +65 -0
  16. package/dist/typescript/api/api.d.ts +3 -1
  17. package/dist/typescript/api/api.js +3 -1
  18. package/dist/typescript/api.module.js +1 -0
  19. package/dist/typescript/model/AddNewCaseMessageRequest.d.ts +1 -0
  20. package/dist/typescript/model/CaseOutcomeModel.d.ts +14 -1
  21. package/dist/typescript/model/CaseOutcomeModel.js +13 -0
  22. package/dist/typescript/model/EarningsByPeriodDto.d.ts +15 -0
  23. package/dist/typescript/model/EarningsByPeriodDto.js +12 -0
  24. package/dist/typescript/model/GetLawfirmGrossEarningsResponse.d.ts +15 -0
  25. package/dist/typescript/model/GetLawfirmGrossEarningsResponse.js +12 -0
  26. package/dist/typescript/model/models.d.ts +2 -0
  27. package/dist/typescript/model/models.js +2 -0
  28. package/dist/typescript-fetch/apis/ActivityFeedControllerApi.d.ts +14 -1
  29. package/dist/typescript-fetch/apis/ActivityFeedControllerApi.js +13 -0
  30. package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.d.ts +42 -0
  31. package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.js +80 -0
  32. package/dist/typescript-fetch/apis/index.d.ts +1 -0
  33. package/dist/typescript-fetch/apis/index.js +1 -0
  34. package/dist/typescript-fetch/models/AddNewCaseMessageRequest.d.ts +6 -0
  35. package/dist/typescript-fetch/models/AddNewCaseMessageRequest.js +2 -0
  36. package/dist/typescript-fetch/models/CaseOutcomeModel.d.ts +14 -1
  37. package/dist/typescript-fetch/models/CaseOutcomeModel.js +13 -0
  38. package/dist/typescript-fetch/models/EarningsByPeriodDto.d.ts +33 -0
  39. package/dist/typescript-fetch/models/EarningsByPeriodDto.js +38 -0
  40. package/dist/typescript-fetch/models/GetLawfirmGrossEarningsResponse.d.ts +28 -0
  41. package/dist/typescript-fetch/models/GetLawfirmGrossEarningsResponse.js +37 -0
  42. package/dist/typescript-fetch/models/index.d.ts +2 -0
  43. package/dist/typescript-fetch/models/index.js +2 -0
  44. package/dist/typescript-open-api/otr-backend.d.ts +100 -1
  45. package/dist/typescript-open-api/otr-backend.js +20 -0
  46. package/package.json +1 -1
@@ -39,5 +39,5 @@ export declare class ActivityFeedControllerApi {
39
39
  * @param resolutionStatuses resolutionStatuses
40
40
  * @param startDate startDate
41
41
  */
42
- listCaseOutcomesUsingGET(includeCriminal?: boolean, limit?: number, regionCode?: string, resolutionStatuses?: 'LOST' | 'POINTS_REDUCED' | 'REDUCED_TO_NON_MOVER' | 'TICKET_DISMISSED', startDate?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListCaseOutcomesResponse>;
42
+ listCaseOutcomesUsingGET(includeCriminal?: boolean, limit?: number, regionCode?: string, resolutionStatuses?: 'AMENDED_DOWN_WITHIN_CLASS' | 'AMENDED_TO_INFRACTION' | 'CLIENT_FIRED_LAWFIRM' | 'CLIENT_FORCED_LOSS' | 'CLIENT_PAID_FINE' | 'CLIENT_UNRESPONSIVE' | 'DEFERRED' | 'DIVERTED' | 'FEES_DISPUTED' | 'FINE_REDUCTION_ONLY' | 'LAWFIRM_WITHDRAWN' | 'LOST' | 'POINTS_REDUCED' | 'REDUCED_TO_NON_MOVER' | 'RESOLVED_NON_PAYMENT' | 'TICKET_DISMISSED' | 'TRAFFIC_SCHOOL', startDate?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListCaseOutcomesResponse>;
43
43
  }
@@ -0,0 +1,29 @@
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
+ import * as models from '../model/models';
13
+ export declare class LawfirmDashboardControllerApi {
14
+ protected $http: ng.IHttpService;
15
+ protected $httpParamSerializer?: (d: any) => any;
16
+ protected basePath: string;
17
+ defaultHeaders: any;
18
+ static $inject: string[];
19
+ constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
20
+ /**
21
+ *
22
+ * @summary getLawfirmGrossEarnings
23
+ * @param lawfirmId lawfirmId
24
+ * @param period period
25
+ * @param endDate endDate
26
+ * @param startDate startDate
27
+ */
28
+ getLawfirmGrossEarningsUsingGET(lawfirmId: number, period: 'DAILY' | 'HOURLY' | 'MONTHLY' | 'WEEKLY', endDate?: string, startDate?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmGrossEarningsResponse>;
29
+ }
@@ -0,0 +1,65 @@
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
+ export class LawfirmDashboardControllerApi {
14
+ constructor($http, $httpParamSerializer, basePath) {
15
+ this.$http = $http;
16
+ this.$httpParamSerializer = $httpParamSerializer;
17
+ this.basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
18
+ this.defaultHeaders = {};
19
+ if (basePath !== undefined) {
20
+ this.basePath = basePath;
21
+ }
22
+ }
23
+ /**
24
+ *
25
+ * @summary getLawfirmGrossEarnings
26
+ * @param lawfirmId lawfirmId
27
+ * @param period period
28
+ * @param endDate endDate
29
+ * @param startDate startDate
30
+ */
31
+ getLawfirmGrossEarningsUsingGET(lawfirmId, period, endDate, startDate, extraHttpRequestParams) {
32
+ const localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/dashboard/gross-earnings'
33
+ .replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
34
+ let queryParameters = {};
35
+ let headerParams = Object.assign({}, this.defaultHeaders);
36
+ // verify required parameter 'lawfirmId' is not null or undefined
37
+ if (lawfirmId === null || lawfirmId === undefined) {
38
+ throw new Error('Required parameter lawfirmId was null or undefined when calling getLawfirmGrossEarningsUsingGET.');
39
+ }
40
+ // verify required parameter 'period' is not null or undefined
41
+ if (period === null || period === undefined) {
42
+ throw new Error('Required parameter period was null or undefined when calling getLawfirmGrossEarningsUsingGET.');
43
+ }
44
+ if (endDate !== undefined) {
45
+ queryParameters['endDate'] = endDate;
46
+ }
47
+ if (period !== undefined) {
48
+ queryParameters['period'] = period;
49
+ }
50
+ if (startDate !== undefined) {
51
+ queryParameters['startDate'] = startDate;
52
+ }
53
+ let httpRequestParams = {
54
+ method: 'GET',
55
+ url: localVarPath,
56
+ params: queryParameters,
57
+ headers: headerParams
58
+ };
59
+ if (extraHttpRequestParams) {
60
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
61
+ }
62
+ return this.$http(httpRequestParams);
63
+ }
64
+ }
65
+ LawfirmDashboardControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
@@ -118,6 +118,8 @@ export * from './LawfirmCasesControllerApi';
118
118
  import { LawfirmCasesControllerApi } from './LawfirmCasesControllerApi';
119
119
  export * from './LawfirmControllerApi';
120
120
  import { LawfirmControllerApi } from './LawfirmControllerApi';
121
+ export * from './LawfirmDashboardControllerApi';
122
+ import { LawfirmDashboardControllerApi } from './LawfirmDashboardControllerApi';
121
123
  export * from './LawfirmDocumentControllerApi';
122
124
  import { LawfirmDocumentControllerApi } from './LawfirmDocumentControllerApi';
123
125
  export * from './LawfirmFeeCoverageControllerApi';
@@ -228,4 +230,4 @@ export * from './WebsocketMessageControllerApi';
228
230
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
229
231
  export * from './WorkflowStateControllerApi';
230
232
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
231
- export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof DriverLicenseControllerApi | typeof EmployeeControllerApi | typeof EventBridgeEmailNotificationControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof IntercomTicketControllerApi | typeof IntercomWebhookControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPipelineControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
233
+ export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BranchLinkControllerApi | typeof CaptchaControllerApi | typeof CaseActionsControllerApi | typeof CaseControllerApi | typeof CaseCounterOfferControllerApi | typeof CaseCreationControllerApi | typeof CaseDeclineControllerApi | typeof CaseNotesControllerApi | typeof CasePaymentControllerApi | typeof CaseReferralCodeControllerApi | typeof CaseRefundControllerApi | typeof CaseResolutionControllerApi | typeof CaseStatusControllerApi | typeof CaseTransferControllerApi | typeof CaseUserControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | typeof ContactLoopWebhookControllerApi | typeof ContactTimelineControllerApi | typeof ConversationControllerApi | typeof CountyControllerApi | typeof CourtControllerApi | typeof CrmControllerApi | typeof CustomerLeadControllerApi | typeof CustomerReviewControllerApi | typeof CustomerServiceAgentBookingsControllerApi | typeof CustomerServiceAgentControllerApi | typeof DashboardControllerApi | typeof DirectMailControllerApi | typeof DripControllerApi | typeof DripWebhooksControllerApi | typeof DriverLicenseControllerApi | typeof EmployeeControllerApi | typeof EventBridgeEmailNotificationControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | typeof IntercomTicketControllerApi | typeof IntercomWebhookControllerApi | typeof LawfirmCaseDecisionControllerApi | typeof LawfirmCasesControllerApi | typeof LawfirmControllerApi | typeof LawfirmDashboardControllerApi | typeof LawfirmDocumentControllerApi | typeof LawfirmFeeCoverageControllerApi | typeof LawfirmPaymentModelControllerApi | typeof LawfirmRatesControllerApi | typeof LawfirmSettingsControllerApi | typeof LawfirmStorefrontControllerApi | typeof LawfirmSurchargeControllerApi | typeof LawfirmTransactionsControllerApi | typeof LawyerControllerApi | typeof LegalServicesControllerApi | typeof LineItemControllerApi | typeof ListCasesControllerApi | typeof MediaCreationControllerApi | typeof MessagesControllerApi | typeof NotesControllerApi | typeof OcrPipelineControllerApi | typeof OcrPredictionControllerApi | typeof OnDemandRequestControllerApi | typeof OneTimePasswordControllerApi | typeof PhoneLeadsControllerApi | typeof PushNotificationControllerApi | typeof RecurringBillingControllerApi | typeof RefLinkControllerApi | typeof ReferralCodeControllerApi | typeof ReferralControllerApi | typeof ReferralSourceControllerApi | typeof RefundEligibilityControllerApi | typeof RegistrationControllerApi | typeof ReportingControllerApi | typeof ScheduledTaskControllerApi | typeof SingleSignOnControllerApi | typeof SnsListenerControllerApi | typeof SocialLoginControllerApi | typeof StripeCardControllerApi | typeof StripeControllerApi | typeof StripeSyncControllerApi | typeof StripeWebhookControllerApi | typeof TicketReviewControllerApi | typeof UrlRedirectControllerApi | typeof UserAccountControllerApi | typeof UserAuditControllerApi | typeof UserControllerApi | typeof UserPasswordControllerApi | typeof UserProfileControllerApi | typeof UserSearchControllerApi | typeof UserSettingsControllerApi | typeof UserSocialProfileControllerApi | typeof UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
@@ -118,6 +118,8 @@ export * from './LawfirmCasesControllerApi';
118
118
  import { LawfirmCasesControllerApi } from './LawfirmCasesControllerApi';
119
119
  export * from './LawfirmControllerApi';
120
120
  import { LawfirmControllerApi } from './LawfirmControllerApi';
121
+ export * from './LawfirmDashboardControllerApi';
122
+ import { LawfirmDashboardControllerApi } from './LawfirmDashboardControllerApi';
121
123
  export * from './LawfirmDocumentControllerApi';
122
124
  import { LawfirmDocumentControllerApi } from './LawfirmDocumentControllerApi';
123
125
  export * from './LawfirmFeeCoverageControllerApi';
@@ -228,4 +230,4 @@ export * from './WebsocketMessageControllerApi';
228
230
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
229
231
  export * from './WorkflowStateControllerApi';
230
232
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
231
- export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuditLogControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BranchLinkControllerApi, CaptchaControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCounterOfferControllerApi, CaseCreationControllerApi, CaseDeclineControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CitationAuditControllerApi, CitationControllerApi, CoachingCardsControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactLoopWebhookControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, DriverLicenseControllerApi, EmployeeControllerApi, EventBridgeEmailNotificationControllerApi, ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, HubspotWebhookControllerApi, InsuranceCalculatorControllerApi, IntercomTicketControllerApi, IntercomWebhookControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, OcrPipelineControllerApi, OcrPredictionControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SingleSignOnControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UserSettingsControllerApi, UserSocialProfileControllerApi, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
233
+ export const APIS = [ActionRequiredControllerApi, ActivityFeedControllerApi, AddressControllerApi, AlertNotificationControllerApi, AppEventsControllerApi, AuditLawfirmEventsControllerApi, AuditLogControllerApi, AuthenticationControllerApi, AwsCredentialsControllerApi, BranchLinkControllerApi, CaptchaControllerApi, CaseActionsControllerApi, CaseControllerApi, CaseCounterOfferControllerApi, CaseCreationControllerApi, CaseDeclineControllerApi, CaseNotesControllerApi, CasePaymentControllerApi, CaseReferralCodeControllerApi, CaseRefundControllerApi, CaseResolutionControllerApi, CaseStatusControllerApi, CaseTransferControllerApi, CaseUserControllerApi, CitationAuditControllerApi, CitationControllerApi, CoachingCardsControllerApi, ConfigurationControllerApi, ConsoleListControllerApi, ContactLoopWebhookControllerApi, ContactTimelineControllerApi, ConversationControllerApi, CountyControllerApi, CourtControllerApi, CrmControllerApi, CustomerLeadControllerApi, CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi, DashboardControllerApi, DirectMailControllerApi, DripControllerApi, DripWebhooksControllerApi, DriverLicenseControllerApi, EmployeeControllerApi, EventBridgeEmailNotificationControllerApi, ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi, FeedbackControllerApi, FreshcallerControllerApi, FreshdeskTicketControllerApi, GetCaseControllerApi, HouseholdMateControllerApi, HubspotWebhookControllerApi, InsuranceCalculatorControllerApi, IntercomTicketControllerApi, IntercomWebhookControllerApi, LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi, LawfirmControllerApi, LawfirmDashboardControllerApi, LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi, LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi, LawyerControllerApi, LegalServicesControllerApi, LineItemControllerApi, ListCasesControllerApi, MediaCreationControllerApi, MessagesControllerApi, NotesControllerApi, OcrPipelineControllerApi, OcrPredictionControllerApi, OnDemandRequestControllerApi, OneTimePasswordControllerApi, PhoneLeadsControllerApi, PushNotificationControllerApi, RecurringBillingControllerApi, RefLinkControllerApi, ReferralCodeControllerApi, ReferralControllerApi, ReferralSourceControllerApi, RefundEligibilityControllerApi, RegistrationControllerApi, ReportingControllerApi, ScheduledTaskControllerApi, SingleSignOnControllerApi, SnsListenerControllerApi, SocialLoginControllerApi, StripeCardControllerApi, StripeControllerApi, StripeSyncControllerApi, StripeWebhookControllerApi, TicketReviewControllerApi, UrlRedirectControllerApi, UserAccountControllerApi, UserAuditControllerApi, UserControllerApi, UserPasswordControllerApi, UserProfileControllerApi, UserSearchControllerApi, UserSettingsControllerApi, UserSocialProfileControllerApi, UtilityControllerApi, ValidationControllerApi, VerificationControllerApi, ViolationControllerApi, ViolationPenaltyControllerApi, WatchlistsControllerApi, WebsocketMessageControllerApi, WorkflowStateControllerApi];
@@ -61,6 +61,7 @@ const apiModule = angular.module('api', [])
61
61
  .service('LawfirmCaseDecisionControllerApi', api.LawfirmCaseDecisionControllerApi)
62
62
  .service('LawfirmCasesControllerApi', api.LawfirmCasesControllerApi)
63
63
  .service('LawfirmControllerApi', api.LawfirmControllerApi)
64
+ .service('LawfirmDashboardControllerApi', api.LawfirmDashboardControllerApi)
64
65
  .service('LawfirmDocumentControllerApi', api.LawfirmDocumentControllerApi)
65
66
  .service('LawfirmFeeCoverageControllerApi', api.LawfirmFeeCoverageControllerApi)
66
67
  .service('LawfirmPaymentModelControllerApi', api.LawfirmPaymentModelControllerApi)
@@ -12,4 +12,5 @@
12
12
  import * as models from './models';
13
13
  export interface AddNewCaseMessageRequest {
14
14
  "messageDomain"?: models.MessageInputModel;
15
+ "suppressSms"?: boolean;
15
16
  }
@@ -23,9 +23,22 @@ export interface CaseOutcomeModel {
23
23
  }
24
24
  export declare namespace CaseOutcomeModel {
25
25
  enum ResolutionStatusEnum {
26
+ AMENDEDDOWNWITHINCLASS,
27
+ AMENDEDTOINFRACTION,
28
+ CLIENTFIREDLAWFIRM,
29
+ CLIENTFORCEDLOSS,
30
+ CLIENTPAIDFINE,
31
+ CLIENTUNRESPONSIVE,
32
+ DEFERRED,
33
+ DIVERTED,
34
+ FEESDISPUTED,
35
+ FINEREDUCTIONONLY,
36
+ LAWFIRMWITHDRAWN,
26
37
  LOST,
27
38
  POINTSREDUCED,
28
39
  REDUCEDTONONMOVER,
29
- TICKETDISMISSED
40
+ RESOLVEDNONPAYMENT,
41
+ TICKETDISMISSED,
42
+ TRAFFICSCHOOL
30
43
  }
31
44
  }
@@ -13,9 +13,22 @@ export var CaseOutcomeModel;
13
13
  (function (CaseOutcomeModel) {
14
14
  let ResolutionStatusEnum;
15
15
  (function (ResolutionStatusEnum) {
16
+ ResolutionStatusEnum[ResolutionStatusEnum["AMENDEDDOWNWITHINCLASS"] = 'AMENDED_DOWN_WITHIN_CLASS'] = "AMENDEDDOWNWITHINCLASS";
17
+ ResolutionStatusEnum[ResolutionStatusEnum["AMENDEDTOINFRACTION"] = 'AMENDED_TO_INFRACTION'] = "AMENDEDTOINFRACTION";
18
+ ResolutionStatusEnum[ResolutionStatusEnum["CLIENTFIREDLAWFIRM"] = 'CLIENT_FIRED_LAWFIRM'] = "CLIENTFIREDLAWFIRM";
19
+ ResolutionStatusEnum[ResolutionStatusEnum["CLIENTFORCEDLOSS"] = 'CLIENT_FORCED_LOSS'] = "CLIENTFORCEDLOSS";
20
+ ResolutionStatusEnum[ResolutionStatusEnum["CLIENTPAIDFINE"] = 'CLIENT_PAID_FINE'] = "CLIENTPAIDFINE";
21
+ ResolutionStatusEnum[ResolutionStatusEnum["CLIENTUNRESPONSIVE"] = 'CLIENT_UNRESPONSIVE'] = "CLIENTUNRESPONSIVE";
22
+ ResolutionStatusEnum[ResolutionStatusEnum["DEFERRED"] = 'DEFERRED'] = "DEFERRED";
23
+ ResolutionStatusEnum[ResolutionStatusEnum["DIVERTED"] = 'DIVERTED'] = "DIVERTED";
24
+ ResolutionStatusEnum[ResolutionStatusEnum["FEESDISPUTED"] = 'FEES_DISPUTED'] = "FEESDISPUTED";
25
+ ResolutionStatusEnum[ResolutionStatusEnum["FINEREDUCTIONONLY"] = 'FINE_REDUCTION_ONLY'] = "FINEREDUCTIONONLY";
26
+ ResolutionStatusEnum[ResolutionStatusEnum["LAWFIRMWITHDRAWN"] = 'LAWFIRM_WITHDRAWN'] = "LAWFIRMWITHDRAWN";
16
27
  ResolutionStatusEnum[ResolutionStatusEnum["LOST"] = 'LOST'] = "LOST";
17
28
  ResolutionStatusEnum[ResolutionStatusEnum["POINTSREDUCED"] = 'POINTS_REDUCED'] = "POINTSREDUCED";
18
29
  ResolutionStatusEnum[ResolutionStatusEnum["REDUCEDTONONMOVER"] = 'REDUCED_TO_NON_MOVER'] = "REDUCEDTONONMOVER";
30
+ ResolutionStatusEnum[ResolutionStatusEnum["RESOLVEDNONPAYMENT"] = 'RESOLVED_NON_PAYMENT'] = "RESOLVEDNONPAYMENT";
19
31
  ResolutionStatusEnum[ResolutionStatusEnum["TICKETDISMISSED"] = 'TICKET_DISMISSED'] = "TICKETDISMISSED";
32
+ ResolutionStatusEnum[ResolutionStatusEnum["TRAFFICSCHOOL"] = 'TRAFFIC_SCHOOL'] = "TRAFFICSCHOOL";
20
33
  })(ResolutionStatusEnum = CaseOutcomeModel.ResolutionStatusEnum || (CaseOutcomeModel.ResolutionStatusEnum = {}));
21
34
  })(CaseOutcomeModel || (CaseOutcomeModel = {}));
@@ -0,0 +1,15 @@
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
+ export interface EarningsByPeriodDto {
13
+ "periodDate"?: string;
14
+ "totalAmountInCents"?: number;
15
+ }
@@ -0,0 +1,12 @@
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
+ export {};
@@ -0,0 +1,15 @@
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
+ import * as models from './models';
13
+ export interface GetLawfirmGrossEarningsResponse {
14
+ "earnings"?: Array<models.EarningsByPeriodDto>;
15
+ }
@@ -0,0 +1,12 @@
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
+ export {};
@@ -228,6 +228,7 @@ export * from './DripWebhookData';
228
228
  export * from './DripWebhookEvent';
229
229
  export * from './DriverLicenseModel';
230
230
  export * from './Duration';
231
+ export * from './EarningsByPeriodDto';
231
232
  export * from './EditConversationMessageRequest';
232
233
  export * from './EditCustomerReviewRequest';
233
234
  export * from './EnableViolationModel';
@@ -340,6 +341,7 @@ export * from './GetLawfirmFeeCoverageResponse';
340
341
  export * from './GetLawfirmFeeModel';
341
342
  export * from './GetLawfirmFeesResponse';
342
343
  export * from './GetLawfirmFinancialTransactionsResponse';
344
+ export * from './GetLawfirmGrossEarningsResponse';
343
345
  export * from './GetLawfirmInboxMessagesResponse';
344
346
  export * from './GetLawfirmJobTitleResponse';
345
347
  export * from './GetLawfirmLawyersResponse';
@@ -228,6 +228,7 @@ export * from './DripWebhookData';
228
228
  export * from './DripWebhookEvent';
229
229
  export * from './DriverLicenseModel';
230
230
  export * from './Duration';
231
+ export * from './EarningsByPeriodDto';
231
232
  export * from './EditConversationMessageRequest';
232
233
  export * from './EditCustomerReviewRequest';
233
234
  export * from './EnableViolationModel';
@@ -340,6 +341,7 @@ export * from './GetLawfirmFeeCoverageResponse';
340
341
  export * from './GetLawfirmFeeModel';
341
342
  export * from './GetLawfirmFeesResponse';
342
343
  export * from './GetLawfirmFinancialTransactionsResponse';
344
+ export * from './GetLawfirmGrossEarningsResponse';
343
345
  export * from './GetLawfirmInboxMessagesResponse';
344
346
  export * from './GetLawfirmJobTitleResponse';
345
347
  export * from './GetLawfirmLawyersResponse';
@@ -65,8 +65,21 @@ export declare enum ListActivityFeedUsingGETActivityTypeEnum {
65
65
  * @enum {string}
66
66
  */
67
67
  export declare enum ListCaseOutcomesUsingGETResolutionStatusesEnum {
68
+ AMENDEDDOWNWITHINCLASS = "AMENDED_DOWN_WITHIN_CLASS",
69
+ AMENDEDTOINFRACTION = "AMENDED_TO_INFRACTION",
70
+ CLIENTFIREDLAWFIRM = "CLIENT_FIRED_LAWFIRM",
71
+ CLIENTFORCEDLOSS = "CLIENT_FORCED_LOSS",
72
+ CLIENTPAIDFINE = "CLIENT_PAID_FINE",
73
+ CLIENTUNRESPONSIVE = "CLIENT_UNRESPONSIVE",
74
+ DEFERRED = "DEFERRED",
75
+ DIVERTED = "DIVERTED",
76
+ FEESDISPUTED = "FEES_DISPUTED",
77
+ FINEREDUCTIONONLY = "FINE_REDUCTION_ONLY",
78
+ LAWFIRMWITHDRAWN = "LAWFIRM_WITHDRAWN",
68
79
  LOST = "LOST",
69
80
  POINTSREDUCED = "POINTS_REDUCED",
70
81
  REDUCEDTONONMOVER = "REDUCED_TO_NON_MOVER",
71
- TICKETDISMISSED = "TICKET_DISMISSED"
82
+ RESOLVEDNONPAYMENT = "RESOLVED_NON_PAYMENT",
83
+ TICKETDISMISSED = "TICKET_DISMISSED",
84
+ TRAFFICSCHOOL = "TRAFFIC_SCHOOL"
72
85
  }
@@ -137,8 +137,21 @@ export var ListActivityFeedUsingGETActivityTypeEnum;
137
137
  */
138
138
  export var ListCaseOutcomesUsingGETResolutionStatusesEnum;
139
139
  (function (ListCaseOutcomesUsingGETResolutionStatusesEnum) {
140
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["AMENDEDDOWNWITHINCLASS"] = "AMENDED_DOWN_WITHIN_CLASS";
141
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["AMENDEDTOINFRACTION"] = "AMENDED_TO_INFRACTION";
142
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["CLIENTFIREDLAWFIRM"] = "CLIENT_FIRED_LAWFIRM";
143
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["CLIENTFORCEDLOSS"] = "CLIENT_FORCED_LOSS";
144
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["CLIENTPAIDFINE"] = "CLIENT_PAID_FINE";
145
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["CLIENTUNRESPONSIVE"] = "CLIENT_UNRESPONSIVE";
146
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["DEFERRED"] = "DEFERRED";
147
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["DIVERTED"] = "DIVERTED";
148
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["FEESDISPUTED"] = "FEES_DISPUTED";
149
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["FINEREDUCTIONONLY"] = "FINE_REDUCTION_ONLY";
150
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["LAWFIRMWITHDRAWN"] = "LAWFIRM_WITHDRAWN";
140
151
  ListCaseOutcomesUsingGETResolutionStatusesEnum["LOST"] = "LOST";
141
152
  ListCaseOutcomesUsingGETResolutionStatusesEnum["POINTSREDUCED"] = "POINTS_REDUCED";
142
153
  ListCaseOutcomesUsingGETResolutionStatusesEnum["REDUCEDTONONMOVER"] = "REDUCED_TO_NON_MOVER";
154
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["RESOLVEDNONPAYMENT"] = "RESOLVED_NON_PAYMENT";
143
155
  ListCaseOutcomesUsingGETResolutionStatusesEnum["TICKETDISMISSED"] = "TICKET_DISMISSED";
156
+ ListCaseOutcomesUsingGETResolutionStatusesEnum["TRAFFICSCHOOL"] = "TRAFFIC_SCHOOL";
144
157
  })(ListCaseOutcomesUsingGETResolutionStatusesEnum || (ListCaseOutcomesUsingGETResolutionStatusesEnum = {}));
@@ -0,0 +1,42 @@
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
+ import * as runtime from '../runtime';
13
+ import { GetLawfirmGrossEarningsResponse } from '../models';
14
+ export interface GetLawfirmGrossEarningsUsingGETRequest {
15
+ lawfirmId: number;
16
+ period: GetLawfirmGrossEarningsUsingGETPeriodEnum;
17
+ endDate?: Date;
18
+ startDate?: Date;
19
+ }
20
+ /**
21
+ *
22
+ */
23
+ export declare class LawfirmDashboardControllerApi extends runtime.BaseAPI {
24
+ /**
25
+ * getLawfirmGrossEarnings
26
+ */
27
+ getLawfirmGrossEarningsUsingGETRaw(requestParameters: GetLawfirmGrossEarningsUsingGETRequest): Promise<runtime.ApiResponse<GetLawfirmGrossEarningsResponse>>;
28
+ /**
29
+ * getLawfirmGrossEarnings
30
+ */
31
+ getLawfirmGrossEarningsUsingGET(requestParameters: GetLawfirmGrossEarningsUsingGETRequest): Promise<GetLawfirmGrossEarningsResponse>;
32
+ }
33
+ /**
34
+ * @export
35
+ * @enum {string}
36
+ */
37
+ export declare enum GetLawfirmGrossEarningsUsingGETPeriodEnum {
38
+ DAILY = "DAILY",
39
+ HOURLY = "HOURLY",
40
+ MONTHLY = "MONTHLY",
41
+ WEEKLY = "WEEKLY"
42
+ }
@@ -0,0 +1,80 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
15
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
16
+ return new (P || (P = Promise))(function (resolve, reject) {
17
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
18
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
19
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
20
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
21
+ });
22
+ };
23
+ import * as runtime from '../runtime';
24
+ import { GetLawfirmGrossEarningsResponseFromJSON, } from '../models';
25
+ /**
26
+ *
27
+ */
28
+ export class LawfirmDashboardControllerApi extends runtime.BaseAPI {
29
+ /**
30
+ * getLawfirmGrossEarnings
31
+ */
32
+ getLawfirmGrossEarningsUsingGETRaw(requestParameters) {
33
+ return __awaiter(this, void 0, void 0, function* () {
34
+ if (requestParameters.lawfirmId === null || requestParameters.lawfirmId === undefined) {
35
+ throw new runtime.RequiredError('lawfirmId', 'Required parameter requestParameters.lawfirmId was null or undefined when calling getLawfirmGrossEarningsUsingGET.');
36
+ }
37
+ if (requestParameters.period === null || requestParameters.period === undefined) {
38
+ throw new runtime.RequiredError('period', 'Required parameter requestParameters.period was null or undefined when calling getLawfirmGrossEarningsUsingGET.');
39
+ }
40
+ const queryParameters = {};
41
+ if (requestParameters.endDate !== undefined) {
42
+ queryParameters['endDate'] = requestParameters.endDate.toISOString();
43
+ }
44
+ if (requestParameters.period !== undefined) {
45
+ queryParameters['period'] = requestParameters.period;
46
+ }
47
+ if (requestParameters.startDate !== undefined) {
48
+ queryParameters['startDate'] = requestParameters.startDate.toISOString();
49
+ }
50
+ const headerParameters = {};
51
+ const response = yield this.request({
52
+ path: `/api/v1/lawfirms/{lawfirmId}/dashboard/gross-earnings`.replace(`{${"lawfirmId"}}`, encodeURIComponent(String(requestParameters.lawfirmId))),
53
+ method: 'GET',
54
+ headers: headerParameters,
55
+ query: queryParameters,
56
+ });
57
+ return new runtime.JSONApiResponse(response, (jsonValue) => GetLawfirmGrossEarningsResponseFromJSON(jsonValue));
58
+ });
59
+ }
60
+ /**
61
+ * getLawfirmGrossEarnings
62
+ */
63
+ getLawfirmGrossEarningsUsingGET(requestParameters) {
64
+ return __awaiter(this, void 0, void 0, function* () {
65
+ const response = yield this.getLawfirmGrossEarningsUsingGETRaw(requestParameters);
66
+ return yield response.value();
67
+ });
68
+ }
69
+ }
70
+ /**
71
+ * @export
72
+ * @enum {string}
73
+ */
74
+ export var GetLawfirmGrossEarningsUsingGETPeriodEnum;
75
+ (function (GetLawfirmGrossEarningsUsingGETPeriodEnum) {
76
+ GetLawfirmGrossEarningsUsingGETPeriodEnum["DAILY"] = "DAILY";
77
+ GetLawfirmGrossEarningsUsingGETPeriodEnum["HOURLY"] = "HOURLY";
78
+ GetLawfirmGrossEarningsUsingGETPeriodEnum["MONTHLY"] = "MONTHLY";
79
+ GetLawfirmGrossEarningsUsingGETPeriodEnum["WEEKLY"] = "WEEKLY";
80
+ })(GetLawfirmGrossEarningsUsingGETPeriodEnum || (GetLawfirmGrossEarningsUsingGETPeriodEnum = {}));
@@ -58,6 +58,7 @@ export * from './IntercomWebhookControllerApi';
58
58
  export * from './LawfirmCaseDecisionControllerApi';
59
59
  export * from './LawfirmCasesControllerApi';
60
60
  export * from './LawfirmControllerApi';
61
+ export * from './LawfirmDashboardControllerApi';
61
62
  export * from './LawfirmDocumentControllerApi';
62
63
  export * from './LawfirmFeeCoverageControllerApi';
63
64
  export * from './LawfirmPaymentModelControllerApi';
@@ -58,6 +58,7 @@ export * from './IntercomWebhookControllerApi';
58
58
  export * from './LawfirmCaseDecisionControllerApi';
59
59
  export * from './LawfirmCasesControllerApi';
60
60
  export * from './LawfirmControllerApi';
61
+ export * from './LawfirmDashboardControllerApi';
61
62
  export * from './LawfirmDocumentControllerApi';
62
63
  export * from './LawfirmFeeCoverageControllerApi';
63
64
  export * from './LawfirmPaymentModelControllerApi';
@@ -22,6 +22,12 @@ export interface AddNewCaseMessageRequest {
22
22
  * @memberof AddNewCaseMessageRequest
23
23
  */
24
24
  messageDomain?: MessageInputModel;
25
+ /**
26
+ *
27
+ * @type {boolean}
28
+ * @memberof AddNewCaseMessageRequest
29
+ */
30
+ suppressSms?: boolean;
25
31
  }
26
32
  export declare function AddNewCaseMessageRequestFromJSON(json: any): AddNewCaseMessageRequest;
27
33
  export declare function AddNewCaseMessageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddNewCaseMessageRequest;
@@ -22,6 +22,7 @@ export function AddNewCaseMessageRequestFromJSONTyped(json, ignoreDiscriminator)
22
22
  }
23
23
  return {
24
24
  'messageDomain': !exists(json, 'messageDomain') ? undefined : MessageInputModelFromJSON(json['messageDomain']),
25
+ 'suppressSms': !exists(json, 'suppressSms') ? undefined : json['suppressSms'],
25
26
  };
26
27
  }
27
28
  export function AddNewCaseMessageRequestToJSON(value) {
@@ -33,5 +34,6 @@ export function AddNewCaseMessageRequestToJSON(value) {
33
34
  }
34
35
  return {
35
36
  'messageDomain': MessageInputModelToJSON(value.messageDomain),
37
+ 'suppressSms': value.suppressSms,
36
38
  };
37
39
  }
@@ -84,8 +84,21 @@ export declare function CaseOutcomeModelToJSON(value?: CaseOutcomeModel | null):
84
84
  * @enum {string}
85
85
  */
86
86
  export declare enum CaseOutcomeModelResolutionStatusEnum {
87
+ AMENDEDDOWNWITHINCLASS = "AMENDED_DOWN_WITHIN_CLASS",
88
+ AMENDEDTOINFRACTION = "AMENDED_TO_INFRACTION",
89
+ CLIENTFIREDLAWFIRM = "CLIENT_FIRED_LAWFIRM",
90
+ CLIENTFORCEDLOSS = "CLIENT_FORCED_LOSS",
91
+ CLIENTPAIDFINE = "CLIENT_PAID_FINE",
92
+ CLIENTUNRESPONSIVE = "CLIENT_UNRESPONSIVE",
93
+ DEFERRED = "DEFERRED",
94
+ DIVERTED = "DIVERTED",
95
+ FEESDISPUTED = "FEES_DISPUTED",
96
+ FINEREDUCTIONONLY = "FINE_REDUCTION_ONLY",
97
+ LAWFIRMWITHDRAWN = "LAWFIRM_WITHDRAWN",
87
98
  LOST = "LOST",
88
99
  POINTSREDUCED = "POINTS_REDUCED",
89
100
  REDUCEDTONONMOVER = "REDUCED_TO_NON_MOVER",
90
- TICKETDISMISSED = "TICKET_DISMISSED"
101
+ RESOLVEDNONPAYMENT = "RESOLVED_NON_PAYMENT",
102
+ TICKETDISMISSED = "TICKET_DISMISSED",
103
+ TRAFFICSCHOOL = "TRAFFIC_SCHOOL"
91
104
  }
@@ -58,8 +58,21 @@ export function CaseOutcomeModelToJSON(value) {
58
58
  */
59
59
  export var CaseOutcomeModelResolutionStatusEnum;
60
60
  (function (CaseOutcomeModelResolutionStatusEnum) {
61
+ CaseOutcomeModelResolutionStatusEnum["AMENDEDDOWNWITHINCLASS"] = "AMENDED_DOWN_WITHIN_CLASS";
62
+ CaseOutcomeModelResolutionStatusEnum["AMENDEDTOINFRACTION"] = "AMENDED_TO_INFRACTION";
63
+ CaseOutcomeModelResolutionStatusEnum["CLIENTFIREDLAWFIRM"] = "CLIENT_FIRED_LAWFIRM";
64
+ CaseOutcomeModelResolutionStatusEnum["CLIENTFORCEDLOSS"] = "CLIENT_FORCED_LOSS";
65
+ CaseOutcomeModelResolutionStatusEnum["CLIENTPAIDFINE"] = "CLIENT_PAID_FINE";
66
+ CaseOutcomeModelResolutionStatusEnum["CLIENTUNRESPONSIVE"] = "CLIENT_UNRESPONSIVE";
67
+ CaseOutcomeModelResolutionStatusEnum["DEFERRED"] = "DEFERRED";
68
+ CaseOutcomeModelResolutionStatusEnum["DIVERTED"] = "DIVERTED";
69
+ CaseOutcomeModelResolutionStatusEnum["FEESDISPUTED"] = "FEES_DISPUTED";
70
+ CaseOutcomeModelResolutionStatusEnum["FINEREDUCTIONONLY"] = "FINE_REDUCTION_ONLY";
71
+ CaseOutcomeModelResolutionStatusEnum["LAWFIRMWITHDRAWN"] = "LAWFIRM_WITHDRAWN";
61
72
  CaseOutcomeModelResolutionStatusEnum["LOST"] = "LOST";
62
73
  CaseOutcomeModelResolutionStatusEnum["POINTSREDUCED"] = "POINTS_REDUCED";
63
74
  CaseOutcomeModelResolutionStatusEnum["REDUCEDTONONMOVER"] = "REDUCED_TO_NON_MOVER";
75
+ CaseOutcomeModelResolutionStatusEnum["RESOLVEDNONPAYMENT"] = "RESOLVED_NON_PAYMENT";
64
76
  CaseOutcomeModelResolutionStatusEnum["TICKETDISMISSED"] = "TICKET_DISMISSED";
77
+ CaseOutcomeModelResolutionStatusEnum["TRAFFICSCHOOL"] = "TRAFFIC_SCHOOL";
65
78
  })(CaseOutcomeModelResolutionStatusEnum || (CaseOutcomeModelResolutionStatusEnum = {}));
@@ -0,0 +1,33 @@
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
+ /**
13
+ *
14
+ * @export
15
+ * @interface EarningsByPeriodDto
16
+ */
17
+ export interface EarningsByPeriodDto {
18
+ /**
19
+ *
20
+ * @type {Date}
21
+ * @memberof EarningsByPeriodDto
22
+ */
23
+ periodDate?: Date;
24
+ /**
25
+ *
26
+ * @type {number}
27
+ * @memberof EarningsByPeriodDto
28
+ */
29
+ totalAmountInCents?: number;
30
+ }
31
+ export declare function EarningsByPeriodDtoFromJSON(json: any): EarningsByPeriodDto;
32
+ export declare function EarningsByPeriodDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): EarningsByPeriodDto;
33
+ export declare function EarningsByPeriodDtoToJSON(value?: EarningsByPeriodDto | null): any;