nb-js-client 0.0.66 → 0.0.68
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.
|
@@ -43,6 +43,7 @@ export interface RequestStorageListParams extends RequestBaseParams {
|
|
|
43
43
|
from_sharing_token?: string;
|
|
44
44
|
from_path?: string;
|
|
45
45
|
from_sharing_password?: string;
|
|
46
|
+
is_search_dir?: null | boolean;
|
|
46
47
|
}
|
|
47
48
|
export interface StorageElementPasteParams {
|
|
48
49
|
paths: StorageElementPaste[];
|
|
@@ -42,9 +42,7 @@ export declare class UserApiService {
|
|
|
42
42
|
meDeleteSession(id?: number): Promise<void>;
|
|
43
43
|
setRole(id: number, role_id?: number | null): Promise<void>;
|
|
44
44
|
meParams(name: string): Promise<UserParams>;
|
|
45
|
-
meSetParams(param: UserParamsLabel, value: any): Promise<
|
|
46
|
-
row: UserParams;
|
|
47
|
-
}>;
|
|
45
|
+
meSetParams(param: UserParamsLabel, value: any): Promise<ResponseItem<UserParams>>;
|
|
48
46
|
meListParams(): Promise<ResponseList<UserParams>>;
|
|
49
47
|
phone(data: {
|
|
50
48
|
phone: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1131,6 +1131,7 @@ interface RequestStorageListParams extends RequestBaseParams {
|
|
|
1131
1131
|
from_sharing_token?: string;
|
|
1132
1132
|
from_path?: string;
|
|
1133
1133
|
from_sharing_password?: string;
|
|
1134
|
+
is_search_dir?: null | boolean;
|
|
1134
1135
|
}
|
|
1135
1136
|
interface StorageElementPasteParams {
|
|
1136
1137
|
paths: StorageElementPaste[];
|
|
@@ -1430,9 +1431,7 @@ declare class UserApiService {
|
|
|
1430
1431
|
meDeleteSession(id?: number): Promise<void>;
|
|
1431
1432
|
setRole(id: number, role_id?: number | null): Promise<void>;
|
|
1432
1433
|
meParams(name: string): Promise<UserParams>;
|
|
1433
|
-
meSetParams(param: UserParamsLabel, value: any): Promise<
|
|
1434
|
-
row: UserParams;
|
|
1435
|
-
}>;
|
|
1434
|
+
meSetParams(param: UserParamsLabel, value: any): Promise<ResponseItem<UserParams>>;
|
|
1436
1435
|
meListParams(): Promise<ResponseList<UserParams>>;
|
|
1437
1436
|
phone(data: {
|
|
1438
1437
|
phone: string;
|