@otr-app/shared-backend-generated-client 2.2.192 → 2.2.193
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/GetInviteByTokenResponse.d.ts +14 -0
- package/dist/typescript/model/GetInviteByTokenResponse.js +9 -0
- package/dist/typescript/model/LawyerInviteByTokenModel.d.ts +15 -0
- package/dist/typescript/model/LawyerInviteByTokenModel.js +13 -0
- package/dist/typescript/model/models.d.ts +1 -0
- package/dist/typescript/model/models.js +1 -0
- package/package.json +1 -1
|
@@ -9,14 +9,28 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import * as models from './models';
|
|
12
13
|
export interface GetInviteByTokenResponse {
|
|
13
14
|
"emailAddress"?: string;
|
|
14
15
|
"fullName"?: string;
|
|
16
|
+
"hasAccount"?: boolean;
|
|
17
|
+
"inviteeFirstName"?: string;
|
|
18
|
+
"inviteeLastName"?: string;
|
|
19
|
+
"inviteeRoleType"?: GetInviteByTokenResponse.InviteeRoleTypeEnum;
|
|
20
|
+
"lawyerInvite"?: models.LawyerInviteByTokenModel;
|
|
15
21
|
"profilePictureUrl"?: string;
|
|
16
22
|
"userId"?: number;
|
|
17
23
|
"verificationStatus"?: GetInviteByTokenResponse.VerificationStatusEnum;
|
|
18
24
|
}
|
|
19
25
|
export declare namespace GetInviteByTokenResponse {
|
|
26
|
+
enum InviteeRoleTypeEnum {
|
|
27
|
+
ADMIN,
|
|
28
|
+
DEFENDANT,
|
|
29
|
+
LAWFIRMADMIN,
|
|
30
|
+
LAWYER,
|
|
31
|
+
PARTNER,
|
|
32
|
+
UNKNOWN
|
|
33
|
+
}
|
|
20
34
|
enum VerificationStatusEnum {
|
|
21
35
|
CANCELLED,
|
|
22
36
|
PENDING,
|
|
@@ -14,6 +14,15 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
14
14
|
exports.GetInviteByTokenResponse = void 0;
|
|
15
15
|
var GetInviteByTokenResponse;
|
|
16
16
|
(function (GetInviteByTokenResponse) {
|
|
17
|
+
var InviteeRoleTypeEnum;
|
|
18
|
+
(function (InviteeRoleTypeEnum) {
|
|
19
|
+
InviteeRoleTypeEnum[InviteeRoleTypeEnum["ADMIN"] = 'ADMIN'] = "ADMIN";
|
|
20
|
+
InviteeRoleTypeEnum[InviteeRoleTypeEnum["DEFENDANT"] = 'DEFENDANT'] = "DEFENDANT";
|
|
21
|
+
InviteeRoleTypeEnum[InviteeRoleTypeEnum["LAWFIRMADMIN"] = 'LAWFIRM_ADMIN'] = "LAWFIRMADMIN";
|
|
22
|
+
InviteeRoleTypeEnum[InviteeRoleTypeEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
|
|
23
|
+
InviteeRoleTypeEnum[InviteeRoleTypeEnum["PARTNER"] = 'PARTNER'] = "PARTNER";
|
|
24
|
+
InviteeRoleTypeEnum[InviteeRoleTypeEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
|
|
25
|
+
})(InviteeRoleTypeEnum = GetInviteByTokenResponse.InviteeRoleTypeEnum || (GetInviteByTokenResponse.InviteeRoleTypeEnum = {}));
|
|
17
26
|
var VerificationStatusEnum;
|
|
18
27
|
(function (VerificationStatusEnum) {
|
|
19
28
|
VerificationStatusEnum[VerificationStatusEnum["CANCELLED"] = 'CANCELLED'] = "CANCELLED";
|
|
@@ -0,0 +1,15 @@
|
|
|
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 LawyerInviteByTokenModel {
|
|
13
|
+
"lawfirmId"?: number;
|
|
14
|
+
"lawfirmName"?: string;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
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 });
|
|
@@ -369,6 +369,7 @@ export * from './LawfirmSettingsDomainRes';
|
|
|
369
369
|
export * from './LawfirmStorefrontModel';
|
|
370
370
|
export * from './LawfirmVacationRequest';
|
|
371
371
|
export * from './LawfirmsRatesResponse';
|
|
372
|
+
export * from './LawyerInviteByTokenModel';
|
|
372
373
|
export * from './LawyerInviteModel';
|
|
373
374
|
export * from './LawyerLicenseModel';
|
|
374
375
|
export * from './LawyerModel';
|
|
@@ -381,6 +381,7 @@ __exportStar(require("./LawfirmSettingsDomainRes"), exports);
|
|
|
381
381
|
__exportStar(require("./LawfirmStorefrontModel"), exports);
|
|
382
382
|
__exportStar(require("./LawfirmVacationRequest"), exports);
|
|
383
383
|
__exportStar(require("./LawfirmsRatesResponse"), exports);
|
|
384
|
+
__exportStar(require("./LawyerInviteByTokenModel"), exports);
|
|
384
385
|
__exportStar(require("./LawyerInviteModel"), exports);
|
|
385
386
|
__exportStar(require("./LawyerLicenseModel"), exports);
|
|
386
387
|
__exportStar(require("./LawyerModel"), exports);
|