@otr-app/shared-backend-generated-client 2.3.200 → 2.3.202

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 (33) hide show
  1. package/dist/angular/.openapi-generator/FILES +6 -0
  2. package/dist/angular/api/api.ts +3 -1
  3. package/dist/angular/api/employeeController.service.ts +171 -0
  4. package/dist/angular/api/lawfirmTransactionsController.service.ts +84 -0
  5. package/dist/angular/api.module.ts +1 -0
  6. package/dist/angular/model/balanceTransactionModel.ts +23 -0
  7. package/dist/angular/model/getEmployeeModel.ts +25 -0
  8. package/dist/angular/model/lawfirmBankPayoutModel.ts +63 -0
  9. package/dist/angular/model/listEmployeesResponse.ts +18 -0
  10. package/dist/angular/model/listLawfirmBankPayoutsResponse.ts +18 -0
  11. package/dist/angular/model/models.ts +5 -0
  12. package/dist/otrBackendService.js +111 -0
  13. package/dist/otrBackendService.min.js +5 -5
  14. package/dist/typescript/api/EmployeeControllerApi.d.ts +30 -0
  15. package/dist/typescript/api/EmployeeControllerApi.js +64 -0
  16. package/dist/typescript/api/LawfirmTransactionsControllerApi.d.ts +9 -0
  17. package/dist/typescript/api/LawfirmTransactionsControllerApi.js +45 -0
  18. package/dist/typescript/api/api.d.ts +3 -1
  19. package/dist/typescript/api/api.js +3 -1
  20. package/dist/typescript/api.module.js +1 -0
  21. package/dist/typescript/model/BalanceTransactionModel.d.ts +20 -0
  22. package/dist/typescript/model/BalanceTransactionModel.js +13 -0
  23. package/dist/typescript/model/GetEmployeeModel.d.ts +22 -0
  24. package/dist/typescript/model/GetEmployeeModel.js +13 -0
  25. package/dist/typescript/model/LawfirmBankPayoutModel.d.ts +55 -0
  26. package/dist/typescript/model/LawfirmBankPayoutModel.js +41 -0
  27. package/dist/typescript/model/ListEmployeesResponse.d.ts +15 -0
  28. package/dist/typescript/model/ListEmployeesResponse.js +13 -0
  29. package/dist/typescript/model/ListLawfirmBankPayoutsResponse.d.ts +15 -0
  30. package/dist/typescript/model/ListLawfirmBankPayoutsResponse.js +13 -0
  31. package/dist/typescript/model/models.d.ts +5 -0
  32. package/dist/typescript/model/models.js +5 -0
  33. package/package.json +1 -1
