@otr-app/shared-backend-generated-client 2.5.46 → 2.5.48
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/model/listDashboardCasesResponse.ts +1 -0
- package/dist/angular/model/transferCaseRequest.ts +1 -0
- package/dist/typescript/model/ListDashboardCasesResponse.d.ts +1 -0
- package/dist/typescript/model/TransferCaseRequest.d.ts +1 -0
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.d.ts +6 -0
- package/dist/typescript-fetch/models/ListDashboardCasesResponse.js +2 -0
- package/dist/typescript-fetch/models/TransferCaseRequest.d.ts +6 -0
- package/dist/typescript-fetch/models/TransferCaseRequest.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +3 -0
- package/package.json +1 -1
|
@@ -14,6 +14,7 @@ export interface ListDashboardCasesResponse {
|
|
|
14
14
|
"cases"?: Array<models.DashboardCaseModel>;
|
|
15
15
|
"counts"?: models.DashboardCaseCountsDto;
|
|
16
16
|
"filteredCaseCount"?: number;
|
|
17
|
+
"needsAttentionCaseCount"?: number;
|
|
17
18
|
"previousPageToken"?: string;
|
|
18
19
|
"totalCaseCount"?: number;
|
|
19
20
|
}
|
|
@@ -34,6 +34,12 @@ export interface ListDashboardCasesResponse {
|
|
|
34
34
|
* @memberof ListDashboardCasesResponse
|
|
35
35
|
*/
|
|
36
36
|
filteredCaseCount?: number;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ListDashboardCasesResponse
|
|
41
|
+
*/
|
|
42
|
+
needsAttentionCaseCount?: number;
|
|
37
43
|
/**
|
|
38
44
|
*
|
|
39
45
|
* @type {string}
|
|
@@ -24,6 +24,7 @@ export function ListDashboardCasesResponseFromJSONTyped(json, ignoreDiscriminato
|
|
|
24
24
|
'cases': !exists(json, 'cases') ? undefined : (json['cases'].map(DashboardCaseModelFromJSON)),
|
|
25
25
|
'counts': !exists(json, 'counts') ? undefined : DashboardCaseCountsDtoFromJSON(json['counts']),
|
|
26
26
|
'filteredCaseCount': !exists(json, 'filteredCaseCount') ? undefined : json['filteredCaseCount'],
|
|
27
|
+
'needsAttentionCaseCount': !exists(json, 'needsAttentionCaseCount') ? undefined : json['needsAttentionCaseCount'],
|
|
27
28
|
'previousPageToken': !exists(json, 'previousPageToken') ? undefined : json['previousPageToken'],
|
|
28
29
|
'totalCaseCount': !exists(json, 'totalCaseCount') ? undefined : json['totalCaseCount'],
|
|
29
30
|
};
|
|
@@ -39,6 +40,7 @@ export function ListDashboardCasesResponseToJSON(value) {
|
|
|
39
40
|
'cases': value.cases === undefined ? undefined : (value.cases.map(DashboardCaseModelToJSON)),
|
|
40
41
|
'counts': DashboardCaseCountsDtoToJSON(value.counts),
|
|
41
42
|
'filteredCaseCount': value.filteredCaseCount,
|
|
43
|
+
'needsAttentionCaseCount': value.needsAttentionCaseCount,
|
|
42
44
|
'previousPageToken': value.previousPageToken,
|
|
43
45
|
'totalCaseCount': value.totalCaseCount,
|
|
44
46
|
};
|
|
@@ -39,6 +39,12 @@ export interface TransferCaseRequest {
|
|
|
39
39
|
* @memberof TransferCaseRequest
|
|
40
40
|
*/
|
|
41
41
|
receivingLawfirmId?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof TransferCaseRequest
|
|
46
|
+
*/
|
|
47
|
+
shouldHandlePaymentsManually?: boolean;
|
|
42
48
|
}
|
|
43
49
|
export declare function TransferCaseRequestFromJSON(json: any): TransferCaseRequest;
|
|
44
50
|
export declare function TransferCaseRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferCaseRequest;
|
|
@@ -24,6 +24,7 @@ export function TransferCaseRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
24
24
|
'ignoreCapturedCharges': !exists(json, 'ignoreCapturedCharges') ? undefined : json['ignoreCapturedCharges'],
|
|
25
25
|
'maxOtrCreditInCents': !exists(json, 'maxOtrCreditInCents') ? undefined : json['maxOtrCreditInCents'],
|
|
26
26
|
'receivingLawfirmId': !exists(json, 'receivingLawfirmId') ? undefined : json['receivingLawfirmId'],
|
|
27
|
+
'shouldHandlePaymentsManually': !exists(json, 'shouldHandlePaymentsManually') ? undefined : json['shouldHandlePaymentsManually'],
|
|
27
28
|
};
|
|
28
29
|
}
|
|
29
30
|
export function TransferCaseRequestToJSON(value) {
|
|
@@ -38,5 +39,6 @@ export function TransferCaseRequestToJSON(value) {
|
|
|
38
39
|
'ignoreCapturedCharges': value.ignoreCapturedCharges,
|
|
39
40
|
'maxOtrCreditInCents': value.maxOtrCreditInCents,
|
|
40
41
|
'receivingLawfirmId': value.receivingLawfirmId,
|
|
42
|
+
'shouldHandlePaymentsManually': value.shouldHandlePaymentsManually,
|
|
41
43
|
};
|
|
42
44
|
}
|
|
@@ -12747,6 +12747,8 @@ export interface components {
|
|
|
12747
12747
|
counts?: components["schemas"]["DashboardCaseCountsDto"];
|
|
12748
12748
|
/** Format: int32 */
|
|
12749
12749
|
filteredCaseCount?: number;
|
|
12750
|
+
/** Format: int32 */
|
|
12751
|
+
needsAttentionCaseCount?: number;
|
|
12750
12752
|
previousPageToken?: string;
|
|
12751
12753
|
/** Format: int32 */
|
|
12752
12754
|
totalCaseCount?: number;
|
|
@@ -15398,6 +15400,7 @@ export interface components {
|
|
|
15398
15400
|
maxOtrCreditInCents?: number;
|
|
15399
15401
|
/** Format: int64 */
|
|
15400
15402
|
receivingLawfirmId?: number;
|
|
15403
|
+
shouldHandlePaymentsManually?: boolean;
|
|
15401
15404
|
};
|
|
15402
15405
|
/** USStateDomain */
|
|
15403
15406
|
USStateDomain: {
|