@otr-app/shared-backend-generated-client 2.3.169 → 2.3.171

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 (51) hide show
  1. package/dist/angular/.openapi-generator/FILES +12 -0
  2. package/dist/angular/api/api.ts +3 -1
  3. package/dist/angular/api/coachingCardsController.service.ts +359 -0
  4. package/dist/angular/api/dashboardController.service.ts +19 -4
  5. package/dist/angular/api.module.ts +1 -0
  6. package/dist/angular/model/coachingCardCategoriesModel.ts +20 -0
  7. package/dist/angular/model/coachingCardEntity.ts +24 -0
  8. package/dist/angular/model/coachingCardSubcategoriesModel.ts +18 -0
  9. package/dist/angular/model/coachingCardUsersModel.ts +38 -0
  10. package/dist/angular/model/coachingCardsModel.ts +26 -0
  11. package/dist/angular/model/coachingLinks.ts +17 -0
  12. package/dist/angular/model/getCoachingCardCategoriesResponse.ts +18 -0
  13. package/dist/angular/model/listUserCoachingCardsResponse.ts +19 -0
  14. package/dist/angular/model/models.ts +11 -0
  15. package/dist/angular/model/saveCoachingCardRequest.ts +23 -0
  16. package/dist/angular/model/saveCoachingCardUserRequest.ts +37 -0
  17. package/dist/angular/model/updateCoachingCardRequest.ts +31 -0
  18. package/dist/otrBackendService.js +70 -55
  19. package/dist/otrBackendService.min.js +7 -7
  20. package/dist/typescript/api/CoachingCardsControllerApi.d.ts +46 -0
  21. package/dist/typescript/api/CoachingCardsControllerApi.js +131 -0
  22. package/dist/typescript/api/DashboardControllerApi.d.ts +4 -1
  23. package/dist/typescript/api/DashboardControllerApi.js +13 -1
  24. package/dist/typescript/api/api.d.ts +3 -1
  25. package/dist/typescript/api/api.js +3 -1
  26. package/dist/typescript/api.module.js +1 -0
  27. package/dist/typescript/model/CoachingCardCategoriesModel.d.ts +17 -0
  28. package/dist/typescript/model/CoachingCardCategoriesModel.js +13 -0
  29. package/dist/typescript/model/CoachingCardEntity.d.ts +21 -0
  30. package/dist/typescript/model/CoachingCardEntity.js +13 -0
  31. package/dist/typescript/model/CoachingCardSubcategoriesModel.d.ts +15 -0
  32. package/dist/typescript/model/CoachingCardSubcategoriesModel.js +13 -0
  33. package/dist/typescript/model/CoachingCardUsersModel.d.ts +33 -0
  34. package/dist/typescript/model/CoachingCardUsersModel.js +24 -0
  35. package/dist/typescript/model/CoachingCardsModel.d.ts +22 -0
  36. package/dist/typescript/model/CoachingCardsModel.js +13 -0
  37. package/dist/typescript/model/CoachingLinks.d.ts +14 -0
  38. package/dist/typescript/model/CoachingLinks.js +13 -0
  39. package/dist/typescript/model/GetCoachingCardCategoriesResponse.d.ts +15 -0
  40. package/dist/typescript/model/GetCoachingCardCategoriesResponse.js +13 -0
  41. package/dist/typescript/model/ListUserCoachingCardsResponse.d.ts +16 -0
  42. package/dist/typescript/model/ListUserCoachingCardsResponse.js +13 -0
  43. package/dist/typescript/model/SaveCoachingCardRequest.d.ts +19 -0
  44. package/dist/typescript/model/SaveCoachingCardRequest.js +13 -0
  45. package/dist/typescript/model/SaveCoachingCardUserRequest.d.ts +32 -0
  46. package/dist/typescript/model/SaveCoachingCardUserRequest.js +24 -0
  47. package/dist/typescript/model/UpdateCoachingCardRequest.d.ts +26 -0
  48. package/dist/typescript/model/UpdateCoachingCardRequest.js +24 -0
  49. package/dist/typescript/model/models.d.ts +11 -0
  50. package/dist/typescript/model/models.js +11 -0
  51. package/package.json +1 -1
