@medplum/react 4.1.2 → 4.1.4
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/cjs/index.cjs +4 -4
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/cjs/index.d.ts +8 -0
- package/dist/esm/index.d.ts +8 -0
- package/dist/esm/index.mjs +4 -4
- package/dist/esm/index.mjs.map +4 -4
- package/package.json +8 -8
package/dist/cjs/index.d.ts
CHANGED
|
@@ -128,6 +128,14 @@ export declare function addLastMonthFilter(definition: SearchRequest, field: str
|
|
|
128
128
|
*/
|
|
129
129
|
export declare function addMissingFilter(definition: SearchRequest, field: string, value?: boolean): SearchRequest;
|
|
130
130
|
|
|
131
|
+
/**
|
|
132
|
+
* Adds a filter that constrains the specified field to "next 24 hours".
|
|
133
|
+
* @param definition - The original search request.
|
|
134
|
+
* @param field - The field key name.
|
|
135
|
+
* @returns The updated search request.
|
|
136
|
+
*/
|
|
137
|
+
export declare function addNext24HoursFilter(definition: SearchRequest, field: string): SearchRequest;
|
|
138
|
+
|
|
131
139
|
/**
|
|
132
140
|
* Adds a filter that constrains the specified field to "next month".
|
|
133
141
|
* @param definition - The original search request.
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -128,6 +128,14 @@ export declare function addLastMonthFilter(definition: SearchRequest, field: str
|
|
|
128
128
|
*/
|
|
129
129
|
export declare function addMissingFilter(definition: SearchRequest, field: string, value?: boolean): SearchRequest;
|
|
130
130
|
|
|
131
|
+
/**
|
|
132
|
+
* Adds a filter that constrains the specified field to "next 24 hours".
|
|
133
|
+
* @param definition - The original search request.
|
|
134
|
+
* @param field - The field key name.
|
|
135
|
+
* @returns The updated search request.
|
|
136
|
+
*/
|
|
137
|
+
export declare function addNext24HoursFilter(definition: SearchRequest, field: string): SearchRequest;
|
|
138
|
+
|
|
131
139
|
/**
|
|
132
140
|
* Adds a filter that constrains the specified field to "next month".
|
|
133
141
|
* @param definition - The original search request.
|