@lazycatcloud/sdk 0.1.476 → 0.1.478
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/common/box.d.ts +1664 -1560
- package/dist/common/box.d.ts.map +1 -1
- package/dist/common/file_handler.d.ts +1024 -960
- package/dist/common/file_handler.d.ts.map +1 -1
- package/dist/common/filetrans.d.ts +2688 -2520
- package/dist/common/filetrans.d.ts.map +1 -1
- package/dist/common/iscsi.d.ts +197 -181
- package/dist/common/iscsi.d.ts.map +1 -1
- package/dist/common/iscsi.js +16 -2
- package/dist/common/iscsi.js.map +1 -1
- package/dist/common/media_meta.d.ts +64 -60
- package/dist/common/media_meta.d.ts.map +1 -1
- package/dist/common/message.d.ts +448 -420
- package/dist/common/message.d.ts.map +1 -1
- package/dist/common/peripheral_device.d.ts +384 -360
- package/dist/common/peripheral_device.d.ts.map +1 -1
- package/dist/google/protobuf/timestamp.d.ts +64 -60
- package/dist/google/protobuf/timestamp.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/localdevice/client.d.ts +64 -60
- package/dist/localdevice/client.d.ts.map +1 -1
- package/dist/localdevice/contacts.d.ts +64 -60
- package/dist/localdevice/contacts.d.ts.map +1 -1
- package/dist/localdevice/photo.d.ts +192 -180
- package/dist/localdevice/photo.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/dist/sys/btrfs.d.ts +192 -180
- package/dist/sys/btrfs.d.ts.map +1 -1
- package/dist/sys/hal.d.ts +128 -120
- package/dist/sys/hal.d.ts.map +1 -1
- package/dist/sys/ingress.d.ts +64 -60
- package/dist/sys/ingress.d.ts.map +1 -1
- package/dist/sys/network_manager.d.ts +192 -180
- package/dist/sys/network_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.d.ts +9292 -8702
- package/dist/sys/package_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.js +22 -5
- package/dist/sys/package_manager.js.map +1 -1
- package/dist/sys/stats/cgroup_metrics.d.ts +8768 -8220
- package/dist/sys/stats/cgroup_metrics.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/common/iscsi.d.ts
CHANGED
|
@@ -70,7 +70,11 @@ export declare enum ISCSIErrorCode {
|
|
|
70
70
|
/** ISCSI_ERR_SESSION_NOT_CONNECTED - session likely not connected. */
|
|
71
71
|
ISCSI_ERR_SESSION_NOT_CONNECTED = 32,
|
|
72
72
|
/** ISCSI_MANAGER_ERR - iscsi initiator manager error. (should return raw message) */
|
|
73
|
-
ISCSI_MANAGER_ERR =
|
|
73
|
+
ISCSI_MANAGER_ERR = 1001,
|
|
74
|
+
/** ISCSI_MANAGER_ADDRESS_LOOKUP - failed to lookup portal address */
|
|
75
|
+
ISCSI_MANAGER_ADDRESS_LOOKUP = 1002,
|
|
76
|
+
/** ISCSI_MANAGER_IQN_INVALID - invalid IQN format */
|
|
77
|
+
ISCSI_MANAGER_IQN_INVALID = 1003,
|
|
74
78
|
UNRECOGNIZED = -1
|
|
75
79
|
}
|
|
76
80
|
export declare function iSCSIErrorCodeFromJSON(object: any): ISCSIErrorCode;
|
|
@@ -799,40 +803,41 @@ export declare const ISCSILunInfo: {
|
|
|
799
803
|
high: number;
|
|
800
804
|
low: number;
|
|
801
805
|
unsigned: boolean;
|
|
802
|
-
add: (addend:
|
|
803
|
-
and: (other:
|
|
804
|
-
compare: (other:
|
|
805
|
-
comp: (other:
|
|
806
|
-
divide: (divisor:
|
|
807
|
-
div: (divisor:
|
|
808
|
-
equals: (other:
|
|
809
|
-
eq: (other:
|
|
806
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
807
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
808
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
809
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
810
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
811
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
812
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
813
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
810
814
|
getHighBits: () => number;
|
|
811
815
|
getHighBitsUnsigned: () => number;
|
|
812
816
|
getLowBits: () => number;
|
|
813
817
|
getLowBitsUnsigned: () => number;
|
|
814
818
|
getNumBitsAbs: () => number;
|
|
815
|
-
greaterThan: (other:
|
|
816
|
-
gt: (other:
|
|
817
|
-
greaterThanOrEqual: (other:
|
|
818
|
-
gte: (other:
|
|
819
|
-
ge: (other:
|
|
819
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
820
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
821
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
822
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
823
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
820
824
|
isEven: () => boolean;
|
|
821
825
|
isNegative: () => boolean;
|
|
822
826
|
isOdd: () => boolean;
|
|
823
827
|
isPositive: () => boolean;
|
|
828
|
+
isSafeInteger: () => boolean;
|
|
824
829
|
isZero: () => boolean;
|
|
825
830
|
eqz: () => boolean;
|
|
826
|
-
lessThan: (other:
|
|
827
|
-
lt: (other:
|
|
828
|
-
lessThanOrEqual: (other:
|
|
829
|
-
lte: (other:
|
|
830
|
-
le: (other:
|
|
831
|
-
modulo: (other:
|
|
832
|
-
mod: (other:
|
|
833
|
-
rem: (other:
|
|
834
|
-
multiply: (multiplier:
|
|
835
|
-
mul: (multiplier:
|
|
831
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
832
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
833
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
834
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
835
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
836
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
837
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
838
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
839
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
840
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
836
841
|
negate: () => Long;
|
|
837
842
|
neg: () => Long;
|
|
838
843
|
not: () => Long;
|
|
@@ -840,10 +845,10 @@ export declare const ISCSILunInfo: {
|
|
|
840
845
|
clz: () => number;
|
|
841
846
|
countTrailingZeros: () => number;
|
|
842
847
|
ctz: () => number;
|
|
843
|
-
notEquals: (other:
|
|
844
|
-
neq: (other:
|
|
845
|
-
ne: (other:
|
|
846
|
-
or: (other:
|
|
848
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
849
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
850
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
851
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
847
852
|
shiftLeft: (numBits: number | Long) => Long;
|
|
848
853
|
shl: (numBits: number | Long) => Long;
|
|
849
854
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -855,8 +860,9 @@ export declare const ISCSILunInfo: {
|
|
|
855
860
|
rotl: (numBits: number | Long) => Long;
|
|
856
861
|
rotateRight: (numBits: number | Long) => Long;
|
|
857
862
|
rotr: (numBits: number | Long) => Long;
|
|
858
|
-
subtract: (subtrahend:
|
|
859
|
-
sub: (subtrahend:
|
|
863
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
864
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
865
|
+
toBigInt: () => bigint;
|
|
860
866
|
toInt: () => number;
|
|
861
867
|
toNumber: () => number;
|
|
862
868
|
toBytes: (le?: boolean) => number[];
|
|
@@ -865,7 +871,7 @@ export declare const ISCSILunInfo: {
|
|
|
865
871
|
toSigned: () => Long;
|
|
866
872
|
toString: (radix?: number) => string;
|
|
867
873
|
toUnsigned: () => Long;
|
|
868
|
-
xor: (other:
|
|
874
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
869
875
|
} & { [K in Exclude<keyof I["size"], keyof Long>]: never; });
|
|
870
876
|
readOnly?: boolean;
|
|
871
877
|
vendor?: string | undefined;
|
|
@@ -883,40 +889,41 @@ export declare const ISCSILunInfo: {
|
|
|
883
889
|
high: number;
|
|
884
890
|
low: number;
|
|
885
891
|
unsigned: boolean;
|
|
886
|
-
add: (addend:
|
|
887
|
-
and: (other:
|
|
888
|
-
compare: (other:
|
|
889
|
-
comp: (other:
|
|
890
|
-
divide: (divisor:
|
|
891
|
-
div: (divisor:
|
|
892
|
-
equals: (other:
|
|
893
|
-
eq: (other:
|
|
892
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
893
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
894
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
895
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
896
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
897
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
898
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
899
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
894
900
|
getHighBits: () => number;
|
|
895
901
|
getHighBitsUnsigned: () => number;
|
|
896
902
|
getLowBits: () => number;
|
|
897
903
|
getLowBitsUnsigned: () => number;
|
|
898
904
|
getNumBitsAbs: () => number;
|
|
899
|
-
greaterThan: (other:
|
|
900
|
-
gt: (other:
|
|
901
|
-
greaterThanOrEqual: (other:
|
|
902
|
-
gte: (other:
|
|
903
|
-
ge: (other:
|
|
905
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
906
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
907
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
908
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
909
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
904
910
|
isEven: () => boolean;
|
|
905
911
|
isNegative: () => boolean;
|
|
906
912
|
isOdd: () => boolean;
|
|
907
913
|
isPositive: () => boolean;
|
|
914
|
+
isSafeInteger: () => boolean;
|
|
908
915
|
isZero: () => boolean;
|
|
909
916
|
eqz: () => boolean;
|
|
910
|
-
lessThan: (other:
|
|
911
|
-
lt: (other:
|
|
912
|
-
lessThanOrEqual: (other:
|
|
913
|
-
lte: (other:
|
|
914
|
-
le: (other:
|
|
915
|
-
modulo: (other:
|
|
916
|
-
mod: (other:
|
|
917
|
-
rem: (other:
|
|
918
|
-
multiply: (multiplier:
|
|
919
|
-
mul: (multiplier:
|
|
917
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
918
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
919
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
920
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
921
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
922
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
923
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
924
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
925
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
926
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
920
927
|
negate: () => Long;
|
|
921
928
|
neg: () => Long;
|
|
922
929
|
not: () => Long;
|
|
@@ -924,10 +931,10 @@ export declare const ISCSILunInfo: {
|
|
|
924
931
|
clz: () => number;
|
|
925
932
|
countTrailingZeros: () => number;
|
|
926
933
|
ctz: () => number;
|
|
927
|
-
notEquals: (other:
|
|
928
|
-
neq: (other:
|
|
929
|
-
ne: (other:
|
|
930
|
-
or: (other:
|
|
934
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
935
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
936
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
937
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
931
938
|
shiftLeft: (numBits: number | Long) => Long;
|
|
932
939
|
shl: (numBits: number | Long) => Long;
|
|
933
940
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -939,8 +946,9 @@ export declare const ISCSILunInfo: {
|
|
|
939
946
|
rotl: (numBits: number | Long) => Long;
|
|
940
947
|
rotateRight: (numBits: number | Long) => Long;
|
|
941
948
|
rotr: (numBits: number | Long) => Long;
|
|
942
|
-
subtract: (subtrahend:
|
|
943
|
-
sub: (subtrahend:
|
|
949
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
950
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
951
|
+
toBigInt: () => bigint;
|
|
944
952
|
toInt: () => number;
|
|
945
953
|
toNumber: () => number;
|
|
946
954
|
toBytes: (le?: boolean) => number[];
|
|
@@ -949,7 +957,7 @@ export declare const ISCSILunInfo: {
|
|
|
949
957
|
toSigned: () => Long;
|
|
950
958
|
toString: (radix?: number) => string;
|
|
951
959
|
toUnsigned: () => Long;
|
|
952
|
-
xor: (other:
|
|
960
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
953
961
|
} & { [K_2 in Exclude<keyof I_1["size"], keyof Long>]: never; });
|
|
954
962
|
readOnly?: boolean;
|
|
955
963
|
vendor?: string | undefined;
|
|
@@ -1019,40 +1027,41 @@ export declare const ISCSISession: {
|
|
|
1019
1027
|
high: number;
|
|
1020
1028
|
low: number;
|
|
1021
1029
|
unsigned: boolean;
|
|
1022
|
-
add: (addend:
|
|
1023
|
-
and: (other:
|
|
1024
|
-
compare: (other:
|
|
1025
|
-
comp: (other:
|
|
1026
|
-
divide: (divisor:
|
|
1027
|
-
div: (divisor:
|
|
1028
|
-
equals: (other:
|
|
1029
|
-
eq: (other:
|
|
1030
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1031
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1032
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1033
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1034
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1035
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1036
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1037
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1030
1038
|
getHighBits: () => number;
|
|
1031
1039
|
getHighBitsUnsigned: () => number;
|
|
1032
1040
|
getLowBits: () => number;
|
|
1033
1041
|
getLowBitsUnsigned: () => number;
|
|
1034
1042
|
getNumBitsAbs: () => number;
|
|
1035
|
-
greaterThan: (other:
|
|
1036
|
-
gt: (other:
|
|
1037
|
-
greaterThanOrEqual: (other:
|
|
1038
|
-
gte: (other:
|
|
1039
|
-
ge: (other:
|
|
1043
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1044
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1045
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1046
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1047
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1040
1048
|
isEven: () => boolean;
|
|
1041
1049
|
isNegative: () => boolean;
|
|
1042
1050
|
isOdd: () => boolean;
|
|
1043
1051
|
isPositive: () => boolean;
|
|
1052
|
+
isSafeInteger: () => boolean;
|
|
1044
1053
|
isZero: () => boolean;
|
|
1045
1054
|
eqz: () => boolean;
|
|
1046
|
-
lessThan: (other:
|
|
1047
|
-
lt: (other:
|
|
1048
|
-
lessThanOrEqual: (other:
|
|
1049
|
-
lte: (other:
|
|
1050
|
-
le: (other:
|
|
1051
|
-
modulo: (other:
|
|
1052
|
-
mod: (other:
|
|
1053
|
-
rem: (other:
|
|
1054
|
-
multiply: (multiplier:
|
|
1055
|
-
mul: (multiplier:
|
|
1055
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1056
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1057
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1058
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1059
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1060
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1061
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1062
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1063
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1064
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1056
1065
|
negate: () => Long;
|
|
1057
1066
|
neg: () => Long;
|
|
1058
1067
|
not: () => Long;
|
|
@@ -1060,10 +1069,10 @@ export declare const ISCSISession: {
|
|
|
1060
1069
|
clz: () => number;
|
|
1061
1070
|
countTrailingZeros: () => number;
|
|
1062
1071
|
ctz: () => number;
|
|
1063
|
-
notEquals: (other:
|
|
1064
|
-
neq: (other:
|
|
1065
|
-
ne: (other:
|
|
1066
|
-
or: (other:
|
|
1072
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1073
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1074
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1075
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1067
1076
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1068
1077
|
shl: (numBits: number | Long) => Long;
|
|
1069
1078
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1075,8 +1084,9 @@ export declare const ISCSISession: {
|
|
|
1075
1084
|
rotl: (numBits: number | Long) => Long;
|
|
1076
1085
|
rotateRight: (numBits: number | Long) => Long;
|
|
1077
1086
|
rotr: (numBits: number | Long) => Long;
|
|
1078
|
-
subtract: (subtrahend:
|
|
1079
|
-
sub: (subtrahend:
|
|
1087
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1088
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1089
|
+
toBigInt: () => bigint;
|
|
1080
1090
|
toInt: () => number;
|
|
1081
1091
|
toNumber: () => number;
|
|
1082
1092
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1085,7 +1095,7 @@ export declare const ISCSISession: {
|
|
|
1085
1095
|
toSigned: () => Long;
|
|
1086
1096
|
toString: (radix?: number) => string;
|
|
1087
1097
|
toUnsigned: () => Long;
|
|
1088
|
-
xor: (other:
|
|
1098
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1089
1099
|
} & { [K_1 in Exclude<keyof I["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1090
1100
|
readOnly?: boolean;
|
|
1091
1101
|
vendor?: string | undefined;
|
|
@@ -1157,40 +1167,41 @@ export declare const ISCSISession: {
|
|
|
1157
1167
|
high: number;
|
|
1158
1168
|
low: number;
|
|
1159
1169
|
unsigned: boolean;
|
|
1160
|
-
add: (addend:
|
|
1161
|
-
and: (other:
|
|
1162
|
-
compare: (other:
|
|
1163
|
-
comp: (other:
|
|
1164
|
-
divide: (divisor:
|
|
1165
|
-
div: (divisor:
|
|
1166
|
-
equals: (other:
|
|
1167
|
-
eq: (other:
|
|
1170
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1171
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1172
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1173
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1174
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1175
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1176
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1177
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1168
1178
|
getHighBits: () => number;
|
|
1169
1179
|
getHighBitsUnsigned: () => number;
|
|
1170
1180
|
getLowBits: () => number;
|
|
1171
1181
|
getLowBitsUnsigned: () => number;
|
|
1172
1182
|
getNumBitsAbs: () => number;
|
|
1173
|
-
greaterThan: (other:
|
|
1174
|
-
gt: (other:
|
|
1175
|
-
greaterThanOrEqual: (other:
|
|
1176
|
-
gte: (other:
|
|
1177
|
-
ge: (other:
|
|
1183
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1184
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1185
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1186
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1187
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1178
1188
|
isEven: () => boolean;
|
|
1179
1189
|
isNegative: () => boolean;
|
|
1180
1190
|
isOdd: () => boolean;
|
|
1181
1191
|
isPositive: () => boolean;
|
|
1192
|
+
isSafeInteger: () => boolean;
|
|
1182
1193
|
isZero: () => boolean;
|
|
1183
1194
|
eqz: () => boolean;
|
|
1184
|
-
lessThan: (other:
|
|
1185
|
-
lt: (other:
|
|
1186
|
-
lessThanOrEqual: (other:
|
|
1187
|
-
lte: (other:
|
|
1188
|
-
le: (other:
|
|
1189
|
-
modulo: (other:
|
|
1190
|
-
mod: (other:
|
|
1191
|
-
rem: (other:
|
|
1192
|
-
multiply: (multiplier:
|
|
1193
|
-
mul: (multiplier:
|
|
1195
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1196
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1197
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1198
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1199
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1200
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1201
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1202
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1203
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1204
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1194
1205
|
negate: () => Long;
|
|
1195
1206
|
neg: () => Long;
|
|
1196
1207
|
not: () => Long;
|
|
@@ -1198,10 +1209,10 @@ export declare const ISCSISession: {
|
|
|
1198
1209
|
clz: () => number;
|
|
1199
1210
|
countTrailingZeros: () => number;
|
|
1200
1211
|
ctz: () => number;
|
|
1201
|
-
notEquals: (other:
|
|
1202
|
-
neq: (other:
|
|
1203
|
-
ne: (other:
|
|
1204
|
-
or: (other:
|
|
1212
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1213
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1214
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1215
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1205
1216
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1206
1217
|
shl: (numBits: number | Long) => Long;
|
|
1207
1218
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1213,8 +1224,9 @@ export declare const ISCSISession: {
|
|
|
1213
1224
|
rotl: (numBits: number | Long) => Long;
|
|
1214
1225
|
rotateRight: (numBits: number | Long) => Long;
|
|
1215
1226
|
rotr: (numBits: number | Long) => Long;
|
|
1216
|
-
subtract: (subtrahend:
|
|
1217
|
-
sub: (subtrahend:
|
|
1227
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1228
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1229
|
+
toBigInt: () => bigint;
|
|
1218
1230
|
toInt: () => number;
|
|
1219
1231
|
toNumber: () => number;
|
|
1220
1232
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1223,7 +1235,7 @@ export declare const ISCSISession: {
|
|
|
1223
1235
|
toSigned: () => Long;
|
|
1224
1236
|
toString: (radix?: number) => string;
|
|
1225
1237
|
toUnsigned: () => Long;
|
|
1226
|
-
xor: (other:
|
|
1238
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1227
1239
|
} & { [K_6 in Exclude<keyof I_1["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1228
1240
|
readOnly?: boolean;
|
|
1229
1241
|
vendor?: string | undefined;
|
|
@@ -1350,40 +1362,41 @@ export declare const GetSessionResponse: {
|
|
|
1350
1362
|
high: number;
|
|
1351
1363
|
low: number;
|
|
1352
1364
|
unsigned: boolean;
|
|
1353
|
-
add: (addend:
|
|
1354
|
-
and: (other:
|
|
1355
|
-
compare: (other:
|
|
1356
|
-
comp: (other:
|
|
1357
|
-
divide: (divisor:
|
|
1358
|
-
div: (divisor:
|
|
1359
|
-
equals: (other:
|
|
1360
|
-
eq: (other:
|
|
1365
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1366
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1367
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1368
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1369
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1370
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1371
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1372
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1361
1373
|
getHighBits: () => number;
|
|
1362
1374
|
getHighBitsUnsigned: () => number;
|
|
1363
1375
|
getLowBits: () => number;
|
|
1364
1376
|
getLowBitsUnsigned: () => number;
|
|
1365
1377
|
getNumBitsAbs: () => number;
|
|
1366
|
-
greaterThan: (other:
|
|
1367
|
-
gt: (other:
|
|
1368
|
-
greaterThanOrEqual: (other:
|
|
1369
|
-
gte: (other:
|
|
1370
|
-
ge: (other:
|
|
1378
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1379
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1380
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1381
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1382
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1371
1383
|
isEven: () => boolean;
|
|
1372
1384
|
isNegative: () => boolean;
|
|
1373
1385
|
isOdd: () => boolean;
|
|
1374
1386
|
isPositive: () => boolean;
|
|
1387
|
+
isSafeInteger: () => boolean;
|
|
1375
1388
|
isZero: () => boolean;
|
|
1376
1389
|
eqz: () => boolean;
|
|
1377
|
-
lessThan: (other:
|
|
1378
|
-
lt: (other:
|
|
1379
|
-
lessThanOrEqual: (other:
|
|
1380
|
-
lte: (other:
|
|
1381
|
-
le: (other:
|
|
1382
|
-
modulo: (other:
|
|
1383
|
-
mod: (other:
|
|
1384
|
-
rem: (other:
|
|
1385
|
-
multiply: (multiplier:
|
|
1386
|
-
mul: (multiplier:
|
|
1390
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1391
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1392
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1393
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1394
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1395
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1396
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1397
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1398
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1399
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1387
1400
|
negate: () => Long;
|
|
1388
1401
|
neg: () => Long;
|
|
1389
1402
|
not: () => Long;
|
|
@@ -1391,10 +1404,10 @@ export declare const GetSessionResponse: {
|
|
|
1391
1404
|
clz: () => number;
|
|
1392
1405
|
countTrailingZeros: () => number;
|
|
1393
1406
|
ctz: () => number;
|
|
1394
|
-
notEquals: (other:
|
|
1395
|
-
neq: (other:
|
|
1396
|
-
ne: (other:
|
|
1397
|
-
or: (other:
|
|
1407
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1408
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1409
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1410
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1398
1411
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1399
1412
|
shl: (numBits: number | Long) => Long;
|
|
1400
1413
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1406,8 +1419,9 @@ export declare const GetSessionResponse: {
|
|
|
1406
1419
|
rotl: (numBits: number | Long) => Long;
|
|
1407
1420
|
rotateRight: (numBits: number | Long) => Long;
|
|
1408
1421
|
rotr: (numBits: number | Long) => Long;
|
|
1409
|
-
subtract: (subtrahend:
|
|
1410
|
-
sub: (subtrahend:
|
|
1422
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1423
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1424
|
+
toBigInt: () => bigint;
|
|
1411
1425
|
toInt: () => number;
|
|
1412
1426
|
toNumber: () => number;
|
|
1413
1427
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1416,7 +1430,7 @@ export declare const GetSessionResponse: {
|
|
|
1416
1430
|
toSigned: () => Long;
|
|
1417
1431
|
toString: (radix?: number) => string;
|
|
1418
1432
|
toUnsigned: () => Long;
|
|
1419
|
-
xor: (other:
|
|
1433
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1420
1434
|
} & { [K_1 in Exclude<keyof I["sessions"][number]["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1421
1435
|
readOnly?: boolean;
|
|
1422
1436
|
vendor?: string | undefined;
|
|
@@ -1562,40 +1576,41 @@ export declare const GetSessionResponse: {
|
|
|
1562
1576
|
high: number;
|
|
1563
1577
|
low: number;
|
|
1564
1578
|
unsigned: boolean;
|
|
1565
|
-
add: (addend:
|
|
1566
|
-
and: (other:
|
|
1567
|
-
compare: (other:
|
|
1568
|
-
comp: (other:
|
|
1569
|
-
divide: (divisor:
|
|
1570
|
-
div: (divisor:
|
|
1571
|
-
equals: (other:
|
|
1572
|
-
eq: (other:
|
|
1579
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
1580
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
1581
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
1582
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
1583
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1584
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
1585
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1586
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1573
1587
|
getHighBits: () => number;
|
|
1574
1588
|
getHighBitsUnsigned: () => number;
|
|
1575
1589
|
getLowBits: () => number;
|
|
1576
1590
|
getLowBitsUnsigned: () => number;
|
|
1577
1591
|
getNumBitsAbs: () => number;
|
|
1578
|
-
greaterThan: (other:
|
|
1579
|
-
gt: (other:
|
|
1580
|
-
greaterThanOrEqual: (other:
|
|
1581
|
-
gte: (other:
|
|
1582
|
-
ge: (other:
|
|
1592
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1593
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1594
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1595
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1596
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
1583
1597
|
isEven: () => boolean;
|
|
1584
1598
|
isNegative: () => boolean;
|
|
1585
1599
|
isOdd: () => boolean;
|
|
1586
1600
|
isPositive: () => boolean;
|
|
1601
|
+
isSafeInteger: () => boolean;
|
|
1587
1602
|
isZero: () => boolean;
|
|
1588
1603
|
eqz: () => boolean;
|
|
1589
|
-
lessThan: (other:
|
|
1590
|
-
lt: (other:
|
|
1591
|
-
lessThanOrEqual: (other:
|
|
1592
|
-
lte: (other:
|
|
1593
|
-
le: (other:
|
|
1594
|
-
modulo: (other:
|
|
1595
|
-
mod: (other:
|
|
1596
|
-
rem: (other:
|
|
1597
|
-
multiply: (multiplier:
|
|
1598
|
-
mul: (multiplier:
|
|
1604
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
1605
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
1606
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
1607
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
1608
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
1609
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
1610
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
1611
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
1612
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1613
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
1599
1614
|
negate: () => Long;
|
|
1600
1615
|
neg: () => Long;
|
|
1601
1616
|
not: () => Long;
|
|
@@ -1603,10 +1618,10 @@ export declare const GetSessionResponse: {
|
|
|
1603
1618
|
clz: () => number;
|
|
1604
1619
|
countTrailingZeros: () => number;
|
|
1605
1620
|
ctz: () => number;
|
|
1606
|
-
notEquals: (other:
|
|
1607
|
-
neq: (other:
|
|
1608
|
-
ne: (other:
|
|
1609
|
-
or: (other:
|
|
1621
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
1622
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
1623
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
1624
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
1610
1625
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1611
1626
|
shl: (numBits: number | Long) => Long;
|
|
1612
1627
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1618,8 +1633,9 @@ export declare const GetSessionResponse: {
|
|
|
1618
1633
|
rotl: (numBits: number | Long) => Long;
|
|
1619
1634
|
rotateRight: (numBits: number | Long) => Long;
|
|
1620
1635
|
rotr: (numBits: number | Long) => Long;
|
|
1621
|
-
subtract: (subtrahend:
|
|
1622
|
-
sub: (subtrahend:
|
|
1636
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1637
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1638
|
+
toBigInt: () => bigint;
|
|
1623
1639
|
toInt: () => number;
|
|
1624
1640
|
toNumber: () => number;
|
|
1625
1641
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1628,7 +1644,7 @@ export declare const GetSessionResponse: {
|
|
|
1628
1644
|
toSigned: () => Long;
|
|
1629
1645
|
toString: (radix?: number) => string;
|
|
1630
1646
|
toUnsigned: () => Long;
|
|
1631
|
-
xor: (other:
|
|
1647
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1632
1648
|
} & { [K_8 in Exclude<keyof I_1["sessions"][number]["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1633
1649
|
readOnly?: boolean;
|
|
1634
1650
|
vendor?: string | undefined;
|