@otr-app/shared-backend-generated-client 2.4.97 → 2.4.99

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 (32) hide show
  1. package/dist/angular/.openapi-generator/FILES +2 -0
  2. package/dist/angular/api/lawfirmController.service.ts +4 -12
  3. package/dist/angular/model/dashboardCaseModel.ts +2 -0
  4. package/dist/angular/model/dashboardDisputeModel.ts +19 -0
  5. package/dist/angular/model/getLawfirmModel.ts +2 -0
  6. package/dist/angular/model/models.ts +2 -0
  7. package/dist/angular/model/supportedStateModel.ts +75 -0
  8. package/dist/otrBackendService.js +0 -5
  9. package/dist/otrBackendService.min.js +2 -2
  10. package/dist/typescript/api/LawfirmControllerApi.d.ts +1 -2
  11. package/dist/typescript/api/LawfirmControllerApi.js +1 -5
  12. package/dist/typescript/model/DashboardCaseModel.d.ts +1 -0
  13. package/dist/typescript/model/DashboardDisputeModel.d.ts +16 -0
  14. package/dist/typescript/model/DashboardDisputeModel.js +12 -0
  15. package/dist/typescript/model/GetLawfirmModel.d.ts +1 -0
  16. package/dist/typescript/model/SupportedStateModel.d.ts +70 -0
  17. package/dist/typescript/model/SupportedStateModel.js +68 -0
  18. package/dist/typescript/model/models.d.ts +2 -0
  19. package/dist/typescript/model/models.js +2 -0
  20. package/dist/typescript-fetch/apis/LawfirmControllerApi.d.ts +0 -1
  21. package/dist/typescript-fetch/apis/LawfirmControllerApi.js +0 -3
  22. package/dist/typescript-fetch/models/DashboardCaseModel.d.ts +7 -1
  23. package/dist/typescript-fetch/models/DashboardCaseModel.js +3 -1
  24. package/dist/typescript-fetch/models/DashboardDisputeModel.d.ts +39 -0
  25. package/dist/typescript-fetch/models/DashboardDisputeModel.js +40 -0
  26. package/dist/typescript-fetch/models/GetLawfirmModel.d.ts +7 -1
  27. package/dist/typescript-fetch/models/GetLawfirmModel.js +3 -1
  28. package/dist/typescript-fetch/models/SupportedStateModel.d.ts +90 -0
  29. package/dist/typescript-fetch/models/SupportedStateModel.js +96 -0
  30. package/dist/typescript-fetch/models/index.d.ts +2 -0
  31. package/dist/typescript-fetch/models/index.js +2 -0
  32. package/package.json +1 -1
@@ -321,6 +321,7 @@ model/dashboardCaseModel.ts
321
321
  model/dashboardCaseUserModel.ts
322
322
  model/dashboardCitationModel.ts
323
323
  model/dashboardCourtModel.ts
324
+ model/dashboardDisputeModel.ts
324
325
  model/dashboardStatusModel.ts
325
326
  model/declineCaseCounterRequest.ts
326
327
  model/declineCategory.ts
@@ -833,6 +834,7 @@ model/subscriptionDiscountEligibility.ts
833
834
  model/subscriptionDiscountEligibilityReq.ts
834
835
  model/subscriptionDiscountEligibilityRes.ts
835
836
  model/subscriptionGuardianModel.ts
837
+ model/supportedStateModel.ts
836
838
  model/syncStripeChargesRequest.ts
837
839
  model/syncStripeChargesResponse.ts
838
840
  model/syncStripeDisputeResponse.ts
