@synsci/sdk 2.0.2-test.65.1 → 2.0.2-test.66.1
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.
|
@@ -201,7 +201,7 @@ export declare class Storage extends HeyApiClient {
|
|
|
201
201
|
/**
|
|
202
202
|
* Reset data location
|
|
203
203
|
*
|
|
204
|
-
* Remove the data-location pointer so
|
|
204
|
+
* Remove the data-location pointer so ~/.openscience is used on next launch.
|
|
205
205
|
*/
|
|
206
206
|
resetLocation<ThrowOnError extends boolean = false>(options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SettingsStorageResetLocationResponses, unknown, ThrowOnError, "fields">;
|
|
207
207
|
/**
|
|
@@ -834,6 +834,7 @@ export declare class Session extends HeyApiClient {
|
|
|
834
834
|
title?: string;
|
|
835
835
|
time?: {
|
|
836
836
|
archived?: number;
|
|
837
|
+
pinned?: number;
|
|
837
838
|
};
|
|
838
839
|
}, options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<SessionUpdateResponses, SessionUpdateErrors, ThrowOnError, "fields">;
|
|
839
840
|
/**
|
|
@@ -362,7 +362,7 @@ export class Storage extends HeyApiClient {
|
|
|
362
362
|
/**
|
|
363
363
|
* Reset data location
|
|
364
364
|
*
|
|
365
|
-
* Remove the data-location pointer so
|
|
365
|
+
* Remove the data-location pointer so ~/.openscience is used on next launch.
|
|
366
366
|
*/
|
|
367
367
|
resetLocation(options) {
|
|
368
368
|
return (options?.client ?? this.client).delete({
|
|
@@ -731,6 +731,7 @@ export type Session = {
|
|
|
731
731
|
updated: number;
|
|
732
732
|
compacting?: number;
|
|
733
733
|
archived?: number;
|
|
734
|
+
pinned?: number;
|
|
734
735
|
};
|
|
735
736
|
permission?: PermissionRuleset;
|
|
736
737
|
revert?: {
|
|
@@ -4947,6 +4948,7 @@ export type SessionUpdateData = {
|
|
|
4947
4948
|
title?: string;
|
|
4948
4949
|
time?: {
|
|
4949
4950
|
archived?: number;
|
|
4951
|
+
pinned?: number;
|
|
4950
4952
|
};
|
|
4951
4953
|
};
|
|
4952
4954
|
path: {
|