@otr-app/shared-backend-generated-client 2.5.62 → 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/angular/model/noteModel.ts +2 -2
- package/dist/typescript/model/MatchLegalServicesRequest.d.ts +1 -0
- package/dist/typescript/model/NoteModel.d.ts +2 -2
- package/dist/typescript-fetch/models/MatchLegalServicesRequest.d.ts +6 -0
- package/dist/typescript-fetch/models/MatchLegalServicesRequest.js +2 -0
- package/dist/typescript-fetch/models/NoteModel.d.ts +4 -4
- package/dist/typescript-fetch/models/NoteModel.js +4 -4
- package/dist/typescript-open-api/otr-backend.d.ts +5 -4
- 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;
|
|
@@ -14,12 +14,12 @@ import { NoteAuthor } from './noteAuthor';
|
|
|
14
14
|
|
|
15
15
|
export interface NoteModel {
|
|
16
16
|
author?: NoteAuthor;
|
|
17
|
-
deletedDateUtc?:
|
|
17
|
+
deletedDateUtc?: number;
|
|
18
18
|
isDeleted?: boolean;
|
|
19
19
|
note?: string;
|
|
20
20
|
noteId?: number;
|
|
21
21
|
noteType?: NoteModel.NoteTypeEnum;
|
|
22
|
-
postedDateUtc?:
|
|
22
|
+
postedDateUtc?: number;
|
|
23
23
|
referenceId?: string;
|
|
24
24
|
}
|
|
25
25
|
export namespace NoteModel {
|
|
@@ -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;
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
import * as models from './models';
|
|
13
13
|
export interface NoteModel {
|
|
14
14
|
"author"?: models.NoteAuthor;
|
|
15
|
-
"deletedDateUtc"?:
|
|
15
|
+
"deletedDateUtc"?: number;
|
|
16
16
|
"isDeleted"?: boolean;
|
|
17
17
|
"note"?: string;
|
|
18
18
|
"noteId"?: number;
|
|
19
19
|
"noteType"?: NoteModel.NoteTypeEnum;
|
|
20
|
-
"postedDateUtc"?:
|
|
20
|
+
"postedDateUtc"?: number;
|
|
21
21
|
"referenceId"?: string;
|
|
22
22
|
}
|
|
23
23
|
export declare namespace NoteModel {
|
|
@@ -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,
|
|
@@ -24,10 +24,10 @@ export interface NoteModel {
|
|
|
24
24
|
author?: NoteAuthor;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {number}
|
|
28
28
|
* @memberof NoteModel
|
|
29
29
|
*/
|
|
30
|
-
deletedDateUtc?:
|
|
30
|
+
deletedDateUtc?: number;
|
|
31
31
|
/**
|
|
32
32
|
*
|
|
33
33
|
* @type {boolean}
|
|
@@ -54,10 +54,10 @@ export interface NoteModel {
|
|
|
54
54
|
noteType?: NoteModelNoteTypeEnum;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
|
-
* @type {
|
|
57
|
+
* @type {number}
|
|
58
58
|
* @memberof NoteModel
|
|
59
59
|
*/
|
|
60
|
-
postedDateUtc?:
|
|
60
|
+
postedDateUtc?: number;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {string}
|
|
@@ -22,12 +22,12 @@ export function NoteModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
24
|
'author': !exists(json, 'author') ? undefined : NoteAuthorFromJSON(json['author']),
|
|
25
|
-
'deletedDateUtc': !exists(json, 'deletedDateUtc') ? undefined :
|
|
25
|
+
'deletedDateUtc': !exists(json, 'deletedDateUtc') ? undefined : json['deletedDateUtc'],
|
|
26
26
|
'isDeleted': !exists(json, 'isDeleted') ? undefined : json['isDeleted'],
|
|
27
27
|
'note': !exists(json, 'note') ? undefined : json['note'],
|
|
28
28
|
'noteId': !exists(json, 'noteId') ? undefined : json['noteId'],
|
|
29
29
|
'noteType': !exists(json, 'noteType') ? undefined : json['noteType'],
|
|
30
|
-
'postedDateUtc': !exists(json, 'postedDateUtc') ? undefined :
|
|
30
|
+
'postedDateUtc': !exists(json, 'postedDateUtc') ? undefined : json['postedDateUtc'],
|
|
31
31
|
'referenceId': !exists(json, 'referenceId') ? undefined : json['referenceId'],
|
|
32
32
|
};
|
|
33
33
|
}
|
|
@@ -40,12 +40,12 @@ export function NoteModelToJSON(value) {
|
|
|
40
40
|
}
|
|
41
41
|
return {
|
|
42
42
|
'author': NoteAuthorToJSON(value.author),
|
|
43
|
-
'deletedDateUtc': value.deletedDateUtc
|
|
43
|
+
'deletedDateUtc': value.deletedDateUtc,
|
|
44
44
|
'isDeleted': value.isDeleted,
|
|
45
45
|
'note': value.note,
|
|
46
46
|
'noteId': value.noteId,
|
|
47
47
|
'noteType': value.noteType,
|
|
48
|
-
'postedDateUtc': value.postedDateUtc
|
|
48
|
+
'postedDateUtc': value.postedDateUtc,
|
|
49
49
|
'referenceId': value.referenceId,
|
|
50
50
|
};
|
|
51
51
|
}
|
|
@@ -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} */
|
|
@@ -13481,16 +13482,16 @@ export interface components {
|
|
|
13481
13482
|
/** NoteModel */
|
|
13482
13483
|
NoteModel: {
|
|
13483
13484
|
author?: components["schemas"]["NoteAuthor"];
|
|
13484
|
-
/** Format:
|
|
13485
|
-
deletedDateUtc?:
|
|
13485
|
+
/** Format: int64 */
|
|
13486
|
+
deletedDateUtc?: number;
|
|
13486
13487
|
isDeleted?: boolean;
|
|
13487
13488
|
note?: string;
|
|
13488
13489
|
/** Format: int64 */
|
|
13489
13490
|
noteId?: number;
|
|
13490
13491
|
/** @enum {string} */
|
|
13491
13492
|
noteType?: PathsApiV2NotesSearchGetParametersQueryNoteType;
|
|
13492
|
-
/** Format:
|
|
13493
|
-
postedDateUtc?:
|
|
13493
|
+
/** Format: int64 */
|
|
13494
|
+
postedDateUtc?: number;
|
|
13494
13495
|
referenceId?: string;
|
|
13495
13496
|
};
|
|
13496
13497
|
/** NotificationEvent */
|