Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.44.1 - 2026-01-07
- Lineage: add "restricted" property

### 1.44.0 - 2025-11-05
- Package updates

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/api",
"version": "1.44.0",
"version": "1.44.1",
"description": "JavaScript client API for LabKey Server",
"scripts": {
"build": "npm run build:dist && npm run build:docs",
Expand Down
5 changes: 3 additions & 2 deletions src/labkey/Experiment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export interface ExperimentJSONConverterOptions {
* @hidden
* @private
*/
function applyExperimentJSONConverterOptions(options: ExperimentJSONConverterOptions): any {
const params: any = {};
function applyExperimentJSONConverterOptions(options: ExperimentJSONConverterOptions): Record<string, any> {
const params: Record<string, any> = {};

// Consider: strictly checking option type and raising error if it does not match
if (options.includeInputsAndOutputs !== undefined) {
Expand Down Expand Up @@ -193,6 +193,7 @@ export interface LineageItemBase {
name: string;
pkFilters: LineagePKFilter[];
queryName: string;
restricted?: boolean;
schemaName: string;
type?: string;
url?: string;
Expand Down
Loading