@otr-app/shared-backend-generated-client 2.5.173 → 2.5.175

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 (42) hide show
  1. package/dist/angular/model/lawfirmInboxMessageDomain.ts +1 -0
  2. package/dist/typescript/model/LawfirmInboxMessageDomain.d.ts +1 -0
  3. package/dist/typescript-fetch/apis/BlogWebhookControllerApi.d.ts +29 -0
  4. package/dist/typescript-fetch/apis/BlogWebhookControllerApi.js +58 -0
  5. package/dist/typescript-fetch/apis/CertificateControllerApi.d.ts +37 -0
  6. package/dist/typescript-fetch/apis/CertificateControllerApi.js +69 -0
  7. package/dist/typescript-fetch/apis/EmailSubscriptionControllerApi.d.ts +29 -0
  8. package/dist/typescript-fetch/apis/EmailSubscriptionControllerApi.js +59 -0
  9. package/dist/typescript-fetch/models/BlogDocument.d.ts +40 -0
  10. package/dist/typescript-fetch/models/BlogDocument.js +41 -0
  11. package/dist/typescript-fetch/models/BlogEvent.d.ts +46 -0
  12. package/dist/typescript-fetch/models/BlogEvent.js +43 -0
  13. package/dist/typescript-fetch/models/BlogMetadata.d.ts +39 -0
  14. package/dist/typescript-fetch/models/BlogMetadata.js +40 -0
  15. package/dist/typescript-fetch/models/GetClientCasesResponse.d.ts +52 -0
  16. package/dist/typescript-fetch/models/GetClientCasesResponse.js +45 -0
  17. package/dist/typescript-fetch/models/GetUserCasesResponse.d.ts +46 -0
  18. package/dist/typescript-fetch/models/GetUserCasesResponse.js +43 -0
  19. package/dist/typescript-fetch/models/LawfirmInboxMessageDomain.d.ts +6 -0
  20. package/dist/typescript-fetch/models/LawfirmInboxMessageDomain.js +2 -0
  21. package/dist/typescript-fetch/models/PenaltyModel.d.ts +78 -0
  22. package/dist/typescript-fetch/models/PenaltyModel.js +68 -0
  23. package/dist/typescript-fetch/models/SNSNotificationRequest.d.ts +45 -0
  24. package/dist/typescript-fetch/models/SNSNotificationRequest.js +42 -0
  25. package/dist/typescript-fetch/models/SSLCertificateResponse.d.ts +27 -0
  26. package/dist/typescript-fetch/models/SSLCertificateResponse.js +36 -0
  27. package/dist/typescript-fetch/models/SubscribeRequest.d.ts +28 -0
  28. package/dist/typescript-fetch/models/SubscribeRequest.js +37 -0
  29. package/dist/typescript-fetch/models/SubscriberDomain.d.ts +58 -0
  30. package/dist/typescript-fetch/models/SubscriberDomain.js +52 -0
  31. package/dist/typescript-fetch/models/SubscriptionDiscountEligibility.d.ts +48 -0
  32. package/dist/typescript-fetch/models/SubscriptionDiscountEligibility.js +50 -0
  33. package/dist/typescript-fetch/models/SubscriptionDiscountEligibilityReq.d.ts +48 -0
  34. package/dist/typescript-fetch/models/SubscriptionDiscountEligibilityReq.js +50 -0
  35. package/dist/typescript-fetch/models/SubscriptionDiscountEligibilityRes.d.ts +48 -0
  36. package/dist/typescript-fetch/models/SubscriptionDiscountEligibilityRes.js +50 -0
  37. package/dist/typescript-fetch/models/ViolationModel0.d.ts +120 -0
  38. package/dist/typescript-fetch/models/ViolationModel0.js +110 -0
  39. package/dist/typescript-fetch/models/WorkflowViolationPenaltyModel.d.ts +60 -0
  40. package/dist/typescript-fetch/models/WorkflowViolationPenaltyModel.js +62 -0
  41. package/dist/typescript-open-api/otr-backend.d.ts +2 -0
  42. package/package.json +1 -1
