@workwell-global/component-library 1.1.27 → 1.1.29
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.
|
@@ -139,5 +139,10 @@ export type enquiriesQueryParams =
|
|
|
139
139
|
export type enquiryQueryParams = {
|
|
140
140
|
enquiryId: string
|
|
141
141
|
includeSimulations?: boolean
|
|
142
|
-
expand?:
|
|
142
|
+
expand?: string
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
export type enquirySoftDeleteParams = {
|
|
146
|
+
disqualificationReason?: string
|
|
147
|
+
disqualificationDetailReason?: string
|
|
143
148
|
}
|
|
@@ -12,6 +12,14 @@ export type T365Simulation = T365OwnershipBase & {
|
|
|
12
12
|
'_ww_enquiry_value@OData.Community.Display.V1.FormattedValue'?: string | null
|
|
13
13
|
_ww_in_agency_value?: string | null
|
|
14
14
|
_ww_in_product_value?: string | null
|
|
15
|
+
_ww_rejectionreason_value?: string | null
|
|
16
|
+
'_ww_rejectionreason_value@OData.Community.Display.V1.FormattedValue'?:
|
|
17
|
+
| string
|
|
18
|
+
| null
|
|
19
|
+
_ww_rejectionreasondetail_value?: string | null
|
|
20
|
+
'_ww_rejectionreasondetail_value@OData.Community.Display.V1.FormattedValue'?:
|
|
21
|
+
| string
|
|
22
|
+
| null
|
|
15
23
|
_ww_salarychecklist_value?: boolean | null
|
|
16
24
|
_ww_solution_value?: string | null
|
|
17
25
|
'_ww_solution_value@OData.Community.Display.V1.FormattedValue'?: string | null
|
|
@@ -340,6 +348,10 @@ export type TSimulationAPI = TAPIOwnershipBase & {
|
|
|
340
348
|
rateFormattedValue?: string | null
|
|
341
349
|
rateFrequency: number | null
|
|
342
350
|
rateFrequencyFormattedValue?: string | null
|
|
351
|
+
rejectionReason?: string | null
|
|
352
|
+
rejectionReasonFormattedValue?: string | null
|
|
353
|
+
rejectionDetailReason?: string | null
|
|
354
|
+
rejectionDetailReasonFormattedValue?: string | null
|
|
343
355
|
revenuePaidby?: number | null
|
|
344
356
|
revenuePaidbyFormattedValue?: string | null
|
|
345
357
|
revenuePercentage?: string | null
|
|
@@ -375,3 +387,8 @@ type CreatePatch<T, Base> = Partial<Omit<T, keyof Base>>
|
|
|
375
387
|
|
|
376
388
|
export type TSimulationPatchAPI = CreatePatch<TSimulationAPI, TAPIOwnershipBase>
|
|
377
389
|
export type T365SimulationPatch = CreatePatch<T365Simulation, T365OwnershipBase>
|
|
390
|
+
|
|
391
|
+
export type simulationSoftDeleteParams = {
|
|
392
|
+
rejectionReason?: string
|
|
393
|
+
rejectionDetailReason?: string
|
|
394
|
+
}
|