@otr-app/shared-backend-generated-client 2.3.260 → 2.3.262

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.
@@ -102,10 +102,10 @@ export class LawfirmSurchargeControllerService {
102
102
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
103
103
  * @param reportProgress flag to report request and response progress.
104
104
  */
105
- public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'STATE_PAGE' | 'STOREFRONT', observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<ListLawfirmSurchargesResponse>;
106
- public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'STATE_PAGE' | 'STOREFRONT', observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<ListLawfirmSurchargesResponse>>;
107
- public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'STATE_PAGE' | 'STOREFRONT', observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<ListLawfirmSurchargesResponse>>;
108
- public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'STATE_PAGE' | 'STOREFRONT', observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
105
+ public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'FASTLANE_TEEN' | 'STATE_PAGE' | 'STOREFRONT', observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<ListLawfirmSurchargesResponse>;
106
+ public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'FASTLANE_TEEN' | 'STATE_PAGE' | 'STOREFRONT', observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpResponse<ListLawfirmSurchargesResponse>>;
107
+ public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'FASTLANE_TEEN' | 'STATE_PAGE' | 'STOREFRONT', observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<HttpEvent<ListLawfirmSurchargesResponse>>;
108
+ public listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'FASTLANE_TEEN' | 'STATE_PAGE' | 'STOREFRONT', observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: '*/*', context?: HttpContext}): Observable<any> {
109
109
  if (lawfirmId === null || lawfirmId === undefined) {
110
110
  throw new Error('Required parameter lawfirmId was null or undefined when calling listLawfirmSurchargesUsingGET.');
111
111
  }
@@ -20,9 +20,10 @@ export interface ListLawfirmSurchargeModel {
20
20
  refundEligibility?: ListLawfirmSurchargeModel.RefundEligibilityEnum;
21
21
  }
22
22
  export namespace ListLawfirmSurchargeModel {
23
- export type FeatureEnum = 'BLACK_BOX' | 'STATE_PAGE' | 'STOREFRONT';
23
+ export type FeatureEnum = 'BLACK_BOX' | 'FASTLANE_TEEN' | 'STATE_PAGE' | 'STOREFRONT';
24
24
  export const FeatureEnum = {
25
25
  BlackBox: 'BLACK_BOX' as FeatureEnum,
26
+ FastlaneTeen: 'FASTLANE_TEEN' as FeatureEnum,
26
27
  StatePage: 'STATE_PAGE' as FeatureEnum,
27
28
  Storefront: 'STOREFRONT' as FeatureEnum
28
29
  };
@@ -22,6 +22,7 @@ export interface SaveDriverLicenseRequest {
22
22
  driverLicenseNumber?: string;
23
23
  expirationDate?: string;
24
24
  firstName?: string;
25
+ isBackOfLicense?: boolean;
25
26
  isDeleted?: boolean;
26
27
  issueDate?: string;
27
28
  lastName?: string;
@@ -21,9 +21,10 @@ export interface SaveLawfirmSurchargeModel {
21
21
  surchargeType?: SaveLawfirmSurchargeModel.SurchargeTypeEnum;
22
22
  }
23
23
  export namespace SaveLawfirmSurchargeModel {
24
- export type FeatureTypeEnum = 'BLACK_BOX' | 'STATE_PAGE' | 'STOREFRONT';
24
+ export type FeatureTypeEnum = 'BLACK_BOX' | 'FASTLANE_TEEN' | 'STATE_PAGE' | 'STOREFRONT';
25
25
  export const FeatureTypeEnum = {
26
26
  BlackBox: 'BLACK_BOX' as FeatureTypeEnum,
27
+ FastlaneTeen: 'FASTLANE_TEEN' as FeatureTypeEnum,
27
28
  StatePage: 'STATE_PAGE' as FeatureTypeEnum,
28
29
  Storefront: 'STOREFRONT' as FeatureTypeEnum
29
30
  };
@@ -24,7 +24,7 @@ export declare class LawfirmSurchargeControllerApi {
24
24
  * @param lawfirmId lawfirmId
25
25
  * @param featureType featureType
26
26
  */
27
- listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'STATE_PAGE' | 'STOREFRONT', extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmSurchargesResponse>;
27
+ listLawfirmSurchargesUsingGET(lawfirmId: string, featureType?: 'BLACK_BOX' | 'FASTLANE_TEEN' | 'STATE_PAGE' | 'STOREFRONT', extraHttpRequestParams?: any): ng.IHttpPromise<models.ListLawfirmSurchargesResponse>;
28
28
  /**
29
29
  *
30
30
  * @summary removeSurcharges
@@ -20,6 +20,7 @@ export interface ListLawfirmSurchargeModel {
20
20
  export declare namespace ListLawfirmSurchargeModel {
21
21
  enum FeatureEnum {
22
22
  BLACKBOX,
23
+ FASTLANETEEN,
23
24
  STATEPAGE,
24
25
  STOREFRONT
25
26
  }
@@ -17,6 +17,7 @@ var ListLawfirmSurchargeModel;
17
17
  var FeatureEnum;
18
18
  (function (FeatureEnum) {
19
19
  FeatureEnum[FeatureEnum["BLACKBOX"] = 'BLACK_BOX'] = "BLACKBOX";
20
+ FeatureEnum[FeatureEnum["FASTLANETEEN"] = 'FASTLANE_TEEN'] = "FASTLANETEEN";
20
21
  FeatureEnum[FeatureEnum["STATEPAGE"] = 'STATE_PAGE'] = "STATEPAGE";
21
22
  FeatureEnum[FeatureEnum["STOREFRONT"] = 'STOREFRONT'] = "STOREFRONT";
22
23
  })(FeatureEnum = ListLawfirmSurchargeModel.FeatureEnum || (ListLawfirmSurchargeModel.FeatureEnum = {}));
@@ -20,6 +20,7 @@ export interface SaveDriverLicenseRequest {
20
20
  "driverLicenseNumber"?: string;
21
21
  "expirationDate"?: string;
22
22
  "firstName"?: string;
23
+ "isBackOfLicense"?: boolean;
23
24
  "isDeleted"?: boolean;
24
25
  "issueDate"?: string;
25
26
  "lastName"?: string;
@@ -21,6 +21,7 @@ export interface SaveLawfirmSurchargeModel {
21
21
  export declare namespace SaveLawfirmSurchargeModel {
22
22
  enum FeatureTypeEnum {
23
23
  BLACKBOX,
24
+ FASTLANETEEN,
24
25
  STATEPAGE,
25
26
  STOREFRONT
26
27
  }
@@ -17,6 +17,7 @@ var SaveLawfirmSurchargeModel;
17
17
  var FeatureTypeEnum;
18
18
  (function (FeatureTypeEnum) {
19
19
  FeatureTypeEnum[FeatureTypeEnum["BLACKBOX"] = 'BLACK_BOX'] = "BLACKBOX";
20
+ FeatureTypeEnum[FeatureTypeEnum["FASTLANETEEN"] = 'FASTLANE_TEEN'] = "FASTLANETEEN";
20
21
  FeatureTypeEnum[FeatureTypeEnum["STATEPAGE"] = 'STATE_PAGE'] = "STATEPAGE";
21
22
  FeatureTypeEnum[FeatureTypeEnum["STOREFRONT"] = 'STOREFRONT'] = "STOREFRONT";
22
23
  })(FeatureTypeEnum = SaveLawfirmSurchargeModel.FeatureTypeEnum || (SaveLawfirmSurchargeModel.FeatureTypeEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@otr-app/shared-backend-generated-client",
3
- "version": "2.3.260",
3
+ "version": "2.3.262",
4
4
  "main": "dist/otrBackendService.min.js",
5
5
  "files": [
6
6
  "/dist"