@otr-app/shared-backend-generated-client 2.5.166 → 2.5.168
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 +3 -0
- package/dist/angular/api/api.ts +3 -1
- package/dist/angular/api/conversationController.service.ts +64 -0
- package/dist/angular/api/lawfirmDashboardController.service.ts +60 -0
- package/dist/angular/api/webSocketController.service.ts +272 -0
- package/dist/angular/api.module.ts +1 -0
- package/dist/angular/model/ageBracketModel.ts +19 -0
- package/dist/angular/model/getActiveCasesByAgeResponse.ts +21 -0
- package/dist/angular/model/models.ts +2 -0
- package/dist/angular/model/validateDirectMailResponse.ts +3 -2
- package/dist/otrBackendService.js +190 -0
- package/dist/otrBackendService.min.js +8 -8
- package/dist/typescript/api/ConversationControllerApi.d.ts +7 -0
- package/dist/typescript/api/ConversationControllerApi.js +31 -0
- package/dist/typescript/api/LawfirmDashboardControllerApi.d.ts +6 -0
- package/dist/typescript/api/LawfirmDashboardControllerApi.js +25 -0
- package/dist/typescript/api/WebSocketControllerApi.d.ts +37 -0
- package/dist/typescript/api/WebSocketControllerApi.js +99 -0
- package/dist/typescript/api/api.d.ts +3 -1
- package/dist/typescript/api/api.js +3 -1
- package/dist/typescript/api.module.js +1 -0
- package/dist/typescript/model/AgeBracketModel.d.ts +16 -0
- package/dist/typescript/model/AgeBracketModel.js +12 -0
- package/dist/typescript/model/GetActiveCasesByAgeResponse.d.ts +18 -0
- package/dist/typescript/model/GetActiveCasesByAgeResponse.js +12 -0
- package/dist/typescript/model/ValidateDirectMailResponse.d.ts +2 -1
- package/dist/typescript/model/ValidateDirectMailResponse.js +1 -0
- package/dist/typescript/model/models.d.ts +2 -0
- package/dist/typescript/model/models.js +2 -0
- package/dist/typescript-fetch/apis/ConversationControllerApi.d.ts +12 -0
- package/dist/typescript-fetch/apis/ConversationControllerApi.js +33 -0
- package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.d.ts +12 -1
- package/dist/typescript-fetch/apis/LawfirmDashboardControllerApi.js +29 -1
- package/dist/typescript-fetch/apis/WebSocketControllerApi.d.ts +50 -0
- package/dist/typescript-fetch/apis/WebSocketControllerApi.js +118 -0
- package/dist/typescript-fetch/apis/index.d.ts +1 -0
- package/dist/typescript-fetch/apis/index.js +1 -0
- package/dist/typescript-fetch/models/AgeBracketModel.d.ts +39 -0
- package/dist/typescript-fetch/models/AgeBracketModel.js +40 -0
- package/dist/typescript-fetch/models/GetActiveCasesByAgeResponse.d.ts +46 -0
- package/dist/typescript-fetch/models/GetActiveCasesByAgeResponse.js +43 -0
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.d.ts +2 -1
- package/dist/typescript-fetch/models/ValidateDirectMailResponse.js +1 -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 +348 -1
- package/dist/typescript-open-api/otr-backend.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,118 @@
|
|
|
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
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
15
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
16
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
17
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
18
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
19
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
20
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
21
|
+
});
|
|
22
|
+
};
|
|
23
|
+
import * as runtime from '../runtime';
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export class WebSocketControllerApi extends runtime.BaseAPI {
|
|
28
|
+
/**
|
|
29
|
+
* connect
|
|
30
|
+
*/
|
|
31
|
+
connectUsingPOSTRaw(requestParameters) {
|
|
32
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
33
|
+
if (requestParameters.connectionId === null || requestParameters.connectionId === undefined) {
|
|
34
|
+
throw new runtime.RequiredError('connectionId', 'Required parameter requestParameters.connectionId was null or undefined when calling connectUsingPOST.');
|
|
35
|
+
}
|
|
36
|
+
const queryParameters = {};
|
|
37
|
+
const headerParameters = {};
|
|
38
|
+
if (requestParameters.connectionId !== undefined && requestParameters.connectionId !== null) {
|
|
39
|
+
headerParameters['connectionId'] = String(requestParameters.connectionId);
|
|
40
|
+
}
|
|
41
|
+
const response = yield this.request({
|
|
42
|
+
path: `/api/v1/websocket/connect`,
|
|
43
|
+
method: 'POST',
|
|
44
|
+
headers: headerParameters,
|
|
45
|
+
query: queryParameters,
|
|
46
|
+
});
|
|
47
|
+
return new runtime.VoidApiResponse(response);
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* connect
|
|
52
|
+
*/
|
|
53
|
+
connectUsingPOST(requestParameters) {
|
|
54
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
55
|
+
yield this.connectUsingPOSTRaw(requestParameters);
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* defaultHandler
|
|
60
|
+
*/
|
|
61
|
+
defaultHandlerUsingPOSTRaw(requestParameters) {
|
|
62
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
63
|
+
if (requestParameters.connectionId === null || requestParameters.connectionId === undefined) {
|
|
64
|
+
throw new runtime.RequiredError('connectionId', 'Required parameter requestParameters.connectionId was null or undefined when calling defaultHandlerUsingPOST.');
|
|
65
|
+
}
|
|
66
|
+
const queryParameters = {};
|
|
67
|
+
const headerParameters = {};
|
|
68
|
+
if (requestParameters.connectionId !== undefined && requestParameters.connectionId !== null) {
|
|
69
|
+
headerParameters['connectionId'] = String(requestParameters.connectionId);
|
|
70
|
+
}
|
|
71
|
+
const response = yield this.request({
|
|
72
|
+
path: `/api/v1/websocket/default`,
|
|
73
|
+
method: 'POST',
|
|
74
|
+
headers: headerParameters,
|
|
75
|
+
query: queryParameters,
|
|
76
|
+
});
|
|
77
|
+
return new runtime.VoidApiResponse(response);
|
|
78
|
+
});
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* defaultHandler
|
|
82
|
+
*/
|
|
83
|
+
defaultHandlerUsingPOST(requestParameters) {
|
|
84
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
85
|
+
yield this.defaultHandlerUsingPOSTRaw(requestParameters);
|
|
86
|
+
});
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* disconnect
|
|
90
|
+
*/
|
|
91
|
+
disconnectUsingPOSTRaw(requestParameters) {
|
|
92
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
93
|
+
if (requestParameters.connectionId === null || requestParameters.connectionId === undefined) {
|
|
94
|
+
throw new runtime.RequiredError('connectionId', 'Required parameter requestParameters.connectionId was null or undefined when calling disconnectUsingPOST.');
|
|
95
|
+
}
|
|
96
|
+
const queryParameters = {};
|
|
97
|
+
const headerParameters = {};
|
|
98
|
+
if (requestParameters.connectionId !== undefined && requestParameters.connectionId !== null) {
|
|
99
|
+
headerParameters['connectionId'] = String(requestParameters.connectionId);
|
|
100
|
+
}
|
|
101
|
+
const response = yield this.request({
|
|
102
|
+
path: `/api/v1/websocket/disconnect`,
|
|
103
|
+
method: 'POST',
|
|
104
|
+
headers: headerParameters,
|
|
105
|
+
query: queryParameters,
|
|
106
|
+
});
|
|
107
|
+
return new runtime.VoidApiResponse(response);
|
|
108
|
+
});
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* disconnect
|
|
112
|
+
*/
|
|
113
|
+
disconnectUsingPOST(requestParameters) {
|
|
114
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
115
|
+
yield this.disconnectUsingPOSTRaw(requestParameters);
|
|
116
|
+
});
|
|
117
|
+
}
|
|
118
|
+
}
|
|
@@ -112,5 +112,6 @@ export * from './VerificationControllerApi';
|
|
|
112
112
|
export * from './ViolationControllerApi';
|
|
113
113
|
export * from './ViolationPenaltyControllerApi';
|
|
114
114
|
export * from './WatchlistsControllerApi';
|
|
115
|
+
export * from './WebSocketControllerApi';
|
|
115
116
|
export * from './WebsocketMessageControllerApi';
|
|
116
117
|
export * from './WorkflowStateControllerApi';
|
|
@@ -112,5 +112,6 @@ export * from './VerificationControllerApi';
|
|
|
112
112
|
export * from './ViolationControllerApi';
|
|
113
113
|
export * from './ViolationPenaltyControllerApi';
|
|
114
114
|
export * from './WatchlistsControllerApi';
|
|
115
|
+
export * from './WebSocketControllerApi';
|
|
115
116
|
export * from './WebsocketMessageControllerApi';
|
|
116
117
|
export * from './WorkflowStateControllerApi';
|
|
@@ -0,0 +1,39 @@
|
|
|
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 AgeBracketModel
|
|
16
|
+
*/
|
|
17
|
+
export interface AgeBracketModel {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof AgeBracketModel
|
|
22
|
+
*/
|
|
23
|
+
bracket?: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof AgeBracketModel
|
|
28
|
+
*/
|
|
29
|
+
count?: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof AgeBracketModel
|
|
34
|
+
*/
|
|
35
|
+
percentageOfTotal?: number;
|
|
36
|
+
}
|
|
37
|
+
export declare function AgeBracketModelFromJSON(json: any): AgeBracketModel;
|
|
38
|
+
export declare function AgeBracketModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgeBracketModel;
|
|
39
|
+
export declare function AgeBracketModelToJSON(value?: AgeBracketModel | null): any;
|
|
@@ -0,0 +1,40 @@
|
|
|
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 AgeBracketModelFromJSON(json) {
|
|
16
|
+
return AgeBracketModelFromJSONTyped(json, false);
|
|
17
|
+
}
|
|
18
|
+
export function AgeBracketModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
19
|
+
if ((json === undefined) || (json === null)) {
|
|
20
|
+
return json;
|
|
21
|
+
}
|
|
22
|
+
return {
|
|
23
|
+
'bracket': !exists(json, 'bracket') ? undefined : json['bracket'],
|
|
24
|
+
'count': !exists(json, 'count') ? undefined : json['count'],
|
|
25
|
+
'percentageOfTotal': !exists(json, 'percentageOfTotal') ? undefined : json['percentageOfTotal'],
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
export function AgeBracketModelToJSON(value) {
|
|
29
|
+
if (value === undefined) {
|
|
30
|
+
return undefined;
|
|
31
|
+
}
|
|
32
|
+
if (value === null) {
|
|
33
|
+
return null;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'bracket': value.bracket,
|
|
37
|
+
'count': value.count,
|
|
38
|
+
'percentageOfTotal': value.percentageOfTotal,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
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
|
+
import { AgeBracketModel } from './';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface GetActiveCasesByAgeResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface GetActiveCasesByAgeResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<AgeBracketModel>}
|
|
22
|
+
* @memberof GetActiveCasesByAgeResponse
|
|
23
|
+
*/
|
|
24
|
+
ageBreakdown?: Array<AgeBracketModel>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof GetActiveCasesByAgeResponse
|
|
29
|
+
*/
|
|
30
|
+
medianAgeInDays?: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof GetActiveCasesByAgeResponse
|
|
35
|
+
*/
|
|
36
|
+
networkMedianAgeInDays?: number;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof GetActiveCasesByAgeResponse
|
|
41
|
+
*/
|
|
42
|
+
totalActiveCases?: number;
|
|
43
|
+
}
|
|
44
|
+
export declare function GetActiveCasesByAgeResponseFromJSON(json: any): GetActiveCasesByAgeResponse;
|
|
45
|
+
export declare function GetActiveCasesByAgeResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActiveCasesByAgeResponse;
|
|
46
|
+
export declare function GetActiveCasesByAgeResponseToJSON(value?: GetActiveCasesByAgeResponse | null): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
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
|
+
import { AgeBracketModelFromJSON, AgeBracketModelToJSON, } from './';
|
|
16
|
+
export function GetActiveCasesByAgeResponseFromJSON(json) {
|
|
17
|
+
return GetActiveCasesByAgeResponseFromJSONTyped(json, false);
|
|
18
|
+
}
|
|
19
|
+
export function GetActiveCasesByAgeResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
20
|
+
if ((json === undefined) || (json === null)) {
|
|
21
|
+
return json;
|
|
22
|
+
}
|
|
23
|
+
return {
|
|
24
|
+
'ageBreakdown': !exists(json, 'ageBreakdown') ? undefined : (json['ageBreakdown'].map(AgeBracketModelFromJSON)),
|
|
25
|
+
'medianAgeInDays': !exists(json, 'medianAgeInDays') ? undefined : json['medianAgeInDays'],
|
|
26
|
+
'networkMedianAgeInDays': !exists(json, 'networkMedianAgeInDays') ? undefined : json['networkMedianAgeInDays'],
|
|
27
|
+
'totalActiveCases': !exists(json, 'totalActiveCases') ? undefined : json['totalActiveCases'],
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
export function GetActiveCasesByAgeResponseToJSON(value) {
|
|
31
|
+
if (value === undefined) {
|
|
32
|
+
return undefined;
|
|
33
|
+
}
|
|
34
|
+
if (value === null) {
|
|
35
|
+
return null;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'ageBreakdown': value.ageBreakdown === undefined ? undefined : (value.ageBreakdown.map(AgeBracketModelToJSON)),
|
|
39
|
+
'medianAgeInDays': value.medianAgeInDays,
|
|
40
|
+
'networkMedianAgeInDays': value.networkMedianAgeInDays,
|
|
41
|
+
'totalActiveCases': value.totalActiveCases,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -339,5 +339,6 @@ export declare enum ValidateDirectMailResponseOtrErrorEnum {
|
|
|
339
339
|
USERNOTFOUNDINLAWFIRM = "USER_NOT_FOUND_IN_LAWFIRM",
|
|
340
340
|
VERIFICATIONCODENOTNUMERIC = "VERIFICATION_CODE_NOT_NUMERIC",
|
|
341
341
|
VERIFICATIONCODENOTVALID = "VERIFICATION_CODE_NOT_VALID",
|
|
342
|
-
VERIFICATIONLINKNOTVALID = "VERIFICATION_LINK_NOT_VALID"
|
|
342
|
+
VERIFICATIONLINKNOTVALID = "VERIFICATION_LINK_NOT_VALID",
|
|
343
|
+
WEBSOCKETCONNECTIONNOTFOUND = "WEBSOCKET_CONNECTION_NOT_FOUND"
|
|
343
344
|
}
|
|
@@ -350,4 +350,5 @@ export var ValidateDirectMailResponseOtrErrorEnum;
|
|
|
350
350
|
ValidateDirectMailResponseOtrErrorEnum["VERIFICATIONCODENOTNUMERIC"] = "VERIFICATION_CODE_NOT_NUMERIC";
|
|
351
351
|
ValidateDirectMailResponseOtrErrorEnum["VERIFICATIONCODENOTVALID"] = "VERIFICATION_CODE_NOT_VALID";
|
|
352
352
|
ValidateDirectMailResponseOtrErrorEnum["VERIFICATIONLINKNOTVALID"] = "VERIFICATION_LINK_NOT_VALID";
|
|
353
|
+
ValidateDirectMailResponseOtrErrorEnum["WEBSOCKETCONNECTIONNOTFOUND"] = "WEBSOCKET_CONNECTION_NOT_FOUND";
|
|
353
354
|
})(ValidateDirectMailResponseOtrErrorEnum || (ValidateDirectMailResponseOtrErrorEnum = {}));
|
|
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
|
|
|
34
34
|
export * from './AddressDomainRes';
|
|
35
35
|
export * from './AddressEntity';
|
|
36
36
|
export * from './Admin';
|
|
37
|
+
export * from './AgeBracketModel';
|
|
37
38
|
export * from './AgentBookingStats';
|
|
38
39
|
export * from './AgentBookingsSummary';
|
|
39
40
|
export * from './AggregateBySource';
|
|
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
|
|
|
275
276
|
export * from './GeoRatesRequest';
|
|
276
277
|
export * from './GetAcceptedCaseBreakdownResponse';
|
|
277
278
|
export * from './GetAccountManagersResponse';
|
|
279
|
+
export * from './GetActiveCasesByAgeResponse';
|
|
278
280
|
export * from './GetActivityFeedResponse';
|
|
279
281
|
export * from './GetAddressInnerResponse';
|
|
280
282
|
export * from './GetAnonymousTicketUploads';
|
|
@@ -34,6 +34,7 @@ export * from './AddressDomainReq';
|
|
|
34
34
|
export * from './AddressDomainRes';
|
|
35
35
|
export * from './AddressEntity';
|
|
36
36
|
export * from './Admin';
|
|
37
|
+
export * from './AgeBracketModel';
|
|
37
38
|
export * from './AgentBookingStats';
|
|
38
39
|
export * from './AgentBookingsSummary';
|
|
39
40
|
export * from './AggregateBySource';
|
|
@@ -275,6 +276,7 @@ export * from './GenericAdminListRequest';
|
|
|
275
276
|
export * from './GeoRatesRequest';
|
|
276
277
|
export * from './GetAcceptedCaseBreakdownResponse';
|
|
277
278
|
export * from './GetAccountManagersResponse';
|
|
279
|
+
export * from './GetActiveCasesByAgeResponse';
|
|
278
280
|
export * from './GetActivityFeedResponse';
|
|
279
281
|
export * from './GetAddressInnerResponse';
|
|
280
282
|
export * from './GetAnonymousTicketUploads';
|