@otr-app/shared-backend-generated-client 2.2.65 → 2.2.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/typescript/model/AddActionToCaseRequest.d.ts +1 -1
- package/dist/typescript/model/CaseActionRequestModel.d.ts +30 -0
- package/dist/typescript/model/CaseActionRequestModel.js +30 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- 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
|
+
export interface CaseActionRequestModel {
|
|
13
|
+
"actionDate"?: string;
|
|
14
|
+
"actionNote"?: string;
|
|
15
|
+
"actionType"?: CaseActionRequestModel.ActionTypeEnum;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace CaseActionRequestModel {
|
|
18
|
+
enum ActionTypeEnum {
|
|
19
|
+
CITATIONDATAEXTRACTED,
|
|
20
|
+
COURTDATEREMOVED,
|
|
21
|
+
COURTDATESCHEDULED,
|
|
22
|
+
DISCOVERYRECEIVED,
|
|
23
|
+
DISCOVERYREQUESTED,
|
|
24
|
+
FAILEDPAYMENTATTEMPT,
|
|
25
|
+
NOTICEOFAPPEARANCEFILED,
|
|
26
|
+
OTHER,
|
|
27
|
+
REVIEWEDBYLAWFIRM,
|
|
28
|
+
TICKETMAILEDTOCOURT
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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.CaseActionRequestModel = void 0;
|
|
15
|
+
var CaseActionRequestModel;
|
|
16
|
+
(function (CaseActionRequestModel) {
|
|
17
|
+
var ActionTypeEnum;
|
|
18
|
+
(function (ActionTypeEnum) {
|
|
19
|
+
ActionTypeEnum[ActionTypeEnum["CITATIONDATAEXTRACTED"] = 'CITATION_DATA_EXTRACTED'] = "CITATIONDATAEXTRACTED";
|
|
20
|
+
ActionTypeEnum[ActionTypeEnum["COURTDATEREMOVED"] = 'COURT_DATE_REMOVED'] = "COURTDATEREMOVED";
|
|
21
|
+
ActionTypeEnum[ActionTypeEnum["COURTDATESCHEDULED"] = 'COURT_DATE_SCHEDULED'] = "COURTDATESCHEDULED";
|
|
22
|
+
ActionTypeEnum[ActionTypeEnum["DISCOVERYRECEIVED"] = 'DISCOVERY_RECEIVED'] = "DISCOVERYRECEIVED";
|
|
23
|
+
ActionTypeEnum[ActionTypeEnum["DISCOVERYREQUESTED"] = 'DISCOVERY_REQUESTED'] = "DISCOVERYREQUESTED";
|
|
24
|
+
ActionTypeEnum[ActionTypeEnum["FAILEDPAYMENTATTEMPT"] = 'FAILED_PAYMENT_ATTEMPT'] = "FAILEDPAYMENTATTEMPT";
|
|
25
|
+
ActionTypeEnum[ActionTypeEnum["NOTICEOFAPPEARANCEFILED"] = 'NOTICE_OF_APPEARANCE_FILED'] = "NOTICEOFAPPEARANCEFILED";
|
|
26
|
+
ActionTypeEnum[ActionTypeEnum["OTHER"] = 'OTHER'] = "OTHER";
|
|
27
|
+
ActionTypeEnum[ActionTypeEnum["REVIEWEDBYLAWFIRM"] = 'REVIEWED_BY_LAWFIRM'] = "REVIEWEDBYLAWFIRM";
|
|
28
|
+
ActionTypeEnum[ActionTypeEnum["TICKETMAILEDTOCOURT"] = 'TICKET_MAILED_TO_COURT'] = "TICKETMAILEDTOCOURT";
|
|
29
|
+
})(ActionTypeEnum = CaseActionRequestModel.ActionTypeEnum || (CaseActionRequestModel.ActionTypeEnum = {}));
|
|
30
|
+
})(CaseActionRequestModel = exports.CaseActionRequestModel || (exports.CaseActionRequestModel = {}));
|
|
@@ -64,6 +64,7 @@ export * from './CancelationDetailsRes';
|
|
|
64
64
|
export * from './CaptureChargeFromCasePaymentRequest';
|
|
65
65
|
export * from './Case';
|
|
66
66
|
export * from './CaseActionDomain';
|
|
67
|
+
export * from './CaseActionRequestModel';
|
|
67
68
|
export * from './CaseAlert';
|
|
68
69
|
export * from './CaseBookingsStats';
|
|
69
70
|
export * from './CaseChargeResponsePojo';
|
|
@@ -76,6 +76,7 @@ __exportStar(require("./CancelationDetailsRes"), exports);
|
|
|
76
76
|
__exportStar(require("./CaptureChargeFromCasePaymentRequest"), exports);
|
|
77
77
|
__exportStar(require("./Case"), exports);
|
|
78
78
|
__exportStar(require("./CaseActionDomain"), exports);
|
|
79
|
+
__exportStar(require("./CaseActionRequestModel"), exports);
|
|
79
80
|
__exportStar(require("./CaseAlert"), exports);
|
|
80
81
|
__exportStar(require("./CaseBookingsStats"), exports);
|
|
81
82
|
__exportStar(require("./CaseChargeResponsePojo"), exports);
|