Skip to content

Commit 18bb5df

Browse files
authored
Lineage: add "restricted" property (#203)
1 parent a021423 commit 18bb5df

4 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.44.1 - 2026-01-07
2+
- Lineage: add "restricted" property
3+
14
### 1.44.0 - 2025-11-05
25
- Package updates
36

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labkey/api",
3-
"version": "1.44.0",
3+
"version": "1.44.1",
44
"description": "JavaScript client API for LabKey Server",
55
"scripts": {
66
"build": "npm run build:dist && npm run build:docs",

src/labkey/Experiment.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ export interface ExperimentJSONConverterOptions {
4141
* @hidden
4242
* @private
4343
*/
44-
function applyExperimentJSONConverterOptions(options: ExperimentJSONConverterOptions): any {
45-
const params: any = {};
44+
function applyExperimentJSONConverterOptions(options: ExperimentJSONConverterOptions): Record<string, any> {
45+
const params: Record<string, any> = {};
4646

4747
// Consider: strictly checking option type and raising error if it does not match
4848
if (options.includeInputsAndOutputs !== undefined) {
@@ -193,6 +193,7 @@ export interface LineageItemBase {
193193
name: string;
194194
pkFilters: LineagePKFilter[];
195195
queryName: string;
196+
restricted?: boolean;
196197
schemaName: string;
197198
type?: string;
198199
url?: string;

0 commit comments

Comments
 (0)