@otr-app/shared-backend-generated-client 2.2.185 → 2.2.187
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/typescript/model/GetLawfirmLawyersResponse.d.ts +1 -0
- package/dist/typescript/model/LawyerInviteModel.d.ts +34 -0
- package/dist/typescript/model/LawyerInviteModel.js +32 -0
- package/dist/typescript/model/SettingRequest.d.ts +2 -2
- package/dist/typescript/model/SettingResponse.d.ts +2 -2
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
export interface LawyerInviteModel {
|
|
13
|
+
"emailAddress"?: string;
|
|
14
|
+
"expiryDateUtc"?: string;
|
|
15
|
+
"firstname"?: string;
|
|
16
|
+
"lastname"?: string;
|
|
17
|
+
"roleTypes"?: Array<LawyerInviteModel.RoleTypesEnum>;
|
|
18
|
+
"verificationStatus"?: LawyerInviteModel.VerificationStatusEnum;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace LawyerInviteModel {
|
|
21
|
+
enum RoleTypesEnum {
|
|
22
|
+
ADMIN,
|
|
23
|
+
DEFENDANT,
|
|
24
|
+
LAWFIRMADMIN,
|
|
25
|
+
LAWYER,
|
|
26
|
+
PARTNER,
|
|
27
|
+
UNKNOWN
|
|
28
|
+
}
|
|
29
|
+
enum VerificationStatusEnum {
|
|
30
|
+
CANCELLED,
|
|
31
|
+
PENDING,
|
|
32
|
+
VERIFIED
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* OffTheRecord Rest Service API - Devo
|
|
4
|
+
* A service to handle your traffic tickets
|
|
5
|
+
*
|
|
6
|
+
* The version of the OpenAPI document: 1.0
|
|
7
|
+
*
|
|
8
|
+
*
|
|
9
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
10
|
+
* https://openapi-generator.tech
|
|
11
|
+
* Do not edit the class manually.
|
|
12
|
+
*/
|
|
13
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
14
|
+
exports.LawyerInviteModel = void 0;
|
|
15
|
+
var LawyerInviteModel;
|
|
16
|
+
(function (LawyerInviteModel) {
|
|
17
|
+
var RoleTypesEnum;
|
|
18
|
+
(function (RoleTypesEnum) {
|
|
19
|
+
RoleTypesEnum[RoleTypesEnum["ADMIN"] = 'ADMIN'] = "ADMIN";
|
|
20
|
+
RoleTypesEnum[RoleTypesEnum["DEFENDANT"] = 'DEFENDANT'] = "DEFENDANT";
|
|
21
|
+
RoleTypesEnum[RoleTypesEnum["LAWFIRMADMIN"] = 'LAWFIRM_ADMIN'] = "LAWFIRMADMIN";
|
|
22
|
+
RoleTypesEnum[RoleTypesEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
|
|
23
|
+
RoleTypesEnum[RoleTypesEnum["PARTNER"] = 'PARTNER'] = "PARTNER";
|
|
24
|
+
RoleTypesEnum[RoleTypesEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
|
|
25
|
+
})(RoleTypesEnum = LawyerInviteModel.RoleTypesEnum || (LawyerInviteModel.RoleTypesEnum = {}));
|
|
26
|
+
var VerificationStatusEnum;
|
|
27
|
+
(function (VerificationStatusEnum) {
|
|
28
|
+
VerificationStatusEnum[VerificationStatusEnum["CANCELLED"] = 'CANCELLED'] = "CANCELLED";
|
|
29
|
+
VerificationStatusEnum[VerificationStatusEnum["PENDING"] = 'PENDING'] = "PENDING";
|
|
30
|
+
VerificationStatusEnum[VerificationStatusEnum["VERIFIED"] = 'VERIFIED'] = "VERIFIED";
|
|
31
|
+
})(VerificationStatusEnum = LawyerInviteModel.VerificationStatusEnum || (LawyerInviteModel.VerificationStatusEnum = {}));
|
|
32
|
+
})(LawyerInviteModel = exports.LawyerInviteModel || (exports.LawyerInviteModel = {}));
|
|
@@ -367,6 +367,7 @@ export * from './LawfirmSettingsDomainRes';
|
|
|
367
367
|
export * from './LawfirmStorefrontModel';
|
|
368
368
|
export * from './LawfirmVacationRequest';
|
|
369
369
|
export * from './LawfirmsRatesResponse';
|
|
370
|
+
export * from './LawyerInviteModel';
|
|
370
371
|
export * from './LawyerLicenseModel';
|
|
371
372
|
export * from './LawyerModel';
|
|
372
373
|
export * from './LetterOfEngagement';
|
|
@@ -379,6 +379,7 @@ __exportStar(require("./LawfirmSettingsDomainRes"), exports);
|
|
|
379
379
|
__exportStar(require("./LawfirmStorefrontModel"), exports);
|
|
380
380
|
__exportStar(require("./LawfirmVacationRequest"), exports);
|
|
381
381
|
__exportStar(require("./LawfirmsRatesResponse"), exports);
|
|
382
|
+
__exportStar(require("./LawyerInviteModel"), exports);
|
|
382
383
|
__exportStar(require("./LawyerLicenseModel"), exports);
|
|
383
384
|
__exportStar(require("./LawyerModel"), exports);
|
|
384
385
|
__exportStar(require("./LetterOfEngagement"), exports);
|