spartaxx.businessmodels 1.0.256 → 1.0.258
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.
@@ -2,7 +2,8 @@ import { TermsType } from "./TermsType"
|
|
2
2
|
|
3
3
|
export interface ClientSetupParam {
|
4
4
|
ClientSetupInfo: ClientSetupInfo;
|
5
|
-
QueueId: string
|
5
|
+
QueueId: string;
|
6
|
+
isSocketRequest?:boolean;
|
6
7
|
}
|
7
8
|
|
8
9
|
export interface ClientSetupInfo {
|
@@ -88,7 +89,6 @@ export interface ClientSetupInfo {
|
|
88
89
|
IsRendition: boolean;
|
89
90
|
IsFinancial: boolean;
|
90
91
|
ProjectName:string;
|
91
|
-
isSocketRequest:boolean
|
92
92
|
}
|
93
93
|
|
94
94
|
export interface SelectedPropertyList {
|
@@ -139,7 +139,9 @@ export interface SelectedAllProperty {
|
|
139
139
|
|
140
140
|
export interface OnlineClientSetupMaster {
|
141
141
|
OnlineClientSetupInfo: OnlineClientSetupInfo
|
142
|
-
SelectedPropertyList: SelectedPropertyList[];
|
142
|
+
SelectedPropertyList: SelectedPropertyList[];
|
143
|
+
isSocketRequest?:boolean;
|
144
|
+
|
143
145
|
}
|
144
146
|
|
145
147
|
export interface OnlineClientSetupInfo {
|
@@ -165,5 +167,4 @@ export interface OnlineClientSetupInfo {
|
|
165
167
|
ReferralEmployeeId?: number;
|
166
168
|
TxrollLegalDescription?: string;
|
167
169
|
SocketToken?:string;
|
168
|
-
isSocketRequest?:boolean;
|
169
170
|
}
|