@otr-app/shared-backend-generated-client 2.4.27 → 2.4.29
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/.openapi-generator/FILES +1 -0
- package/dist/angular/api/userPasswordController.service.ts +74 -72
- package/dist/angular/model/case.ts +3 -2
- package/dist/angular/model/citationWithMissingFields.ts +3 -2
- package/dist/angular/model/ghostUser.ts +3 -2
- package/dist/angular/model/ghostUserResponse.ts +3 -2
- package/dist/angular/model/listCaseBookingsRequest.ts +3 -2
- package/dist/angular/model/models.ts +1 -0
- package/dist/angular/model/registeredUserDomain.ts +3 -2
- package/dist/angular/model/userDomain.ts +3 -2
- package/dist/angular/model/userDomainReq.ts +3 -2
- package/dist/angular/model/userDomainRes.ts +3 -2
- package/dist/angular/model/validateDirectMailResponse.ts +2 -1
- package/dist/angular/model/verifyUserPasswordRequest.ts +17 -0
- package/dist/otrBackendService.js +45 -45
- package/dist/otrBackendService.min.js +1 -1
- package/dist/typescript/api/UserPasswordControllerApi.d.ts +7 -7
- package/dist/typescript/api/UserPasswordControllerApi.js +31 -31
- package/dist/typescript/model/Case.d.ts +2 -1
- package/dist/typescript/model/Case.js +1 -0
- package/dist/typescript/model/CitationWithMissingFields.d.ts +2 -1
- package/dist/typescript/model/CitationWithMissingFields.js +1 -0
- package/dist/typescript/model/GhostUser.d.ts +2 -1
- package/dist/typescript/model/GhostUser.js +1 -0
- package/dist/typescript/model/GhostUserResponse.d.ts +2 -1
- package/dist/typescript/model/GhostUserResponse.js +1 -0
- package/dist/typescript/model/ListCaseBookingsRequest.d.ts +2 -1
- package/dist/typescript/model/ListCaseBookingsRequest.js +1 -0
- package/dist/typescript/model/RegisteredUserDomain.d.ts +2 -1
- package/dist/typescript/model/RegisteredUserDomain.js +1 -0
- package/dist/typescript/model/UserDomain.d.ts +2 -1
- package/dist/typescript/model/UserDomain.js +1 -0
- package/dist/typescript/model/UserDomainReq.d.ts +2 -1
- package/dist/typescript/model/UserDomainReq.js +1 -0
- package/dist/typescript/model/UserDomainRes.d.ts +2 -1
- package/dist/typescript/model/UserDomainRes.js +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript/model/VerifyUserPasswordRequest.d.ts +14 -0
- package/dist/typescript/model/VerifyUserPasswordRequest.js +13 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/dist/typescript-fetch/apis/UserPasswordControllerApi.d.ts +13 -13
- package/dist/typescript-fetch/apis/UserPasswordControllerApi.js +34 -34
- package/dist/typescript-fetch/models/Case.d.ts +2 -1
- package/dist/typescript-fetch/models/Case.js +1 -0
- package/dist/typescript-fetch/models/CitationWithMissingFields.d.ts +2 -1
- package/dist/typescript-fetch/models/CitationWithMissingFields.js +1 -0
- package/dist/typescript-fetch/models/GhostUser.d.ts +2 -1
- package/dist/typescript-fetch/models/GhostUser.js +1 -0
- package/dist/typescript-fetch/models/GhostUserResponse.d.ts +2 -1
- package/dist/typescript-fetch/models/GhostUserResponse.js +1 -0
- package/dist/typescript-fetch/models/ListCaseBookingsRequest.d.ts +2 -1
- package/dist/typescript-fetch/models/ListCaseBookingsRequest.js +1 -0
- package/dist/typescript-fetch/models/RegisteredUserDomain.d.ts +2 -1
- package/dist/typescript-fetch/models/RegisteredUserDomain.js +1 -0
- package/dist/typescript-fetch/models/UserDomain.d.ts +2 -1
- package/dist/typescript-fetch/models/UserDomain.js +1 -0
- package/dist/typescript-fetch/models/UserDomainReq.d.ts +2 -1
- package/dist/typescript-fetch/models/UserDomainReq.js +1 -0
- package/dist/typescript-fetch/models/UserDomainRes.d.ts +2 -1
- package/dist/typescript-fetch/models/UserDomainRes.js +1 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.d.ts +1 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript-fetch/models/VerifyUserPasswordRequest.d.ts +27 -0
- package/dist/typescript-fetch/models/VerifyUserPasswordRequest.js +36 -0
- package/dist/typescript-fetch/models/index.d.ts +1 -0
- package/dist/typescript-fetch/models/index.js +1 -0
- package/package.json +1 -1
|
@@ -138,6 +138,7 @@ export var UserDomainResGenderTypeEnum;
|
|
|
138
138
|
UserDomainResGenderTypeEnum["NOTAVAILABLE"] = "NOT_AVAILABLE";
|
|
139
139
|
UserDomainResGenderTypeEnum["NOTLISTED"] = "NOT_LISTED";
|
|
140
140
|
UserDomainResGenderTypeEnum["UNVERIFIED"] = "UNVERIFIED";
|
|
141
|
+
UserDomainResGenderTypeEnum["X"] = "X";
|
|
141
142
|
})(UserDomainResGenderTypeEnum || (UserDomainResGenderTypeEnum = {}));
|
|
142
143
|
/**
|
|
143
144
|
* @export
|
|
@@ -247,6 +247,7 @@ export declare enum ValidateDirectMailResponseOtrErrorEnum {
|
|
|
247
247
|
NOLAWFIRMAVAILABLE = "NO_LAWFIRM_AVAILABLE",
|
|
248
248
|
NOLEGALSERVICESINREGION = "NO_LEGAL_SERVICES_IN_REGION",
|
|
249
249
|
NOSTRIPEACCOUNT = "NO_STRIPE_ACCOUNT",
|
|
250
|
+
OLDPASSWORDINCORRECT = "OLD_PASSWORD_INCORRECT",
|
|
250
251
|
OWNERCASEMESSAGEMISMATCH = "OWNER_CASE_MESSAGE_MISMATCH",
|
|
251
252
|
PAYMENTPLANSDENIED = "PAYMENT_PLANS_DENIED",
|
|
252
253
|
PAYMENTPLANLEGALFEEHASCENTS = "PAYMENT_PLAN_LEGAL_FEE_HAS_CENTS",
|
|
@@ -257,6 +257,7 @@ export var ValidateDirectMailResponseOtrErrorEnum;
|
|
|
257
257
|
ValidateDirectMailResponseOtrErrorEnum["NOLAWFIRMAVAILABLE"] = "NO_LAWFIRM_AVAILABLE";
|
|
258
258
|
ValidateDirectMailResponseOtrErrorEnum["NOLEGALSERVICESINREGION"] = "NO_LEGAL_SERVICES_IN_REGION";
|
|
259
259
|
ValidateDirectMailResponseOtrErrorEnum["NOSTRIPEACCOUNT"] = "NO_STRIPE_ACCOUNT";
|
|
260
|
+
ValidateDirectMailResponseOtrErrorEnum["OLDPASSWORDINCORRECT"] = "OLD_PASSWORD_INCORRECT";
|
|
260
261
|
ValidateDirectMailResponseOtrErrorEnum["OWNERCASEMESSAGEMISMATCH"] = "OWNER_CASE_MESSAGE_MISMATCH";
|
|
261
262
|
ValidateDirectMailResponseOtrErrorEnum["PAYMENTPLANSDENIED"] = "PAYMENT_PLANS_DENIED";
|
|
262
263
|
ValidateDirectMailResponseOtrErrorEnum["PAYMENTPLANLEGALFEEHASCENTS"] = "PAYMENT_PLAN_LEGAL_FEE_HAS_CENTS";
|
|
@@ -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 VerifyUserPasswordRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface VerifyUserPasswordRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof VerifyUserPasswordRequest
|
|
22
|
+
*/
|
|
23
|
+
plainTextPassword?: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function VerifyUserPasswordRequestFromJSON(json: any): VerifyUserPasswordRequest;
|
|
26
|
+
export declare function VerifyUserPasswordRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): VerifyUserPasswordRequest;
|
|
27
|
+
export declare function VerifyUserPasswordRequestToJSON(value?: VerifyUserPasswordRequest | 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 VerifyUserPasswordRequestFromJSON(json) {
|
|
16
|
+
return VerifyUserPasswordRequestFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function VerifyUserPasswordRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'plainTextPassword': !exists(json, 'plainTextPassword') ? undefined : json['plainTextPassword'],
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
export function VerifyUserPasswordRequestToJSON(value) {
|
|
27
|
+
if (value === undefined) {
|
|
28
|
+
return undefined;
|
|
29
|
+
}
|
|
30
|
+
if (value === null) {
|
|
31
|
+
return null;
|
|
32
|
+
}
|
|
33
|
+
return {
|
|
34
|
+
'plainTextPassword': value.plainTextPassword,
|
|
35
|
+
};
|
|
36
|
+
}
|
|
@@ -789,6 +789,7 @@ export * from './VerifyMailingAddressRequest';
|
|
|
789
789
|
export * from './VerifyMailingAddressResponse';
|
|
790
790
|
export * from './VerifyPasswordResetTokenResponse';
|
|
791
791
|
export * from './VerifyUserAccountResponse';
|
|
792
|
+
export * from './VerifyUserPasswordRequest';
|
|
792
793
|
export * from './Violation';
|
|
793
794
|
export * from './ViolationClassificationModel';
|
|
794
795
|
export * from './ViolationInput';
|
|
@@ -789,6 +789,7 @@ export * from './VerifyMailingAddressRequest';
|
|
|
789
789
|
export * from './VerifyMailingAddressResponse';
|
|
790
790
|
export * from './VerifyPasswordResetTokenResponse';
|
|
791
791
|
export * from './VerifyUserAccountResponse';
|
|
792
|
+
export * from './VerifyUserPasswordRequest';
|
|
792
793
|
export * from './Violation';
|
|
793
794
|
export * from './ViolationClassificationModel';
|
|
794
795
|
export * from './ViolationInput';
|