@workwell-global/component-library 1.1.24 → 1.1.25
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/models/api/TEnquiryAPI.ts +22 -2
- package/package.json +1 -1
|
@@ -18,10 +18,14 @@ export type T365Enquiry = T365OwnershipBase & {
|
|
|
18
18
|
| null
|
|
19
19
|
ww_approvedsimulationscount_state?: number
|
|
20
20
|
'ww_approvedsimulationscount_state@OData.Community.Display.V1.FormattedValue'?: string
|
|
21
|
-
ww_disqualificationreason?:
|
|
21
|
+
ww_disqualificationreason?: string | null
|
|
22
22
|
'ww_disqualificationreason@OData.Community.Display.V1.FormattedValue'?:
|
|
23
23
|
| string
|
|
24
24
|
| null
|
|
25
|
+
ww_disqualificationdetailreason?: string | null
|
|
26
|
+
'ww_disqualificationdetailreason@OData.Community.Display.V1.FormattedValue'?:
|
|
27
|
+
| string
|
|
28
|
+
| null
|
|
25
29
|
ww_enquiryfriendlyname?: string | null
|
|
26
30
|
ww_enquiryid: string
|
|
27
31
|
ww_enquirynumber?: string | null
|
|
@@ -78,8 +82,10 @@ export type TEnquiryAPI = TAPIOwnershipBase & {
|
|
|
78
82
|
enquiryStatusFormattedValue?: string | null
|
|
79
83
|
origin?: number | null
|
|
80
84
|
originFormattedValue?: string | null
|
|
81
|
-
disqualificationReason?:
|
|
85
|
+
disqualificationReason?: string | null
|
|
82
86
|
disqualificationReasonFormattedValue?: string | null
|
|
87
|
+
disqualificationDetailReason?: string | null
|
|
88
|
+
disqualificationDetailReasonFormattedValue?: string | null
|
|
83
89
|
|
|
84
90
|
approvedSimulationsCount?: number
|
|
85
91
|
approvedSimulationsCountFormattedValue?: string
|
|
@@ -112,6 +118,20 @@ export type TEnquiryAPI = TAPIOwnershipBase & {
|
|
|
112
118
|
simulations?: TSimulationAPI[]
|
|
113
119
|
}
|
|
114
120
|
|
|
121
|
+
export type TEnquiryPatchAPI = Partial<
|
|
122
|
+
Pick<
|
|
123
|
+
TEnquiryAPI,
|
|
124
|
+
| 'agencyContactValue'
|
|
125
|
+
| 'agencyValue'
|
|
126
|
+
| 'disqualificationReason'
|
|
127
|
+
| 'disqualificationDetailReason'
|
|
128
|
+
| 'enquiryFriendlyName'
|
|
129
|
+
| 'enquiryNumber'
|
|
130
|
+
| 'enquiryStatus'
|
|
131
|
+
| 'name'
|
|
132
|
+
>
|
|
133
|
+
>
|
|
134
|
+
|
|
115
135
|
export type enquiriesQueryParams =
|
|
116
136
|
| { filter: 'agent'; id: string }
|
|
117
137
|
| { filter: 'agency'; id: string }
|