@otr-app/shared-backend-generated-client 2.4.56 → 2.4.58
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/courtName.ts +1 -0
- package/dist/angular/model/violationNames.ts +1 -0
- package/dist/typescript/model/CourtName.d.ts +1 -0
- package/dist/typescript/model/ViolationNames.d.ts +1 -0
- package/dist/typescript-fetch/models/CourtName.d.ts +6 -0
- package/dist/typescript-fetch/models/CourtName.js +2 -0
- package/dist/typescript-fetch/models/OCRCitationPredictionResponse.d.ts +4 -4
- package/dist/typescript-fetch/models/OCRCitationPredictionResponse.js +4 -4
- package/dist/typescript-fetch/models/ViolationNames.d.ts +6 -0
- package/dist/typescript-fetch/models/ViolationNames.js +2 -0
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export function CourtNameFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
21
21
|
}
|
|
22
22
|
return {
|
|
23
23
|
'llmPrediction': !exists(json, 'llm_prediction') ? undefined : json['llm_prediction'],
|
|
24
|
+
'pineconeIds': !exists(json, 'pinecone_ids') ? undefined : json['pinecone_ids'],
|
|
24
25
|
'pineconeMatch': !exists(json, 'pinecone_match') ? undefined : json['pinecone_match'],
|
|
25
26
|
'pineconeMatches': !exists(json, 'pinecone_matches') ? undefined : json['pinecone_matches'],
|
|
26
27
|
'pineconeScores': !exists(json, 'pinecone_scores') ? undefined : json['pinecone_scores'],
|
|
@@ -35,6 +36,7 @@ export function CourtNameToJSON(value) {
|
|
|
35
36
|
}
|
|
36
37
|
return {
|
|
37
38
|
'llm_prediction': value.llmPrediction,
|
|
39
|
+
'pinecone_ids': value.pineconeIds,
|
|
38
40
|
'pinecone_match': value.pineconeMatch,
|
|
39
41
|
'pinecone_matches': value.pineconeMatches,
|
|
40
42
|
'pinecone_scores': value.pineconeScores,
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
export interface OCRCitationPredictionResponse {
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
|
-
* @type {
|
|
20
|
+
* @type {string}
|
|
21
21
|
* @memberof OCRCitationPredictionResponse
|
|
22
22
|
*/
|
|
23
|
-
citationIssueDate?:
|
|
23
|
+
citationIssueDate?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
26
|
* @type {string}
|
|
@@ -29,10 +29,10 @@ export interface OCRCitationPredictionResponse {
|
|
|
29
29
|
courtName?: string;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {string}
|
|
33
33
|
* @memberof OCRCitationPredictionResponse
|
|
34
34
|
*/
|
|
35
|
-
dateOfBirth?:
|
|
35
|
+
dateOfBirth?: string;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
38
|
* @type {string}
|
|
@@ -20,9 +20,9 @@ export function OCRCitationPredictionResponseFromJSONTyped(json, ignoreDiscrimin
|
|
|
20
20
|
return json;
|
|
21
21
|
}
|
|
22
22
|
return {
|
|
23
|
-
'citationIssueDate': !exists(json, 'citationIssueDate') ? undefined :
|
|
23
|
+
'citationIssueDate': !exists(json, 'citationIssueDate') ? undefined : json['citationIssueDate'],
|
|
24
24
|
'courtName': !exists(json, 'courtName') ? undefined : json['courtName'],
|
|
25
|
-
'dateOfBirth': !exists(json, 'dateOfBirth') ? undefined :
|
|
25
|
+
'dateOfBirth': !exists(json, 'dateOfBirth') ? undefined : json['dateOfBirth'],
|
|
26
26
|
'firstName': !exists(json, 'firstName') ? undefined : json['firstName'],
|
|
27
27
|
'lastName': !exists(json, 'lastName') ? undefined : json['lastName'],
|
|
28
28
|
'licenseNumber': !exists(json, 'licenseNumber') ? undefined : json['licenseNumber'],
|
|
@@ -38,9 +38,9 @@ export function OCRCitationPredictionResponseToJSON(value) {
|
|
|
38
38
|
return null;
|
|
39
39
|
}
|
|
40
40
|
return {
|
|
41
|
-
'citationIssueDate': value.citationIssueDate
|
|
41
|
+
'citationIssueDate': value.citationIssueDate,
|
|
42
42
|
'courtName': value.courtName,
|
|
43
|
-
'dateOfBirth': value.dateOfBirth
|
|
43
|
+
'dateOfBirth': value.dateOfBirth,
|
|
44
44
|
'firstName': value.firstName,
|
|
45
45
|
'lastName': value.lastName,
|
|
46
46
|
'licenseNumber': value.licenseNumber,
|
|
@@ -21,6 +21,7 @@ export function ViolationNamesFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
21
21
|
}
|
|
22
22
|
return {
|
|
23
23
|
'llmPrediction': !exists(json, 'llm_prediction') ? undefined : json['llm_prediction'],
|
|
24
|
+
'pineconeIds': !exists(json, 'pinecone_ids') ? undefined : json['pinecone_ids'],
|
|
24
25
|
'pineconeMatches': !exists(json, 'pinecone_matches') ? undefined : json['pinecone_matches'],
|
|
25
26
|
'pineconeScores': !exists(json, 'pinecone_scores') ? undefined : json['pinecone_scores'],
|
|
26
27
|
};
|
|
@@ -34,6 +35,7 @@ export function ViolationNamesToJSON(value) {
|
|
|
34
35
|
}
|
|
35
36
|
return {
|
|
36
37
|
'llm_prediction': value.llmPrediction,
|
|
38
|
+
'pinecone_ids': value.pineconeIds,
|
|
37
39
|
'pinecone_matches': value.pineconeMatches,
|
|
38
40
|
'pinecone_scores': value.pineconeScores,
|
|
39
41
|
};
|