@otr-app/shared-backend-generated-client 2.4.62 → 2.4.63
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/lawfirmCaseModel.ts +1 -0
- package/dist/angular/model/lawfirmCaseModelReq.ts +1 -0
- package/dist/angular/model/lawfirmCaseModelRes.ts +1 -0
- package/dist/typescript/model/LawfirmCaseModel.d.ts +1 -0
- package/dist/typescript/model/LawfirmCaseModelReq.d.ts +1 -0
- package/dist/typescript/model/LawfirmCaseModelRes.d.ts +1 -0
- package/dist/typescript-fetch/models/LawfirmCaseModel.d.ts +6 -0
- package/dist/typescript-fetch/models/LawfirmCaseModel.js +2 -0
- package/dist/typescript-fetch/models/LawfirmCaseModelReq.d.ts +6 -0
- package/dist/typescript-fetch/models/LawfirmCaseModelReq.js +2 -0
- package/dist/typescript-fetch/models/LawfirmCaseModelRes.d.ts +6 -0
- package/dist/typescript-fetch/models/LawfirmCaseModelRes.js +2 -0
- package/package.json +1 -1
|
@@ -27,6 +27,7 @@ export interface LawfirmCaseModel {
|
|
|
27
27
|
lawfirmName?: string;
|
|
28
28
|
lawfirmPrimaryEmail?: string;
|
|
29
29
|
lawfirmReceiptDateUtc?: Timestamp;
|
|
30
|
+
lawyerCounterOfferTicketId?: number;
|
|
30
31
|
matchExpirationDateUtc?: string;
|
|
31
32
|
obfuscatedPictureUrl?: string;
|
|
32
33
|
profilePictureUrl?: string;
|
|
@@ -27,6 +27,7 @@ export interface LawfirmCaseModelReq {
|
|
|
27
27
|
lawfirmName?: string;
|
|
28
28
|
lawfirmPrimaryEmail?: string;
|
|
29
29
|
lawfirmReceiptDateUtc?: TimestampReq;
|
|
30
|
+
lawyerCounterOfferTicketId?: number;
|
|
30
31
|
matchExpirationDateUtc?: string;
|
|
31
32
|
obfuscatedPictureUrl?: string;
|
|
32
33
|
profilePictureUrl?: string;
|
|
@@ -27,6 +27,7 @@ export interface LawfirmCaseModelRes {
|
|
|
27
27
|
lawfirmName?: string;
|
|
28
28
|
lawfirmPrimaryEmail?: string;
|
|
29
29
|
lawfirmReceiptDateUtc?: TimestampRes;
|
|
30
|
+
lawyerCounterOfferTicketId?: number;
|
|
30
31
|
matchExpirationDateUtc?: string;
|
|
31
32
|
obfuscatedPictureUrl?: string;
|
|
32
33
|
profilePictureUrl?: string;
|
|
@@ -24,6 +24,7 @@ export interface LawfirmCaseModel {
|
|
|
24
24
|
"lawfirmName"?: string;
|
|
25
25
|
"lawfirmPrimaryEmail"?: string;
|
|
26
26
|
"lawfirmReceiptDateUtc"?: models.Timestamp;
|
|
27
|
+
"lawyerCounterOfferTicketId"?: number;
|
|
27
28
|
"matchExpirationDateUtc"?: string;
|
|
28
29
|
"obfuscatedPictureUrl"?: string;
|
|
29
30
|
"profilePictureUrl"?: string;
|
|
@@ -24,6 +24,7 @@ export interface LawfirmCaseModelReq {
|
|
|
24
24
|
"lawfirmName"?: string;
|
|
25
25
|
"lawfirmPrimaryEmail"?: string;
|
|
26
26
|
"lawfirmReceiptDateUtc"?: models.TimestampReq;
|
|
27
|
+
"lawyerCounterOfferTicketId"?: number;
|
|
27
28
|
"matchExpirationDateUtc"?: string;
|
|
28
29
|
"obfuscatedPictureUrl"?: string;
|
|
29
30
|
"profilePictureUrl"?: string;
|
|
@@ -24,6 +24,7 @@ export interface LawfirmCaseModelRes {
|
|
|
24
24
|
"lawfirmName"?: string;
|
|
25
25
|
"lawfirmPrimaryEmail"?: string;
|
|
26
26
|
"lawfirmReceiptDateUtc"?: models.TimestampRes;
|
|
27
|
+
"lawyerCounterOfferTicketId"?: number;
|
|
27
28
|
"matchExpirationDateUtc"?: string;
|
|
28
29
|
"obfuscatedPictureUrl"?: string;
|
|
29
30
|
"profilePictureUrl"?: string;
|
|
@@ -94,6 +94,12 @@ export interface LawfirmCaseModel {
|
|
|
94
94
|
* @memberof LawfirmCaseModel
|
|
95
95
|
*/
|
|
96
96
|
lawfirmReceiptDateUtc?: Timestamp;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {number}
|
|
100
|
+
* @memberof LawfirmCaseModel
|
|
101
|
+
*/
|
|
102
|
+
lawyerCounterOfferTicketId?: number;
|
|
97
103
|
/**
|
|
98
104
|
*
|
|
99
105
|
* @type {Date}
|
|
@@ -34,6 +34,7 @@ export function LawfirmCaseModelFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
34
|
'lawfirmName': !exists(json, 'lawfirmName') ? undefined : json['lawfirmName'],
|
|
35
35
|
'lawfirmPrimaryEmail': !exists(json, 'lawfirmPrimaryEmail') ? undefined : json['lawfirmPrimaryEmail'],
|
|
36
36
|
'lawfirmReceiptDateUtc': !exists(json, 'lawfirmReceiptDateUtc') ? undefined : TimestampFromJSON(json['lawfirmReceiptDateUtc']),
|
|
37
|
+
'lawyerCounterOfferTicketId': !exists(json, 'lawyerCounterOfferTicketId') ? undefined : json['lawyerCounterOfferTicketId'],
|
|
37
38
|
'matchExpirationDateUtc': !exists(json, 'matchExpirationDateUtc') ? undefined : (new Date(json['matchExpirationDateUtc'])),
|
|
38
39
|
'obfuscatedPictureUrl': !exists(json, 'obfuscatedPictureUrl') ? undefined : json['obfuscatedPictureUrl'],
|
|
39
40
|
'profilePictureUrl': !exists(json, 'profilePictureUrl') ? undefined : json['profilePictureUrl'],
|
|
@@ -61,6 +62,7 @@ export function LawfirmCaseModelToJSON(value) {
|
|
|
61
62
|
'lawfirmName': value.lawfirmName,
|
|
62
63
|
'lawfirmPrimaryEmail': value.lawfirmPrimaryEmail,
|
|
63
64
|
'lawfirmReceiptDateUtc': TimestampToJSON(value.lawfirmReceiptDateUtc),
|
|
65
|
+
'lawyerCounterOfferTicketId': value.lawyerCounterOfferTicketId,
|
|
64
66
|
'matchExpirationDateUtc': value.matchExpirationDateUtc === undefined ? undefined : (value.matchExpirationDateUtc.toISOString()),
|
|
65
67
|
'obfuscatedPictureUrl': value.obfuscatedPictureUrl,
|
|
66
68
|
'profilePictureUrl': value.profilePictureUrl,
|
|
@@ -94,6 +94,12 @@ export interface LawfirmCaseModelReq {
|
|
|
94
94
|
* @memberof LawfirmCaseModelReq
|
|
95
95
|
*/
|
|
96
96
|
lawfirmReceiptDateUtc?: TimestampReq;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {number}
|
|
100
|
+
* @memberof LawfirmCaseModelReq
|
|
101
|
+
*/
|
|
102
|
+
lawyerCounterOfferTicketId?: number;
|
|
97
103
|
/**
|
|
98
104
|
*
|
|
99
105
|
* @type {Date}
|
|
@@ -34,6 +34,7 @@ export function LawfirmCaseModelReqFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
34
|
'lawfirmName': !exists(json, 'lawfirmName') ? undefined : json['lawfirmName'],
|
|
35
35
|
'lawfirmPrimaryEmail': !exists(json, 'lawfirmPrimaryEmail') ? undefined : json['lawfirmPrimaryEmail'],
|
|
36
36
|
'lawfirmReceiptDateUtc': !exists(json, 'lawfirmReceiptDateUtc') ? undefined : TimestampReqFromJSON(json['lawfirmReceiptDateUtc']),
|
|
37
|
+
'lawyerCounterOfferTicketId': !exists(json, 'lawyerCounterOfferTicketId') ? undefined : json['lawyerCounterOfferTicketId'],
|
|
37
38
|
'matchExpirationDateUtc': !exists(json, 'matchExpirationDateUtc') ? undefined : (new Date(json['matchExpirationDateUtc'])),
|
|
38
39
|
'obfuscatedPictureUrl': !exists(json, 'obfuscatedPictureUrl') ? undefined : json['obfuscatedPictureUrl'],
|
|
39
40
|
'profilePictureUrl': !exists(json, 'profilePictureUrl') ? undefined : json['profilePictureUrl'],
|
|
@@ -61,6 +62,7 @@ export function LawfirmCaseModelReqToJSON(value) {
|
|
|
61
62
|
'lawfirmName': value.lawfirmName,
|
|
62
63
|
'lawfirmPrimaryEmail': value.lawfirmPrimaryEmail,
|
|
63
64
|
'lawfirmReceiptDateUtc': TimestampReqToJSON(value.lawfirmReceiptDateUtc),
|
|
65
|
+
'lawyerCounterOfferTicketId': value.lawyerCounterOfferTicketId,
|
|
64
66
|
'matchExpirationDateUtc': value.matchExpirationDateUtc === undefined ? undefined : (value.matchExpirationDateUtc.toISOString()),
|
|
65
67
|
'obfuscatedPictureUrl': value.obfuscatedPictureUrl,
|
|
66
68
|
'profilePictureUrl': value.profilePictureUrl,
|
|
@@ -94,6 +94,12 @@ export interface LawfirmCaseModelRes {
|
|
|
94
94
|
* @memberof LawfirmCaseModelRes
|
|
95
95
|
*/
|
|
96
96
|
lawfirmReceiptDateUtc?: TimestampRes;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {number}
|
|
100
|
+
* @memberof LawfirmCaseModelRes
|
|
101
|
+
*/
|
|
102
|
+
lawyerCounterOfferTicketId?: number;
|
|
97
103
|
/**
|
|
98
104
|
*
|
|
99
105
|
* @type {Date}
|
|
@@ -34,6 +34,7 @@ export function LawfirmCaseModelResFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
34
|
'lawfirmName': !exists(json, 'lawfirmName') ? undefined : json['lawfirmName'],
|
|
35
35
|
'lawfirmPrimaryEmail': !exists(json, 'lawfirmPrimaryEmail') ? undefined : json['lawfirmPrimaryEmail'],
|
|
36
36
|
'lawfirmReceiptDateUtc': !exists(json, 'lawfirmReceiptDateUtc') ? undefined : TimestampResFromJSON(json['lawfirmReceiptDateUtc']),
|
|
37
|
+
'lawyerCounterOfferTicketId': !exists(json, 'lawyerCounterOfferTicketId') ? undefined : json['lawyerCounterOfferTicketId'],
|
|
37
38
|
'matchExpirationDateUtc': !exists(json, 'matchExpirationDateUtc') ? undefined : (new Date(json['matchExpirationDateUtc'])),
|
|
38
39
|
'obfuscatedPictureUrl': !exists(json, 'obfuscatedPictureUrl') ? undefined : json['obfuscatedPictureUrl'],
|
|
39
40
|
'profilePictureUrl': !exists(json, 'profilePictureUrl') ? undefined : json['profilePictureUrl'],
|
|
@@ -61,6 +62,7 @@ export function LawfirmCaseModelResToJSON(value) {
|
|
|
61
62
|
'lawfirmName': value.lawfirmName,
|
|
62
63
|
'lawfirmPrimaryEmail': value.lawfirmPrimaryEmail,
|
|
63
64
|
'lawfirmReceiptDateUtc': TimestampResToJSON(value.lawfirmReceiptDateUtc),
|
|
65
|
+
'lawyerCounterOfferTicketId': value.lawyerCounterOfferTicketId,
|
|
64
66
|
'matchExpirationDateUtc': value.matchExpirationDateUtc === undefined ? undefined : (value.matchExpirationDateUtc.toISOString()),
|
|
65
67
|
'obfuscatedPictureUrl': value.obfuscatedPictureUrl,
|
|
66
68
|
'profilePictureUrl': value.profilePictureUrl,
|