@otr-app/shared-backend-generated-client 2.3.283 → 2.4.1

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/api/lawfirmController.service.ts +58 -0
  2. package/dist/otrBackendService.js +34 -0
  3. package/dist/otrBackendService.min.js +4 -4
  4. package/dist/typescript/api/LawfirmControllerApi.d.ts +6 -0
  5. package/dist/typescript/api/LawfirmControllerApi.js +25 -0
  6. package/package.json +1 -1
  7. package/dist/angular/api/trafficViolationController.service.ts +0 -504
  8. package/dist/angular/api/watchlistController.service.ts +0 -238
  9. package/dist/angular/model/acceptCaseCounterRequest.ts +0 -21
  10. package/dist/angular/model/caseDomain.ts +0 -108
  11. package/dist/angular/model/caseDomainReq.ts +0 -108
  12. package/dist/angular/model/caseDomainRes.ts +0 -108
  13. package/dist/angular/model/citationDomain.ts +0 -134
  14. package/dist/angular/model/citationDomainReq.ts +0 -134
  15. package/dist/angular/model/citationDomainRes.ts +0 -134
  16. package/dist/angular/model/coachingCardEntity.ts +0 -24
  17. package/dist/angular/model/contactLoopWebhookRequest.ts +0 -27
  18. package/dist/angular/model/externalContentVoteModel.ts +0 -19
  19. package/dist/angular/model/externalTicketSiteOutput.ts +0 -18
  20. package/dist/angular/model/externalUserContentVoteModel.ts +0 -30
  21. package/dist/angular/model/getCitationsResponse.ts +0 -18
  22. package/dist/angular/model/getExternalContentUserVotesResponse.ts +0 -18
  23. package/dist/angular/model/getExternalTicketModel.ts +0 -30
  24. package/dist/angular/model/getExternalTicketsResponse.ts +0 -29
  25. package/dist/angular/model/lawfirmCaseDomain.ts +0 -51
  26. package/dist/angular/model/lawfirmCaseDomainReq.ts +0 -51
  27. package/dist/angular/model/lawfirmCaseDomainRes.ts +0 -51
  28. package/dist/angular/model/listBillingSubscribersRequest.ts +0 -17
  29. package/dist/angular/model/trafficViolationTypeDomain.ts +0 -89
  30. package/dist/angular/model/userWatchlistsResponseModel.ts +0 -19
  31. package/dist/angular/model/watchlistItemsRequest.ts +0 -19
  32. package/dist/angular/model/workflowStateResponse.ts +0 -19
@@ -540,6 +540,64 @@ export class LawfirmControllerService {
540
540
  );
541
541
  }
542
542
 
543
+ /**
544
+ * getLawfirmByPrimaryEmail
545
+ * @param primaryLawfirmEmail primaryLawfirmEmail
546
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
547
+ * @param reportProgress flag to report request and response progress.
548
+ */
549
+ public getLawfirmByPrimaryEmailUsingGET(primaryLawfirmEmail: string, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<GetLawfirmResponse>;
550
+ public getLawfirmByPrimaryEmailUsingGET(primaryLawfirmEmail: string, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<GetLawfirmResponse>>;
551
+ public getLawfirmByPrimaryEmailUsingGET(primaryLawfirmEmail: string, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<GetLawfirmResponse>>;
552
+ public getLawfirmByPrimaryEmailUsingGET(primaryLawfirmEmail: string, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
553
+ if (primaryLawfirmEmail === null || primaryLawfirmEmail === undefined) {
554
+ throw new Error('Required parameter primaryLawfirmEmail was null or undefined when calling getLawfirmByPrimaryEmailUsingGET.');
555
+ }
556
+
557
+ let localVarHeaders = this.defaultHeaders;
558
+
559
+ let localVarHttpHeaderAcceptSelected: string | undefined = options && options.httpHeaderAccept;
560
+ if (localVarHttpHeaderAcceptSelected === undefined) {
561
+ // to determine the Accept header
562
+ const httpHeaderAccepts: string[] = [
563
+ '*/*'
564
+ ];
565
+ localVarHttpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
566
+ }
567
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
568
+ localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);
569
+ }
570
+
571
+ let localVarHttpContext: HttpContext | undefined = options && options.context;
572
+ if (localVarHttpContext === undefined) {
573
+ localVarHttpContext = new HttpContext();
574
+ }
575
+
576
+
577
+ let responseType_: 'text' | 'json' | 'blob' = 'json';
578
+ if (localVarHttpHeaderAcceptSelected) {
579
+ if (localVarHttpHeaderAcceptSelected.startsWith('text')) {
580
+ responseType_ = 'text';
581
+ } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
582
+ responseType_ = 'json';
583
+ } else {
584
+ responseType_ = 'blob';
585
+ }
586
+ }
587
+
588
+ let localVarPath = `/api/v1/lawfirms/email/${this.configuration.encodeParam({name: "primaryLawfirmEmail", value: primaryLawfirmEmail, in: "path", style: "simple", explode: false, dataType: "string", dataFormat: undefined})}`;
589
+ return this.httpClient.request<GetLawfirmResponse>('get', `${this.configuration.basePath}${localVarPath}`,
590
+ {
591
+ context: localVarHttpContext,
592
+ responseType: <any>responseType_,
593
+ withCredentials: this.configuration.withCredentials,
594
+ headers: localVarHeaders,
595
+ observe: observe,
596
+ reportProgress: reportProgress
597
+ }
598
+ );
599
+ }
600
+
543
601
  /**
544
602
  * getLawfirmByUrl
545
603
  * @param seoUrl seoUrl
@@ -8991,6 +8991,40 @@ angular.module('otrBackendService', [])
8991
8991
 
8992
8992
  return deferred.promise;
8993
8993
  };
8994
+ /**
8995
+ * getLawfirmByPrimaryEmail
8996
+ * @method
8997
+ * @name OtrService#getLawfirmByPrimaryEmailUsingGET
8998
+ * @param {object} parameters - method options and parameters
8999
+ * @param {string} parameters.primaryLawfirmEmail - primaryLawfirmEmail
9000
+ */
9001
+ OtrService.prototype.getLawfirmByPrimaryEmailUsingGET = function(parameters) {
9002
+ if (parameters === undefined) {
9003
+ parameters = {};
9004
+ }
9005
+ var deferred = $q.defer();
9006
+ var domain = this.domain,
9007
+ path = '/api/v1/lawfirms/email/{primaryLawfirmEmail}';
9008
+ var body = {},
9009
+ queryParameters = {},
9010
+ headers = {},
9011
+ form = {};
9012
+
9013
+ headers['Accept'] = ['*/*'];
9014
+
9015
+ path = path.replace('{primaryLawfirmEmail}', parameters['primaryLawfirmEmail']);
9016
+
9017
+ if (parameters['primaryLawfirmEmail'] === undefined) {
9018
+ deferred.reject(new Error('Missing required parameter: primaryLawfirmEmail'));
9019
+ return deferred.promise;
9020
+ }
9021
+
9022
+ queryParameters = mergeQueryParams(parameters, queryParameters);
9023
+
9024
+ this.request('GET', domain + path, parameters, body, headers, queryParameters, form, deferred);
9025
+
9026
+ return deferred.promise;
9027
+ };
8994
9028
  /**
8995
9029
  * deleteLawfirmFeeRecord
8996
9030
  * @method