@lazycatcloud/sdk 0.1.470 → 0.1.471
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/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/ble.d.ts +33 -0
- package/dist/localdevice/ble.d.ts.map +1 -1
- package/dist/localdevice/ble.js +112 -1
- package/dist/localdevice/ble.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 +9280 -8700
- package/dist/sys/package_manager.d.ts.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
|
@@ -248,40 +248,41 @@ export declare const PutPhotoReply: {
|
|
|
248
248
|
high: number;
|
|
249
249
|
low: number;
|
|
250
250
|
unsigned: boolean;
|
|
251
|
-
add: (addend:
|
|
252
|
-
and: (other:
|
|
253
|
-
compare: (other:
|
|
254
|
-
comp: (other:
|
|
255
|
-
divide: (divisor:
|
|
256
|
-
div: (divisor:
|
|
257
|
-
equals: (other:
|
|
258
|
-
eq: (other:
|
|
251
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
252
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
253
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
254
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
255
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
256
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
257
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
258
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
259
259
|
getHighBits: () => number;
|
|
260
260
|
getHighBitsUnsigned: () => number;
|
|
261
261
|
getLowBits: () => number;
|
|
262
262
|
getLowBitsUnsigned: () => number;
|
|
263
263
|
getNumBitsAbs: () => number;
|
|
264
|
-
greaterThan: (other:
|
|
265
|
-
gt: (other:
|
|
266
|
-
greaterThanOrEqual: (other:
|
|
267
|
-
gte: (other:
|
|
268
|
-
ge: (other:
|
|
264
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
265
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
266
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
267
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
268
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
269
269
|
isEven: () => boolean;
|
|
270
270
|
isNegative: () => boolean;
|
|
271
271
|
isOdd: () => boolean;
|
|
272
272
|
isPositive: () => boolean;
|
|
273
|
+
isSafeInteger: () => boolean;
|
|
273
274
|
isZero: () => boolean;
|
|
274
275
|
eqz: () => boolean;
|
|
275
|
-
lessThan: (other:
|
|
276
|
-
lt: (other:
|
|
277
|
-
lessThanOrEqual: (other:
|
|
278
|
-
lte: (other:
|
|
279
|
-
le: (other:
|
|
280
|
-
modulo: (other:
|
|
281
|
-
mod: (other:
|
|
282
|
-
rem: (other:
|
|
283
|
-
multiply: (multiplier:
|
|
284
|
-
mul: (multiplier:
|
|
276
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
277
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
278
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
279
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
280
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
281
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
282
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
283
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
284
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
285
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
285
286
|
negate: () => Long;
|
|
286
287
|
neg: () => Long;
|
|
287
288
|
not: () => Long;
|
|
@@ -289,10 +290,10 @@ export declare const PutPhotoReply: {
|
|
|
289
290
|
clz: () => number;
|
|
290
291
|
countTrailingZeros: () => number;
|
|
291
292
|
ctz: () => number;
|
|
292
|
-
notEquals: (other:
|
|
293
|
-
neq: (other:
|
|
294
|
-
ne: (other:
|
|
295
|
-
or: (other:
|
|
293
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
294
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
295
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
296
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
296
297
|
shiftLeft: (numBits: number | Long) => Long;
|
|
297
298
|
shl: (numBits: number | Long) => Long;
|
|
298
299
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -304,8 +305,9 @@ export declare const PutPhotoReply: {
|
|
|
304
305
|
rotl: (numBits: number | Long) => Long;
|
|
305
306
|
rotateRight: (numBits: number | Long) => Long;
|
|
306
307
|
rotr: (numBits: number | Long) => Long;
|
|
307
|
-
subtract: (subtrahend:
|
|
308
|
-
sub: (subtrahend:
|
|
308
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
309
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
310
|
+
toBigInt: () => bigint;
|
|
309
311
|
toInt: () => number;
|
|
310
312
|
toNumber: () => number;
|
|
311
313
|
toBytes: (le?: boolean) => number[];
|
|
@@ -314,46 +316,47 @@ export declare const PutPhotoReply: {
|
|
|
314
316
|
toSigned: () => Long;
|
|
315
317
|
toString: (radix?: number) => string;
|
|
316
318
|
toUnsigned: () => Long;
|
|
317
|
-
xor: (other:
|
|
319
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
318
320
|
} & { [K in Exclude<keyof I["totalSize"], keyof Long>]: never; });
|
|
319
321
|
fetchedSize?: string | number | (Long & {
|
|
320
322
|
high: number;
|
|
321
323
|
low: number;
|
|
322
324
|
unsigned: boolean;
|
|
323
|
-
add: (addend:
|
|
324
|
-
and: (other:
|
|
325
|
-
compare: (other:
|
|
326
|
-
comp: (other:
|
|
327
|
-
divide: (divisor:
|
|
328
|
-
div: (divisor:
|
|
329
|
-
equals: (other:
|
|
330
|
-
eq: (other:
|
|
325
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
326
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
327
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
328
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
329
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
330
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
331
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
332
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
331
333
|
getHighBits: () => number;
|
|
332
334
|
getHighBitsUnsigned: () => number;
|
|
333
335
|
getLowBits: () => number;
|
|
334
336
|
getLowBitsUnsigned: () => number;
|
|
335
337
|
getNumBitsAbs: () => number;
|
|
336
|
-
greaterThan: (other:
|
|
337
|
-
gt: (other:
|
|
338
|
-
greaterThanOrEqual: (other:
|
|
339
|
-
gte: (other:
|
|
340
|
-
ge: (other:
|
|
338
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
339
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
340
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
341
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
342
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
341
343
|
isEven: () => boolean;
|
|
342
344
|
isNegative: () => boolean;
|
|
343
345
|
isOdd: () => boolean;
|
|
344
346
|
isPositive: () => boolean;
|
|
347
|
+
isSafeInteger: () => boolean;
|
|
345
348
|
isZero: () => boolean;
|
|
346
349
|
eqz: () => boolean;
|
|
347
|
-
lessThan: (other:
|
|
348
|
-
lt: (other:
|
|
349
|
-
lessThanOrEqual: (other:
|
|
350
|
-
lte: (other:
|
|
351
|
-
le: (other:
|
|
352
|
-
modulo: (other:
|
|
353
|
-
mod: (other:
|
|
354
|
-
rem: (other:
|
|
355
|
-
multiply: (multiplier:
|
|
356
|
-
mul: (multiplier:
|
|
350
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
351
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
352
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
353
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
354
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
355
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
356
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
357
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
358
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
359
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
357
360
|
negate: () => Long;
|
|
358
361
|
neg: () => Long;
|
|
359
362
|
not: () => Long;
|
|
@@ -361,10 +364,10 @@ export declare const PutPhotoReply: {
|
|
|
361
364
|
clz: () => number;
|
|
362
365
|
countTrailingZeros: () => number;
|
|
363
366
|
ctz: () => number;
|
|
364
|
-
notEquals: (other:
|
|
365
|
-
neq: (other:
|
|
366
|
-
ne: (other:
|
|
367
|
-
or: (other:
|
|
367
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
368
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
369
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
370
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
368
371
|
shiftLeft: (numBits: number | Long) => Long;
|
|
369
372
|
shl: (numBits: number | Long) => Long;
|
|
370
373
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -376,8 +379,9 @@ export declare const PutPhotoReply: {
|
|
|
376
379
|
rotl: (numBits: number | Long) => Long;
|
|
377
380
|
rotateRight: (numBits: number | Long) => Long;
|
|
378
381
|
rotr: (numBits: number | Long) => Long;
|
|
379
|
-
subtract: (subtrahend:
|
|
380
|
-
sub: (subtrahend:
|
|
382
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
383
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
384
|
+
toBigInt: () => bigint;
|
|
381
385
|
toInt: () => number;
|
|
382
386
|
toNumber: () => number;
|
|
383
387
|
toBytes: (le?: boolean) => number[];
|
|
@@ -386,7 +390,7 @@ export declare const PutPhotoReply: {
|
|
|
386
390
|
toSigned: () => Long;
|
|
387
391
|
toString: (radix?: number) => string;
|
|
388
392
|
toUnsigned: () => Long;
|
|
389
|
-
xor: (other:
|
|
393
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
390
394
|
} & { [K_1 in Exclude<keyof I["fetchedSize"], keyof Long>]: never; });
|
|
391
395
|
photoId?: string | undefined;
|
|
392
396
|
} & { [K_2 in Exclude<keyof I, keyof PutPhotoReply>]: never; }>(base?: I): PutPhotoReply;
|
|
@@ -401,40 +405,41 @@ export declare const PutPhotoReply: {
|
|
|
401
405
|
high: number;
|
|
402
406
|
low: number;
|
|
403
407
|
unsigned: boolean;
|
|
404
|
-
add: (addend:
|
|
405
|
-
and: (other:
|
|
406
|
-
compare: (other:
|
|
407
|
-
comp: (other:
|
|
408
|
-
divide: (divisor:
|
|
409
|
-
div: (divisor:
|
|
410
|
-
equals: (other:
|
|
411
|
-
eq: (other:
|
|
408
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
409
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
410
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
411
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
412
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
413
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
414
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
415
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
412
416
|
getHighBits: () => number;
|
|
413
417
|
getHighBitsUnsigned: () => number;
|
|
414
418
|
getLowBits: () => number;
|
|
415
419
|
getLowBitsUnsigned: () => number;
|
|
416
420
|
getNumBitsAbs: () => number;
|
|
417
|
-
greaterThan: (other:
|
|
418
|
-
gt: (other:
|
|
419
|
-
greaterThanOrEqual: (other:
|
|
420
|
-
gte: (other:
|
|
421
|
-
ge: (other:
|
|
421
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
422
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
423
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
424
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
425
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
422
426
|
isEven: () => boolean;
|
|
423
427
|
isNegative: () => boolean;
|
|
424
428
|
isOdd: () => boolean;
|
|
425
429
|
isPositive: () => boolean;
|
|
430
|
+
isSafeInteger: () => boolean;
|
|
426
431
|
isZero: () => boolean;
|
|
427
432
|
eqz: () => boolean;
|
|
428
|
-
lessThan: (other:
|
|
429
|
-
lt: (other:
|
|
430
|
-
lessThanOrEqual: (other:
|
|
431
|
-
lte: (other:
|
|
432
|
-
le: (other:
|
|
433
|
-
modulo: (other:
|
|
434
|
-
mod: (other:
|
|
435
|
-
rem: (other:
|
|
436
|
-
multiply: (multiplier:
|
|
437
|
-
mul: (multiplier:
|
|
433
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
434
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
435
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
436
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
437
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
438
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
439
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
440
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
441
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
442
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
438
443
|
negate: () => Long;
|
|
439
444
|
neg: () => Long;
|
|
440
445
|
not: () => Long;
|
|
@@ -442,10 +447,10 @@ export declare const PutPhotoReply: {
|
|
|
442
447
|
clz: () => number;
|
|
443
448
|
countTrailingZeros: () => number;
|
|
444
449
|
ctz: () => number;
|
|
445
|
-
notEquals: (other:
|
|
446
|
-
neq: (other:
|
|
447
|
-
ne: (other:
|
|
448
|
-
or: (other:
|
|
450
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
451
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
452
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
453
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
449
454
|
shiftLeft: (numBits: number | Long) => Long;
|
|
450
455
|
shl: (numBits: number | Long) => Long;
|
|
451
456
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -457,8 +462,9 @@ export declare const PutPhotoReply: {
|
|
|
457
462
|
rotl: (numBits: number | Long) => Long;
|
|
458
463
|
rotateRight: (numBits: number | Long) => Long;
|
|
459
464
|
rotr: (numBits: number | Long) => Long;
|
|
460
|
-
subtract: (subtrahend:
|
|
461
|
-
sub: (subtrahend:
|
|
465
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
466
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
467
|
+
toBigInt: () => bigint;
|
|
462
468
|
toInt: () => number;
|
|
463
469
|
toNumber: () => number;
|
|
464
470
|
toBytes: (le?: boolean) => number[];
|
|
@@ -467,46 +473,47 @@ export declare const PutPhotoReply: {
|
|
|
467
473
|
toSigned: () => Long;
|
|
468
474
|
toString: (radix?: number) => string;
|
|
469
475
|
toUnsigned: () => Long;
|
|
470
|
-
xor: (other:
|
|
476
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
471
477
|
} & { [K_3 in Exclude<keyof I_1["totalSize"], keyof Long>]: never; });
|
|
472
478
|
fetchedSize?: string | number | (Long & {
|
|
473
479
|
high: number;
|
|
474
480
|
low: number;
|
|
475
481
|
unsigned: boolean;
|
|
476
|
-
add: (addend:
|
|
477
|
-
and: (other:
|
|
478
|
-
compare: (other:
|
|
479
|
-
comp: (other:
|
|
480
|
-
divide: (divisor:
|
|
481
|
-
div: (divisor:
|
|
482
|
-
equals: (other:
|
|
483
|
-
eq: (other:
|
|
482
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
483
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
484
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
485
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
486
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
487
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
488
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
489
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
484
490
|
getHighBits: () => number;
|
|
485
491
|
getHighBitsUnsigned: () => number;
|
|
486
492
|
getLowBits: () => number;
|
|
487
493
|
getLowBitsUnsigned: () => number;
|
|
488
494
|
getNumBitsAbs: () => number;
|
|
489
|
-
greaterThan: (other:
|
|
490
|
-
gt: (other:
|
|
491
|
-
greaterThanOrEqual: (other:
|
|
492
|
-
gte: (other:
|
|
493
|
-
ge: (other:
|
|
495
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
496
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
497
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
498
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
499
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
494
500
|
isEven: () => boolean;
|
|
495
501
|
isNegative: () => boolean;
|
|
496
502
|
isOdd: () => boolean;
|
|
497
503
|
isPositive: () => boolean;
|
|
504
|
+
isSafeInteger: () => boolean;
|
|
498
505
|
isZero: () => boolean;
|
|
499
506
|
eqz: () => boolean;
|
|
500
|
-
lessThan: (other:
|
|
501
|
-
lt: (other:
|
|
502
|
-
lessThanOrEqual: (other:
|
|
503
|
-
lte: (other:
|
|
504
|
-
le: (other:
|
|
505
|
-
modulo: (other:
|
|
506
|
-
mod: (other:
|
|
507
|
-
rem: (other:
|
|
508
|
-
multiply: (multiplier:
|
|
509
|
-
mul: (multiplier:
|
|
507
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
508
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
509
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
510
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
511
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
512
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
513
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
514
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
515
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
516
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
510
517
|
negate: () => Long;
|
|
511
518
|
neg: () => Long;
|
|
512
519
|
not: () => Long;
|
|
@@ -514,10 +521,10 @@ export declare const PutPhotoReply: {
|
|
|
514
521
|
clz: () => number;
|
|
515
522
|
countTrailingZeros: () => number;
|
|
516
523
|
ctz: () => number;
|
|
517
|
-
notEquals: (other:
|
|
518
|
-
neq: (other:
|
|
519
|
-
ne: (other:
|
|
520
|
-
or: (other:
|
|
524
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
525
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
526
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
527
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
521
528
|
shiftLeft: (numBits: number | Long) => Long;
|
|
522
529
|
shl: (numBits: number | Long) => Long;
|
|
523
530
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -529,8 +536,9 @@ export declare const PutPhotoReply: {
|
|
|
529
536
|
rotl: (numBits: number | Long) => Long;
|
|
530
537
|
rotateRight: (numBits: number | Long) => Long;
|
|
531
538
|
rotr: (numBits: number | Long) => Long;
|
|
532
|
-
subtract: (subtrahend:
|
|
533
|
-
sub: (subtrahend:
|
|
539
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
540
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
541
|
+
toBigInt: () => bigint;
|
|
534
542
|
toInt: () => number;
|
|
535
543
|
toNumber: () => number;
|
|
536
544
|
toBytes: (le?: boolean) => number[];
|
|
@@ -539,7 +547,7 @@ export declare const PutPhotoReply: {
|
|
|
539
547
|
toSigned: () => Long;
|
|
540
548
|
toString: (radix?: number) => string;
|
|
541
549
|
toUnsigned: () => Long;
|
|
542
|
-
xor: (other:
|
|
550
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
543
551
|
} & { [K_4 in Exclude<keyof I_1["fetchedSize"], keyof Long>]: never; });
|
|
544
552
|
photoId?: string | undefined;
|
|
545
553
|
} & { [K_5 in Exclude<keyof I_1, keyof PutPhotoReply>]: never; }>(object: I_1): PutPhotoReply;
|
|
@@ -687,40 +695,41 @@ export declare const PhotoMeta: {
|
|
|
687
695
|
high: number;
|
|
688
696
|
low: number;
|
|
689
697
|
unsigned: boolean;
|
|
690
|
-
add: (addend:
|
|
691
|
-
and: (other:
|
|
692
|
-
compare: (other:
|
|
693
|
-
comp: (other:
|
|
694
|
-
divide: (divisor:
|
|
695
|
-
div: (divisor:
|
|
696
|
-
equals: (other:
|
|
697
|
-
eq: (other:
|
|
698
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
699
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
700
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
701
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
702
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
703
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
704
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
705
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
698
706
|
getHighBits: () => number;
|
|
699
707
|
getHighBitsUnsigned: () => number;
|
|
700
708
|
getLowBits: () => number;
|
|
701
709
|
getLowBitsUnsigned: () => number;
|
|
702
710
|
getNumBitsAbs: () => number;
|
|
703
|
-
greaterThan: (other:
|
|
704
|
-
gt: (other:
|
|
705
|
-
greaterThanOrEqual: (other:
|
|
706
|
-
gte: (other:
|
|
707
|
-
ge: (other:
|
|
711
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
712
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
713
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
714
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
715
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
708
716
|
isEven: () => boolean;
|
|
709
717
|
isNegative: () => boolean;
|
|
710
718
|
isOdd: () => boolean;
|
|
711
719
|
isPositive: () => boolean;
|
|
720
|
+
isSafeInteger: () => boolean;
|
|
712
721
|
isZero: () => boolean;
|
|
713
722
|
eqz: () => boolean;
|
|
714
|
-
lessThan: (other:
|
|
715
|
-
lt: (other:
|
|
716
|
-
lessThanOrEqual: (other:
|
|
717
|
-
lte: (other:
|
|
718
|
-
le: (other:
|
|
719
|
-
modulo: (other:
|
|
720
|
-
mod: (other:
|
|
721
|
-
rem: (other:
|
|
722
|
-
multiply: (multiplier:
|
|
723
|
-
mul: (multiplier:
|
|
723
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
724
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
725
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
726
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
727
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
728
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
729
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
730
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
731
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
732
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
724
733
|
negate: () => Long;
|
|
725
734
|
neg: () => Long;
|
|
726
735
|
not: () => Long;
|
|
@@ -728,10 +737,10 @@ export declare const PhotoMeta: {
|
|
|
728
737
|
clz: () => number;
|
|
729
738
|
countTrailingZeros: () => number;
|
|
730
739
|
ctz: () => number;
|
|
731
|
-
notEquals: (other:
|
|
732
|
-
neq: (other:
|
|
733
|
-
ne: (other:
|
|
734
|
-
or: (other:
|
|
740
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
741
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
742
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
743
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
735
744
|
shiftLeft: (numBits: number | Long) => Long;
|
|
736
745
|
shl: (numBits: number | Long) => Long;
|
|
737
746
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -743,8 +752,9 @@ export declare const PhotoMeta: {
|
|
|
743
752
|
rotl: (numBits: number | Long) => Long;
|
|
744
753
|
rotateRight: (numBits: number | Long) => Long;
|
|
745
754
|
rotr: (numBits: number | Long) => Long;
|
|
746
|
-
subtract: (subtrahend:
|
|
747
|
-
sub: (subtrahend:
|
|
755
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
756
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
757
|
+
toBigInt: () => bigint;
|
|
748
758
|
toInt: () => number;
|
|
749
759
|
toNumber: () => number;
|
|
750
760
|
toBytes: (le?: boolean) => number[];
|
|
@@ -753,7 +763,7 @@ export declare const PhotoMeta: {
|
|
|
753
763
|
toSigned: () => Long;
|
|
754
764
|
toString: (radix?: number) => string;
|
|
755
765
|
toUnsigned: () => Long;
|
|
756
|
-
xor: (other:
|
|
766
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
757
767
|
} & { [K_1 in Exclude<keyof I["size"], keyof Long>]: never; });
|
|
758
768
|
mime?: string;
|
|
759
769
|
fileName?: string | undefined;
|
|
@@ -789,40 +799,41 @@ export declare const PhotoMeta: {
|
|
|
789
799
|
high: number;
|
|
790
800
|
low: number;
|
|
791
801
|
unsigned: boolean;
|
|
792
|
-
add: (addend:
|
|
793
|
-
and: (other:
|
|
794
|
-
compare: (other:
|
|
795
|
-
comp: (other:
|
|
796
|
-
divide: (divisor:
|
|
797
|
-
div: (divisor:
|
|
798
|
-
equals: (other:
|
|
799
|
-
eq: (other:
|
|
802
|
+
add: (addend: import("long/umd/types").LongLike) => Long;
|
|
803
|
+
and: (other: import("long/umd/types").LongLike) => Long;
|
|
804
|
+
compare: (other: import("long/umd/types").LongLike) => number;
|
|
805
|
+
comp: (other: import("long/umd/types").LongLike) => number;
|
|
806
|
+
divide: (divisor: import("long/umd/types").LongLike) => Long;
|
|
807
|
+
div: (divisor: import("long/umd/types").LongLike) => Long;
|
|
808
|
+
equals: (other: import("long/umd/types").LongLike) => boolean;
|
|
809
|
+
eq: (other: import("long/umd/types").LongLike) => boolean;
|
|
800
810
|
getHighBits: () => number;
|
|
801
811
|
getHighBitsUnsigned: () => number;
|
|
802
812
|
getLowBits: () => number;
|
|
803
813
|
getLowBitsUnsigned: () => number;
|
|
804
814
|
getNumBitsAbs: () => number;
|
|
805
|
-
greaterThan: (other:
|
|
806
|
-
gt: (other:
|
|
807
|
-
greaterThanOrEqual: (other:
|
|
808
|
-
gte: (other:
|
|
809
|
-
ge: (other:
|
|
815
|
+
greaterThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
816
|
+
gt: (other: import("long/umd/types").LongLike) => boolean;
|
|
817
|
+
greaterThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
818
|
+
gte: (other: import("long/umd/types").LongLike) => boolean;
|
|
819
|
+
ge: (other: import("long/umd/types").LongLike) => boolean;
|
|
810
820
|
isEven: () => boolean;
|
|
811
821
|
isNegative: () => boolean;
|
|
812
822
|
isOdd: () => boolean;
|
|
813
823
|
isPositive: () => boolean;
|
|
824
|
+
isSafeInteger: () => boolean;
|
|
814
825
|
isZero: () => boolean;
|
|
815
826
|
eqz: () => boolean;
|
|
816
|
-
lessThan: (other:
|
|
817
|
-
lt: (other:
|
|
818
|
-
lessThanOrEqual: (other:
|
|
819
|
-
lte: (other:
|
|
820
|
-
le: (other:
|
|
821
|
-
modulo: (other:
|
|
822
|
-
mod: (other:
|
|
823
|
-
rem: (other:
|
|
824
|
-
multiply: (multiplier:
|
|
825
|
-
mul: (multiplier:
|
|
827
|
+
lessThan: (other: import("long/umd/types").LongLike) => boolean;
|
|
828
|
+
lt: (other: import("long/umd/types").LongLike) => boolean;
|
|
829
|
+
lessThanOrEqual: (other: import("long/umd/types").LongLike) => boolean;
|
|
830
|
+
lte: (other: import("long/umd/types").LongLike) => boolean;
|
|
831
|
+
le: (other: import("long/umd/types").LongLike) => boolean;
|
|
832
|
+
modulo: (other: import("long/umd/types").LongLike) => Long;
|
|
833
|
+
mod: (other: import("long/umd/types").LongLike) => Long;
|
|
834
|
+
rem: (other: import("long/umd/types").LongLike) => Long;
|
|
835
|
+
multiply: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
836
|
+
mul: (multiplier: import("long/umd/types").LongLike) => Long;
|
|
826
837
|
negate: () => Long;
|
|
827
838
|
neg: () => Long;
|
|
828
839
|
not: () => Long;
|
|
@@ -830,10 +841,10 @@ export declare const PhotoMeta: {
|
|
|
830
841
|
clz: () => number;
|
|
831
842
|
countTrailingZeros: () => number;
|
|
832
843
|
ctz: () => number;
|
|
833
|
-
notEquals: (other:
|
|
834
|
-
neq: (other:
|
|
835
|
-
ne: (other:
|
|
836
|
-
or: (other:
|
|
844
|
+
notEquals: (other: import("long/umd/types").LongLike) => boolean;
|
|
845
|
+
neq: (other: import("long/umd/types").LongLike) => boolean;
|
|
846
|
+
ne: (other: import("long/umd/types").LongLike) => boolean;
|
|
847
|
+
or: (other: import("long/umd/types").LongLike) => Long;
|
|
837
848
|
shiftLeft: (numBits: number | Long) => Long;
|
|
838
849
|
shl: (numBits: number | Long) => Long;
|
|
839
850
|
shiftRight: (numBits: number | Long) => Long;
|
|
@@ -845,8 +856,9 @@ export declare const PhotoMeta: {
|
|
|
845
856
|
rotl: (numBits: number | Long) => Long;
|
|
846
857
|
rotateRight: (numBits: number | Long) => Long;
|
|
847
858
|
rotr: (numBits: number | Long) => Long;
|
|
848
|
-
subtract: (subtrahend:
|
|
849
|
-
sub: (subtrahend:
|
|
859
|
+
subtract: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
860
|
+
sub: (subtrahend: import("long/umd/types").LongLike) => Long;
|
|
861
|
+
toBigInt: () => bigint;
|
|
850
862
|
toInt: () => number;
|
|
851
863
|
toNumber: () => number;
|
|
852
864
|
toBytes: (le?: boolean) => number[];
|
|
@@ -855,7 +867,7 @@ export declare const PhotoMeta: {
|
|
|
855
867
|
toSigned: () => Long;
|
|
856
868
|
toString: (radix?: number) => string;
|
|
857
869
|
toUnsigned: () => Long;
|
|
858
|
-
xor: (other:
|
|
870
|
+
xor: (other: import("long/umd/types").LongLike) => Long;
|
|
859
871
|
} & { [K_4 in Exclude<keyof I_1["size"], keyof Long>]: never; });
|
|
860
872
|
mime?: string;
|
|
861
873
|
fileName?: string | undefined;
|