@@ -245,9 +245,15 @@ def searchOrgJsiAssetsAndContracts(
245245 sku : str | None = None ,
246246 status : str | None = None ,
247247 warranty_type : str | None = None ,
248- eol_duration : str | None = None ,
249- eos_duration : str | None = None ,
248+ eol_after : str | None = None ,
249+ eol_before : str | None = None ,
250+ eos_after : str | None = None ,
251+ eos_before : str | None = None ,
252+ version_eos_after : str | None = None ,
253+ version_eos_before : str | None = None ,
250254 has_support : bool | None = None ,
255+ sirt_id : str | None = None ,
256+ pbn_id : str | None = None ,
251257 text : str | None = None ,
252258 limit : int | None = None ,
253259 sort : str | None = None ,
@@ -275,9 +281,15 @@ def searchOrgJsiAssetsAndContracts(
275281 Device status
276282 warranty_type : str{'Standard Hardware Warranty', 'Enhanced Hardware Warranty', 'Dead On Arrival Warranty', 'Limited Lifetime Warranty', 'Software Warranty', 'Limited Lifetime Warranty for WLA', 'Warranty-JCPO EOL (DOA Not Included)', 'MIST Enhanced Hardware Warranty', 'MIST Standard Warranty', 'Determine Lifetime warranty'}
277283 Device warranty type
278- eol_duration : str
279- eos_duration : str
284+ eol_after : str
285+ eol_before : str
286+ eos_after : str
287+ eos_before : str
288+ version_eos_after : str
289+ version_eos_before : str
280290 has_support : bool
291+ sirt_id : str
292+ pbn_id : str
281293 text : str
282294 limit : int, default: 100
283295 sort : str, default: timestamp
@@ -303,12 +315,24 @@ def searchOrgJsiAssetsAndContracts(
303315 query_params ["status" ] = str (status )
304316 if warranty_type :
305317 query_params ["warranty_type" ] = str (warranty_type )
306- if eol_duration :
307- query_params ["eol_duration" ] = str (eol_duration )
308- if eos_duration :
309- query_params ["eos_duration" ] = str (eos_duration )
318+ if eol_after :
319+ query_params ["eol_after" ] = str (eol_after )
320+ if eol_before :
321+ query_params ["eol_before" ] = str (eol_before )
322+ if eos_after :
323+ query_params ["eos_after" ] = str (eos_after )
324+ if eos_before :
325+ query_params ["eos_before" ] = str (eos_before )
326+ if version_eos_after :
327+ query_params ["version_eos_after" ] = str (version_eos_after )
328+ if version_eos_before :
329+ query_params ["version_eos_before" ] = str (version_eos_before )
310330 if has_support :
311331 query_params ["has_support" ] = str (has_support )
332+ if sirt_id :
333+ query_params ["sirt_id" ] = str (sirt_id )
334+ if pbn_id :
335+ query_params ["pbn_id" ] = str (pbn_id )
312336 if text :
313337 query_params ["text" ] = str (text )
314338 if limit :
0 commit comments