@otr-app/shared-backend-generated-client 2.5.63 → 2.5.64
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/matchLegalServicesRequest.ts +1 -0
- package/dist/typescript/model/MatchLegalServicesRequest.d.ts +1 -0
- package/dist/typescript-fetch/models/MatchLegalServicesRequest.d.ts +6 -0
- package/dist/typescript-fetch/models/MatchLegalServicesRequest.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +1 -0
- package/package.json +1 -1
|
@@ -14,6 +14,7 @@ import { MatchingFieldValue } from './matchingFieldValue';
|
|
|
14
14
|
|
|
15
15
|
export interface MatchLegalServicesRequest {
|
|
16
16
|
courtDate?: string;
|
|
17
|
+
defendantEmail?: string;
|
|
17
18
|
forcePredeterminedLawfirmId?: boolean;
|
|
18
19
|
isMatchInternal?: boolean;
|
|
19
20
|
legalServiceType?: MatchLegalServicesRequest.LegalServiceTypeEnum;
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface MatchLegalServicesRequest {
|
|
14
14
|
"courtDate"?: string;
|
|
15
|
+
"defendantEmail"?: string;
|
|
15
16
|
"forcePredeterminedLawfirmId"?: boolean;
|
|
16
17
|
"isMatchInternal"?: boolean;
|
|
17
18
|
"legalServiceType"?: MatchLegalServicesRequest.LegalServiceTypeEnum;
|
|
@@ -22,6 +22,12 @@ export interface MatchLegalServicesRequest {
|
|
|
22
22
|
* @memberof MatchLegalServicesRequest
|
|
23
23
|
*/
|
|
24
24
|
courtDate?: Date;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof MatchLegalServicesRequest
|
|
29
|
+
*/
|
|
30
|
+
defendantEmail?: string;
|
|
25
31
|
/**
|
|
26
32
|
*
|
|
27
33
|
* @type {boolean}
|
|
@@ -22,6 +22,7 @@ export function MatchLegalServicesRequestFromJSONTyped(json, ignoreDiscriminator
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'courtDate': !exists(json, 'courtDate') ? undefined : (new Date(json['courtDate'])),
|
|
25
|
+
'defendantEmail': !exists(json, 'defendantEmail') ? undefined : json['defendantEmail'],
|
|
25
26
|
'forcePredeterminedLawfirmId': !exists(json, 'forcePredeterminedLawfirmId') ? undefined : json['forcePredeterminedLawfirmId'],
|
|
26
27
|
'isMatchInternal': !exists(json, 'isMatchInternal') ? undefined : json['isMatchInternal'],
|
|
27
28
|
'legalServiceType': !exists(json, 'legalServiceType') ? undefined : json['legalServiceType'],
|
|
@@ -41,6 +42,7 @@ export function MatchLegalServicesRequestToJSON(value) {
|
|
|
41
42
|
}
|
|
42
43
|
return {
|
|
43
44
|
'courtDate': value.courtDate === undefined ? undefined : (value.courtDate.toISOString()),
|
|
45
|
+
'defendantEmail': value.defendantEmail,
|
|
44
46
|
'forcePredeterminedLawfirmId': value.forcePredeterminedLawfirmId,
|
|
45
47
|
'isMatchInternal': value.isMatchInternal,
|
|
46
48
|
'legalServiceType': value.legalServiceType,
|
|
@@ -13254,6 +13254,7 @@ export interface components {
|
|
|
13254
13254
|
MatchLegalServicesRequest: {
|
|
13255
13255
|
/** Format: date-time */
|
|
13256
13256
|
courtDate?: string;
|
|
13257
|
+
defendantEmail?: string;
|
|
13257
13258
|
forcePredeterminedLawfirmId?: boolean;
|
|
13258
13259
|
isMatchInternal?: boolean;
|
|
13259
13260
|
/** @enum {string} */
|