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