@@ -0,0 +1,30 @@
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
+ /// <reference types="angular" />
13
+ import * as models from '../model/models';
14
+ export declare class EmployeeControllerApi {
15
+ protected $http: ng.IHttpService;
16
+ protected $httpParamSerializer?: (d: any) => any;
17
+ protected basePath: string;
18
+ defaultHeaders: any;
19
+ static $inject: string[];
20
+ constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
21
+ /**
22
+ *
23
+ * @summary listEmployees
24
+ * @param isActive isActive
25
+ * @param length length
26
+ * @param page page
27
+ * @param team team
28
+ */
29
+ listEmployeesUsingGET(isActive?: boolean, length?: number, page?: number, team?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListEmployeesResponse>;
30
+ }
@@ -0,0 +1,64 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.EmployeeControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var EmployeeControllerApi = /** @class */ (function () {
17
+ function EmployeeControllerApi($http, $httpParamSerializer, basePath) {
18
+ this.$http = $http;
19
+ this.$httpParamSerializer = $httpParamSerializer;
20
+ this.basePath = 'http://otr-backend-service-us-devo.offtherecord.com';
21
+ this.defaultHeaders = {};
22
+ if (basePath !== undefined) {
23
+ this.basePath = basePath;
24
+ }
25
+ }
26
+ /**
27
+ *
28
+ * @summary listEmployees
29
+ * @param isActive isActive
30
+ * @param length length
31
+ * @param page page
32
+ * @param team team
33
+ */
34
+ EmployeeControllerApi.prototype.listEmployeesUsingGET = function (isActive, length, page, team, extraHttpRequestParams) {
35
+ var localVarPath = this.basePath + '/api/v1/employees';
36
+ var queryParameters = {};
37
+ var headerParams = Object.assign({}, this.defaultHeaders);
38
+ if (isActive !== undefined) {
39
+ queryParameters['isActive'] = isActive;
40
+ }
41
+ if (length !== undefined) {
42
+ queryParameters['length'] = length;
43
+ }
44
+ if (page !== undefined) {
45
+ queryParameters['page'] = page;
46
+ }
47
+ if (team !== undefined) {
48
+ queryParameters['team'] = team;
49
+ }
50
+ var httpRequestParams = {
51
+ method: 'GET',
52
+ url: localVarPath,
53
+ params: queryParameters,
54
+ headers: headerParams
55
+ };
56
+ if (extraHttpRequestParams) {
57
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
58
+ }
59
+ return this.$http(httpRequestParams);
60
+ };
61
+ EmployeeControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
62
+ return EmployeeControllerApi;
63
+ }());
64
+ exports.EmployeeControllerApi = EmployeeControllerApi;
@@ -81,6 +81,15 @@ export declare class LawfirmTransactionsControllerApi {
81
81
  * @param caseId caseId
82
82
  */
83
83
  getLawfirmTransactionsForCaseUsingGET(caseId: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetLawfirmTransactionsForCaseResponse>;
84
+ /**
85
+ *
86
+ * @summary listLawfirmBankPayouts
87
+ * @param includeTransactions includeTransactions
88
+ * @param index index
89
+ * @param lawfirmId lawfirmId
90
+ * @param size size
91
+ */
92
+ listLawfirmBankPayoutsUsingGET(includeTransactions: boolean, index: number, lawfirmId: number, size?: number, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmBankPayoutsResponse>;
84
93
  /**
85
94
  *
86
95
  * @summary refundLawfirmFee
@@ -287,6 +287,51 @@ var LawfirmTransactionsControllerApi = /** @class */ (function () {
287
287
  }
288
288
  return this.$http(httpRequestParams);
289
289
  };
290
+ /**
291
+ *
292
+ * @summary listLawfirmBankPayouts
293
+ * @param includeTransactions includeTransactions
294
+ * @param index index
295
+ * @param lawfirmId lawfirmId
296
+ * @param size size
297
+ */
298
+ LawfirmTransactionsControllerApi.prototype.listLawfirmBankPayoutsUsingGET = function (includeTransactions, index, lawfirmId, size, extraHttpRequestParams) {
299
+ var localVarPath = this.basePath + '/api/v1/lawfirms/{lawfirmId}/bank-payouts'
300
+ .replace('{' + 'lawfirmId' + '}', encodeURIComponent(String(lawfirmId)));
301
+ var queryParameters = {};
302
+ var headerParams = Object.assign({}, this.defaultHeaders);
303
+ // verify required parameter 'includeTransactions' is not null or undefined
304
+ if (includeTransactions === null || includeTransactions === undefined) {
305
+ throw new Error('Required parameter includeTransactions was null or undefined when calling listLawfirmBankPayoutsUsingGET.');
306
+ }
307
+ // verify required parameter 'index' is not null or undefined
308
+ if (index === null || index === undefined) {
309
+ throw new Error('Required parameter index was null or undefined when calling listLawfirmBankPayoutsUsingGET.');
310
+ }
311
+ // verify required parameter 'lawfirmId' is not null or undefined
312
+ if (lawfirmId === null || lawfirmId === undefined) {
313
+ throw new Error('Required parameter lawfirmId was null or undefined when calling listLawfirmBankPayoutsUsingGET.');
314
+ }
315
+ if (includeTransactions !== undefined) {
316
+ queryParameters['includeTransactions '] = includeTransactions;
317
+ }
318
+ if (index !== undefined) {
319
+ queryParameters['index'] = index;
320
+ }
321
+ if (size !== undefined) {
322
+ queryParameters['size'] = size;
323
+ }
324
+ var httpRequestParams = {
325
+ method: 'GET',
326
+ url: localVarPath,
327
+ params: queryParameters,
328
+ headers: headerParams
329
+ };
330
+ if (extraHttpRequestParams) {
331
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
332
+ }
333
+ return this.$http(httpRequestParams);
334
+ };
290
335
  /**
291
336
  *
292
337
  * @summary refundLawfirmFee
@@ -90,6 +90,8 @@ export * from './DriverLicenseControllerApi';
90
90
  import { DriverLicenseControllerApi } from './DriverLicenseControllerApi';
91
91
  export * from './EmailSubscriptionControllerApi';
92
92
  import { EmailSubscriptionControllerApi } from './EmailSubscriptionControllerApi';
93
+ export * from './EmployeeControllerApi';
94
+ import { EmployeeControllerApi } from './EmployeeControllerApi';
93
95
  export * from './ExternalContentVoteControllerApi';
94
96
  import { ExternalContentVoteControllerApi } from './ExternalContentVoteControllerApi';
95
97
  export * from './ExternalTicketLookupControllerApi';
@@ -220,4 +222,4 @@ export * from './WebsocketMessageControllerApi';
220
222
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
221
223
  export * from './WorkflowStateControllerApi';
222
224
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
223
- export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | 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 CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | 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 EmailSubscriptionControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | 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 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 UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
225
+ export declare const APIS: (typeof ActionRequiredControllerApi | typeof ActivityFeedControllerApi | typeof AddressControllerApi | typeof AlertNotificationControllerApi | typeof AppEventsControllerApi | typeof AuditLawfirmEventsControllerApi | typeof AuditLogControllerApi | typeof AuthenticationControllerApi | typeof AwsCredentialsControllerApi | typeof BlogWebhookControllerApi | 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 CertificateControllerApi | typeof CitationAuditControllerApi | typeof CitationControllerApi | typeof CoachingCardsControllerApi | typeof ConfigurationControllerApi | typeof ConsoleListControllerApi | 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 EmailSubscriptionControllerApi | typeof EmployeeControllerApi | typeof ExternalContentVoteControllerApi | typeof ExternalTicketLookupControllerApi | typeof FeedbackControllerApi | typeof FreshcallerControllerApi | typeof FreshdeskTicketControllerApi | typeof GetCaseControllerApi | typeof HouseholdMateControllerApi | typeof HubspotWebhookControllerApi | typeof InsuranceCalculatorControllerApi | 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 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 UtilityControllerApi | typeof ValidationControllerApi | typeof VerificationControllerApi | typeof ViolationControllerApi | typeof ViolationPenaltyControllerApi | typeof WatchlistsControllerApi | typeof WebsocketMessageControllerApi | typeof WorkflowStateControllerApi)[];
@@ -103,6 +103,8 @@ __exportStar(require("./DriverLicenseControllerApi"), exports);
103
103
  var DriverLicenseControllerApi_1 = require("./DriverLicenseControllerApi");
104
104
  __exportStar(require("./EmailSubscriptionControllerApi"), exports);
105
105
  var EmailSubscriptionControllerApi_1 = require("./EmailSubscriptionControllerApi");
106
+ __exportStar(require("./EmployeeControllerApi"), exports);
107
+ var EmployeeControllerApi_1 = require("./EmployeeControllerApi");
106
108
  __exportStar(require("./ExternalContentVoteControllerApi"), exports);
107
109
  var ExternalContentVoteControllerApi_1 = require("./ExternalContentVoteControllerApi");
108
110
  __exportStar(require("./ExternalTicketLookupControllerApi"), exports);
@@ -233,4 +235,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
233
235
  var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
234
236
  __exportStar(require("./WorkflowStateControllerApi"), exports);
235
237
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
236
- exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuditLogControllerApi_1.AuditLogControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaptchaControllerApi_1.CaptchaControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCounterOfferControllerApi_1.CaseCounterOfferControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseDeclineControllerApi_1.CaseDeclineControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, CitationControllerApi_1.CitationControllerApi, CoachingCardsControllerApi_1.CoachingCardsControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi_1.CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi_1.CustomerServiceAgentControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, DriverLicenseControllerApi_1.DriverLicenseControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
238
+ exports.APIS = [ActionRequiredControllerApi_1.ActionRequiredControllerApi, ActivityFeedControllerApi_1.ActivityFeedControllerApi, AddressControllerApi_1.AddressControllerApi, AlertNotificationControllerApi_1.AlertNotificationControllerApi, AppEventsControllerApi_1.AppEventsControllerApi, AuditLawfirmEventsControllerApi_1.AuditLawfirmEventsControllerApi, AuditLogControllerApi_1.AuditLogControllerApi, AuthenticationControllerApi_1.AuthenticationControllerApi, AwsCredentialsControllerApi_1.AwsCredentialsControllerApi, BlogWebhookControllerApi_1.BlogWebhookControllerApi, BranchLinkControllerApi_1.BranchLinkControllerApi, CaptchaControllerApi_1.CaptchaControllerApi, CaseActionsControllerApi_1.CaseActionsControllerApi, CaseControllerApi_1.CaseControllerApi, CaseCounterOfferControllerApi_1.CaseCounterOfferControllerApi, CaseCreationControllerApi_1.CaseCreationControllerApi, CaseDeclineControllerApi_1.CaseDeclineControllerApi, CaseNotesControllerApi_1.CaseNotesControllerApi, CasePaymentControllerApi_1.CasePaymentControllerApi, CaseReferralCodeControllerApi_1.CaseReferralCodeControllerApi, CaseRefundControllerApi_1.CaseRefundControllerApi, CaseResolutionControllerApi_1.CaseResolutionControllerApi, CaseStatusControllerApi_1.CaseStatusControllerApi, CaseTransferControllerApi_1.CaseTransferControllerApi, CaseUserControllerApi_1.CaseUserControllerApi, CertificateControllerApi_1.CertificateControllerApi, CitationAuditControllerApi_1.CitationAuditControllerApi, CitationControllerApi_1.CitationControllerApi, CoachingCardsControllerApi_1.CoachingCardsControllerApi, ConfigurationControllerApi_1.ConfigurationControllerApi, ConsoleListControllerApi_1.ConsoleListControllerApi, ContactTimelineControllerApi_1.ContactTimelineControllerApi, ConversationControllerApi_1.ConversationControllerApi, CountyControllerApi_1.CountyControllerApi, CourtControllerApi_1.CourtControllerApi, CrmControllerApi_1.CrmControllerApi, CustomerLeadControllerApi_1.CustomerLeadControllerApi, CustomerReviewControllerApi_1.CustomerReviewControllerApi, CustomerServiceAgentBookingsControllerApi_1.CustomerServiceAgentBookingsControllerApi, CustomerServiceAgentControllerApi_1.CustomerServiceAgentControllerApi, DashboardControllerApi_1.DashboardControllerApi, DirectMailControllerApi_1.DirectMailControllerApi, DripControllerApi_1.DripControllerApi, DripWebhooksControllerApi_1.DripWebhooksControllerApi, DriverLicenseControllerApi_1.DriverLicenseControllerApi, EmailSubscriptionControllerApi_1.EmailSubscriptionControllerApi, EmployeeControllerApi_1.EmployeeControllerApi, ExternalContentVoteControllerApi_1.ExternalContentVoteControllerApi, ExternalTicketLookupControllerApi_1.ExternalTicketLookupControllerApi, FeedbackControllerApi_1.FeedbackControllerApi, FreshcallerControllerApi_1.FreshcallerControllerApi, FreshdeskTicketControllerApi_1.FreshdeskTicketControllerApi, GetCaseControllerApi_1.GetCaseControllerApi, HouseholdMateControllerApi_1.HouseholdMateControllerApi, HubspotWebhookControllerApi_1.HubspotWebhookControllerApi, InsuranceCalculatorControllerApi_1.InsuranceCalculatorControllerApi, LawfirmCaseDecisionControllerApi_1.LawfirmCaseDecisionControllerApi, LawfirmCasesControllerApi_1.LawfirmCasesControllerApi, LawfirmControllerApi_1.LawfirmControllerApi, LawfirmDocumentControllerApi_1.LawfirmDocumentControllerApi, LawfirmFeeCoverageControllerApi_1.LawfirmFeeCoverageControllerApi, LawfirmPaymentModelControllerApi_1.LawfirmPaymentModelControllerApi, LawfirmRatesControllerApi_1.LawfirmRatesControllerApi, LawfirmSettingsControllerApi_1.LawfirmSettingsControllerApi, LawfirmStorefrontControllerApi_1.LawfirmStorefrontControllerApi, LawfirmSurchargeControllerApi_1.LawfirmSurchargeControllerApi, LawfirmTransactionsControllerApi_1.LawfirmTransactionsControllerApi, LawyerControllerApi_1.LawyerControllerApi, LegalServicesControllerApi_1.LegalServicesControllerApi, LineItemControllerApi_1.LineItemControllerApi, ListCasesControllerApi_1.ListCasesControllerApi, MediaCreationControllerApi_1.MediaCreationControllerApi, MessagesControllerApi_1.MessagesControllerApi, NotesControllerApi_1.NotesControllerApi, OcrPredictionControllerApi_1.OcrPredictionControllerApi, OnDemandRequestControllerApi_1.OnDemandRequestControllerApi, OneTimePasswordControllerApi_1.OneTimePasswordControllerApi, PhoneLeadsControllerApi_1.PhoneLeadsControllerApi, PushNotificationControllerApi_1.PushNotificationControllerApi, RecurringBillingControllerApi_1.RecurringBillingControllerApi, RefLinkControllerApi_1.RefLinkControllerApi, ReferralCodeControllerApi_1.ReferralCodeControllerApi, ReferralControllerApi_1.ReferralControllerApi, ReferralSourceControllerApi_1.ReferralSourceControllerApi, RefundEligibilityControllerApi_1.RefundEligibilityControllerApi, RegistrationControllerApi_1.RegistrationControllerApi, ReportingControllerApi_1.ReportingControllerApi, ScheduledTaskControllerApi_1.ScheduledTaskControllerApi, SingleSignOnControllerApi_1.SingleSignOnControllerApi, SnsListenerControllerApi_1.SnsListenerControllerApi, SocialLoginControllerApi_1.SocialLoginControllerApi, StripeCardControllerApi_1.StripeCardControllerApi, StripeControllerApi_1.StripeControllerApi, StripeSyncControllerApi_1.StripeSyncControllerApi, StripeWebhookControllerApi_1.StripeWebhookControllerApi, TicketReviewControllerApi_1.TicketReviewControllerApi, UrlRedirectControllerApi_1.UrlRedirectControllerApi, UserAccountControllerApi_1.UserAccountControllerApi, UserAuditControllerApi_1.UserAuditControllerApi, UserControllerApi_1.UserControllerApi, UserPasswordControllerApi_1.UserPasswordControllerApi, UserProfileControllerApi_1.UserProfileControllerApi, UserSearchControllerApi_1.UserSearchControllerApi, UserSettingsControllerApi_1.UserSettingsControllerApi, UtilityControllerApi_1.UtilityControllerApi, ValidationControllerApi_1.ValidationControllerApi, VerificationControllerApi_1.VerificationControllerApi, ViolationControllerApi_1.ViolationControllerApi, ViolationPenaltyControllerApi_1.ViolationPenaltyControllerApi, WatchlistsControllerApi_1.WatchlistsControllerApi, WebsocketMessageControllerApi_1.WebsocketMessageControllerApi, WorkflowStateControllerApi_1.WorkflowStateControllerApi];
@@ -49,6 +49,7 @@ var apiModule = angular.module('api', [])
49
49
  .service('DripWebhooksControllerApi', api.DripWebhooksControllerApi)
50
50
  .service('DriverLicenseControllerApi', api.DriverLicenseControllerApi)
51
51
  .service('EmailSubscriptionControllerApi', api.EmailSubscriptionControllerApi)
52
+ .service('EmployeeControllerApi', api.EmployeeControllerApi)
52
53
  .service('ExternalContentVoteControllerApi', api.ExternalContentVoteControllerApi)
53
54
  .service('ExternalTicketLookupControllerApi', api.ExternalTicketLookupControllerApi)
54
55
  .service('FeedbackControllerApi', api.FeedbackControllerApi)
@@ -0,0 +1,20 @@
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 BalanceTransactionModel {
13
+ "amountInCents"?: number;
14
+ "availableAtDateUtc"?: string;
15
+ "creationDateUtc"?: string;
16
+ "id"?: string;
17
+ "stripePayoutId"?: string;
18
+ "transactionId"?: string;
19
+ "type"?: string;
20
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,22 @@
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 GetEmployeeModel {
14
+ "firstName"?: string;
15
+ "isActive"?: boolean;
16
+ "lastName"?: string;
17
+ "startDate"?: models.Timestamp;
18
+ "team"?: string;
19
+ "terminationDate"?: models.Timestamp;
20
+ "title"?: string;
21
+ "userId"?: number;
22
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,55 @@
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 LawfirmBankPayoutModel {
14
+ "amountInCents"?: number;
15
+ "arrivalDateUtc"?: string;
16
+ "automatic"?: boolean;
17
+ "balanceTransactionId"?: string;
18
+ "balanceTransactions"?: Array<models.BalanceTransactionModel>;
19
+ "currency"?: string;
20
+ "destinationId"?: string;
21
+ "failureAttributes"?: string;
22
+ "id"?: number;
23
+ "lawfirmId"?: number;
24
+ "method"?: LawfirmBankPayoutModel.MethodEnum;
25
+ "payoutCreationDateUtc"?: string;
26
+ "reconciliationStatus"?: LawfirmBankPayoutModel.ReconciliationStatusEnum;
27
+ "sourceAccountId"?: string;
28
+ "statementDescriptor"?: string;
29
+ "status"?: LawfirmBankPayoutModel.StatusEnum;
30
+ "stripePayoutId"?: string;
31
+ "stripePlatformAccountId"?: string;
32
+ "type"?: LawfirmBankPayoutModel.TypeEnum;
33
+ }
34
+ export declare namespace LawfirmBankPayoutModel {
35
+ enum MethodEnum {
36
+ INSTANT,
37
+ STANDARD
38
+ }
39
+ enum ReconciliationStatusEnum {
40
+ COMPLETED,
41
+ INPROGRESS,
42
+ NOTAPPLICABLE
43
+ }
44
+ enum StatusEnum {
45
+ CANCELED,
46
+ FAILED,
47
+ INTRANSIT,
48
+ PAID,
49
+ PENDING
50
+ }
51
+ enum TypeEnum {
52
+ BANKACCOUNT,
53
+ CARD
54
+ }
55
+ }
@@ -0,0 +1,41 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
14
+ exports.LawfirmBankPayoutModel = void 0;
15
+ var LawfirmBankPayoutModel;
16
+ (function (LawfirmBankPayoutModel) {
17
+ var MethodEnum;
18
+ (function (MethodEnum) {
19
+ MethodEnum[MethodEnum["INSTANT"] = 'INSTANT'] = "INSTANT";
20
+ MethodEnum[MethodEnum["STANDARD"] = 'STANDARD'] = "STANDARD";
21
+ })(MethodEnum = LawfirmBankPayoutModel.MethodEnum || (LawfirmBankPayoutModel.MethodEnum = {}));
22
+ var ReconciliationStatusEnum;
23
+ (function (ReconciliationStatusEnum) {
24
+ ReconciliationStatusEnum[ReconciliationStatusEnum["COMPLETED"] = 'COMPLETED'] = "COMPLETED";
25
+ ReconciliationStatusEnum[ReconciliationStatusEnum["INPROGRESS"] = 'IN_PROGRESS'] = "INPROGRESS";
26
+ ReconciliationStatusEnum[ReconciliationStatusEnum["NOTAPPLICABLE"] = 'NOT_APPLICABLE'] = "NOTAPPLICABLE";
27
+ })(ReconciliationStatusEnum = LawfirmBankPayoutModel.ReconciliationStatusEnum || (LawfirmBankPayoutModel.ReconciliationStatusEnum = {}));
28
+ var StatusEnum;
29
+ (function (StatusEnum) {
30
+ StatusEnum[StatusEnum["CANCELED"] = 'CANCELED'] = "CANCELED";
31
+ StatusEnum[StatusEnum["FAILED"] = 'FAILED'] = "FAILED";
32
+ StatusEnum[StatusEnum["INTRANSIT"] = 'IN_TRANSIT'] = "INTRANSIT";
33
+ StatusEnum[StatusEnum["PAID"] = 'PAID'] = "PAID";
34
+ StatusEnum[StatusEnum["PENDING"] = 'PENDING'] = "PENDING";
35
+ })(StatusEnum = LawfirmBankPayoutModel.StatusEnum || (LawfirmBankPayoutModel.StatusEnum = {}));
36
+ var TypeEnum;
37
+ (function (TypeEnum) {
38
+ TypeEnum[TypeEnum["BANKACCOUNT"] = 'BANK_ACCOUNT'] = "BANKACCOUNT";
39
+ TypeEnum[TypeEnum["CARD"] = 'CARD'] = "CARD";
40
+ })(TypeEnum = LawfirmBankPayoutModel.TypeEnum || (LawfirmBankPayoutModel.TypeEnum = {}));
41
+ })(LawfirmBankPayoutModel = exports.LawfirmBankPayoutModel || (exports.LawfirmBankPayoutModel = {}));
@@ -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 ListEmployeesResponse {
14
+ "employees"?: Array<models.GetEmployeeModel>;
15
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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 ListLawfirmBankPayoutsResponse {
14
+ "bankPayouts"?: Array<models.LawfirmBankPayoutModel>;
15
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ /**
3
+ * OffTheRecord Rest Service API - Devo
4
+ * A service to handle your traffic tickets
5
+ *
6
+ * The version of the OpenAPI document: 1.0
7
+ *
8
+ *
9
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
10
+ * https://openapi-generator.tech
11
+ * Do not edit the class manually.
12
+ */
13
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -51,6 +51,7 @@ export * from './AvailableRegion';
51
51
  export * from './AwsCredentialsRequest';
52
52
  export * from './BackfillLawfirmTransactionRecordsRequest';
53
53
  export * from './BackfillLawfirmTransactionRecordsResponse';
54
+ export * from './BalanceTransactionModel';
54
55
  export * from './BillingInvoiceModel';
55
56
  export * from './BillingPriceModel';
56
57
  export * from './BillingProductModel';
@@ -293,6 +294,7 @@ export * from './GetDeclinedCasesResponse';
293
294
  export * from './GetDocumentsRequest';
294
295
  export * from './GetDriverLicensesResponse';
295
296
  export * from './GetEmailTemplateResponse';
297
+ export * from './GetEmployeeModel';
296
298
  export * from './GetExternalTicketInputParamsResponse';
297
299
  export * from './GetHouseHoldMateModel';
298
300
  export * from './GetHouseholdMatesResponse';
@@ -391,6 +393,7 @@ export * from './IsRefundEligibleResponse';
391
393
  export * from './IsUserLoggedInResponse';
392
394
  export * from './LastLoginDateModel';
393
395
  export * from './LawfirmAuditEventModel';
396
+ export * from './LawfirmBankPayoutModel';
394
397
  export * from './LawfirmBookingSummary';
395
398
  export * from './LawfirmCaseDocument';
396
399
  export * from './LawfirmCaseModel';
@@ -437,7 +440,9 @@ export * from './ListContactTimelineResponse';
437
440
  export * from './ListCostItemsForCustomerResponse';
438
441
  export * from './ListDashboardCasesResponse';
439
442
  export * from './ListEligibleStatusResponse';
443
+ export * from './ListEmployeesResponse';
440
444
  export * from './ListLawfirmAuditEventsByCursorResponse';
445
+ export * from './ListLawfirmBankPayoutsResponse';
441
446
  export * from './ListLawfirmStorefrontsResponse';
442
447
  export * from './ListLawfirmSurchargeModel';
443
448
  export * from './ListLawfirmSurchargeTypeModel';
@@ -63,6 +63,7 @@ __exportStar(require("./AvailableRegion"), exports);
63
63
  __exportStar(require("./AwsCredentialsRequest"), exports);
64
64
  __exportStar(require("./BackfillLawfirmTransactionRecordsRequest"), exports);
65
65
  __exportStar(require("./BackfillLawfirmTransactionRecordsResponse"), exports);
66
+ __exportStar(require("./BalanceTransactionModel"), exports);
66
67
  __exportStar(require("./BillingInvoiceModel"), exports);
67
68
  __exportStar(require("./BillingPriceModel"), exports);
68
69
  __exportStar(require("./BillingProductModel"), exports);
@@ -305,6 +306,7 @@ __exportStar(require("./GetDeclinedCasesResponse"), exports);
305
306
  __exportStar(require("./GetDocumentsRequest"), exports);
306
307
  __exportStar(require("./GetDriverLicensesResponse"), exports);
307
308
  __exportStar(require("./GetEmailTemplateResponse"), exports);
309
+ __exportStar(require("./GetEmployeeModel"), exports);
308
310
  __exportStar(require("./GetExternalTicketInputParamsResponse"), exports);
309
311
  __exportStar(require("./GetHouseHoldMateModel"), exports);
310
312
  __exportStar(require("./GetHouseholdMatesResponse"), exports);
@@ -403,6 +405,7 @@ __exportStar(require("./IsRefundEligibleResponse"), exports);
403
405
  __exportStar(require("./IsUserLoggedInResponse"), exports);
404
406
  __exportStar(require("./LastLoginDateModel"), exports);
405
407
  __exportStar(require("./LawfirmAuditEventModel"), exports);
408
+ __exportStar(require("./LawfirmBankPayoutModel"), exports);
406
409
  __exportStar(require("./LawfirmBookingSummary"), exports);
407
410
  __exportStar(require("./LawfirmCaseDocument"), exports);
408
411
  __exportStar(require("./LawfirmCaseModel"), exports);
@@ -449,7 +452,9 @@ __exportStar(require("./ListContactTimelineResponse"), exports);
449
452
  __exportStar(require("./ListCostItemsForCustomerResponse"), exports);
450
453
  __exportStar(require("./ListDashboardCasesResponse"), exports);
451
454
  __exportStar(require("./ListEligibleStatusResponse"), exports);
455
+ __exportStar(require("./ListEmployeesResponse"), exports);
452
456
  __exportStar(require("./ListLawfirmAuditEventsByCursorResponse"), exports);
457
+ __exportStar(require("./ListLawfirmBankPayoutsResponse"), exports);
453
458
  __exportStar(require("./ListLawfirmStorefrontsResponse"), exports);
454
459
  __exportStar(require("./ListLawfirmSurchargeModel"), exports);
455
460
  __exportStar(require("./ListLawfirmSurchargeTypeModel"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.200",
3
+ "version": "2.3.202",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"