@medplum/core 3.2.14 → 3.2.16
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 +2 -2
- package/dist/cjs/index.cjs.map +2 -2
- package/dist/cjs/index.d.ts +4 -1
- package/dist/esm/index.d.ts +4 -1
- package/dist/esm/index.mjs +2 -2
- package/dist/esm/index.mjs.map +2 -2
- package/package.json +3 -3
package/dist/cjs/index.d.ts
CHANGED
|
@@ -3092,7 +3092,9 @@ export declare class MedplumClient extends TypedEventTarget<MedplumClientEventMa
|
|
|
3092
3092
|
* Creates an
|
|
3093
3093
|
* [async generator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator)
|
|
3094
3094
|
* over a series of FHIR search requests for paginated search results. Each iteration of the generator yields
|
|
3095
|
-
* the array of resources on each page.
|
|
3095
|
+
* the array of resources on each page. Searches using _offset based pagination are limited to 10,000 records.
|
|
3096
|
+
* For larger result sets, _cursor based pagination should be used instead.
|
|
3097
|
+
* See: https://www.medplum.com/docs/search/paginated-search#cursor-based-pagination
|
|
3096
3098
|
*
|
|
3097
3099
|
* @example
|
|
3098
3100
|
*
|
|
@@ -4104,6 +4106,7 @@ export declare class MedplumClient extends TypedEventTarget<MedplumClientEventMa
|
|
|
4104
4106
|
* @returns Promise to complete.
|
|
4105
4107
|
*/
|
|
4106
4108
|
private verifyTokens;
|
|
4109
|
+
private checkSessionDetailsMatchLogin;
|
|
4107
4110
|
/**
|
|
4108
4111
|
* Sets up a listener for window storage events.
|
|
4109
4112
|
* This synchronizes state across browser windows and browser tabs.
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -3092,7 +3092,9 @@ export declare class MedplumClient extends TypedEventTarget<MedplumClientEventMa
|
|
|
3092
3092
|
* Creates an
|
|
3093
3093
|
* [async generator](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator)
|
|
3094
3094
|
* over a series of FHIR search requests for paginated search results. Each iteration of the generator yields
|
|
3095
|
-
* the array of resources on each page.
|
|
3095
|
+
* the array of resources on each page. Searches using _offset based pagination are limited to 10,000 records.
|
|
3096
|
+
* For larger result sets, _cursor based pagination should be used instead.
|
|
3097
|
+
* See: https://www.medplum.com/docs/search/paginated-search#cursor-based-pagination
|
|
3096
3098
|
*
|
|
3097
3099
|
* @example
|
|
3098
3100
|
*
|
|
@@ -4104,6 +4106,7 @@ export declare class MedplumClient extends TypedEventTarget<MedplumClientEventMa
|
|
|
4104
4106
|
* @returns Promise to complete.
|
|
4105
4107
|
*/
|
|
4106
4108
|
private verifyTokens;
|
|
4109
|
+
private checkSessionDetailsMatchLogin;
|
|
4107
4110
|
/**
|
|
4108
4111
|
* Sets up a listener for window storage events.
|
|
4109
4112
|
* This synchronizes state across browser windows and browser tabs.
|