@otr-app/shared-backend-generated-client 2.4.91 → 2.4.93

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/.openapi-generator/FILES +3 -0
  2. package/dist/angular/api/activityFeedController.service.ts +19 -4
  3. package/dist/angular/api/listCasesController.service.ts +4 -4
  4. package/dist/angular/model/caseCounterOfferModel.ts +11 -12
  5. package/dist/angular/model/dashboardCaseModel.ts +8 -0
  6. package/dist/angular/model/engagementLetterModel.ts +18 -0
  7. package/dist/angular/model/models.ts +3 -0
  8. package/dist/angular/model/overduePaymentModel.ts +17 -0
  9. package/dist/angular/model/violationModel0.ts +17 -0
  10. package/dist/otrBackendService.js +15 -0
  11. package/dist/otrBackendService.min.js +7 -7
  12. package/dist/typescript/api/ActivityFeedControllerApi.d.ts +4 -1
  13. package/dist/typescript/api/ActivityFeedControllerApi.js +13 -1
  14. package/dist/typescript/api/ListCasesControllerApi.d.ts +1 -1
  15. package/dist/typescript/model/CaseCounterOfferModel.d.ts +9 -12
  16. package/dist/typescript/model/CaseCounterOfferModel.js +10 -1
  17. package/dist/typescript/model/DashboardCaseModel.d.ts +4 -0
  18. package/dist/typescript/model/EngagementLetterModel.d.ts +15 -0
  19. package/dist/typescript/model/EngagementLetterModel.js +12 -0
  20. package/dist/typescript/model/OverduePaymentModel.d.ts +14 -0
  21. package/dist/typescript/model/OverduePaymentModel.js +12 -0
  22. package/dist/typescript/model/ViolationModel0.d.ts +14 -0
  23. package/dist/typescript/model/ViolationModel0.js +12 -0
  24. package/dist/typescript/model/models.d.ts +3 -0
  25. package/dist/typescript/model/models.js +3 -0
  26. package/dist/typescript-fetch/apis/ActivityFeedControllerApi.d.ts +14 -0
  27. package/dist/typescript-fetch/apis/ActivityFeedControllerApi.js +21 -0
  28. package/dist/typescript-fetch/apis/ListCasesControllerApi.d.ts +1 -0
  29. package/dist/typescript-fetch/apis/ListCasesControllerApi.js +1 -0
  30. package/dist/typescript-fetch/models/CaseCounterOfferModel.d.ts +11 -62
  31. package/dist/typescript-fetch/models/CaseCounterOfferModel.js +11 -21
  32. package/dist/typescript-fetch/models/DashboardCaseModel.d.ts +25 -1
  33. package/dist/typescript-fetch/models/DashboardCaseModel.js +9 -1
  34. package/dist/typescript-fetch/models/EngagementLetterModel.d.ts +33 -0
  35. package/dist/typescript-fetch/models/EngagementLetterModel.js +38 -0
  36. package/dist/typescript-fetch/models/OverduePaymentModel.d.ts +27 -0
  37. package/dist/typescript-fetch/models/OverduePaymentModel.js +36 -0
  38. package/dist/typescript-fetch/models/ViolationModel0.d.ts +27 -0
  39. package/dist/typescript-fetch/models/ViolationModel0.js +36 -0
  40. package/dist/typescript-fetch/models/index.d.ts +3 -0
  41. package/dist/typescript-fetch/models/index.js +3 -0
  42. package/package.json +1 -1
