@lazycatcloud/sdk 0.1.499 → 0.1.500
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 +640 -600
- 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 +192 -180
- package/dist/common/iscsi.d.ts.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/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 +256 -240
- 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 +9488 -8714
- package/dist/sys/package_manager.d.ts.map +1 -1
- package/dist/sys/package_manager.js +133 -8
- 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/google/protobuf/descriptor.d.ts +0 -112550
- package/dist/google/protobuf/descriptor.d.ts.map +0 -1
- package/dist/localdevice/clipboard.d.ts +0 -137
- package/dist/localdevice/clipboard.d.ts.map +0 -1
- package/dist/localdevice/clipboard.js +0 -433
- package/dist/localdevice/clipboard.js.map +0 -1
- package/dist/sys/OS_snapshot.d.ts +0 -585
- package/dist/sys/OS_snapshot.d.ts.map +0 -1
- package/dist/sys/OS_snapshot.js +0 -1543
- package/dist/sys/OS_snapshot.js.map +0 -1
- package/dist/sys/OS_upgrader.d.ts +0 -202
- package/dist/sys/OS_upgrader.d.ts.map +0 -1
- package/dist/sys/OS_upgrader.js +0 -639
- package/dist/sys/OS_upgrader.js.map +0 -1
- package/dist/sys/hc-core/hc-core.d.ts +0 -691
- package/dist/sys/hc-core/hc-core.d.ts.map +0 -1
- package/dist/sys/hc-core/hc-core.js +0 -1484
- package/dist/sys/hc-core/hc-core.js.map +0 -1
- package/dist/sys/installer.d.ts +0 -277
- package/dist/sys/installer.d.ts.map +0 -1
- package/dist/sys/installer.js +0 -796
- package/dist/sys/installer.js.map +0 -1
- package/dist/sys/osupgrader.d.ts +0 -256
- package/dist/sys/osupgrader.d.ts.map +0 -1
- package/dist/sys/osupgrader.js +0 -536
- package/dist/sys/osupgrader.js.map +0 -1
- package/dist/sys/portal-server/portal-server.d.ts +0 -947
- package/dist/sys/portal-server/portal-server.d.ts.map +0 -1
- package/dist/sys/portal-server/portal-server.js +0 -2756
- package/dist/sys/portal-server/portal-server.js.map +0 -1
- package/dist/sys/snapd.d.ts +0 -343
- package/dist/sys/snapd.d.ts.map +0 -1
- package/dist/sys/snapd.js +0 -798
- package/dist/sys/snapd.js.map +0 -1
package/dist/common/iscsi.d.ts
CHANGED
|
@@ -803,40 +803,41 @@ export declare const ISCSILunInfo: {
|
|
|
803
803
|
high: number;
|
|
804
804
|
low: number;
|
|
805
805
|
unsigned: boolean;
|
|
806
|
-
add: (addend:
|
|
807
|
-
and: (other:
|
|
808
|
-
compare: (other:
|
|
809
|
-
comp: (other:
|
|
810
|
-
divide: (divisor:
|
|
811
|
-
div: (divisor:
|
|
812
|
-
equals: (other:
|
|
813
|
-
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;
|
|
814
814
|
getHighBits: () => number;
|
|
815
815
|
getHighBitsUnsigned: () => number;
|
|
816
816
|
getLowBits: () => number;
|
|
817
817
|
getLowBitsUnsigned: () => number;
|
|
818
818
|
getNumBitsAbs: () => number;
|
|
819
|
-
greaterThan: (other:
|
|
820
|
-
gt: (other:
|
|
821
|
-
greaterThanOrEqual: (other:
|
|
822
|
-
gte: (other:
|
|
823
|
-
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;
|
|
824
824
|
isEven: () => boolean;
|
|
825
825
|
isNegative: () => boolean;
|
|
826
826
|
isOdd: () => boolean;
|
|
827
827
|
isPositive: () => boolean;
|
|
828
|
+
isSafeInteger: () => boolean;
|
|
828
829
|
isZero: () => boolean;
|
|
829
830
|
eqz: () => boolean;
|
|
830
|
-
lessThan: (other:
|
|
831
|
-
lt: (other:
|
|
832
|
-
lessThanOrEqual: (other:
|
|
833
|
-
lte: (other:
|
|
834
|
-
le: (other:
|
|
835
|
-
modulo: (other:
|
|
836
|
-
mod: (other:
|
|
837
|
-
rem: (other:
|
|
838
|
-
multiply: (multiplier:
|
|
839
|
-
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;
|
|
840
841
|
negate: () => Long;
|
|
841
842
|
neg: () => Long;
|
|
842
843
|
not: () => Long;
|
|
@@ -844,10 +845,10 @@ export declare const ISCSILunInfo: {
|
|
|
844
845
|
clz: () => number;
|
|
845
846
|
countTrailingZeros: () => number;
|
|
846
847
|
ctz: () => number;
|
|
847
|
-
notEquals: (other:
|
|
848
|
-
neq: (other:
|
|
849
|
-
ne: (other:
|
|
850
|
-
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;
|
|
851
852
|
shiftLeft: (numBits: number | Long) => Long;
|
|
852
853
|
shl: (numBits: number | Long) => Long;
|
|
853
854
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -859,8 +860,9 @@ export declare const ISCSILunInfo: {
|
|
|
859
860
|
rotl: (numBits: number | Long) => Long;
|
|
860
861
|
rotateRight: (numBits: number | Long) => Long;
|
|
861
862
|
rotr: (numBits: number | Long) => Long;
|
|
862
|
-
subtract: (subtrahend:
|
|
863
|
-
sub: (subtrahend:
|
|
863
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
864
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
865
|
+
toBigInt: () => bigint;
|
|
864
866
|
toInt: () => number;
|
|
865
867
|
toNumber: () => number;
|
|
866
868
|
toBytes: (le?: boolean) => number[];
|
|
@@ -869,7 +871,7 @@ export declare const ISCSILunInfo: {
|
|
|
869
871
|
toSigned: () => Long;
|
|
870
872
|
toString: (radix?: number) => string;
|
|
871
873
|
toUnsigned: () => Long;
|
|
872
|
-
xor: (other:
|
|
874
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
873
875
|
} & { [K in Exclude<keyof I["size"], keyof Long>]: never; });
|
|
874
876
|
readOnly?: boolean;
|
|
875
877
|
vendor?: string | undefined;
|
|
@@ -887,40 +889,41 @@ export declare const ISCSILunInfo: {
|
|
|
887
889
|
high: number;
|
|
888
890
|
low: number;
|
|
889
891
|
unsigned: boolean;
|
|
890
|
-
add: (addend:
|
|
891
|
-
and: (other:
|
|
892
|
-
compare: (other:
|
|
893
|
-
comp: (other:
|
|
894
|
-
divide: (divisor:
|
|
895
|
-
div: (divisor:
|
|
896
|
-
equals: (other:
|
|
897
|
-
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;
|
|
898
900
|
getHighBits: () => number;
|
|
899
901
|
getHighBitsUnsigned: () => number;
|
|
900
902
|
getLowBits: () => number;
|
|
901
903
|
getLowBitsUnsigned: () => number;
|
|
902
904
|
getNumBitsAbs: () => number;
|
|
903
|
-
greaterThan: (other:
|
|
904
|
-
gt: (other:
|
|
905
|
-
greaterThanOrEqual: (other:
|
|
906
|
-
gte: (other:
|
|
907
|
-
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;
|
|
908
910
|
isEven: () => boolean;
|
|
909
911
|
isNegative: () => boolean;
|
|
910
912
|
isOdd: () => boolean;
|
|
911
913
|
isPositive: () => boolean;
|
|
914
|
+
isSafeInteger: () => boolean;
|
|
912
915
|
isZero: () => boolean;
|
|
913
916
|
eqz: () => boolean;
|
|
914
|
-
lessThan: (other:
|
|
915
|
-
lt: (other:
|
|
916
|
-
lessThanOrEqual: (other:
|
|
917
|
-
lte: (other:
|
|
918
|
-
le: (other:
|
|
919
|
-
modulo: (other:
|
|
920
|
-
mod: (other:
|
|
921
|
-
rem: (other:
|
|
922
|
-
multiply: (multiplier:
|
|
923
|
-
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;
|
|
924
927
|
negate: () => Long;
|
|
925
928
|
neg: () => Long;
|
|
926
929
|
not: () => Long;
|
|
@@ -928,10 +931,10 @@ export declare const ISCSILunInfo: {
|
|
|
928
931
|
clz: () => number;
|
|
929
932
|
countTrailingZeros: () => number;
|
|
930
933
|
ctz: () => number;
|
|
931
|
-
notEquals: (other:
|
|
932
|
-
neq: (other:
|
|
933
|
-
ne: (other:
|
|
934
|
-
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;
|
|
935
938
|
shiftLeft: (numBits: number | Long) => Long;
|
|
936
939
|
shl: (numBits: number | Long) => Long;
|
|
937
940
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -943,8 +946,9 @@ export declare const ISCSILunInfo: {
|
|
|
943
946
|
rotl: (numBits: number | Long) => Long;
|
|
944
947
|
rotateRight: (numBits: number | Long) => Long;
|
|
945
948
|
rotr: (numBits: number | Long) => Long;
|
|
946
|
-
subtract: (subtrahend:
|
|
947
|
-
sub: (subtrahend:
|
|
949
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
950
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
951
|
+
toBigInt: () => bigint;
|
|
948
952
|
toInt: () => number;
|
|
949
953
|
toNumber: () => number;
|
|
950
954
|
toBytes: (le?: boolean) => number[];
|
|
@@ -953,7 +957,7 @@ export declare const ISCSILunInfo: {
|
|
|
953
957
|
toSigned: () => Long;
|
|
954
958
|
toString: (radix?: number) => string;
|
|
955
959
|
toUnsigned: () => Long;
|
|
956
|
-
xor: (other:
|
|
960
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
957
961
|
} & { [K_2 in Exclude<keyof I_1["size"], keyof Long>]: never; });
|
|
958
962
|
readOnly?: boolean;
|
|
959
963
|
vendor?: string | undefined;
|
|
@@ -1023,40 +1027,41 @@ export declare const ISCSISession: {
|
|
|
1023
1027
|
high: number;
|
|
1024
1028
|
low: number;
|
|
1025
1029
|
unsigned: boolean;
|
|
1026
|
-
add: (addend:
|
|
1027
|
-
and: (other:
|
|
1028
|
-
compare: (other:
|
|
1029
|
-
comp: (other:
|
|
1030
|
-
divide: (divisor:
|
|
1031
|
-
div: (divisor:
|
|
1032
|
-
equals: (other:
|
|
1033
|
-
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;
|
|
1034
1038
|
getHighBits: () => number;
|
|
1035
1039
|
getHighBitsUnsigned: () => number;
|
|
1036
1040
|
getLowBits: () => number;
|
|
1037
1041
|
getLowBitsUnsigned: () => number;
|
|
1038
1042
|
getNumBitsAbs: () => number;
|
|
1039
|
-
greaterThan: (other:
|
|
1040
|
-
gt: (other:
|
|
1041
|
-
greaterThanOrEqual: (other:
|
|
1042
|
-
gte: (other:
|
|
1043
|
-
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;
|
|
1044
1048
|
isEven: () => boolean;
|
|
1045
1049
|
isNegative: () => boolean;
|
|
1046
1050
|
isOdd: () => boolean;
|
|
1047
1051
|
isPositive: () => boolean;
|
|
1052
|
+
isSafeInteger: () => boolean;
|
|
1048
1053
|
isZero: () => boolean;
|
|
1049
1054
|
eqz: () => boolean;
|
|
1050
|
-
lessThan: (other:
|
|
1051
|
-
lt: (other:
|
|
1052
|
-
lessThanOrEqual: (other:
|
|
1053
|
-
lte: (other:
|
|
1054
|
-
le: (other:
|
|
1055
|
-
modulo: (other:
|
|
1056
|
-
mod: (other:
|
|
1057
|
-
rem: (other:
|
|
1058
|
-
multiply: (multiplier:
|
|
1059
|
-
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;
|
|
1060
1065
|
negate: () => Long;
|
|
1061
1066
|
neg: () => Long;
|
|
1062
1067
|
not: () => Long;
|
|
@@ -1064,10 +1069,10 @@ export declare const ISCSISession: {
|
|
|
1064
1069
|
clz: () => number;
|
|
1065
1070
|
countTrailingZeros: () => number;
|
|
1066
1071
|
ctz: () => number;
|
|
1067
|
-
notEquals: (other:
|
|
1068
|
-
neq: (other:
|
|
1069
|
-
ne: (other:
|
|
1070
|
-
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;
|
|
1071
1076
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1072
1077
|
shl: (numBits: number | Long) => Long;
|
|
1073
1078
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1079,8 +1084,9 @@ export declare const ISCSISession: {
|
|
|
1079
1084
|
rotl: (numBits: number | Long) => Long;
|
|
1080
1085
|
rotateRight: (numBits: number | Long) => Long;
|
|
1081
1086
|
rotr: (numBits: number | Long) => Long;
|
|
1082
|
-
subtract: (subtrahend:
|
|
1083
|
-
sub: (subtrahend:
|
|
1087
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1088
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1089
|
+
toBigInt: () => bigint;
|
|
1084
1090
|
toInt: () => number;
|
|
1085
1091
|
toNumber: () => number;
|
|
1086
1092
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1089,7 +1095,7 @@ export declare const ISCSISession: {
|
|
|
1089
1095
|
toSigned: () => Long;
|
|
1090
1096
|
toString: (radix?: number) => string;
|
|
1091
1097
|
toUnsigned: () => Long;
|
|
1092
|
-
xor: (other:
|
|
1098
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1093
1099
|
} & { [K_1 in Exclude<keyof I["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1094
1100
|
readOnly?: boolean;
|
|
1095
1101
|
vendor?: string | undefined;
|
|
@@ -1161,40 +1167,41 @@ export declare const ISCSISession: {
|
|
|
1161
1167
|
high: number;
|
|
1162
1168
|
low: number;
|
|
1163
1169
|
unsigned: boolean;
|
|
1164
|
-
add: (addend:
|
|
1165
|
-
and: (other:
|
|
1166
|
-
compare: (other:
|
|
1167
|
-
comp: (other:
|
|
1168
|
-
divide: (divisor:
|
|
1169
|
-
div: (divisor:
|
|
1170
|
-
equals: (other:
|
|
1171
|
-
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;
|
|
1172
1178
|
getHighBits: () => number;
|
|
1173
1179
|
getHighBitsUnsigned: () => number;
|
|
1174
1180
|
getLowBits: () => number;
|
|
1175
1181
|
getLowBitsUnsigned: () => number;
|
|
1176
1182
|
getNumBitsAbs: () => number;
|
|
1177
|
-
greaterThan: (other:
|
|
1178
|
-
gt: (other:
|
|
1179
|
-
greaterThanOrEqual: (other:
|
|
1180
|
-
gte: (other:
|
|
1181
|
-
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;
|
|
1182
1188
|
isEven: () => boolean;
|
|
1183
1189
|
isNegative: () => boolean;
|
|
1184
1190
|
isOdd: () => boolean;
|
|
1185
1191
|
isPositive: () => boolean;
|
|
1192
|
+
isSafeInteger: () => boolean;
|
|
1186
1193
|
isZero: () => boolean;
|
|
1187
1194
|
eqz: () => boolean;
|
|
1188
|
-
lessThan: (other:
|
|
1189
|
-
lt: (other:
|
|
1190
|
-
lessThanOrEqual: (other:
|
|
1191
|
-
lte: (other:
|
|
1192
|
-
le: (other:
|
|
1193
|
-
modulo: (other:
|
|
1194
|
-
mod: (other:
|
|
1195
|
-
rem: (other:
|
|
1196
|
-
multiply: (multiplier:
|
|
1197
|
-
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;
|
|
1198
1205
|
negate: () => Long;
|
|
1199
1206
|
neg: () => Long;
|
|
1200
1207
|
not: () => Long;
|
|
@@ -1202,10 +1209,10 @@ export declare const ISCSISession: {
|
|
|
1202
1209
|
clz: () => number;
|
|
1203
1210
|
countTrailingZeros: () => number;
|
|
1204
1211
|
ctz: () => number;
|
|
1205
|
-
notEquals: (other:
|
|
1206
|
-
neq: (other:
|
|
1207
|
-
ne: (other:
|
|
1208
|
-
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;
|
|
1209
1216
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1210
1217
|
shl: (numBits: number | Long) => Long;
|
|
1211
1218
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1217,8 +1224,9 @@ export declare const ISCSISession: {
|
|
|
1217
1224
|
rotl: (numBits: number | Long) => Long;
|
|
1218
1225
|
rotateRight: (numBits: number | Long) => Long;
|
|
1219
1226
|
rotr: (numBits: number | Long) => Long;
|
|
1220
|
-
subtract: (subtrahend:
|
|
1221
|
-
sub: (subtrahend:
|
|
1227
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1228
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1229
|
+
toBigInt: () => bigint;
|
|
1222
1230
|
toInt: () => number;
|
|
1223
1231
|
toNumber: () => number;
|
|
1224
1232
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1227,7 +1235,7 @@ export declare const ISCSISession: {
|
|
|
1227
1235
|
toSigned: () => Long;
|
|
1228
1236
|
toString: (radix?: number) => string;
|
|
1229
1237
|
toUnsigned: () => Long;
|
|
1230
|
-
xor: (other:
|
|
1238
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1231
1239
|
} & { [K_6 in Exclude<keyof I_1["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1232
1240
|
readOnly?: boolean;
|
|
1233
1241
|
vendor?: string | undefined;
|
|
@@ -1354,40 +1362,41 @@ export declare const GetSessionResponse: {
|
|
|
1354
1362
|
high: number;
|
|
1355
1363
|
low: number;
|
|
1356
1364
|
unsigned: boolean;
|
|
1357
|
-
add: (addend:
|
|
1358
|
-
and: (other:
|
|
1359
|
-
compare: (other:
|
|
1360
|
-
comp: (other:
|
|
1361
|
-
divide: (divisor:
|
|
1362
|
-
div: (divisor:
|
|
1363
|
-
equals: (other:
|
|
1364
|
-
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;
|
|
1365
1373
|
getHighBits: () => number;
|
|
1366
1374
|
getHighBitsUnsigned: () => number;
|
|
1367
1375
|
getLowBits: () => number;
|
|
1368
1376
|
getLowBitsUnsigned: () => number;
|
|
1369
1377
|
getNumBitsAbs: () => number;
|
|
1370
|
-
greaterThan: (other:
|
|
1371
|
-
gt: (other:
|
|
1372
|
-
greaterThanOrEqual: (other:
|
|
1373
|
-
gte: (other:
|
|
1374
|
-
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;
|
|
1375
1383
|
isEven: () => boolean;
|
|
1376
1384
|
isNegative: () => boolean;
|
|
1377
1385
|
isOdd: () => boolean;
|
|
1378
1386
|
isPositive: () => boolean;
|
|
1387
|
+
isSafeInteger: () => boolean;
|
|
1379
1388
|
isZero: () => boolean;
|
|
1380
1389
|
eqz: () => boolean;
|
|
1381
|
-
lessThan: (other:
|
|
1382
|
-
lt: (other:
|
|
1383
|
-
lessThanOrEqual: (other:
|
|
1384
|
-
lte: (other:
|
|
1385
|
-
le: (other:
|
|
1386
|
-
modulo: (other:
|
|
1387
|
-
mod: (other:
|
|
1388
|
-
rem: (other:
|
|
1389
|
-
multiply: (multiplier:
|
|
1390
|
-
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;
|
|
1391
1400
|
negate: () => Long;
|
|
1392
1401
|
neg: () => Long;
|
|
1393
1402
|
not: () => Long;
|
|
@@ -1395,10 +1404,10 @@ export declare const GetSessionResponse: {
|
|
|
1395
1404
|
clz: () => number;
|
|
1396
1405
|
countTrailingZeros: () => number;
|
|
1397
1406
|
ctz: () => number;
|
|
1398
|
-
notEquals: (other:
|
|
1399
|
-
neq: (other:
|
|
1400
|
-
ne: (other:
|
|
1401
|
-
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;
|
|
1402
1411
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1403
1412
|
shl: (numBits: number | Long) => Long;
|
|
1404
1413
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1410,8 +1419,9 @@ export declare const GetSessionResponse: {
|
|
|
1410
1419
|
rotl: (numBits: number | Long) => Long;
|
|
1411
1420
|
rotateRight: (numBits: number | Long) => Long;
|
|
1412
1421
|
rotr: (numBits: number | Long) => Long;
|
|
1413
|
-
subtract: (subtrahend:
|
|
1414
|
-
sub: (subtrahend:
|
|
1422
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1423
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1424
|
+
toBigInt: () => bigint;
|
|
1415
1425
|
toInt: () => number;
|
|
1416
1426
|
toNumber: () => number;
|
|
1417
1427
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1420,7 +1430,7 @@ export declare const GetSessionResponse: {
|
|
|
1420
1430
|
toSigned: () => Long;
|
|
1421
1431
|
toString: (radix?: number) => string;
|
|
1422
1432
|
toUnsigned: () => Long;
|
|
1423
|
-
xor: (other:
|
|
1433
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1424
1434
|
} & { [K_1 in Exclude<keyof I["sessions"][number]["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1425
1435
|
readOnly?: boolean;
|
|
1426
1436
|
vendor?: string | undefined;
|
|
@@ -1566,40 +1576,41 @@ export declare const GetSessionResponse: {
|
|
|
1566
1576
|
high: number;
|
|
1567
1577
|
low: number;
|
|
1568
1578
|
unsigned: boolean;
|
|
1569
|
-
add: (addend:
|
|
1570
|
-
and: (other:
|
|
1571
|
-
compare: (other:
|
|
1572
|
-
comp: (other:
|
|
1573
|
-
divide: (divisor:
|
|
1574
|
-
div: (divisor:
|
|
1575
|
-
equals: (other:
|
|
1576
|
-
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;
|
|
1577
1587
|
getHighBits: () => number;
|
|
1578
1588
|
getHighBitsUnsigned: () => number;
|
|
1579
1589
|
getLowBits: () => number;
|
|
1580
1590
|
getLowBitsUnsigned: () => number;
|
|
1581
1591
|
getNumBitsAbs: () => number;
|
|
1582
|
-
greaterThan: (other:
|
|
1583
|
-
gt: (other:
|
|
1584
|
-
greaterThanOrEqual: (other:
|
|
1585
|
-
gte: (other:
|
|
1586
|
-
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;
|
|
1587
1597
|
isEven: () => boolean;
|
|
1588
1598
|
isNegative: () => boolean;
|
|
1589
1599
|
isOdd: () => boolean;
|
|
1590
1600
|
isPositive: () => boolean;
|
|
1601
|
+
isSafeInteger: () => boolean;
|
|
1591
1602
|
isZero: () => boolean;
|
|
1592
1603
|
eqz: () => boolean;
|
|
1593
|
-
lessThan: (other:
|
|
1594
|
-
lt: (other:
|
|
1595
|
-
lessThanOrEqual: (other:
|
|
1596
|
-
lte: (other:
|
|
1597
|
-
le: (other:
|
|
1598
|
-
modulo: (other:
|
|
1599
|
-
mod: (other:
|
|
1600
|
-
rem: (other:
|
|
1601
|
-
multiply: (multiplier:
|
|
1602
|
-
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;
|
|
1603
1614
|
negate: () => Long;
|
|
1604
1615
|
neg: () => Long;
|
|
1605
1616
|
not: () => Long;
|
|
@@ -1607,10 +1618,10 @@ export declare const GetSessionResponse: {
|
|
|
1607
1618
|
clz: () => number;
|
|
1608
1619
|
countTrailingZeros: () => number;
|
|
1609
1620
|
ctz: () => number;
|
|
1610
|
-
notEquals: (other:
|
|
1611
|
-
neq: (other:
|
|
1612
|
-
ne: (other:
|
|
1613
|
-
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;
|
|
1614
1625
|
shiftLeft: (numBits: number | Long) => Long;
|
|
1615
1626
|
shl: (numBits: number | Long) => Long;
|
|
1616
1627
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -1622,8 +1633,9 @@ export declare const GetSessionResponse: {
|
|
|
1622
1633
|
rotl: (numBits: number | Long) => Long;
|
|
1623
1634
|
rotateRight: (numBits: number | Long) => Long;
|
|
1624
1635
|
rotr: (numBits: number | Long) => Long;
|
|
1625
|
-
subtract: (subtrahend:
|
|
1626
|
-
sub: (subtrahend:
|
|
1636
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1637
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
1638
|
+
toBigInt: () => bigint;
|
|
1627
1639
|
toInt: () => number;
|
|
1628
1640
|
toNumber: () => number;
|
|
1629
1641
|
toBytes: (le?: boolean) => number[];
|
|
@@ -1632,7 +1644,7 @@ export declare const GetSessionResponse: {
|
|
|
1632
1644
|
toSigned: () => Long;
|
|
1633
1645
|
toString: (radix?: number) => string;
|
|
1634
1646
|
toUnsigned: () => Long;
|
|
1635
|
-
xor: (other:
|
|
1647
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
1636
1648
|
} & { [K_8 in Exclude<keyof I_1["sessions"][number]["lunInfo"][number]["size"], keyof Long>]: never; });
|
|
1637
1649
|
readOnly?: boolean;
|
|
1638
1650
|
vendor?: string | undefined;
|