@@ -968,24 +968,17 @@ export class LawfirmControllerService {
968
968
  /**
969
969
  * getLawfirm
970
970
  * @param lawfirmIdString lawfirmIdString
971
- * @param isDetailsRequired isDetailsRequired
972
971
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
973
972
  * @param reportProgress flag to report request and response progress.
974
973
  */
975
- public getLawfirmUsingGET(lawfirmIdString: string, isDetailsRequired?: boolean, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetLawfirmResponse>;
976
- public getLawfirmUsingGET(lawfirmIdString: string, isDetailsRequired?: boolean, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetLawfirmResponse>>;
977
- public getLawfirmUsingGET(lawfirmIdString: string, isDetailsRequired?: boolean, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetLawfirmResponse>>;
978
- public getLawfirmUsingGET(lawfirmIdString: string, isDetailsRequired?: boolean, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
974
+ public getLawfirmUsingGET(lawfirmIdString: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetLawfirmResponse>;
975
+ public getLawfirmUsingGET(lawfirmIdString: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetLawfirmResponse>>;
976
+ public getLawfirmUsingGET(lawfirmIdString: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetLawfirmResponse>>;
977
+ public getLawfirmUsingGET(lawfirmIdString: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
979
978
  if (lawfirmIdString === null || lawfirmIdString === undefined) {
980
979
  throw new Error('Required parameter lawfirmIdString was null or undefined when calling getLawfirmUsingGET.');
981
980
  }
982
981
 
983
- let localVarQueryParameters = new HttpParams({encoder: this.encoder});
984
- if (isDetailsRequired !== undefined && isDetailsRequired !== null) {
985
- localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,
986
- <any>isDetailsRequired, 'isDetailsRequired');
987
- }
988
-
989
982
  let localVarHeaders = this.defaultHeaders;
990
983
 
991
984
  let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
@@ -1021,7 +1014,6 @@ export class LawfirmControllerService {
1021
1014
  return this.httpClient.request<GetLawfirmResponse>('get', `${this.configuration.basePath}${localVarPath}`,
1022
1015
  {
1023
1016
  context: localVarHttpContext,
1024
- params: localVarQueryParameters,
1025
1017
  responseType: <any>responseType_,
1026
1018
  withCredentials: this.configuration.withCredentials,
1027
1019
  headers: localVarHeaders,
@@ -12,6 +12,7 @@
12
12
  import { DashboardStatusModel } from './dashboardStatusModel';
13
13
  import { DashboardCourtModel } from './dashboardCourtModel';
14
14
  import { ViolationModel0 } from './violationModel0';
15
+ import { DashboardDisputeModel } from './dashboardDisputeModel';
15
16
  import { DashboardCaseCounterOfferModel } from './dashboardCaseCounterOfferModel';
16
17
  import { CaseUserDetailsModel } from './caseUserDetailsModel';
17
18
  import { DashboardCitationModel } from './dashboardCitationModel';
@@ -28,6 +29,7 @@ export interface DashboardCaseModel {
28
29
  caseUserDetails?: CaseUserDetailsModel;
29
30
  citation?: DashboardCitationModel;
30
31
  court?: DashboardCourtModel;
32
+ dispute?: DashboardDisputeModel;
31
33
  engagementLetter?: EngagementLetterModel;
32
34
  hasLeftLawyerReview?: boolean;
33
35
  lawfirmId?: number;
@@ -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
+
13
+
14
+ export interface DashboardDisputeModel {
15
+ amountDisputedInCents?: number;
16
+ disputeReason?: string;
17
+ hasDispute?: boolean;
18
+ }
19
+
@@ -10,6 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { AddressDomain } from './addressDomain';
13
+ import { SupportedStateModel } from './supportedStateModel';
13
14
  import { LawfirmSettingsDomainRes } from './lawfirmSettingsDomainRes';
14
15
  import { LawfirmRedirectModel } from './lawfirmRedirectModel';
15
16
 
@@ -39,6 +40,7 @@ export interface GetLawfirmModel {
39
40
  redirects?: Array<LawfirmRedirectModel>;
40
41
  seoUrl?: string;
41
42
  settings?: LawfirmSettingsDomainRes;
43
+ supportedStateModels?: Array<SupportedStateModel>;
42
44
  supportedStates?: Array<GetLawfirmModel.SupportedStatesEnum>;
43
45
  tagLine?: string;
44
46
  website?: string;
@@ -197,6 +197,7 @@ export * from './dashboardCaseModel';
197
197
  export * from './dashboardCaseUserModel';
198
198
  export * from './dashboardCitationModel';
199
199
  export * from './dashboardCourtModel';
200
+ export * from './dashboardDisputeModel';
200
201
  export * from './dashboardStatusModel';
201
202
  export * from './declineCaseCounterRequest';
202
203
  export * from './declineCategory';
@@ -708,6 +709,7 @@ export * from './subscriptionDiscountEligibility';
708
709
  export * from './subscriptionDiscountEligibilityReq';
709
710
  export * from './subscriptionDiscountEligibilityRes';
710
711
  export * from './subscriptionGuardianModel';
712
+ export * from './supportedStateModel';
711
713
  export * from './syncStripeChargesRequest';
712
714
  export * from './syncStripeChargesResponse';
713
715
  export * from './syncStripeDisputeResponse';
@@ -0,0 +1,75 @@
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 interface SupportedStateModel {
15
+ newAlgoEnabled?: boolean;
16
+ state?: SupportedStateModel.StateEnum;
17
+ }
18
+ export namespace SupportedStateModel {
19
+ export type StateEnum = 'AK' | 'AL' | 'AR' | 'AZ' | 'CA' | 'CO' | 'CT' | 'DC' | 'DE' | 'FL' | 'GA' | 'HI' | 'IA' | 'ID' | 'IL' | 'IN' | 'KS' | 'KY' | 'LA' | 'MA' | 'MD' | 'ME' | 'MI' | 'MN' | 'MO' | 'MS' | 'MT' | 'NC' | 'ND' | 'NE' | 'NH' | 'NJ' | 'NM' | 'NV' | 'NY' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VA' | 'VT' | 'WA' | 'WI' | 'WV' | 'WY';
20
+ export const StateEnum = {
21
+ Ak: 'AK' as StateEnum,
22
+ Al: 'AL' as StateEnum,
23
+ Ar: 'AR' as StateEnum,
24
+ Az: 'AZ' as StateEnum,
25
+ Ca: 'CA' as StateEnum,
26
+ Co: 'CO' as StateEnum,
27
+ Ct: 'CT' as StateEnum,
28
+ Dc: 'DC' as StateEnum,
29
+ De: 'DE' as StateEnum,
30
+ Fl: 'FL' as StateEnum,
31
+ Ga: 'GA' as StateEnum,
32
+ Hi: 'HI' as StateEnum,
33
+ Ia: 'IA' as StateEnum,
34
+ Id: 'ID' as StateEnum,
35
+ Il: 'IL' as StateEnum,
36
+ In: 'IN' as StateEnum,
37
+ Ks: 'KS' as StateEnum,
38
+ Ky: 'KY' as StateEnum,
39
+ La: 'LA' as StateEnum,
40
+ Ma: 'MA' as StateEnum,
41
+ Md: 'MD' as StateEnum,
42
+ Me: 'ME' as StateEnum,
43
+ Mi: 'MI' as StateEnum,
44
+ Mn: 'MN' as StateEnum,
45
+ Mo: 'MO' as StateEnum,
46
+ Ms: 'MS' as StateEnum,
47
+ Mt: 'MT' as StateEnum,
48
+ Nc: 'NC' as StateEnum,
49
+ Nd: 'ND' as StateEnum,
50
+ Ne: 'NE' as StateEnum,
51
+ Nh: 'NH' as StateEnum,
52
+ Nj: 'NJ' as StateEnum,
53
+ Nm: 'NM' as StateEnum,
54
+ Nv: 'NV' as StateEnum,
55
+ Ny: 'NY' as StateEnum,
56
+ Oh: 'OH' as StateEnum,
57
+ Ok: 'OK' as StateEnum,
58
+ Or: 'OR' as StateEnum,
59
+ Pa: 'PA' as StateEnum,
60
+ Ri: 'RI' as StateEnum,
61
+ Sc: 'SC' as StateEnum,
62
+ Sd: 'SD' as StateEnum,
63
+ Tn: 'TN' as StateEnum,
64
+ Tx: 'TX' as StateEnum,
65
+ Ut: 'UT' as StateEnum,
66
+ Va: 'VA' as StateEnum,
67
+ Vt: 'VT' as StateEnum,
68
+ Wa: 'WA' as StateEnum,
69
+ Wi: 'WI' as StateEnum,
70
+ Wv: 'WV' as StateEnum,
71
+ Wy: 'WY' as StateEnum
72
+ };
73
+ }
74
+
75
+
@@ -9661,7 +9661,6 @@ angular.module('otrBackendService', [])
9661
9661
  * @method
9662
9662
  * @name OtrService#getLawfirmUsingGET
9663
9663
  * @param {object} parameters - method options and parameters
9664
- * @param {boolean} parameters.isDetailsRequired - isDetailsRequired
9665
9664
  * @param {string} parameters.lawfirmIdString - lawfirmIdString
9666
9665
  */
9667
9666
  OtrService.prototype.getLawfirmUsingGET = function(parameters) {
@@ -9678,10 +9677,6 @@ angular.module('otrBackendService', [])
9678
9677
 
9679
9678
  headers['Accept'] = ['*/*'];
9680
9679
 
9681
- if (parameters['isDetailsRequired'] !== undefined) {
9682
- queryParameters['isDetailsRequired'] = parameters['isDetailsRequired'];
9683
- }
9684
-
9685
9680
  path = path.replace('{lawfirmIdString}', parameters['lawfirmIdString']);
9686
9681
 
9687
9682
  if (parameters['lawfirmIdString'] === undefined) {