@@ -0,0 +1,46 @@
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 CoachingCardsControllerApi {
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 acknowledgeCoachingCard
24
+ * @param request request
25
+ */
26
+ acknowledgeCoachingCardUsingPUT(request: models.UpdateCoachingCardRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
27
+ /**
28
+ *
29
+ * @summary getCoachingCardCategories
30
+ */
31
+ getCoachingCardCategoriesUsingGET(extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCoachingCardCategoriesResponse>;
32
+ /**
33
+ *
34
+ * @summary listUserCoachingCards
35
+ * @param userId userId
36
+ * @param includeCreated includeCreated
37
+ * @param includeReceived includeReceived
38
+ */
39
+ listUserCoachingCardsUsingGET(userId: number, includeCreated?: boolean, includeReceived?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListUserCoachingCardsResponse>;
40
+ /**
41
+ *
42
+ * @summary saveCoachingCard
43
+ * @param request request
44
+ */
45
+ saveCoachingCardUsingPOST(request: models.SaveCoachingCardRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
46
+ }
@@ -0,0 +1,131 @@
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.CoachingCardsControllerApi = void 0;
15
+ /* tslint:disable:no-unused-variable member-ordering */
16
+ var CoachingCardsControllerApi = /** @class */ (function () {
17
+ function CoachingCardsControllerApi($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 acknowledgeCoachingCard
29
+ * @param request request
30
+ */
31
+ CoachingCardsControllerApi.prototype.acknowledgeCoachingCardUsingPUT = function (request, extraHttpRequestParams) {
32
+ var localVarPath = this.basePath + '/api/api/v1/coaching-cards/acknowledge';
33
+ var queryParameters = {};
34
+ var headerParams = Object.assign({}, this.defaultHeaders);
35
+ // verify required parameter 'request' is not null or undefined
36
+ if (request === null || request === undefined) {
37
+ throw new Error('Required parameter request was null or undefined when calling acknowledgeCoachingCardUsingPUT.');
38
+ }
39
+ var httpRequestParams = {
40
+ method: 'PUT',
41
+ url: localVarPath,
42
+ data: request,
43
+ params: queryParameters,
44
+ headers: headerParams
45
+ };
46
+ if (extraHttpRequestParams) {
47
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
48
+ }
49
+ return this.$http(httpRequestParams);
50
+ };
51
+ /**
52
+ *
53
+ * @summary getCoachingCardCategories
54
+ */
55
+ CoachingCardsControllerApi.prototype.getCoachingCardCategoriesUsingGET = function (extraHttpRequestParams) {
56
+ var localVarPath = this.basePath + '/api/api/v1/coaching-cards/categories';
57
+ var queryParameters = {};
58
+ var headerParams = Object.assign({}, this.defaultHeaders);
59
+ var httpRequestParams = {
60
+ method: 'GET',
61
+ url: localVarPath,
62
+ params: queryParameters,
63
+ headers: headerParams
64
+ };
65
+ if (extraHttpRequestParams) {
66
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
67
+ }
68
+ return this.$http(httpRequestParams);
69
+ };
70
+ /**
71
+ *
72
+ * @summary listUserCoachingCards
73
+ * @param userId userId
74
+ * @param includeCreated includeCreated
75
+ * @param includeReceived includeReceived
76
+ */
77
+ CoachingCardsControllerApi.prototype.listUserCoachingCardsUsingGET = function (userId, includeCreated, includeReceived, extraHttpRequestParams) {
78
+ var localVarPath = this.basePath + '/api/v1/coaching-cards/{userId}/cards'
79
+ .replace('{' + 'userId' + '}', encodeURIComponent(String(userId)));
80
+ var queryParameters = {};
81
+ var headerParams = Object.assign({}, this.defaultHeaders);
82
+ // verify required parameter 'userId' is not null or undefined
83
+ if (userId === null || userId === undefined) {
84
+ throw new Error('Required parameter userId was null or undefined when calling listUserCoachingCardsUsingGET.');
85
+ }
86
+ if (includeCreated !== undefined) {
87
+ queryParameters['includeCreated'] = includeCreated;
88
+ }
89
+ if (includeReceived !== undefined) {
90
+ queryParameters['includeReceived'] = includeReceived;
91
+ }
92
+ var httpRequestParams = {
93
+ method: 'GET',
94
+ url: localVarPath,
95
+ params: queryParameters,
96
+ headers: headerParams
97
+ };
98
+ if (extraHttpRequestParams) {
99
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
100
+ }
101
+ return this.$http(httpRequestParams);
102
+ };
103
+ /**
104
+ *
105
+ * @summary saveCoachingCard
106
+ * @param request request
107
+ */
108
+ CoachingCardsControllerApi.prototype.saveCoachingCardUsingPOST = function (request, extraHttpRequestParams) {
109
+ var localVarPath = this.basePath + '/api/v1/coaching-cards/cards';
110
+ var queryParameters = {};
111
+ var headerParams = Object.assign({}, this.defaultHeaders);
112
+ // verify required parameter 'request' is not null or undefined
113
+ if (request === null || request === undefined) {
114
+ throw new Error('Required parameter request was null or undefined when calling saveCoachingCardUsingPOST.');
115
+ }
116
+ var httpRequestParams = {
117
+ method: 'POST',
118
+ url: localVarPath,
119
+ data: request,
120
+ params: queryParameters,
121
+ headers: headerParams
122
+ };
123
+ if (extraHttpRequestParams) {
124
+ httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
125
+ }
126
+ return this.$http(httpRequestParams);
127
+ };
128
+ CoachingCardsControllerApi.$inject = ['$http', '$httpParamSerializer', 'basePath'];
129
+ return CoachingCardsControllerApi;
130
+ }());
131
+ exports.CoachingCardsControllerApi = CoachingCardsControllerApi;
@@ -65,8 +65,11 @@ export declare class DashboardControllerApi {
65
65
  * @summary listPhoneCalls
66
66
  * @param agentId agentId
67
67
  * @param agentName agentName
68
+ * @param callQueueName callQueueName
68
69
  * @param callStatus callStatus
70
+ * @param direction direction
69
71
  * @param endDate endDate
72
+ * @param ivrName ivrName
70
73
  * @param length length
71
74
  * @param page page
72
75
  * @param shouldIncludePhoneCalls shouldIncludePhoneCalls
@@ -76,5 +79,5 @@ export declare class DashboardControllerApi {
76
79
  * @param teamName teamName
77
80
  * @param timeZoneId timeZoneId
78
81
  */
79
- listPhoneCallsUsingGET(agentId?: number, agentName?: string, callStatus?: 'ABANDONED' | 'BLOCKED' | 'BUSY' | 'COMPLETED' | 'CONNECTING' | 'CONNECTION_FAILED' | 'DEFAULT' | 'DISCONNECTED' | 'ENQUEUED' | 'IN_PROGRESS' | 'MISSED_CALL' | 'ON_HOLD' | 'RECENTLY_COMPLETED' | 'RESTRICTED' | 'VOICEMAIL' | 'VOICEMAIL_RECORDING_IN_PROGRESS', endDate?: string, length?: number, page?: number, shouldIncludePhoneCalls?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, teamName?: string, timeZoneId?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListPhoneCallsResponse>;
82
+ listPhoneCallsUsingGET(agentId?: number, agentName?: string, callQueueName?: string, callStatus?: 'ABANDONED' | 'BLOCKED' | 'BUSY' | 'COMPLETED' | 'CONNECTING' | 'CONNECTION_FAILED' | 'DEFAULT' | 'DISCONNECTED' | 'ENQUEUED' | 'IN_PROGRESS' | 'MISSED_CALL' | 'ON_HOLD' | 'RECENTLY_COMPLETED' | 'RESTRICTED' | 'VOICEMAIL' | 'VOICEMAIL_RECORDING_IN_PROGRESS', direction?: 'INCOMING' | 'OUTGOING', endDate?: string, ivrName?: string, length?: number, page?: number, shouldIncludePhoneCalls?: boolean, sortBy?: string, sortOrder?: string, startDate?: string, teamName?: string, timeZoneId?: string, extraHttpRequestParams?: any): ng.IHttpPromise<models.ListPhoneCallsResponse>;
80
83
  }
@@ -203,8 +203,11 @@ var DashboardControllerApi = /** @class */ (function () {
203
203
  * @summary listPhoneCalls
204
204
  * @param agentId agentId
205
205
  * @param agentName agentName
206
+ * @param callQueueName callQueueName
206
207
  * @param callStatus callStatus
208
+ * @param direction direction
207
209
  * @param endDate endDate
210
+ * @param ivrName ivrName
208
211
  * @param length length
209
212
  * @param page page
210
213
  * @param shouldIncludePhoneCalls shouldIncludePhoneCalls
@@ -214,7 +217,7 @@ var DashboardControllerApi = /** @class */ (function () {
214
217
  * @param teamName teamName
215
218
  * @param timeZoneId timeZoneId
216
219
  */
217
- DashboardControllerApi.prototype.listPhoneCallsUsingGET = function (agentId, agentName, callStatus, endDate, length, page, shouldIncludePhoneCalls, sortBy, sortOrder, startDate, teamName, timeZoneId, extraHttpRequestParams) {
220
+ DashboardControllerApi.prototype.listPhoneCallsUsingGET = function (agentId, agentName, callQueueName, callStatus, direction, endDate, ivrName, length, page, shouldIncludePhoneCalls, sortBy, sortOrder, startDate, teamName, timeZoneId, extraHttpRequestParams) {
218
221
  var localVarPath = this.basePath + '/api/v1/console/phone-calls';
219
222
  var queryParameters = {};
220
223
  var headerParams = Object.assign({}, this.defaultHeaders);
@@ -224,12 +227,21 @@ var DashboardControllerApi = /** @class */ (function () {
224
227
  if (agentName !== undefined) {
225
228
  queryParameters['agentName'] = agentName;
226
229
  }
230
+ if (callQueueName !== undefined) {
231
+ queryParameters['callQueueName'] = callQueueName;
232
+ }
227
233
  if (callStatus !== undefined) {
228
234
  queryParameters['callStatus'] = callStatus;
229
235
  }
236
+ if (direction !== undefined) {
237
+ queryParameters['direction'] = direction;
238
+ }
230
239
  if (endDate !== undefined) {
231
240
  queryParameters['endDate'] = endDate;
232
241
  }
242
+ if (ivrName !== undefined) {
243
+ queryParameters['ivrName'] = ivrName;
244
+ }
233
245
  if (length !== undefined) {
234
246
  queryParameters['length'] = length;
235
247
  }
@@ -54,6 +54,8 @@ export * from './CitationAuditControllerApi';
54
54
  import { CitationAuditControllerApi } from './CitationAuditControllerApi';
55
55
  export * from './CitationControllerApi';
56
56
  import { CitationControllerApi } from './CitationControllerApi';
57
+ export * from './CoachingCardsControllerApi';
58
+ import { CoachingCardsControllerApi } from './CoachingCardsControllerApi';
57
59
  export * from './ConfigurationControllerApi';
58
60
  import { ConfigurationControllerApi } from './ConfigurationControllerApi';
59
61
  export * from './ConsoleListControllerApi';
@@ -216,4 +218,4 @@ export * from './WebsocketMessageControllerApi';
216
218
  import { WebsocketMessageControllerApi } from './WebsocketMessageControllerApi';
217
219
  export * from './WorkflowStateControllerApi';
218
220
  import { WorkflowStateControllerApi } from './WorkflowStateControllerApi';
219
- 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 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 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)[];
221
+ 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 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)[];
@@ -67,6 +67,8 @@ __exportStar(require("./CitationAuditControllerApi"), exports);
67
67
  var CitationAuditControllerApi_1 = require("./CitationAuditControllerApi");
68
68
  __exportStar(require("./CitationControllerApi"), exports);
69
69
  var CitationControllerApi_1 = require("./CitationControllerApi");
70
+ __exportStar(require("./CoachingCardsControllerApi"), exports);
71
+ var CoachingCardsControllerApi_1 = require("./CoachingCardsControllerApi");
70
72
  __exportStar(require("./ConfigurationControllerApi"), exports);
71
73
  var ConfigurationControllerApi_1 = require("./ConfigurationControllerApi");
72
74
  __exportStar(require("./ConsoleListControllerApi"), exports);
@@ -229,4 +231,4 @@ __exportStar(require("./WebsocketMessageControllerApi"), exports);
229
231
  var WebsocketMessageControllerApi_1 = require("./WebsocketMessageControllerApi");
230
232
  __exportStar(require("./WorkflowStateControllerApi"), exports);
231
233
  var WorkflowStateControllerApi_1 = require("./WorkflowStateControllerApi");
232
- 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, 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, 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];
234
+ 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, 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];
@@ -31,6 +31,7 @@ var apiModule = angular.module('api', [])
31
31
  .service('CertificateControllerApi', api.CertificateControllerApi)
32
32
  .service('CitationAuditControllerApi', api.CitationAuditControllerApi)
33
33
  .service('CitationControllerApi', api.CitationControllerApi)
34
+ .service('CoachingCardsControllerApi', api.CoachingCardsControllerApi)
34
35
  .service('ConfigurationControllerApi', api.ConfigurationControllerApi)
35
36
  .service('ConsoleListControllerApi', api.ConsoleListControllerApi)
36
37
  .service('ContactTimelineControllerApi', api.ContactTimelineControllerApi)
@@ -0,0 +1,17 @@
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 CoachingCardCategoriesModel {
14
+ "coachingCardCategory"?: string;
15
+ "description"?: string;
16
+ "subcategories"?: Array<models.CoachingCardSubcategoriesModel>;
17
+ }
@@ -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,21 @@
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 CoachingCardEntity {
14
+ "cardCreatedDateUtc"?: string;
15
+ "cardLastUpdatedDateUtc"?: string;
16
+ "coachingCardCategoryId"?: number;
17
+ "coachingCardId"?: number;
18
+ "coachingCardSubcategoryId"?: number;
19
+ "coachingLinks"?: models.CoachingLinks;
20
+ "coachingText"?: string;
21
+ }
@@ -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
+ export interface CoachingCardSubcategoriesModel {
13
+ "coachingCardSubcategory"?: string;
14
+ "description"?: string;
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,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
+ import * as models from './models';
13
+ export interface CoachingCardUsersModel {
14
+ "acknowledgementDateUtc"?: string;
15
+ "assignmentDateUtc"?: string;
16
+ "coachingCards"?: models.CoachingCardEntity;
17
+ "coachingDateUtc"?: string;
18
+ "coachingMethod"?: string;
19
+ "hasBeenCoached"?: boolean;
20
+ "isActionRequired"?: boolean;
21
+ "isRepeatOffense"?: boolean;
22
+ "permissionType"?: CoachingCardUsersModel.PermissionTypeEnum;
23
+ "resolutionDateUtc"?: string;
24
+ "userId"?: number;
25
+ }
26
+ export declare namespace CoachingCardUsersModel {
27
+ enum PermissionTypeEnum {
28
+ AUTHOR,
29
+ MANAGER,
30
+ PARTICIPANT,
31
+ RECIPIENT
32
+ }
33
+ }
@@ -0,0 +1,24 @@
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.CoachingCardUsersModel = void 0;
15
+ var CoachingCardUsersModel;
16
+ (function (CoachingCardUsersModel) {
17
+ var PermissionTypeEnum;
18
+ (function (PermissionTypeEnum) {
19
+ PermissionTypeEnum[PermissionTypeEnum["AUTHOR"] = 'AUTHOR'] = "AUTHOR";
20
+ PermissionTypeEnum[PermissionTypeEnum["MANAGER"] = 'MANAGER'] = "MANAGER";
21
+ PermissionTypeEnum[PermissionTypeEnum["PARTICIPANT"] = 'PARTICIPANT'] = "PARTICIPANT";
22
+ PermissionTypeEnum[PermissionTypeEnum["RECIPIENT"] = 'RECIPIENT'] = "RECIPIENT";
23
+ })(PermissionTypeEnum = CoachingCardUsersModel.PermissionTypeEnum || (CoachingCardUsersModel.PermissionTypeEnum = {}));
24
+ })(CoachingCardUsersModel = exports.CoachingCardUsersModel || (exports.CoachingCardUsersModel = {}));
@@ -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 CoachingCardsModel {
14
+ "cardCreatedDate"?: string;
15
+ "cardLastUpdatedDate"?: string;
16
+ "coachingCardCategoryId"?: number;
17
+ "coachingCardId"?: number;
18
+ "coachingCardSubcategoryId"?: number;
19
+ "coachingCardUsers"?: Array<models.CoachingCardUsersModel>;
20
+ "coachingLinks"?: models.CoachingLinks;
21
+ "coachingText"?: string;
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,14 @@
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 CoachingLinks {
13
+ "link"?: string;
14
+ }
@@ -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 GetCoachingCardCategoriesResponse {
14
+ "coachingCardCategoriesModel"?: Array<models.CoachingCardCategoriesModel>;
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,16 @@
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 ListUserCoachingCardsResponse {
14
+ "userCoachingCards"?: Array<models.CoachingCardsModel>;
15
+ "userId"?: number;
16
+ }
@@ -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,19 @@
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 SaveCoachingCardRequest {
14
+ "coachingCardCategoryId"?: number;
15
+ "coachingCardSubcategoryId"?: number;
16
+ "coachingCardUserRequest"?: Array<models.SaveCoachingCardUserRequest>;
17
+ "coachingLinks"?: models.CoachingLinks;
18
+ "coachingText"?: string;
19
+ }
@@ -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 });