@otr-app/shared-backend-generated-client 2.5.101 → 2.5.103
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 +2 -0
- package/dist/angular/api/caseUserController.service.ts +142 -0
- package/dist/angular/model/acceptParticipantInviteRequest.ts +17 -0
- package/dist/angular/model/inviteCaseParticipantRequest.ts +40 -0
- package/dist/angular/model/models.ts +2 -0
- package/dist/otrBackendService.js +82 -0
- package/dist/otrBackendService.min.js +7 -7
- package/dist/typescript/api/CaseUserControllerApi.d.ts +13 -0
- package/dist/typescript/api/CaseUserControllerApi.js +56 -0
- package/dist/typescript/model/AcceptParticipantInviteRequest.d.ts +14 -0
- package/dist/typescript/model/AcceptParticipantInviteRequest.js +12 -0
- package/dist/typescript/model/InviteCaseParticipantRequest.d.ts +35 -0
- package/dist/typescript/model/InviteCaseParticipantRequest.js +29 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/dist/typescript-fetch/apis/CaseUserControllerApi.d.ts +24 -1
- package/dist/typescript-fetch/apis/CaseUserControllerApi.js +62 -1
- package/dist/typescript-fetch/models/AcceptParticipantInviteRequest.d.ts +27 -0
- package/dist/typescript-fetch/models/AcceptParticipantInviteRequest.js +35 -0
- package/dist/typescript-fetch/models/InviteCaseParticipantRequest.d.ts +75 -0
- package/dist/typescript-fetch/models/InviteCaseParticipantRequest.js +64 -0
- package/dist/typescript-fetch/models/index.d.ts +2 -0
- package/dist/typescript-fetch/models/index.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +151 -0
- package/package.json +1 -1
|
@@ -17,6 +17,12 @@ export declare class CaseUserControllerApi {
|
|
|
17
17
|
defaultHeaders: any;
|
|
18
18
|
static $inject: string[];
|
|
19
19
|
constructor($http: ng.IHttpService, $httpParamSerializer?: (d: any) => any, basePath?: string);
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @summary acceptParticipantInvite
|
|
23
|
+
* @param request request
|
|
24
|
+
*/
|
|
25
|
+
acceptParticipantInviteUsingPUT(request: models.AcceptParticipantInviteRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
20
26
|
/**
|
|
21
27
|
*
|
|
22
28
|
* @summary deleteCaseUser
|
|
@@ -31,6 +37,13 @@ export declare class CaseUserControllerApi {
|
|
|
31
37
|
* @param getRemovedUsers getRemovedUsers
|
|
32
38
|
*/
|
|
33
39
|
getCaseUsersByCaseUsingGET(caseId: string, getRemovedUsers?: boolean, extraHttpRequestParams?: any): ng.IHttpPromise<models.GetCaseUsersResponse>;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @summary inviteCaseParticipant
|
|
43
|
+
* @param caseId caseId
|
|
44
|
+
* @param request request
|
|
45
|
+
*/
|
|
46
|
+
inviteCaseParticipantUsingPOST(caseId: string, request: models.InviteCaseParticipantRequest, extraHttpRequestParams?: any): ng.IHttpPromise<{}>;
|
|
34
47
|
/**
|
|
35
48
|
*
|
|
36
49
|
* @summary listDashboardCaseUsers
|
|
@@ -20,6 +20,31 @@ export class CaseUserControllerApi {
|
|
|
20
20
|
this.basePath = basePath;
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @summary acceptParticipantInvite
|
|
26
|
+
* @param request request
|
|
27
|
+
*/
|
|
28
|
+
acceptParticipantInviteUsingPUT(request, extraHttpRequestParams) {
|
|
29
|
+
const localVarPath = this.basePath + '/api/v1/cases/participants/accept-invite';
|
|
30
|
+
let queryParameters = {};
|
|
31
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
32
|
+
// verify required parameter 'request' is not null or undefined
|
|
33
|
+
if (request === null || request === undefined) {
|
|
34
|
+
throw new Error('Required parameter request was null or undefined when calling acceptParticipantInviteUsingPUT.');
|
|
35
|
+
}
|
|
36
|
+
let httpRequestParams = {
|
|
37
|
+
method: 'PUT',
|
|
38
|
+
url: localVarPath,
|
|
39
|
+
data: request,
|
|
40
|
+
params: queryParameters,
|
|
41
|
+
headers: headerParams
|
|
42
|
+
};
|
|
43
|
+
if (extraHttpRequestParams) {
|
|
44
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
45
|
+
}
|
|
46
|
+
return this.$http(httpRequestParams);
|
|
47
|
+
}
|
|
23
48
|
/**
|
|
24
49
|
*
|
|
25
50
|
* @summary deleteCaseUser
|
|
@@ -80,6 +105,37 @@ export class CaseUserControllerApi {
|
|
|
80
105
|
}
|
|
81
106
|
return this.$http(httpRequestParams);
|
|
82
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @summary inviteCaseParticipant
|
|
111
|
+
* @param caseId caseId
|
|
112
|
+
* @param request request
|
|
113
|
+
*/
|
|
114
|
+
inviteCaseParticipantUsingPOST(caseId, request, extraHttpRequestParams) {
|
|
115
|
+
const localVarPath = this.basePath + '/api/v1/cases/{caseId}/participants/invite'
|
|
116
|
+
.replace('{' + 'caseId' + '}', encodeURIComponent(String(caseId)));
|
|
117
|
+
let queryParameters = {};
|
|
118
|
+
let headerParams = Object.assign({}, this.defaultHeaders);
|
|
119
|
+
// verify required parameter 'caseId' is not null or undefined
|
|
120
|
+
if (caseId === null || caseId === undefined) {
|
|
121
|
+
throw new Error('Required parameter caseId was null or undefined when calling inviteCaseParticipantUsingPOST.');
|
|
122
|
+
}
|
|
123
|
+
// verify required parameter 'request' is not null or undefined
|
|
124
|
+
if (request === null || request === undefined) {
|
|
125
|
+
throw new Error('Required parameter request was null or undefined when calling inviteCaseParticipantUsingPOST.');
|
|
126
|
+
}
|
|
127
|
+
let httpRequestParams = {
|
|
128
|
+
method: 'POST',
|
|
129
|
+
url: localVarPath,
|
|
130
|
+
data: request,
|
|
131
|
+
params: queryParameters,
|
|
132
|
+
headers: headerParams
|
|
133
|
+
};
|
|
134
|
+
if (extraHttpRequestParams) {
|
|
135
|
+
httpRequestParams = Object.assign(httpRequestParams, extraHttpRequestParams);
|
|
136
|
+
}
|
|
137
|
+
return this.$http(httpRequestParams);
|
|
138
|
+
}
|
|
83
139
|
/**
|
|
84
140
|
*
|
|
85
141
|
* @summary listDashboardCaseUsers
|
|
@@ -0,0 +1,14 @@
|
|
|
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 AcceptParticipantInviteRequest {
|
|
13
|
+
"token": string;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
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 {};
|
|
@@ -0,0 +1,35 @@
|
|
|
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 InviteCaseParticipantRequest {
|
|
13
|
+
"emailAddress": string;
|
|
14
|
+
"firstName": string;
|
|
15
|
+
"hasFinancialAccess": boolean;
|
|
16
|
+
"isDefendant": boolean;
|
|
17
|
+
"lastName": string;
|
|
18
|
+
"relationshipToClient": InviteCaseParticipantRequest.RelationshipToClientEnum;
|
|
19
|
+
}
|
|
20
|
+
export declare namespace InviteCaseParticipantRequest {
|
|
21
|
+
enum RelationshipToClientEnum {
|
|
22
|
+
CHILD,
|
|
23
|
+
COPILOT,
|
|
24
|
+
EMPLOYER,
|
|
25
|
+
FAMILYMEMBER,
|
|
26
|
+
FRIEND,
|
|
27
|
+
LAWYER,
|
|
28
|
+
OTHER,
|
|
29
|
+
PARENT,
|
|
30
|
+
SELF,
|
|
31
|
+
SERVICEPROVIDER,
|
|
32
|
+
SIGNIFICANTOTHER,
|
|
33
|
+
UNKNOWN
|
|
34
|
+
}
|
|
35
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
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 var InviteCaseParticipantRequest;
|
|
13
|
+
(function (InviteCaseParticipantRequest) {
|
|
14
|
+
let RelationshipToClientEnum;
|
|
15
|
+
(function (RelationshipToClientEnum) {
|
|
16
|
+
RelationshipToClientEnum[RelationshipToClientEnum["CHILD"] = 'CHILD'] = "CHILD";
|
|
17
|
+
RelationshipToClientEnum[RelationshipToClientEnum["COPILOT"] = 'COPILOT'] = "COPILOT";
|
|
18
|
+
RelationshipToClientEnum[RelationshipToClientEnum["EMPLOYER"] = 'EMPLOYER'] = "EMPLOYER";
|
|
19
|
+
RelationshipToClientEnum[RelationshipToClientEnum["FAMILYMEMBER"] = 'FAMILY_MEMBER'] = "FAMILYMEMBER";
|
|
20
|
+
RelationshipToClientEnum[RelationshipToClientEnum["FRIEND"] = 'FRIEND'] = "FRIEND";
|
|
21
|
+
RelationshipToClientEnum[RelationshipToClientEnum["LAWYER"] = 'LAWYER'] = "LAWYER";
|
|
22
|
+
RelationshipToClientEnum[RelationshipToClientEnum["OTHER"] = 'OTHER'] = "OTHER";
|
|
23
|
+
RelationshipToClientEnum[RelationshipToClientEnum["PARENT"] = 'PARENT'] = "PARENT";
|
|
24
|
+
RelationshipToClientEnum[RelationshipToClientEnum["SELF"] = 'SELF'] = "SELF";
|
|
25
|
+
RelationshipToClientEnum[RelationshipToClientEnum["SERVICEPROVIDER"] = 'SERVICE_PROVIDER'] = "SERVICEPROVIDER";
|
|
26
|
+
RelationshipToClientEnum[RelationshipToClientEnum["SIGNIFICANTOTHER"] = 'SIGNIFICANT_OTHER'] = "SIGNIFICANTOTHER";
|
|
27
|
+
RelationshipToClientEnum[RelationshipToClientEnum["UNKNOWN"] = 'UNKNOWN'] = "UNKNOWN";
|
|
28
|
+
})(RelationshipToClientEnum = InviteCaseParticipantRequest.RelationshipToClientEnum || (InviteCaseParticipantRequest.RelationshipToClientEnum = {}));
|
|
29
|
+
})(InviteCaseParticipantRequest || (InviteCaseParticipantRequest = {}));
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './AcceptCaseCounterRequest';
|
|
2
|
+
export * from './AcceptParticipantInviteRequest';
|
|
2
3
|
export * from './AccountLevelFee';
|
|
3
4
|
export * from './AccountLevelFeeRequest';
|
|
4
5
|
export * from './AccountLevelFeeResponse';
|
|
@@ -433,6 +434,7 @@ export * from './IntercomPages';
|
|
|
433
434
|
export * from './IntercomSearchConversationsResponse';
|
|
434
435
|
export * from './IntercomSearchTicketsResponse';
|
|
435
436
|
export * from './IntercomTicketAttributes';
|
|
437
|
+
export * from './InviteCaseParticipantRequest';
|
|
436
438
|
export * from './InviteHouseholdMateRequest';
|
|
437
439
|
export * from './InviteLawyerToLawfirmRequest';
|
|
438
440
|
export * from './InvoiceLineItemModel';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './AcceptCaseCounterRequest';
|
|
2
|
+
export * from './AcceptParticipantInviteRequest';
|
|
2
3
|
export * from './AccountLevelFee';
|
|
3
4
|
export * from './AccountLevelFeeRequest';
|
|
4
5
|
export * from './AccountLevelFeeResponse';
|
|
@@ -433,6 +434,7 @@ export * from './IntercomPages';
|
|
|
433
434
|
export * from './IntercomSearchConversationsResponse';
|
|
434
435
|
export * from './IntercomSearchTicketsResponse';
|
|
435
436
|
export * from './IntercomTicketAttributes';
|
|
437
|
+
export * from './InviteCaseParticipantRequest';
|
|
436
438
|
export * from './InviteHouseholdMateRequest';
|
|
437
439
|
export * from './InviteLawyerToLawfirmRequest';
|
|
438
440
|
export * from './InvoiceLineItemModel';
|
|
@@ -10,7 +10,10 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import * as runtime from '../runtime';
|
|
13
|
-
import { GetCaseUsersResponse, ListDashboardCaseUsersResponse, SaveCaseUserRequest } from '../models';
|
|
13
|
+
import { AcceptParticipantInviteRequest, GetCaseUsersResponse, InviteCaseParticipantRequest, ListDashboardCaseUsersResponse, SaveCaseUserRequest } from '../models';
|
|
14
|
+
export interface AcceptParticipantInviteUsingPUTRequest {
|
|
15
|
+
request: AcceptParticipantInviteRequest;
|
|
16
|
+
}
|
|
14
17
|
export interface DeleteCaseUserUsingDELETERequest {
|
|
15
18
|
caseId: string;
|
|
16
19
|
caseUsersId: number;
|
|
@@ -19,6 +22,10 @@ export interface GetCaseUsersByCaseUsingGETRequest {
|
|
|
19
22
|
caseId: string;
|
|
20
23
|
getRemovedUsers?: boolean;
|
|
21
24
|
}
|
|
25
|
+
export interface InviteCaseParticipantUsingPOSTRequest {
|
|
26
|
+
caseId: string;
|
|
27
|
+
request: InviteCaseParticipantRequest;
|
|
28
|
+
}
|
|
22
29
|
export interface ListDashboardCaseUsersUsingGETRequest {
|
|
23
30
|
userId: number;
|
|
24
31
|
isDefendant?: boolean;
|
|
@@ -31,6 +38,14 @@ export interface SaveCaseUserUsingPOSTRequest {
|
|
|
31
38
|
*
|
|
32
39
|
*/
|
|
33
40
|
export declare class CaseUserControllerApi extends runtime.BaseAPI {
|
|
41
|
+
/**
|
|
42
|
+
* acceptParticipantInvite
|
|
43
|
+
*/
|
|
44
|
+
acceptParticipantInviteUsingPUTRaw(requestParameters: AcceptParticipantInviteUsingPUTRequest): Promise<runtime.ApiResponse<void>>;
|
|
45
|
+
/**
|
|
46
|
+
* acceptParticipantInvite
|
|
47
|
+
*/
|
|
48
|
+
acceptParticipantInviteUsingPUT(requestParameters: AcceptParticipantInviteUsingPUTRequest): Promise<void>;
|
|
34
49
|
/**
|
|
35
50
|
* deleteCaseUser
|
|
36
51
|
*/
|
|
@@ -47,6 +62,14 @@ export declare class CaseUserControllerApi extends runtime.BaseAPI {
|
|
|
47
62
|
* getCaseUsersByCase
|
|
48
63
|
*/
|
|
49
64
|
getCaseUsersByCaseUsingGET(requestParameters: GetCaseUsersByCaseUsingGETRequest): Promise<GetCaseUsersResponse>;
|
|
65
|
+
/**
|
|
66
|
+
* inviteCaseParticipant
|
|
67
|
+
*/
|
|
68
|
+
inviteCaseParticipantUsingPOSTRaw(requestParameters: InviteCaseParticipantUsingPOSTRequest): Promise<runtime.ApiResponse<void>>;
|
|
69
|
+
/**
|
|
70
|
+
* inviteCaseParticipant
|
|
71
|
+
*/
|
|
72
|
+
inviteCaseParticipantUsingPOST(requestParameters: InviteCaseParticipantUsingPOSTRequest): Promise<void>;
|
|
50
73
|
/**
|
|
51
74
|
* listDashboardCaseUsers
|
|
52
75
|
*/
|
|
@@ -21,11 +21,40 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
21
21
|
});
|
|
22
22
|
};
|
|
23
23
|
import * as runtime from '../runtime';
|
|
24
|
-
import { GetCaseUsersResponseFromJSON, ListDashboardCaseUsersResponseFromJSON, SaveCaseUserRequestToJSON, } from '../models';
|
|
24
|
+
import { AcceptParticipantInviteRequestToJSON, GetCaseUsersResponseFromJSON, InviteCaseParticipantRequestToJSON, ListDashboardCaseUsersResponseFromJSON, SaveCaseUserRequestToJSON, } from '../models';
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export class CaseUserControllerApi extends runtime.BaseAPI {
|
|
29
|
+
/**
|
|
30
|
+
* acceptParticipantInvite
|
|
31
|
+
*/
|
|
32
|
+
acceptParticipantInviteUsingPUTRaw(requestParameters) {
|
|
33
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
34
|
+
if (requestParameters.request === null || requestParameters.request === undefined) {
|
|
35
|
+
throw new runtime.RequiredError('request', 'Required parameter requestParameters.request was null or undefined when calling acceptParticipantInviteUsingPUT.');
|
|
36
|
+
}
|
|
37
|
+
const queryParameters = {};
|
|
38
|
+
const headerParameters = {};
|
|
39
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
40
|
+
const response = yield this.request({
|
|
41
|
+
path: `/api/v1/cases/participants/accept-invite`,
|
|
42
|
+
method: 'PUT',
|
|
43
|
+
headers: headerParameters,
|
|
44
|
+
query: queryParameters,
|
|
45
|
+
body: AcceptParticipantInviteRequestToJSON(requestParameters.request),
|
|
46
|
+
});
|
|
47
|
+
return new runtime.VoidApiResponse(response);
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* acceptParticipantInvite
|
|
52
|
+
*/
|
|
53
|
+
acceptParticipantInviteUsingPUT(requestParameters) {
|
|
54
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
55
|
+
yield this.acceptParticipantInviteUsingPUTRaw(requestParameters);
|
|
56
|
+
});
|
|
57
|
+
}
|
|
29
58
|
/**
|
|
30
59
|
* deleteCaseUser
|
|
31
60
|
*/
|
|
@@ -87,6 +116,38 @@ export class CaseUserControllerApi extends runtime.BaseAPI {
|
|
|
87
116
|
return yield response.value();
|
|
88
117
|
});
|
|
89
118
|
}
|
|
119
|
+
/**
|
|
120
|
+
* inviteCaseParticipant
|
|
121
|
+
*/
|
|
122
|
+
inviteCaseParticipantUsingPOSTRaw(requestParameters) {
|
|
123
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
124
|
+
if (requestParameters.caseId === null || requestParameters.caseId === undefined) {
|
|
125
|
+
throw new runtime.RequiredError('caseId', 'Required parameter requestParameters.caseId was null or undefined when calling inviteCaseParticipantUsingPOST.');
|
|
126
|
+
}
|
|
127
|
+
if (requestParameters.request === null || requestParameters.request === undefined) {
|
|
128
|
+
throw new runtime.RequiredError('request', 'Required parameter requestParameters.request was null or undefined when calling inviteCaseParticipantUsingPOST.');
|
|
129
|
+
}
|
|
130
|
+
const queryParameters = {};
|
|
131
|
+
const headerParameters = {};
|
|
132
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
133
|
+
const response = yield this.request({
|
|
134
|
+
path: `/api/v1/cases/{caseId}/participants/invite`.replace(`{${"caseId"}}`, encodeURIComponent(String(requestParameters.caseId))),
|
|
135
|
+
method: 'POST',
|
|
136
|
+
headers: headerParameters,
|
|
137
|
+
query: queryParameters,
|
|
138
|
+
body: InviteCaseParticipantRequestToJSON(requestParameters.request),
|
|
139
|
+
});
|
|
140
|
+
return new runtime.VoidApiResponse(response);
|
|
141
|
+
});
|
|
142
|
+
}
|
|
143
|
+
/**
|
|
144
|
+
* inviteCaseParticipant
|
|
145
|
+
*/
|
|
146
|
+
inviteCaseParticipantUsingPOST(requestParameters) {
|
|
147
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
148
|
+
yield this.inviteCaseParticipantUsingPOSTRaw(requestParameters);
|
|
149
|
+
});
|
|
150
|
+
}
|
|
90
151
|
/**
|
|
91
152
|
* listDashboardCaseUsers
|
|
92
153
|
*/
|
|
@@ -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 AcceptParticipantInviteRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface AcceptParticipantInviteRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AcceptParticipantInviteRequest
|
|
22
|
+
*/
|
|
23
|
+
token: string;
|
|
24
|
+
}
|
|
25
|
+
export declare function AcceptParticipantInviteRequestFromJSON(json: any): AcceptParticipantInviteRequest;
|
|
26
|
+
export declare function AcceptParticipantInviteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AcceptParticipantInviteRequest;
|
|
27
|
+
export declare function AcceptParticipantInviteRequestToJSON(value?: AcceptParticipantInviteRequest | null): any;
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
export function AcceptParticipantInviteRequestFromJSON(json) {
|
|
15
|
+
return AcceptParticipantInviteRequestFromJSONTyped(json, false);
|
|
16
|
+
}
|
|
17
|
+
export function AcceptParticipantInviteRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'token': json['token'],
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
export function AcceptParticipantInviteRequestToJSON(value) {
|
|
26
|
+
if (value === undefined) {
|
|
27
|
+
return undefined;
|
|
28
|
+
}
|
|
29
|
+
if (value === null) {
|
|
30
|
+
return null;
|
|
31
|
+
}
|
|
32
|
+
return {
|
|
33
|
+
'token': value.token,
|
|
34
|
+
};
|
|
35
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
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 InviteCaseParticipantRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface InviteCaseParticipantRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof InviteCaseParticipantRequest
|
|
22
|
+
*/
|
|
23
|
+
emailAddress: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof InviteCaseParticipantRequest
|
|
28
|
+
*/
|
|
29
|
+
firstName: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof InviteCaseParticipantRequest
|
|
34
|
+
*/
|
|
35
|
+
hasFinancialAccess: boolean;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof InviteCaseParticipantRequest
|
|
40
|
+
*/
|
|
41
|
+
isDefendant: boolean;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof InviteCaseParticipantRequest
|
|
46
|
+
*/
|
|
47
|
+
lastName: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof InviteCaseParticipantRequest
|
|
52
|
+
*/
|
|
53
|
+
relationshipToClient: InviteCaseParticipantRequestRelationshipToClientEnum;
|
|
54
|
+
}
|
|
55
|
+
export declare function InviteCaseParticipantRequestFromJSON(json: any): InviteCaseParticipantRequest;
|
|
56
|
+
export declare function InviteCaseParticipantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InviteCaseParticipantRequest;
|
|
57
|
+
export declare function InviteCaseParticipantRequestToJSON(value?: InviteCaseParticipantRequest | null): any;
|
|
58
|
+
/**
|
|
59
|
+
* @export
|
|
60
|
+
* @enum {string}
|
|
61
|
+
*/
|
|
62
|
+
export declare enum InviteCaseParticipantRequestRelationshipToClientEnum {
|
|
63
|
+
CHILD = "CHILD",
|
|
64
|
+
COPILOT = "COPILOT",
|
|
65
|
+
EMPLOYER = "EMPLOYER",
|
|
66
|
+
FAMILYMEMBER = "FAMILY_MEMBER",
|
|
67
|
+
FRIEND = "FRIEND",
|
|
68
|
+
LAWYER = "LAWYER",
|
|
69
|
+
OTHER = "OTHER",
|
|
70
|
+
PARENT = "PARENT",
|
|
71
|
+
SELF = "SELF",
|
|
72
|
+
SERVICEPROVIDER = "SERVICE_PROVIDER",
|
|
73
|
+
SIGNIFICANTOTHER = "SIGNIFICANT_OTHER",
|
|
74
|
+
UNKNOWN = "UNKNOWN"
|
|
75
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
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
|
+
export function InviteCaseParticipantRequestFromJSON(json) {
|
|
15
|
+
return InviteCaseParticipantRequestFromJSONTyped(json, false);
|
|
16
|
+
}
|
|
17
|
+
export function InviteCaseParticipantRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
18
|
+
if ((json === undefined) || (json === null)) {
|
|
19
|
+
return json;
|
|
20
|
+
}
|
|
21
|
+
return {
|
|
22
|
+
'emailAddress': json['emailAddress'],
|
|
23
|
+
'firstName': json['firstName'],
|
|
24
|
+
'hasFinancialAccess': json['hasFinancialAccess'],
|
|
25
|
+
'isDefendant': json['isDefendant'],
|
|
26
|
+
'lastName': json['lastName'],
|
|
27
|
+
'relationshipToClient': json['relationshipToClient'],
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export function InviteCaseParticipantRequestToJSON(value) {
|
|
31
|
+
if (value === undefined) {
|
|
32
|
+
return undefined;
|
|
33
|
+
}
|
|
34
|
+
if (value === null) {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'emailAddress': value.emailAddress,
|
|
39
|
+
'firstName': value.firstName,
|
|
40
|
+
'hasFinancialAccess': value.hasFinancialAccess,
|
|
41
|
+
'isDefendant': value.isDefendant,
|
|
42
|
+
'lastName': value.lastName,
|
|
43
|
+
'relationshipToClient': value.relationshipToClient,
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* @export
|
|
48
|
+
* @enum {string}
|
|
49
|
+
*/
|
|
50
|
+
export var InviteCaseParticipantRequestRelationshipToClientEnum;
|
|
51
|
+
(function (InviteCaseParticipantRequestRelationshipToClientEnum) {
|
|
52
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["CHILD"] = "CHILD";
|
|
53
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["COPILOT"] = "COPILOT";
|
|
54
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["EMPLOYER"] = "EMPLOYER";
|
|
55
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["FAMILYMEMBER"] = "FAMILY_MEMBER";
|
|
56
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["FRIEND"] = "FRIEND";
|
|
57
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["LAWYER"] = "LAWYER";
|
|
58
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["OTHER"] = "OTHER";
|
|
59
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["PARENT"] = "PARENT";
|
|
60
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["SELF"] = "SELF";
|
|
61
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["SERVICEPROVIDER"] = "SERVICE_PROVIDER";
|
|
62
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["SIGNIFICANTOTHER"] = "SIGNIFICANT_OTHER";
|
|
63
|
+
InviteCaseParticipantRequestRelationshipToClientEnum["UNKNOWN"] = "UNKNOWN";
|
|
64
|
+
})(InviteCaseParticipantRequestRelationshipToClientEnum || (InviteCaseParticipantRequestRelationshipToClientEnum = {}));
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './AcceptCaseCounterRequest';
|
|
2
|
+
export * from './AcceptParticipantInviteRequest';
|
|
2
3
|
export * from './AccountLevelFee';
|
|
3
4
|
export * from './AccountLevelFeeRequest';
|
|
4
5
|
export * from './AccountLevelFeeResponse';
|
|
@@ -433,6 +434,7 @@ export * from './IntercomPages';
|
|
|
433
434
|
export * from './IntercomSearchConversationsResponse';
|
|
434
435
|
export * from './IntercomSearchTicketsResponse';
|
|
435
436
|
export * from './IntercomTicketAttributes';
|
|
437
|
+
export * from './InviteCaseParticipantRequest';
|
|
436
438
|
export * from './InviteHouseholdMateRequest';
|
|
437
439
|
export * from './InviteLawyerToLawfirmRequest';
|
|
438
440
|
export * from './InvoiceLineItemModel';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './AcceptCaseCounterRequest';
|
|
2
|
+
export * from './AcceptParticipantInviteRequest';
|
|
2
3
|
export * from './AccountLevelFee';
|
|
3
4
|
export * from './AccountLevelFeeRequest';
|
|
4
5
|
export * from './AccountLevelFeeResponse';
|
|
@@ -433,6 +434,7 @@ export * from './IntercomPages';
|
|
|
433
434
|
export * from './IntercomSearchConversationsResponse';
|
|
434
435
|
export * from './IntercomSearchTicketsResponse';
|
|
435
436
|
export * from './IntercomTicketAttributes';
|
|
437
|
+
export * from './InviteCaseParticipantRequest';
|
|
436
438
|
export * from './InviteHouseholdMateRequest';
|
|
437
439
|
export * from './InviteLawyerToLawfirmRequest';
|
|
438
440
|
export * from './InvoiceLineItemModel';
|