@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.
- package/dist/angular/api/lawfirmSurchargeController.service.ts +4 -4
- package/dist/angular/model/listLawfirmSurchargeModel.ts +2 -1
- package/dist/angular/model/saveDriverLicenseRequest.ts +1 -0
- package/dist/angular/model/saveLawfirmSurchargeModel.ts +2 -1
- package/dist/typescript/api/LawfirmSurchargeControllerApi.d.ts +1 -1
- package/dist/typescript/model/ListLawfirmSurchargeModel.d.ts +1 -0
- package/dist/typescript/model/ListLawfirmSurchargeModel.js +1 -0
- package/dist/typescript/model/SaveDriverLicenseRequest.d.ts +1 -0
- package/dist/typescript/model/SaveLawfirmSurchargeModel.d.ts +1 -0
- package/dist/typescript/model/SaveLawfirmSurchargeModel.js +1 -0
- package/package.json +1 -1
|
@@ -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
|
};
|
|
@@ -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
|
|
@@ -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 = {}));
|
|
@@ -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 = {}));
|