@@ -0,0 +1,50 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function SubscriptionDiscountEligibilityFromJSON(json) {
16
+ return SubscriptionDiscountEligibilityFromJSONTyped(json, false);
17
+ }
18
+ export function SubscriptionDiscountEligibilityFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'productName': !exists(json, 'productName') ? undefined : json['productName'],
24
+ 'subscriptionDiscountEligibilityType': !exists(json, 'subscriptionDiscountEligibilityType') ? undefined : json['subscriptionDiscountEligibilityType'],
25
+ 'uiSubscriptionEligibilityMsg': !exists(json, 'uiSubscriptionEligibilityMsg') ? undefined : json['uiSubscriptionEligibilityMsg'],
26
+ };
27
+ }
28
+ export function SubscriptionDiscountEligibilityToJSON(value) {
29
+ if (value === undefined) {
30
+ return undefined;
31
+ }
32
+ if (value === null) {
33
+ return null;
34
+ }
35
+ return {
36
+ 'productName': value.productName,
37
+ 'subscriptionDiscountEligibilityType': value.subscriptionDiscountEligibilityType,
38
+ 'uiSubscriptionEligibilityMsg': value.uiSubscriptionEligibilityMsg,
39
+ };
40
+ }
41
+ /**
42
+ * @export
43
+ * @enum {string}
44
+ */
45
+ export var SubscriptionDiscountEligibilitySubscriptionDiscountEligibilityTypeEnum;
46
+ (function (SubscriptionDiscountEligibilitySubscriptionDiscountEligibilityTypeEnum) {
47
+ SubscriptionDiscountEligibilitySubscriptionDiscountEligibilityTypeEnum["ISELIGIBLE"] = "IS_ELIGIBLE";
48
+ SubscriptionDiscountEligibilitySubscriptionDiscountEligibilityTypeEnum["ISNOTELIGIBLE"] = "IS_NOT_ELIGIBLE";
49
+ SubscriptionDiscountEligibilitySubscriptionDiscountEligibilityTypeEnum["NOTAPPLICABLE"] = "NOT_APPLICABLE";
50
+ })(SubscriptionDiscountEligibilitySubscriptionDiscountEligibilityTypeEnum || (SubscriptionDiscountEligibilitySubscriptionDiscountEligibilityTypeEnum = {}));
@@ -0,0 +1,48 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SubscriptionDiscountEligibilityReq
16
+ */
17
+ export interface SubscriptionDiscountEligibilityReq {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SubscriptionDiscountEligibilityReq
22
+ */
23
+ productName?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SubscriptionDiscountEligibilityReq
28
+ */
29
+ subscriptionDiscountEligibilityType?: SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof SubscriptionDiscountEligibilityReq
34
+ */
35
+ uiSubscriptionEligibilityMsg?: string;
36
+ }
37
+ export declare function SubscriptionDiscountEligibilityReqFromJSON(json: any): SubscriptionDiscountEligibilityReq;
38
+ export declare function SubscriptionDiscountEligibilityReqFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionDiscountEligibilityReq;
39
+ export declare function SubscriptionDiscountEligibilityReqToJSON(value?: SubscriptionDiscountEligibilityReq | null): any;
40
+ /**
41
+ * @export
42
+ * @enum {string}
43
+ */
44
+ export declare enum SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum {
45
+ ISELIGIBLE = "IS_ELIGIBLE",
46
+ ISNOTELIGIBLE = "IS_NOT_ELIGIBLE",
47
+ NOTAPPLICABLE = "NOT_APPLICABLE"
48
+ }
@@ -0,0 +1,50 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function SubscriptionDiscountEligibilityReqFromJSON(json) {
16
+ return SubscriptionDiscountEligibilityReqFromJSONTyped(json, false);
17
+ }
18
+ export function SubscriptionDiscountEligibilityReqFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'productName': !exists(json, 'productName') ? undefined : json['productName'],
24
+ 'subscriptionDiscountEligibilityType': !exists(json, 'subscriptionDiscountEligibilityType') ? undefined : json['subscriptionDiscountEligibilityType'],
25
+ 'uiSubscriptionEligibilityMsg': !exists(json, 'uiSubscriptionEligibilityMsg') ? undefined : json['uiSubscriptionEligibilityMsg'],
26
+ };
27
+ }
28
+ export function SubscriptionDiscountEligibilityReqToJSON(value) {
29
+ if (value === undefined) {
30
+ return undefined;
31
+ }
32
+ if (value === null) {
33
+ return null;
34
+ }
35
+ return {
36
+ 'productName': value.productName,
37
+ 'subscriptionDiscountEligibilityType': value.subscriptionDiscountEligibilityType,
38
+ 'uiSubscriptionEligibilityMsg': value.uiSubscriptionEligibilityMsg,
39
+ };
40
+ }
41
+ /**
42
+ * @export
43
+ * @enum {string}
44
+ */
45
+ export var SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum;
46
+ (function (SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum) {
47
+ SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum["ISELIGIBLE"] = "IS_ELIGIBLE";
48
+ SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum["ISNOTELIGIBLE"] = "IS_NOT_ELIGIBLE";
49
+ SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum["NOTAPPLICABLE"] = "NOT_APPLICABLE";
50
+ })(SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum || (SubscriptionDiscountEligibilityReqSubscriptionDiscountEligibilityTypeEnum = {}));
@@ -0,0 +1,48 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SubscriptionDiscountEligibilityRes
16
+ */
17
+ export interface SubscriptionDiscountEligibilityRes {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SubscriptionDiscountEligibilityRes
22
+ */
23
+ productName?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SubscriptionDiscountEligibilityRes
28
+ */
29
+ subscriptionDiscountEligibilityType?: SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof SubscriptionDiscountEligibilityRes
34
+ */
35
+ uiSubscriptionEligibilityMsg?: string;
36
+ }
37
+ export declare function SubscriptionDiscountEligibilityResFromJSON(json: any): SubscriptionDiscountEligibilityRes;
38
+ export declare function SubscriptionDiscountEligibilityResFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionDiscountEligibilityRes;
39
+ export declare function SubscriptionDiscountEligibilityResToJSON(value?: SubscriptionDiscountEligibilityRes | null): any;
40
+ /**
41
+ * @export
42
+ * @enum {string}
43
+ */
44
+ export declare enum SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum {
45
+ ISELIGIBLE = "IS_ELIGIBLE",
46
+ ISNOTELIGIBLE = "IS_NOT_ELIGIBLE",
47
+ NOTAPPLICABLE = "NOT_APPLICABLE"
48
+ }
@@ -0,0 +1,50 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function SubscriptionDiscountEligibilityResFromJSON(json) {
16
+ return SubscriptionDiscountEligibilityResFromJSONTyped(json, false);
17
+ }
18
+ export function SubscriptionDiscountEligibilityResFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'productName': !exists(json, 'productName') ? undefined : json['productName'],
24
+ 'subscriptionDiscountEligibilityType': !exists(json, 'subscriptionDiscountEligibilityType') ? undefined : json['subscriptionDiscountEligibilityType'],
25
+ 'uiSubscriptionEligibilityMsg': !exists(json, 'uiSubscriptionEligibilityMsg') ? undefined : json['uiSubscriptionEligibilityMsg'],
26
+ };
27
+ }
28
+ export function SubscriptionDiscountEligibilityResToJSON(value) {
29
+ if (value === undefined) {
30
+ return undefined;
31
+ }
32
+ if (value === null) {
33
+ return null;
34
+ }
35
+ return {
36
+ 'productName': value.productName,
37
+ 'subscriptionDiscountEligibilityType': value.subscriptionDiscountEligibilityType,
38
+ 'uiSubscriptionEligibilityMsg': value.uiSubscriptionEligibilityMsg,
39
+ };
40
+ }
41
+ /**
42
+ * @export
43
+ * @enum {string}
44
+ */
45
+ export var SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum;
46
+ (function (SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum) {
47
+ SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum["ISELIGIBLE"] = "IS_ELIGIBLE";
48
+ SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum["ISNOTELIGIBLE"] = "IS_NOT_ELIGIBLE";
49
+ SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum["NOTAPPLICABLE"] = "NOT_APPLICABLE";
50
+ })(SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum || (SubscriptionDiscountEligibilityResSubscriptionDiscountEligibilityTypeEnum = {}));
@@ -0,0 +1,120 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface ViolationModel0
16
+ */
17
+ export interface ViolationModel0 {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof ViolationModel0
22
+ */
23
+ isCriminal?: boolean;
24
+ /**
25
+ *
26
+ * @type {boolean}
27
+ * @memberof ViolationModel0
28
+ */
29
+ isMoving?: boolean;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof ViolationModel0
34
+ */
35
+ userFriendlyName?: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof ViolationModel0
40
+ */
41
+ violationClassification?: ViolationModel0ViolationClassificationEnum;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof ViolationModel0
46
+ */
47
+ violationClassificationDescription?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof ViolationModel0
52
+ */
53
+ violationClassificationFriendlyName?: string;
54
+ }
55
+ export declare function ViolationModel0FromJSON(json: any): ViolationModel0;
56
+ export declare function ViolationModel0FromJSONTyped(json: any, ignoreDiscriminator: boolean): ViolationModel0;
57
+ export declare function ViolationModel0ToJSON(value?: ViolationModel0 | null): any;
58
+ /**
59
+ * @export
60
+ * @enum {string}
61
+ */
62
+ export declare enum ViolationModel0ViolationClassificationEnum {
63
+ CLASS1FELONY = "CLASS_1_FELONY",
64
+ CLASS1MISDEMEANOR = "CLASS_1_MISDEMEANOR",
65
+ CLASS2FELONY = "CLASS_2_FELONY",
66
+ CLASS2MISDEMEANOR = "CLASS_2_MISDEMEANOR",
67
+ CLASS3FELONY = "CLASS_3_FELONY",
68
+ CLASS3MISDEMEANOR = "CLASS_3_MISDEMEANOR",
69
+ CLASS4FELONY = "CLASS_4_FELONY",
70
+ CLASS4MISDEMEANOR = "CLASS_4_MISDEMEANOR",
71
+ CLASS5FELONY = "CLASS_5_FELONY",
72
+ CLASS6FELONY = "CLASS_6_FELONY",
73
+ CLASSA1MISDEMEANOR = "CLASS_A1_MISDEMEANOR",
74
+ CLASSAFELONY = "CLASS_A_FELONY",
75
+ CLASSAINFRACTION = "CLASS_A_INFRACTION",
76
+ CLASSAMISDEMEANOR = "CLASS_A_MISDEMEANOR",
77
+ CLASSAVIOLATION = "CLASS_A_VIOLATION",
78
+ CLASSBFELONY = "CLASS_B_FELONY",
79
+ CLASSBINFRACTION = "CLASS_B_INFRACTION",
80
+ CLASSBMISDEMEANOR = "CLASS_B_MISDEMEANOR",
81
+ CLASSBVIOLATION = "CLASS_B_VIOLATION",
82
+ CLASSCFELONY = "CLASS_C_FELONY",
83
+ CLASSCINFRACTION = "CLASS_C_INFRACTION",
84
+ CLASSCMISDEMEANOR = "CLASS_C_MISDEMEANOR",
85
+ CLASSCVIOLATION = "CLASS_C_VIOLATION",
86
+ CLASSDFELONY = "CLASS_D_FELONY",
87
+ CLASSDMISDEMEANOR = "CLASS_D_MISDEMEANOR",
88
+ CLASSDVIOLATION = "CLASS_D_VIOLATION",
89
+ CLASSEFELONY = "CLASS_E_FELONY",
90
+ CLASSFFELONY = "CLASS_F_FELONY",
91
+ CLASSHFELONY = "CLASS_H_FELONY",
92
+ DISORDERLYPERSONSOFFENSE = "DISORDERLY_PERSONS_OFFENSE",
93
+ FELONY = "FELONY",
94
+ FELONY1STDEGREE = "FELONY_1ST_DEGREE",
95
+ FELONY2NDDEGREE = "FELONY_2ND_DEGREE",
96
+ FELONY3RDDEGREE = "FELONY_3RD_DEGREE",
97
+ FELONY4THDEGREE = "FELONY_4TH_DEGREE",
98
+ FELONY5THDEGREE = "FELONY_5TH_DEGREE",
99
+ GROSSMISDEMEANOR = "GROSS_MISDEMEANOR",
100
+ HIGHANDAGGRAVATEDMISDEMEANOR = "HIGH_AND_AGGRAVATED_MISDEMEANOR",
101
+ INFRACTION = "INFRACTION",
102
+ LEVEL4FELONY = "LEVEL_4_FELONY",
103
+ LEVEL5FELONY = "LEVEL_5_FELONY",
104
+ LEVEL6FELONY = "LEVEL_6_FELONY",
105
+ MINORMISDEMEANOR = "MINOR_MISDEMEANOR",
106
+ MISDEMEANOR = "MISDEMEANOR",
107
+ MISDEMEANOR1STDEGREE = "MISDEMEANOR_1ST_DEGREE",
108
+ MISDEMEANOR2NDDEGREE = "MISDEMEANOR_2ND_DEGREE",
109
+ MISDEMEANOR3RDDEGREE = "MISDEMEANOR_3RD_DEGREE",
110
+ MISDEMEANOR4THDEGREE = "MISDEMEANOR_4TH_DEGREE",
111
+ MISDEMEANORWITHREFUND = "MISDEMEANOR_WITH_REFUND",
112
+ NONMOVING = "NON_MOVING",
113
+ NONREPORTABLE = "NON_REPORTABLE",
114
+ PETTYMISDEMEANOR = "PETTY_MISDEMEANOR",
115
+ QUASICRIMINAL = "QUASI_CRIMINAL",
116
+ SUMMARYOFFENSE = "SUMMARY_OFFENSE",
117
+ SUMMARYOFFENSENOREFUND = "SUMMARY_OFFENSE_NO_REFUND",
118
+ WOBBLERTOFELONY = "WOBBLER_TO_FELONY",
119
+ WOBBLERTOMISDEMEANOR = "WOBBLER_TO_MISDEMEANOR"
120
+ }
@@ -0,0 +1,110 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function ViolationModel0FromJSON(json) {
16
+ return ViolationModel0FromJSONTyped(json, false);
17
+ }
18
+ export function ViolationModel0FromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'isCriminal': !exists(json, 'isCriminal') ? undefined : json['isCriminal'],
24
+ 'isMoving': !exists(json, 'isMoving') ? undefined : json['isMoving'],
25
+ 'userFriendlyName': !exists(json, 'userFriendlyName') ? undefined : json['userFriendlyName'],
26
+ 'violationClassification': !exists(json, 'violationClassification') ? undefined : json['violationClassification'],
27
+ 'violationClassificationDescription': !exists(json, 'violationClassificationDescription') ? undefined : json['violationClassificationDescription'],
28
+ 'violationClassificationFriendlyName': !exists(json, 'violationClassificationFriendlyName') ? undefined : json['violationClassificationFriendlyName'],
29
+ };
30
+ }
31
+ export function ViolationModel0ToJSON(value) {
32
+ if (value === undefined) {
33
+ return undefined;
34
+ }
35
+ if (value === null) {
36
+ return null;
37
+ }
38
+ return {
39
+ 'isCriminal': value.isCriminal,
40
+ 'isMoving': value.isMoving,
41
+ 'userFriendlyName': value.userFriendlyName,
42
+ 'violationClassification': value.violationClassification,
43
+ 'violationClassificationDescription': value.violationClassificationDescription,
44
+ 'violationClassificationFriendlyName': value.violationClassificationFriendlyName,
45
+ };
46
+ }
47
+ /**
48
+ * @export
49
+ * @enum {string}
50
+ */
51
+ export var ViolationModel0ViolationClassificationEnum;
52
+ (function (ViolationModel0ViolationClassificationEnum) {
53
+ ViolationModel0ViolationClassificationEnum["CLASS1FELONY"] = "CLASS_1_FELONY";
54
+ ViolationModel0ViolationClassificationEnum["CLASS1MISDEMEANOR"] = "CLASS_1_MISDEMEANOR";
55
+ ViolationModel0ViolationClassificationEnum["CLASS2FELONY"] = "CLASS_2_FELONY";
56
+ ViolationModel0ViolationClassificationEnum["CLASS2MISDEMEANOR"] = "CLASS_2_MISDEMEANOR";
57
+ ViolationModel0ViolationClassificationEnum["CLASS3FELONY"] = "CLASS_3_FELONY";
58
+ ViolationModel0ViolationClassificationEnum["CLASS3MISDEMEANOR"] = "CLASS_3_MISDEMEANOR";
59
+ ViolationModel0ViolationClassificationEnum["CLASS4FELONY"] = "CLASS_4_FELONY";
60
+ ViolationModel0ViolationClassificationEnum["CLASS4MISDEMEANOR"] = "CLASS_4_MISDEMEANOR";
61
+ ViolationModel0ViolationClassificationEnum["CLASS5FELONY"] = "CLASS_5_FELONY";
62
+ ViolationModel0ViolationClassificationEnum["CLASS6FELONY"] = "CLASS_6_FELONY";
63
+ ViolationModel0ViolationClassificationEnum["CLASSA1MISDEMEANOR"] = "CLASS_A1_MISDEMEANOR";
64
+ ViolationModel0ViolationClassificationEnum["CLASSAFELONY"] = "CLASS_A_FELONY";
65
+ ViolationModel0ViolationClassificationEnum["CLASSAINFRACTION"] = "CLASS_A_INFRACTION";
66
+ ViolationModel0ViolationClassificationEnum["CLASSAMISDEMEANOR"] = "CLASS_A_MISDEMEANOR";
67
+ ViolationModel0ViolationClassificationEnum["CLASSAVIOLATION"] = "CLASS_A_VIOLATION";
68
+ ViolationModel0ViolationClassificationEnum["CLASSBFELONY"] = "CLASS_B_FELONY";
69
+ ViolationModel0ViolationClassificationEnum["CLASSBINFRACTION"] = "CLASS_B_INFRACTION";
70
+ ViolationModel0ViolationClassificationEnum["CLASSBMISDEMEANOR"] = "CLASS_B_MISDEMEANOR";
71
+ ViolationModel0ViolationClassificationEnum["CLASSBVIOLATION"] = "CLASS_B_VIOLATION";
72
+ ViolationModel0ViolationClassificationEnum["CLASSCFELONY"] = "CLASS_C_FELONY";
73
+ ViolationModel0ViolationClassificationEnum["CLASSCINFRACTION"] = "CLASS_C_INFRACTION";
74
+ ViolationModel0ViolationClassificationEnum["CLASSCMISDEMEANOR"] = "CLASS_C_MISDEMEANOR";
75
+ ViolationModel0ViolationClassificationEnum["CLASSCVIOLATION"] = "CLASS_C_VIOLATION";
76
+ ViolationModel0ViolationClassificationEnum["CLASSDFELONY"] = "CLASS_D_FELONY";
77
+ ViolationModel0ViolationClassificationEnum["CLASSDMISDEMEANOR"] = "CLASS_D_MISDEMEANOR";
78
+ ViolationModel0ViolationClassificationEnum["CLASSDVIOLATION"] = "CLASS_D_VIOLATION";
79
+ ViolationModel0ViolationClassificationEnum["CLASSEFELONY"] = "CLASS_E_FELONY";
80
+ ViolationModel0ViolationClassificationEnum["CLASSFFELONY"] = "CLASS_F_FELONY";
81
+ ViolationModel0ViolationClassificationEnum["CLASSHFELONY"] = "CLASS_H_FELONY";
82
+ ViolationModel0ViolationClassificationEnum["DISORDERLYPERSONSOFFENSE"] = "DISORDERLY_PERSONS_OFFENSE";
83
+ ViolationModel0ViolationClassificationEnum["FELONY"] = "FELONY";
84
+ ViolationModel0ViolationClassificationEnum["FELONY1STDEGREE"] = "FELONY_1ST_DEGREE";
85
+ ViolationModel0ViolationClassificationEnum["FELONY2NDDEGREE"] = "FELONY_2ND_DEGREE";
86
+ ViolationModel0ViolationClassificationEnum["FELONY3RDDEGREE"] = "FELONY_3RD_DEGREE";
87
+ ViolationModel0ViolationClassificationEnum["FELONY4THDEGREE"] = "FELONY_4TH_DEGREE";
88
+ ViolationModel0ViolationClassificationEnum["FELONY5THDEGREE"] = "FELONY_5TH_DEGREE";
89
+ ViolationModel0ViolationClassificationEnum["GROSSMISDEMEANOR"] = "GROSS_MISDEMEANOR";
90
+ ViolationModel0ViolationClassificationEnum["HIGHANDAGGRAVATEDMISDEMEANOR"] = "HIGH_AND_AGGRAVATED_MISDEMEANOR";
91
+ ViolationModel0ViolationClassificationEnum["INFRACTION"] = "INFRACTION";
92
+ ViolationModel0ViolationClassificationEnum["LEVEL4FELONY"] = "LEVEL_4_FELONY";
93
+ ViolationModel0ViolationClassificationEnum["LEVEL5FELONY"] = "LEVEL_5_FELONY";
94
+ ViolationModel0ViolationClassificationEnum["LEVEL6FELONY"] = "LEVEL_6_FELONY";
95
+ ViolationModel0ViolationClassificationEnum["MINORMISDEMEANOR"] = "MINOR_MISDEMEANOR";
96
+ ViolationModel0ViolationClassificationEnum["MISDEMEANOR"] = "MISDEMEANOR";
97
+ ViolationModel0ViolationClassificationEnum["MISDEMEANOR1STDEGREE"] = "MISDEMEANOR_1ST_DEGREE";
98
+ ViolationModel0ViolationClassificationEnum["MISDEMEANOR2NDDEGREE"] = "MISDEMEANOR_2ND_DEGREE";
99
+ ViolationModel0ViolationClassificationEnum["MISDEMEANOR3RDDEGREE"] = "MISDEMEANOR_3RD_DEGREE";
100
+ ViolationModel0ViolationClassificationEnum["MISDEMEANOR4THDEGREE"] = "MISDEMEANOR_4TH_DEGREE";
101
+ ViolationModel0ViolationClassificationEnum["MISDEMEANORWITHREFUND"] = "MISDEMEANOR_WITH_REFUND";
102
+ ViolationModel0ViolationClassificationEnum["NONMOVING"] = "NON_MOVING";
103
+ ViolationModel0ViolationClassificationEnum["NONREPORTABLE"] = "NON_REPORTABLE";
104
+ ViolationModel0ViolationClassificationEnum["PETTYMISDEMEANOR"] = "PETTY_MISDEMEANOR";
105
+ ViolationModel0ViolationClassificationEnum["QUASICRIMINAL"] = "QUASI_CRIMINAL";
106
+ ViolationModel0ViolationClassificationEnum["SUMMARYOFFENSE"] = "SUMMARY_OFFENSE";
107
+ ViolationModel0ViolationClassificationEnum["SUMMARYOFFENSENOREFUND"] = "SUMMARY_OFFENSE_NO_REFUND";
108
+ ViolationModel0ViolationClassificationEnum["WOBBLERTOFELONY"] = "WOBBLER_TO_FELONY";
109
+ ViolationModel0ViolationClassificationEnum["WOBBLERTOMISDEMEANOR"] = "WOBBLER_TO_MISDEMEANOR";
110
+ })(ViolationModel0ViolationClassificationEnum || (ViolationModel0ViolationClassificationEnum = {}));
@@ -0,0 +1,60 @@
1
+ /**
2
+ * OffTheRecord Rest Service API - Devo
3
+ * A service to handle your traffic tickets
4
+ *
5
+ * The version of the OpenAPI document: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface WorkflowViolationPenaltyModel
16
+ */
17
+ export interface WorkflowViolationPenaltyModel {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof WorkflowViolationPenaltyModel
22
+ */
23
+ penaltyFriendlyDescription?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof WorkflowViolationPenaltyModel
28
+ */
29
+ penaltyType?: WorkflowViolationPenaltyModelPenaltyTypeEnum;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof WorkflowViolationPenaltyModel
34
+ */
35
+ penaltyValue?: string;
36
+ }
37
+ export declare function WorkflowViolationPenaltyModelFromJSON(json: any): WorkflowViolationPenaltyModel;
38
+ export declare function WorkflowViolationPenaltyModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowViolationPenaltyModel;
39
+ export declare function WorkflowViolationPenaltyModelToJSON(value?: WorkflowViolationPenaltyModel | null): any;
40
+ /**
41
+ * @export
42
+ * @enum {string}
43
+ */
44
+ export declare enum WorkflowViolationPenaltyModelPenaltyTypeEnum {
45
+ DEMERITPOINTS = "DEMERIT_POINTS",
46
+ INCARCERATIONMAXDAYS = "INCARCERATION_MAX_DAYS",
47
+ INCARCERATIONMINDAYS = "INCARCERATION_MIN_DAYS",
48
+ INSURANCEPOINTS = "INSURANCE_POINTS",
49
+ INSURANCERATEINCREASE = "INSURANCE_RATE_INCREASE",
50
+ LICENSEREVOCATIONMAXDAYS = "LICENSE_REVOCATION_MAX_DAYS",
51
+ LICENSEREVOCATIONMINDAYS = "LICENSE_REVOCATION_MIN_DAYS",
52
+ LICENSESUSPENSIONMAXDAYS = "LICENSE_SUSPENSION_MAX_DAYS",
53
+ LICENSESUSPENSIONMINDAYS = "LICENSE_SUSPENSION_MIN_DAYS",
54
+ MANDATORYCOURTAPPEARANCE = "MANDATORY_COURT_APPEARANCE",
55
+ MANDATORYCOURTAPPEARANCEWITHATTORNEY = "MANDATORY_COURT_APPEARANCE_WITH_ATTORNEY",
56
+ MAXBAILAMOUNT = "MAX_BAIL_AMOUNT",
57
+ MINBAILAMOUNT = "MIN_BAIL_AMOUNT",
58
+ PROBATIONINDAYS = "PROBATION_IN_DAYS",
59
+ TOTALBAILAMOUNT = "TOTAL_BAIL_AMOUNT"
60
+ }
@@ -0,0 +1,62 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * OffTheRecord Rest Service API - Devo
5
+ * A service to handle your traffic tickets
6
+ *
7
+ * The version of the OpenAPI document: 1.0
8
+ *
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+ import { exists } from '../runtime';
15
+ export function WorkflowViolationPenaltyModelFromJSON(json) {
16
+ return WorkflowViolationPenaltyModelFromJSONTyped(json, false);
17
+ }
18
+ export function WorkflowViolationPenaltyModelFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'penaltyFriendlyDescription': !exists(json, 'penaltyFriendlyDescription') ? undefined : json['penaltyFriendlyDescription'],
24
+ 'penaltyType': !exists(json, 'penaltyType') ? undefined : json['penaltyType'],
25
+ 'penaltyValue': !exists(json, 'penaltyValue') ? undefined : json['penaltyValue'],
26
+ };
27
+ }
28
+ export function WorkflowViolationPenaltyModelToJSON(value) {
29
+ if (value === undefined) {
30
+ return undefined;
31
+ }
32
+ if (value === null) {
33
+ return null;
34
+ }
35
+ return {
36
+ 'penaltyFriendlyDescription': value.penaltyFriendlyDescription,
37
+ 'penaltyType': value.penaltyType,
38
+ 'penaltyValue': value.penaltyValue,
39
+ };
40
+ }
41
+ /**
42
+ * @export
43
+ * @enum {string}
44
+ */
45
+ export var WorkflowViolationPenaltyModelPenaltyTypeEnum;
46
+ (function (WorkflowViolationPenaltyModelPenaltyTypeEnum) {
47
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["DEMERITPOINTS"] = "DEMERIT_POINTS";
48
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["INCARCERATIONMAXDAYS"] = "INCARCERATION_MAX_DAYS";
49
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["INCARCERATIONMINDAYS"] = "INCARCERATION_MIN_DAYS";
50
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["INSURANCEPOINTS"] = "INSURANCE_POINTS";
51
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["INSURANCERATEINCREASE"] = "INSURANCE_RATE_INCREASE";
52
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["LICENSEREVOCATIONMAXDAYS"] = "LICENSE_REVOCATION_MAX_DAYS";
53
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["LICENSEREVOCATIONMINDAYS"] = "LICENSE_REVOCATION_MIN_DAYS";
54
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["LICENSESUSPENSIONMAXDAYS"] = "LICENSE_SUSPENSION_MAX_DAYS";
55
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["LICENSESUSPENSIONMINDAYS"] = "LICENSE_SUSPENSION_MIN_DAYS";
56
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["MANDATORYCOURTAPPEARANCE"] = "MANDATORY_COURT_APPEARANCE";
57
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["MANDATORYCOURTAPPEARANCEWITHATTORNEY"] = "MANDATORY_COURT_APPEARANCE_WITH_ATTORNEY";
58
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["MAXBAILAMOUNT"] = "MAX_BAIL_AMOUNT";
59
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["MINBAILAMOUNT"] = "MIN_BAIL_AMOUNT";
60
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["PROBATIONINDAYS"] = "PROBATION_IN_DAYS";
61
+ WorkflowViolationPenaltyModelPenaltyTypeEnum["TOTALBAILAMOUNT"] = "TOTAL_BAIL_AMOUNT";
62
+ })(WorkflowViolationPenaltyModelPenaltyTypeEnum || (WorkflowViolationPenaltyModelPenaltyTypeEnum = {}));
@@ -12675,6 +12675,8 @@ export interface components {
12675
12675
  hasFlagMessage?: boolean;
12676
12676
  hasStarMessage?: boolean;
12677
12677
  hasUnreadMessages?: boolean;
12678
+ /** Format: date-time */
12679
+ lastActivityDateUtc?: string;
12678
12680
  /** @enum {string} */
12679
12681
  lawfirmCaseDecisionStatus?: PathsApiV1LawfirmsLawfirmIdInboxMessagesGetParametersQueryLawfirmCaseDecisionStatus;
12680
12682
  /** Format: date-time */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.5.173",
3
+ "version": "2.5.175",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"