@otr-app/shared-backend-generated-client 2.5.164 → 2.5.165
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/lawfirmSettingsDomain.ts +1 -0
- package/dist/angular/model/lawfirmSettingsDomainReq.ts +1 -0
- package/dist/angular/model/lawfirmSettingsDomainRes.ts +1 -0
- package/dist/angular/model/lawfirmVacationRequest.ts +1 -0
- package/dist/typescript/model/LawfirmSettingsDomain.d.ts +1 -0
- package/dist/typescript/model/LawfirmSettingsDomainReq.d.ts +1 -0
- package/dist/typescript/model/LawfirmSettingsDomainRes.d.ts +1 -0
- package/dist/typescript/model/LawfirmVacationRequest.d.ts +1 -0
- package/dist/typescript-fetch/models/LawfirmSettingsDomain.d.ts +6 -0
- package/dist/typescript-fetch/models/LawfirmSettingsDomain.js +2 -0
- package/dist/typescript-fetch/models/LawfirmSettingsDomainReq.d.ts +6 -0
- package/dist/typescript-fetch/models/LawfirmSettingsDomainReq.js +2 -0
- package/dist/typescript-fetch/models/LawfirmSettingsDomainRes.d.ts +6 -0
- package/dist/typescript-fetch/models/LawfirmSettingsDomainRes.js +2 -0
- package/dist/typescript-fetch/models/LawfirmVacationRequest.d.ts +6 -0
- package/dist/typescript-fetch/models/LawfirmVacationRequest.js +2 -0
- package/dist/typescript-open-api/otr-backend.d.ts +8 -0
- package/package.json +1 -1
|
@@ -30,6 +30,7 @@ export interface LawfirmSettingsDomain {
|
|
|
30
30
|
referralFeeType?: LawfirmSettingsDomain.ReferralFeeTypeEnum;
|
|
31
31
|
vacationModeEndDateUtc?: string;
|
|
32
32
|
vacationModeReason?: string;
|
|
33
|
+
vacationModeStartDateUtc?: string;
|
|
33
34
|
}
|
|
34
35
|
export namespace LawfirmSettingsDomain {
|
|
35
36
|
export type ReferralFeeTypeEnum = 'FLAT_FEE_IN_CENTS' | 'PERCENT';
|
|
@@ -30,6 +30,7 @@ export interface LawfirmSettingsDomainReq {
|
|
|
30
30
|
referralFeeType?: LawfirmSettingsDomainReq.ReferralFeeTypeEnum;
|
|
31
31
|
vacationModeEndDateUtc?: string;
|
|
32
32
|
vacationModeReason?: string;
|
|
33
|
+
vacationModeStartDateUtc?: string;
|
|
33
34
|
}
|
|
34
35
|
export namespace LawfirmSettingsDomainReq {
|
|
35
36
|
export type ReferralFeeTypeEnum = 'FLAT_FEE_IN_CENTS' | 'PERCENT';
|
|
@@ -30,6 +30,7 @@ export interface LawfirmSettingsDomainRes {
|
|
|
30
30
|
referralFeeType?: LawfirmSettingsDomainRes.ReferralFeeTypeEnum;
|
|
31
31
|
vacationModeEndDateUtc?: string;
|
|
32
32
|
vacationModeReason?: string;
|
|
33
|
+
vacationModeStartDateUtc?: string;
|
|
33
34
|
}
|
|
34
35
|
export namespace LawfirmSettingsDomainRes {
|
|
35
36
|
export type ReferralFeeTypeEnum = 'FLAT_FEE_IN_CENTS' | 'PERCENT';
|
|
@@ -28,6 +28,7 @@ export interface LawfirmSettingsDomain {
|
|
|
28
28
|
"referralFeeType"?: LawfirmSettingsDomain.ReferralFeeTypeEnum;
|
|
29
29
|
"vacationModeEndDateUtc"?: string;
|
|
30
30
|
"vacationModeReason"?: string;
|
|
31
|
+
"vacationModeStartDateUtc"?: string;
|
|
31
32
|
}
|
|
32
33
|
export declare namespace LawfirmSettingsDomain {
|
|
33
34
|
enum ReferralFeeTypeEnum {
|
|
@@ -28,6 +28,7 @@ export interface LawfirmSettingsDomainReq {
|
|
|
28
28
|
"referralFeeType"?: LawfirmSettingsDomainReq.ReferralFeeTypeEnum;
|
|
29
29
|
"vacationModeEndDateUtc"?: string;
|
|
30
30
|
"vacationModeReason"?: string;
|
|
31
|
+
"vacationModeStartDateUtc"?: string;
|
|
31
32
|
}
|
|
32
33
|
export declare namespace LawfirmSettingsDomainReq {
|
|
33
34
|
enum ReferralFeeTypeEnum {
|
|
@@ -28,6 +28,7 @@ export interface LawfirmSettingsDomainRes {
|
|
|
28
28
|
"referralFeeType"?: LawfirmSettingsDomainRes.ReferralFeeTypeEnum;
|
|
29
29
|
"vacationModeEndDateUtc"?: string;
|
|
30
30
|
"vacationModeReason"?: string;
|
|
31
|
+
"vacationModeStartDateUtc"?: string;
|
|
31
32
|
}
|
|
32
33
|
export declare namespace LawfirmSettingsDomainRes {
|
|
33
34
|
enum ReferralFeeTypeEnum {
|
|
@@ -118,6 +118,12 @@ export interface LawfirmSettingsDomain {
|
|
|
118
118
|
* @memberof LawfirmSettingsDomain
|
|
119
119
|
*/
|
|
120
120
|
vacationModeReason?: string;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {Date}
|
|
124
|
+
* @memberof LawfirmSettingsDomain
|
|
125
|
+
*/
|
|
126
|
+
vacationModeStartDateUtc?: Date;
|
|
121
127
|
}
|
|
122
128
|
export declare function LawfirmSettingsDomainFromJSON(json: any): LawfirmSettingsDomain;
|
|
123
129
|
export declare function LawfirmSettingsDomainFromJSONTyped(json: any, ignoreDiscriminator: boolean): LawfirmSettingsDomain;
|
|
@@ -38,6 +38,7 @@ export function LawfirmSettingsDomainFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
38
|
'referralFeeType': !exists(json, 'referralFeeType') ? undefined : json['referralFeeType'],
|
|
39
39
|
'vacationModeEndDateUtc': !exists(json, 'vacationModeEndDateUtc') ? undefined : (new Date(json['vacationModeEndDateUtc'])),
|
|
40
40
|
'vacationModeReason': !exists(json, 'vacationModeReason') ? undefined : json['vacationModeReason'],
|
|
41
|
+
'vacationModeStartDateUtc': !exists(json, 'vacationModeStartDateUtc') ? undefined : (new Date(json['vacationModeStartDateUtc'])),
|
|
41
42
|
};
|
|
42
43
|
}
|
|
43
44
|
export function LawfirmSettingsDomainToJSON(value) {
|
|
@@ -65,6 +66,7 @@ export function LawfirmSettingsDomainToJSON(value) {
|
|
|
65
66
|
'referralFeeType': value.referralFeeType,
|
|
66
67
|
'vacationModeEndDateUtc': value.vacationModeEndDateUtc === undefined ? undefined : (value.vacationModeEndDateUtc.toISOString()),
|
|
67
68
|
'vacationModeReason': value.vacationModeReason,
|
|
69
|
+
'vacationModeStartDateUtc': value.vacationModeStartDateUtc === undefined ? undefined : (value.vacationModeStartDateUtc.toISOString()),
|
|
68
70
|
};
|
|
69
71
|
}
|
|
70
72
|
/**
|
|
@@ -118,6 +118,12 @@ export interface LawfirmSettingsDomainReq {
|
|
|
118
118
|
* @memberof LawfirmSettingsDomainReq
|
|
119
119
|
*/
|
|
120
120
|
vacationModeReason?: string;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {Date}
|
|
124
|
+
* @memberof LawfirmSettingsDomainReq
|
|
125
|
+
*/
|
|
126
|
+
vacationModeStartDateUtc?: Date;
|
|
121
127
|
}
|
|
122
128
|
export declare function LawfirmSettingsDomainReqFromJSON(json: any): LawfirmSettingsDomainReq;
|
|
123
129
|
export declare function LawfirmSettingsDomainReqFromJSONTyped(json: any, ignoreDiscriminator: boolean): LawfirmSettingsDomainReq;
|
|
@@ -38,6 +38,7 @@ export function LawfirmSettingsDomainReqFromJSONTyped(json, ignoreDiscriminator)
|
|
|
38
38
|
'referralFeeType': !exists(json, 'referralFeeType') ? undefined : json['referralFeeType'],
|
|
39
39
|
'vacationModeEndDateUtc': !exists(json, 'vacationModeEndDateUtc') ? undefined : (new Date(json['vacationModeEndDateUtc'])),
|
|
40
40
|
'vacationModeReason': !exists(json, 'vacationModeReason') ? undefined : json['vacationModeReason'],
|
|
41
|
+
'vacationModeStartDateUtc': !exists(json, 'vacationModeStartDateUtc') ? undefined : (new Date(json['vacationModeStartDateUtc'])),
|
|
41
42
|
};
|
|
42
43
|
}
|
|
43
44
|
export function LawfirmSettingsDomainReqToJSON(value) {
|
|
@@ -65,6 +66,7 @@ export function LawfirmSettingsDomainReqToJSON(value) {
|
|
|
65
66
|
'referralFeeType': value.referralFeeType,
|
|
66
67
|
'vacationModeEndDateUtc': value.vacationModeEndDateUtc === undefined ? undefined : (value.vacationModeEndDateUtc.toISOString()),
|
|
67
68
|
'vacationModeReason': value.vacationModeReason,
|
|
69
|
+
'vacationModeStartDateUtc': value.vacationModeStartDateUtc === undefined ? undefined : (value.vacationModeStartDateUtc.toISOString()),
|
|
68
70
|
};
|
|
69
71
|
}
|
|
70
72
|
/**
|
|
@@ -118,6 +118,12 @@ export interface LawfirmSettingsDomainRes {
|
|
|
118
118
|
* @memberof LawfirmSettingsDomainRes
|
|
119
119
|
*/
|
|
120
120
|
vacationModeReason?: string;
|
|
121
|
+
/**
|
|
122
|
+
*
|
|
123
|
+
* @type {Date}
|
|
124
|
+
* @memberof LawfirmSettingsDomainRes
|
|
125
|
+
*/
|
|
126
|
+
vacationModeStartDateUtc?: Date;
|
|
121
127
|
}
|
|
122
128
|
export declare function LawfirmSettingsDomainResFromJSON(json: any): LawfirmSettingsDomainRes;
|
|
123
129
|
export declare function LawfirmSettingsDomainResFromJSONTyped(json: any, ignoreDiscriminator: boolean): LawfirmSettingsDomainRes;
|
|
@@ -38,6 +38,7 @@ export function LawfirmSettingsDomainResFromJSONTyped(json, ignoreDiscriminator)
|
|
|
38
38
|
'referralFeeType': !exists(json, 'referralFeeType') ? undefined : json['referralFeeType'],
|
|
39
39
|
'vacationModeEndDateUtc': !exists(json, 'vacationModeEndDateUtc') ? undefined : (new Date(json['vacationModeEndDateUtc'])),
|
|
40
40
|
'vacationModeReason': !exists(json, 'vacationModeReason') ? undefined : json['vacationModeReason'],
|
|
41
|
+
'vacationModeStartDateUtc': !exists(json, 'vacationModeStartDateUtc') ? undefined : (new Date(json['vacationModeStartDateUtc'])),
|
|
41
42
|
};
|
|
42
43
|
}
|
|
43
44
|
export function LawfirmSettingsDomainResToJSON(value) {
|
|
@@ -65,6 +66,7 @@ export function LawfirmSettingsDomainResToJSON(value) {
|
|
|
65
66
|
'referralFeeType': value.referralFeeType,
|
|
66
67
|
'vacationModeEndDateUtc': value.vacationModeEndDateUtc === undefined ? undefined : (value.vacationModeEndDateUtc.toISOString()),
|
|
67
68
|
'vacationModeReason': value.vacationModeReason,
|
|
69
|
+
'vacationModeStartDateUtc': value.vacationModeStartDateUtc === undefined ? undefined : (value.vacationModeStartDateUtc.toISOString()),
|
|
68
70
|
};
|
|
69
71
|
}
|
|
70
72
|
/**
|
|
@@ -39,6 +39,12 @@ export interface LawfirmVacationRequest {
|
|
|
39
39
|
* @memberof LawfirmVacationRequest
|
|
40
40
|
*/
|
|
41
41
|
vacationReason?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {Date}
|
|
45
|
+
* @memberof LawfirmVacationRequest
|
|
46
|
+
*/
|
|
47
|
+
vacationStartDateUtc?: Date;
|
|
42
48
|
}
|
|
43
49
|
export declare function LawfirmVacationRequestFromJSON(json: any): LawfirmVacationRequest;
|
|
44
50
|
export declare function LawfirmVacationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): LawfirmVacationRequest;
|
|
@@ -24,6 +24,7 @@ export function LawfirmVacationRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
24
24
|
'localTimezoneOffsetInHours': !exists(json, 'localTimezoneOffsetInHours') ? undefined : json['localTimezoneOffsetInHours'],
|
|
25
25
|
'vacationEndDateUtc': !exists(json, 'vacationEndDateUtc') ? undefined : (new Date(json['vacationEndDateUtc'])),
|
|
26
26
|
'vacationReason': !exists(json, 'vacationReason') ? undefined : json['vacationReason'],
|
|
27
|
+
'vacationStartDateUtc': !exists(json, 'vacationStartDateUtc') ? undefined : (new Date(json['vacationStartDateUtc'])),
|
|
27
28
|
};
|
|
28
29
|
}
|
|
29
30
|
export function LawfirmVacationRequestToJSON(value) {
|
|
@@ -38,5 +39,6 @@ export function LawfirmVacationRequestToJSON(value) {
|
|
|
38
39
|
'localTimezoneOffsetInHours': value.localTimezoneOffsetInHours,
|
|
39
40
|
'vacationEndDateUtc': value.vacationEndDateUtc === undefined ? undefined : (value.vacationEndDateUtc.toISOString()),
|
|
40
41
|
'vacationReason': value.vacationReason,
|
|
42
|
+
'vacationStartDateUtc': value.vacationStartDateUtc === undefined ? undefined : (value.vacationStartDateUtc.toISOString()),
|
|
41
43
|
};
|
|
42
44
|
}
|
|
@@ -12711,6 +12711,8 @@ export interface components {
|
|
|
12711
12711
|
/** Format: date-time */
|
|
12712
12712
|
vacationModeEndDateUtc?: string;
|
|
12713
12713
|
vacationModeReason?: string;
|
|
12714
|
+
/** Format: date-time */
|
|
12715
|
+
vacationModeStartDateUtc?: string;
|
|
12714
12716
|
};
|
|
12715
12717
|
/** LawfirmSettingsDomainReq */
|
|
12716
12718
|
LawfirmSettingsDomainReq: {
|
|
@@ -12737,6 +12739,8 @@ export interface components {
|
|
|
12737
12739
|
/** Format: date-time */
|
|
12738
12740
|
vacationModeEndDateUtc?: string;
|
|
12739
12741
|
vacationModeReason?: string;
|
|
12742
|
+
/** Format: date-time */
|
|
12743
|
+
vacationModeStartDateUtc?: string;
|
|
12740
12744
|
};
|
|
12741
12745
|
/** LawfirmSettingsDomainRes */
|
|
12742
12746
|
LawfirmSettingsDomainRes: {
|
|
@@ -12763,6 +12767,8 @@ export interface components {
|
|
|
12763
12767
|
/** Format: date-time */
|
|
12764
12768
|
vacationModeEndDateUtc?: string;
|
|
12765
12769
|
vacationModeReason?: string;
|
|
12770
|
+
/** Format: date-time */
|
|
12771
|
+
vacationModeStartDateUtc?: string;
|
|
12766
12772
|
};
|
|
12767
12773
|
/** LawfirmStatusModel */
|
|
12768
12774
|
LawfirmStatusModel: {
|
|
@@ -12810,6 +12816,8 @@ export interface components {
|
|
|
12810
12816
|
/** Format: date-time */
|
|
12811
12817
|
vacationEndDateUtc?: string;
|
|
12812
12818
|
vacationReason?: string;
|
|
12819
|
+
/** Format: date-time */
|
|
12820
|
+
vacationStartDateUtc?: string;
|
|
12813
12821
|
};
|
|
12814
12822
|
/** LawfirmsRatesResponse */
|
|
12815
12823
|
LawfirmsRatesResponse: {
|