@@ -0,0 +1,38 @@
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 EngagementLetterModelFromJSON(json) {
16
+ return EngagementLetterModelFromJSONTyped(json, false);
17
+ }
18
+ export function EngagementLetterModelFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'acknowledged': !exists(json, 'acknowledged') ? undefined : json['acknowledged'],
24
+ 'engagementLetterUrl': !exists(json, 'engagementLetterUrl') ? undefined : json['engagementLetterUrl'],
25
+ };
26
+ }
27
+ export function EngagementLetterModelToJSON(value) {
28
+ if (value === undefined) {
29
+ return undefined;
30
+ }
31
+ if (value === null) {
32
+ return null;
33
+ }
34
+ return {
35
+ 'acknowledged': value.acknowledged,
36
+ 'engagementLetterUrl': value.engagementLetterUrl,
37
+ };
38
+ }
@@ -0,0 +1,27 @@
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 OverduePaymentModel
16
+ */
17
+ export interface OverduePaymentModel {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof OverduePaymentModel
22
+ */
23
+ overduePaymentAmountInCents?: number;
24
+ }
25
+ export declare function OverduePaymentModelFromJSON(json: any): OverduePaymentModel;
26
+ export declare function OverduePaymentModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): OverduePaymentModel;
27
+ export declare function OverduePaymentModelToJSON(value?: OverduePaymentModel | null): any;
@@ -0,0 +1,36 @@
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 OverduePaymentModelFromJSON(json) {
16
+ return OverduePaymentModelFromJSONTyped(json, false);
17
+ }
18
+ export function OverduePaymentModelFromJSONTyped(json, ignoreDiscriminator) {
19
+ if ((json === undefined) || (json === null)) {
20
+ return json;
21
+ }
22
+ return {
23
+ 'overduePaymentAmountInCents': !exists(json, 'overduePaymentAmountInCents') ? undefined : json['overduePaymentAmountInCents'],
24
+ };
25
+ }
26
+ export function OverduePaymentModelToJSON(value) {
27
+ if (value === undefined) {
28
+ return undefined;
29
+ }
30
+ if (value === null) {
31
+ return null;
32
+ }
33
+ return {
34
+ 'overduePaymentAmountInCents': value.overduePaymentAmountInCents,
35
+ };
36
+ }
@@ -0,0 +1,27 @@
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 {string}
21
+ * @memberof ViolationModel0
22
+ */
23
+ userFriendlyName?: string;
24
+ }
25
+ export declare function ViolationModel0FromJSON(json: any): ViolationModel0;
26
+ export declare function ViolationModel0FromJSONTyped(json: any, ignoreDiscriminator: boolean): ViolationModel0;
27
+ export declare function ViolationModel0ToJSON(value?: ViolationModel0 | null): any;
@@ -0,0 +1,36 @@
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
+ 'userFriendlyName': !exists(json, 'userFriendlyName') ? undefined : json['userFriendlyName'],
24
+ };
25
+ }
26
+ export function ViolationModel0ToJSON(value) {
27
+ if (value === undefined) {
28
+ return undefined;
29
+ }
30
+ if (value === null) {
31
+ return null;
32
+ }
33
+ return {
34
+ 'userFriendlyName': value.userFriendlyName,
35
+ };
36
+ }
@@ -225,6 +225,7 @@ export * from './EnableViolationModel';
225
225
  export * from './EnableViolationResponseModel';
226
226
  export * from './EnableViolationsForLawfirmRequest';
227
227
  export * from './EnableViolationsForLawfirmResponse';
228
+ export * from './EngagementLetterModel';
228
229
  export * from './EstimateInsuranceSavingsRequest';
229
230
  export * from './EstimateInsuranceSavingsResponse';
230
231
  export * from './ExistingAccountDetails';
@@ -546,6 +547,7 @@ export * from './OCRPredictionCaseResponse';
546
547
  export * from './OCRViolationModel';
547
548
  export * from './OtherCase';
548
549
  export * from './OutgoingContactDomain';
550
+ export * from './OverduePaymentModel';
549
551
  export * from './PaymentCardInput';
550
552
  export * from './PaymentPlanTypeModel';
551
553
  export * from './PaymentPlanTypeModelReq';
@@ -817,6 +819,7 @@ export * from './ViolationClassificationModel';
817
819
  export * from './ViolationInput';
818
820
  export * from './ViolationInputRequest';
819
821
  export * from './ViolationModel';
822
+ export * from './ViolationModel0';
820
823
  export * from './ViolationNames';
821
824
  export * from './ViolationPenaltyModel';
822
825
  export * from './ViolationPenaltyResponse';
@@ -225,6 +225,7 @@ export * from './EnableViolationModel';
225
225
  export * from './EnableViolationResponseModel';
226
226
  export * from './EnableViolationsForLawfirmRequest';
227
227
  export * from './EnableViolationsForLawfirmResponse';
228
+ export * from './EngagementLetterModel';
228
229
  export * from './EstimateInsuranceSavingsRequest';
229
230
  export * from './EstimateInsuranceSavingsResponse';
230
231
  export * from './ExistingAccountDetails';
@@ -546,6 +547,7 @@ export * from './OCRPredictionCaseResponse';
546
547
  export * from './OCRViolationModel';
547
548
  export * from './OtherCase';
548
549
  export * from './OutgoingContactDomain';
550
+ export * from './OverduePaymentModel';
549
551
  export * from './PaymentCardInput';
550
552
  export * from './PaymentPlanTypeModel';
551
553
  export * from './PaymentPlanTypeModelReq';
@@ -817,6 +819,7 @@ export * from './ViolationClassificationModel';
817
819
  export * from './ViolationInput';
818
820
  export * from './ViolationInputRequest';
819
821
  export * from './ViolationModel';
822
+ export * from './ViolationModel0';
820
823
  export * from './ViolationNames';
821
824
  export * from './ViolationPenaltyModel';
822
825
  export * from './ViolationPenaltyResponse';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.4.91",
3
+ "version": "2.4.93",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"