@devvit/protos 0.11.8-next-2025-02-12-e4a7d52e8.0 → 0.11.8-next-2025-02-12-ce9f2981c.0
Sign up to get free protection for your applications and to get access to all the features.
- package/index.d.ts +1 -1
- package/index.d.ts.map +1 -1
- package/index.js +1 -1
- package/meta.min.json +6 -5
- package/package.json +6 -6
- package/protos.min.js +1 -1
- package/protos.min.js.map +3 -3
- package/schema/devvit/plugin/redis/redisapi.proto +50 -0
- package/schema/snootobuf.devenv.lock +1892 -725
- package/schema/snootobuf.lock +1892 -725
- package/schema/snootobuf.redditapi.lock +1892 -725
- package/schema/snootobuf.ts.lock +1892 -725
- package/types/devvit/plugin/redis/redisapi.d.ts +132 -0
- package/types/devvit/plugin/redis/redisapi.d.ts.map +1 -1
- package/types/devvit/plugin/redis/redisapi.js +591 -0
- package/types/devvit/plugin/redis/redisapi.twirp-client.d.ts +4 -1
- package/types/devvit/plugin/redis/redisapi.twirp-client.d.ts.map +1 -1
- package/types/devvit/plugin/redis/redisapi.twirp-client.js +13 -1
- package/types/devvit/plugin/redis/redisapi.twirp.d.ts +4 -2
- package/types/devvit/plugin/redis/redisapi.twirp.d.ts.map +1 -1
- package/types/devvit/plugin/redis/redisapi.twirp.js +67 -1
@@ -47,6 +47,49 @@ export function redisKeyScopeToJSON(object) {
|
|
47
47
|
return -1;
|
48
48
|
}
|
49
49
|
}
|
50
|
+
export var BitfieldOverflowBehavior;
|
51
|
+
(function (BitfieldOverflowBehavior) {
|
52
|
+
BitfieldOverflowBehavior[BitfieldOverflowBehavior["BITFIELD_OVERFLOW_BEHAVIOR_UNSPECIFIED"] = 0] = "BITFIELD_OVERFLOW_BEHAVIOR_UNSPECIFIED";
|
53
|
+
BitfieldOverflowBehavior[BitfieldOverflowBehavior["BITFIELD_OVERFLOW_BEHAVIOR_WRAP"] = 1] = "BITFIELD_OVERFLOW_BEHAVIOR_WRAP";
|
54
|
+
BitfieldOverflowBehavior[BitfieldOverflowBehavior["BITFIELD_OVERFLOW_BEHAVIOR_SAT"] = 2] = "BITFIELD_OVERFLOW_BEHAVIOR_SAT";
|
55
|
+
BitfieldOverflowBehavior[BitfieldOverflowBehavior["BITFIELD_OVERFLOW_BEHAVIOR_FAIL"] = 3] = "BITFIELD_OVERFLOW_BEHAVIOR_FAIL";
|
56
|
+
BitfieldOverflowBehavior[BitfieldOverflowBehavior["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
57
|
+
})(BitfieldOverflowBehavior || (BitfieldOverflowBehavior = {}));
|
58
|
+
export function bitfieldOverflowBehaviorFromJSON(object) {
|
59
|
+
switch (object) {
|
60
|
+
case 0:
|
61
|
+
case "BITFIELD_OVERFLOW_BEHAVIOR_UNSPECIFIED":
|
62
|
+
return BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_UNSPECIFIED;
|
63
|
+
case 1:
|
64
|
+
case "BITFIELD_OVERFLOW_BEHAVIOR_WRAP":
|
65
|
+
return BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_WRAP;
|
66
|
+
case 2:
|
67
|
+
case "BITFIELD_OVERFLOW_BEHAVIOR_SAT":
|
68
|
+
return BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_SAT;
|
69
|
+
case 3:
|
70
|
+
case "BITFIELD_OVERFLOW_BEHAVIOR_FAIL":
|
71
|
+
return BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_FAIL;
|
72
|
+
case -1:
|
73
|
+
case "UNRECOGNIZED":
|
74
|
+
default:
|
75
|
+
return BitfieldOverflowBehavior.UNRECOGNIZED;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
export function bitfieldOverflowBehaviorToJSON(object) {
|
79
|
+
switch (object) {
|
80
|
+
case BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_UNSPECIFIED:
|
81
|
+
return 0;
|
82
|
+
case BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_WRAP:
|
83
|
+
return 1;
|
84
|
+
case BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_SAT:
|
85
|
+
return 2;
|
86
|
+
case BitfieldOverflowBehavior.BITFIELD_OVERFLOW_BEHAVIOR_FAIL:
|
87
|
+
return 3;
|
88
|
+
case BitfieldOverflowBehavior.UNRECOGNIZED:
|
89
|
+
default:
|
90
|
+
return -1;
|
91
|
+
}
|
92
|
+
}
|
50
93
|
function createBaseTransactionResponses() {
|
51
94
|
return { response: [] };
|
52
95
|
}
|
@@ -3688,6 +3731,539 @@ export const WatchRequest = {
|
|
3688
3731
|
},
|
3689
3732
|
};
|
3690
3733
|
messageTypeRegistry.set(WatchRequest.$type, WatchRequest);
|
3734
|
+
function createBaseBitfieldRequest() {
|
3735
|
+
return { key: "", commands: [], transactionId: undefined };
|
3736
|
+
}
|
3737
|
+
export const BitfieldRequest = {
|
3738
|
+
$type: "devvit.plugin.redis.BitfieldRequest",
|
3739
|
+
encode(message, writer = _m0.Writer.create()) {
|
3740
|
+
if (message.key !== "") {
|
3741
|
+
writer.uint32(10).string(message.key);
|
3742
|
+
}
|
3743
|
+
for (const v of message.commands) {
|
3744
|
+
BitfieldCommand.encode(v, writer.uint32(18).fork()).ldelim();
|
3745
|
+
}
|
3746
|
+
if (message.transactionId !== undefined) {
|
3747
|
+
TransactionId.encode(message.transactionId, writer.uint32(26).fork()).ldelim();
|
3748
|
+
}
|
3749
|
+
return writer;
|
3750
|
+
},
|
3751
|
+
decode(input, length) {
|
3752
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
3753
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
3754
|
+
const message = createBaseBitfieldRequest();
|
3755
|
+
while (reader.pos < end) {
|
3756
|
+
const tag = reader.uint32();
|
3757
|
+
switch (tag >>> 3) {
|
3758
|
+
case 1:
|
3759
|
+
if (tag !== 10) {
|
3760
|
+
break;
|
3761
|
+
}
|
3762
|
+
message.key = reader.string();
|
3763
|
+
continue;
|
3764
|
+
case 2:
|
3765
|
+
if (tag !== 18) {
|
3766
|
+
break;
|
3767
|
+
}
|
3768
|
+
message.commands.push(BitfieldCommand.decode(reader, reader.uint32()));
|
3769
|
+
continue;
|
3770
|
+
case 3:
|
3771
|
+
if (tag !== 26) {
|
3772
|
+
break;
|
3773
|
+
}
|
3774
|
+
message.transactionId = TransactionId.decode(reader, reader.uint32());
|
3775
|
+
continue;
|
3776
|
+
}
|
3777
|
+
if ((tag & 7) === 4 || tag === 0) {
|
3778
|
+
break;
|
3779
|
+
}
|
3780
|
+
reader.skipType(tag & 7);
|
3781
|
+
}
|
3782
|
+
return message;
|
3783
|
+
},
|
3784
|
+
fromJSON(object) {
|
3785
|
+
return {
|
3786
|
+
key: isSet(object.key) ? globalThis.String(object.key) : "",
|
3787
|
+
commands: globalThis.Array.isArray(object?.commands)
|
3788
|
+
? object.commands.map((e) => BitfieldCommand.fromJSON(e))
|
3789
|
+
: [],
|
3790
|
+
transactionId: isSet(object.transactionId) ? TransactionId.fromJSON(object.transactionId) : undefined,
|
3791
|
+
};
|
3792
|
+
},
|
3793
|
+
toJSON(message) {
|
3794
|
+
const obj = {};
|
3795
|
+
if (message.key !== "") {
|
3796
|
+
obj.key = message.key;
|
3797
|
+
}
|
3798
|
+
if (message.commands?.length) {
|
3799
|
+
obj.commands = message.commands.map((e) => BitfieldCommand.toJSON(e));
|
3800
|
+
}
|
3801
|
+
if (message.transactionId !== undefined) {
|
3802
|
+
obj.transactionId = TransactionId.toJSON(message.transactionId);
|
3803
|
+
}
|
3804
|
+
return obj;
|
3805
|
+
},
|
3806
|
+
create(base) {
|
3807
|
+
return BitfieldRequest.fromPartial(base ?? {});
|
3808
|
+
},
|
3809
|
+
fromPartial(object) {
|
3810
|
+
const message = createBaseBitfieldRequest();
|
3811
|
+
message.key = object.key ?? "";
|
3812
|
+
message.commands = object.commands?.map((e) => BitfieldCommand.fromPartial(e)) || [];
|
3813
|
+
message.transactionId = (object.transactionId !== undefined && object.transactionId !== null)
|
3814
|
+
? TransactionId.fromPartial(object.transactionId)
|
3815
|
+
: undefined;
|
3816
|
+
return message;
|
3817
|
+
},
|
3818
|
+
};
|
3819
|
+
messageTypeRegistry.set(BitfieldRequest.$type, BitfieldRequest);
|
3820
|
+
function createBaseBitfieldCommand() {
|
3821
|
+
return { get: undefined, set: undefined, incrBy: undefined, overflow: undefined };
|
3822
|
+
}
|
3823
|
+
export const BitfieldCommand = {
|
3824
|
+
$type: "devvit.plugin.redis.BitfieldCommand",
|
3825
|
+
encode(message, writer = _m0.Writer.create()) {
|
3826
|
+
if (message.get !== undefined) {
|
3827
|
+
BitfieldGet.encode(message.get, writer.uint32(10).fork()).ldelim();
|
3828
|
+
}
|
3829
|
+
if (message.set !== undefined) {
|
3830
|
+
BitfieldSet.encode(message.set, writer.uint32(18).fork()).ldelim();
|
3831
|
+
}
|
3832
|
+
if (message.incrBy !== undefined) {
|
3833
|
+
BitfieldIncrBy.encode(message.incrBy, writer.uint32(26).fork()).ldelim();
|
3834
|
+
}
|
3835
|
+
if (message.overflow !== undefined) {
|
3836
|
+
BitfieldOverflow.encode(message.overflow, writer.uint32(34).fork()).ldelim();
|
3837
|
+
}
|
3838
|
+
return writer;
|
3839
|
+
},
|
3840
|
+
decode(input, length) {
|
3841
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
3842
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
3843
|
+
const message = createBaseBitfieldCommand();
|
3844
|
+
while (reader.pos < end) {
|
3845
|
+
const tag = reader.uint32();
|
3846
|
+
switch (tag >>> 3) {
|
3847
|
+
case 1:
|
3848
|
+
if (tag !== 10) {
|
3849
|
+
break;
|
3850
|
+
}
|
3851
|
+
message.get = BitfieldGet.decode(reader, reader.uint32());
|
3852
|
+
continue;
|
3853
|
+
case 2:
|
3854
|
+
if (tag !== 18) {
|
3855
|
+
break;
|
3856
|
+
}
|
3857
|
+
message.set = BitfieldSet.decode(reader, reader.uint32());
|
3858
|
+
continue;
|
3859
|
+
case 3:
|
3860
|
+
if (tag !== 26) {
|
3861
|
+
break;
|
3862
|
+
}
|
3863
|
+
message.incrBy = BitfieldIncrBy.decode(reader, reader.uint32());
|
3864
|
+
continue;
|
3865
|
+
case 4:
|
3866
|
+
if (tag !== 34) {
|
3867
|
+
break;
|
3868
|
+
}
|
3869
|
+
message.overflow = BitfieldOverflow.decode(reader, reader.uint32());
|
3870
|
+
continue;
|
3871
|
+
}
|
3872
|
+
if ((tag & 7) === 4 || tag === 0) {
|
3873
|
+
break;
|
3874
|
+
}
|
3875
|
+
reader.skipType(tag & 7);
|
3876
|
+
}
|
3877
|
+
return message;
|
3878
|
+
},
|
3879
|
+
fromJSON(object) {
|
3880
|
+
return {
|
3881
|
+
get: isSet(object.get) ? BitfieldGet.fromJSON(object.get) : undefined,
|
3882
|
+
set: isSet(object.set) ? BitfieldSet.fromJSON(object.set) : undefined,
|
3883
|
+
incrBy: isSet(object.incrBy) ? BitfieldIncrBy.fromJSON(object.incrBy) : undefined,
|
3884
|
+
overflow: isSet(object.overflow) ? BitfieldOverflow.fromJSON(object.overflow) : undefined,
|
3885
|
+
};
|
3886
|
+
},
|
3887
|
+
toJSON(message) {
|
3888
|
+
const obj = {};
|
3889
|
+
if (message.get !== undefined) {
|
3890
|
+
obj.get = BitfieldGet.toJSON(message.get);
|
3891
|
+
}
|
3892
|
+
if (message.set !== undefined) {
|
3893
|
+
obj.set = BitfieldSet.toJSON(message.set);
|
3894
|
+
}
|
3895
|
+
if (message.incrBy !== undefined) {
|
3896
|
+
obj.incrBy = BitfieldIncrBy.toJSON(message.incrBy);
|
3897
|
+
}
|
3898
|
+
if (message.overflow !== undefined) {
|
3899
|
+
obj.overflow = BitfieldOverflow.toJSON(message.overflow);
|
3900
|
+
}
|
3901
|
+
return obj;
|
3902
|
+
},
|
3903
|
+
create(base) {
|
3904
|
+
return BitfieldCommand.fromPartial(base ?? {});
|
3905
|
+
},
|
3906
|
+
fromPartial(object) {
|
3907
|
+
const message = createBaseBitfieldCommand();
|
3908
|
+
message.get = (object.get !== undefined && object.get !== null) ? BitfieldGet.fromPartial(object.get) : undefined;
|
3909
|
+
message.set = (object.set !== undefined && object.set !== null) ? BitfieldSet.fromPartial(object.set) : undefined;
|
3910
|
+
message.incrBy = (object.incrBy !== undefined && object.incrBy !== null)
|
3911
|
+
? BitfieldIncrBy.fromPartial(object.incrBy)
|
3912
|
+
: undefined;
|
3913
|
+
message.overflow = (object.overflow !== undefined && object.overflow !== null)
|
3914
|
+
? BitfieldOverflow.fromPartial(object.overflow)
|
3915
|
+
: undefined;
|
3916
|
+
return message;
|
3917
|
+
},
|
3918
|
+
};
|
3919
|
+
messageTypeRegistry.set(BitfieldCommand.$type, BitfieldCommand);
|
3920
|
+
function createBaseBitfieldGet() {
|
3921
|
+
return { encoding: "", offset: "" };
|
3922
|
+
}
|
3923
|
+
export const BitfieldGet = {
|
3924
|
+
$type: "devvit.plugin.redis.BitfieldGet",
|
3925
|
+
encode(message, writer = _m0.Writer.create()) {
|
3926
|
+
if (message.encoding !== "") {
|
3927
|
+
writer.uint32(10).string(message.encoding);
|
3928
|
+
}
|
3929
|
+
if (message.offset !== "") {
|
3930
|
+
writer.uint32(18).string(message.offset);
|
3931
|
+
}
|
3932
|
+
return writer;
|
3933
|
+
},
|
3934
|
+
decode(input, length) {
|
3935
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
3936
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
3937
|
+
const message = createBaseBitfieldGet();
|
3938
|
+
while (reader.pos < end) {
|
3939
|
+
const tag = reader.uint32();
|
3940
|
+
switch (tag >>> 3) {
|
3941
|
+
case 1:
|
3942
|
+
if (tag !== 10) {
|
3943
|
+
break;
|
3944
|
+
}
|
3945
|
+
message.encoding = reader.string();
|
3946
|
+
continue;
|
3947
|
+
case 2:
|
3948
|
+
if (tag !== 18) {
|
3949
|
+
break;
|
3950
|
+
}
|
3951
|
+
message.offset = reader.string();
|
3952
|
+
continue;
|
3953
|
+
}
|
3954
|
+
if ((tag & 7) === 4 || tag === 0) {
|
3955
|
+
break;
|
3956
|
+
}
|
3957
|
+
reader.skipType(tag & 7);
|
3958
|
+
}
|
3959
|
+
return message;
|
3960
|
+
},
|
3961
|
+
fromJSON(object) {
|
3962
|
+
return {
|
3963
|
+
encoding: isSet(object.encoding) ? globalThis.String(object.encoding) : "",
|
3964
|
+
offset: isSet(object.offset) ? globalThis.String(object.offset) : "",
|
3965
|
+
};
|
3966
|
+
},
|
3967
|
+
toJSON(message) {
|
3968
|
+
const obj = {};
|
3969
|
+
if (message.encoding !== "") {
|
3970
|
+
obj.encoding = message.encoding;
|
3971
|
+
}
|
3972
|
+
if (message.offset !== "") {
|
3973
|
+
obj.offset = message.offset;
|
3974
|
+
}
|
3975
|
+
return obj;
|
3976
|
+
},
|
3977
|
+
create(base) {
|
3978
|
+
return BitfieldGet.fromPartial(base ?? {});
|
3979
|
+
},
|
3980
|
+
fromPartial(object) {
|
3981
|
+
const message = createBaseBitfieldGet();
|
3982
|
+
message.encoding = object.encoding ?? "";
|
3983
|
+
message.offset = object.offset ?? "";
|
3984
|
+
return message;
|
3985
|
+
},
|
3986
|
+
};
|
3987
|
+
messageTypeRegistry.set(BitfieldGet.$type, BitfieldGet);
|
3988
|
+
function createBaseBitfieldSet() {
|
3989
|
+
return { encoding: "", offset: "", value: "" };
|
3990
|
+
}
|
3991
|
+
export const BitfieldSet = {
|
3992
|
+
$type: "devvit.plugin.redis.BitfieldSet",
|
3993
|
+
encode(message, writer = _m0.Writer.create()) {
|
3994
|
+
if (message.encoding !== "") {
|
3995
|
+
writer.uint32(10).string(message.encoding);
|
3996
|
+
}
|
3997
|
+
if (message.offset !== "") {
|
3998
|
+
writer.uint32(18).string(message.offset);
|
3999
|
+
}
|
4000
|
+
if (message.value !== "") {
|
4001
|
+
writer.uint32(26).string(message.value);
|
4002
|
+
}
|
4003
|
+
return writer;
|
4004
|
+
},
|
4005
|
+
decode(input, length) {
|
4006
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
4007
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
4008
|
+
const message = createBaseBitfieldSet();
|
4009
|
+
while (reader.pos < end) {
|
4010
|
+
const tag = reader.uint32();
|
4011
|
+
switch (tag >>> 3) {
|
4012
|
+
case 1:
|
4013
|
+
if (tag !== 10) {
|
4014
|
+
break;
|
4015
|
+
}
|
4016
|
+
message.encoding = reader.string();
|
4017
|
+
continue;
|
4018
|
+
case 2:
|
4019
|
+
if (tag !== 18) {
|
4020
|
+
break;
|
4021
|
+
}
|
4022
|
+
message.offset = reader.string();
|
4023
|
+
continue;
|
4024
|
+
case 3:
|
4025
|
+
if (tag !== 26) {
|
4026
|
+
break;
|
4027
|
+
}
|
4028
|
+
message.value = reader.string();
|
4029
|
+
continue;
|
4030
|
+
}
|
4031
|
+
if ((tag & 7) === 4 || tag === 0) {
|
4032
|
+
break;
|
4033
|
+
}
|
4034
|
+
reader.skipType(tag & 7);
|
4035
|
+
}
|
4036
|
+
return message;
|
4037
|
+
},
|
4038
|
+
fromJSON(object) {
|
4039
|
+
return {
|
4040
|
+
encoding: isSet(object.encoding) ? globalThis.String(object.encoding) : "",
|
4041
|
+
offset: isSet(object.offset) ? globalThis.String(object.offset) : "",
|
4042
|
+
value: isSet(object.value) ? globalThis.String(object.value) : "",
|
4043
|
+
};
|
4044
|
+
},
|
4045
|
+
toJSON(message) {
|
4046
|
+
const obj = {};
|
4047
|
+
if (message.encoding !== "") {
|
4048
|
+
obj.encoding = message.encoding;
|
4049
|
+
}
|
4050
|
+
if (message.offset !== "") {
|
4051
|
+
obj.offset = message.offset;
|
4052
|
+
}
|
4053
|
+
if (message.value !== "") {
|
4054
|
+
obj.value = message.value;
|
4055
|
+
}
|
4056
|
+
return obj;
|
4057
|
+
},
|
4058
|
+
create(base) {
|
4059
|
+
return BitfieldSet.fromPartial(base ?? {});
|
4060
|
+
},
|
4061
|
+
fromPartial(object) {
|
4062
|
+
const message = createBaseBitfieldSet();
|
4063
|
+
message.encoding = object.encoding ?? "";
|
4064
|
+
message.offset = object.offset ?? "";
|
4065
|
+
message.value = object.value ?? "";
|
4066
|
+
return message;
|
4067
|
+
},
|
4068
|
+
};
|
4069
|
+
messageTypeRegistry.set(BitfieldSet.$type, BitfieldSet);
|
4070
|
+
function createBaseBitfieldIncrBy() {
|
4071
|
+
return { encoding: "", offset: "", increment: "" };
|
4072
|
+
}
|
4073
|
+
export const BitfieldIncrBy = {
|
4074
|
+
$type: "devvit.plugin.redis.BitfieldIncrBy",
|
4075
|
+
encode(message, writer = _m0.Writer.create()) {
|
4076
|
+
if (message.encoding !== "") {
|
4077
|
+
writer.uint32(10).string(message.encoding);
|
4078
|
+
}
|
4079
|
+
if (message.offset !== "") {
|
4080
|
+
writer.uint32(18).string(message.offset);
|
4081
|
+
}
|
4082
|
+
if (message.increment !== "") {
|
4083
|
+
writer.uint32(26).string(message.increment);
|
4084
|
+
}
|
4085
|
+
return writer;
|
4086
|
+
},
|
4087
|
+
decode(input, length) {
|
4088
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
4089
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
4090
|
+
const message = createBaseBitfieldIncrBy();
|
4091
|
+
while (reader.pos < end) {
|
4092
|
+
const tag = reader.uint32();
|
4093
|
+
switch (tag >>> 3) {
|
4094
|
+
case 1:
|
4095
|
+
if (tag !== 10) {
|
4096
|
+
break;
|
4097
|
+
}
|
4098
|
+
message.encoding = reader.string();
|
4099
|
+
continue;
|
4100
|
+
case 2:
|
4101
|
+
if (tag !== 18) {
|
4102
|
+
break;
|
4103
|
+
}
|
4104
|
+
message.offset = reader.string();
|
4105
|
+
continue;
|
4106
|
+
case 3:
|
4107
|
+
if (tag !== 26) {
|
4108
|
+
break;
|
4109
|
+
}
|
4110
|
+
message.increment = reader.string();
|
4111
|
+
continue;
|
4112
|
+
}
|
4113
|
+
if ((tag & 7) === 4 || tag === 0) {
|
4114
|
+
break;
|
4115
|
+
}
|
4116
|
+
reader.skipType(tag & 7);
|
4117
|
+
}
|
4118
|
+
return message;
|
4119
|
+
},
|
4120
|
+
fromJSON(object) {
|
4121
|
+
return {
|
4122
|
+
encoding: isSet(object.encoding) ? globalThis.String(object.encoding) : "",
|
4123
|
+
offset: isSet(object.offset) ? globalThis.String(object.offset) : "",
|
4124
|
+
increment: isSet(object.increment) ? globalThis.String(object.increment) : "",
|
4125
|
+
};
|
4126
|
+
},
|
4127
|
+
toJSON(message) {
|
4128
|
+
const obj = {};
|
4129
|
+
if (message.encoding !== "") {
|
4130
|
+
obj.encoding = message.encoding;
|
4131
|
+
}
|
4132
|
+
if (message.offset !== "") {
|
4133
|
+
obj.offset = message.offset;
|
4134
|
+
}
|
4135
|
+
if (message.increment !== "") {
|
4136
|
+
obj.increment = message.increment;
|
4137
|
+
}
|
4138
|
+
return obj;
|
4139
|
+
},
|
4140
|
+
create(base) {
|
4141
|
+
return BitfieldIncrBy.fromPartial(base ?? {});
|
4142
|
+
},
|
4143
|
+
fromPartial(object) {
|
4144
|
+
const message = createBaseBitfieldIncrBy();
|
4145
|
+
message.encoding = object.encoding ?? "";
|
4146
|
+
message.offset = object.offset ?? "";
|
4147
|
+
message.increment = object.increment ?? "";
|
4148
|
+
return message;
|
4149
|
+
},
|
4150
|
+
};
|
4151
|
+
messageTypeRegistry.set(BitfieldIncrBy.$type, BitfieldIncrBy);
|
4152
|
+
function createBaseBitfieldOverflow() {
|
4153
|
+
return { behavior: 0 };
|
4154
|
+
}
|
4155
|
+
export const BitfieldOverflow = {
|
4156
|
+
$type: "devvit.plugin.redis.BitfieldOverflow",
|
4157
|
+
encode(message, writer = _m0.Writer.create()) {
|
4158
|
+
if (message.behavior !== 0) {
|
4159
|
+
writer.uint32(8).int32(message.behavior);
|
4160
|
+
}
|
4161
|
+
return writer;
|
4162
|
+
},
|
4163
|
+
decode(input, length) {
|
4164
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
4165
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
4166
|
+
const message = createBaseBitfieldOverflow();
|
4167
|
+
while (reader.pos < end) {
|
4168
|
+
const tag = reader.uint32();
|
4169
|
+
switch (tag >>> 3) {
|
4170
|
+
case 1:
|
4171
|
+
if (tag !== 8) {
|
4172
|
+
break;
|
4173
|
+
}
|
4174
|
+
message.behavior = reader.int32();
|
4175
|
+
continue;
|
4176
|
+
}
|
4177
|
+
if ((tag & 7) === 4 || tag === 0) {
|
4178
|
+
break;
|
4179
|
+
}
|
4180
|
+
reader.skipType(tag & 7);
|
4181
|
+
}
|
4182
|
+
return message;
|
4183
|
+
},
|
4184
|
+
fromJSON(object) {
|
4185
|
+
return { behavior: isSet(object.behavior) ? bitfieldOverflowBehaviorFromJSON(object.behavior) : 0 };
|
4186
|
+
},
|
4187
|
+
toJSON(message) {
|
4188
|
+
const obj = {};
|
4189
|
+
if (message.behavior !== 0) {
|
4190
|
+
obj.behavior = bitfieldOverflowBehaviorToJSON(message.behavior);
|
4191
|
+
}
|
4192
|
+
return obj;
|
4193
|
+
},
|
4194
|
+
create(base) {
|
4195
|
+
return BitfieldOverflow.fromPartial(base ?? {});
|
4196
|
+
},
|
4197
|
+
fromPartial(object) {
|
4198
|
+
const message = createBaseBitfieldOverflow();
|
4199
|
+
message.behavior = object.behavior ?? 0;
|
4200
|
+
return message;
|
4201
|
+
},
|
4202
|
+
};
|
4203
|
+
messageTypeRegistry.set(BitfieldOverflow.$type, BitfieldOverflow);
|
4204
|
+
function createBaseBitfieldResponse() {
|
4205
|
+
return { results: [] };
|
4206
|
+
}
|
4207
|
+
export const BitfieldResponse = {
|
4208
|
+
$type: "devvit.plugin.redis.BitfieldResponse",
|
4209
|
+
encode(message, writer = _m0.Writer.create()) {
|
4210
|
+
writer.uint32(10).fork();
|
4211
|
+
for (const v of message.results) {
|
4212
|
+
writer.int64(v);
|
4213
|
+
}
|
4214
|
+
writer.ldelim();
|
4215
|
+
return writer;
|
4216
|
+
},
|
4217
|
+
decode(input, length) {
|
4218
|
+
const reader = input instanceof _m0.Reader ? input : _m0.Reader.create(input);
|
4219
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
4220
|
+
const message = createBaseBitfieldResponse();
|
4221
|
+
while (reader.pos < end) {
|
4222
|
+
const tag = reader.uint32();
|
4223
|
+
switch (tag >>> 3) {
|
4224
|
+
case 1:
|
4225
|
+
if (tag === 8) {
|
4226
|
+
message.results.push(longToNumber(reader.int64()));
|
4227
|
+
continue;
|
4228
|
+
}
|
4229
|
+
if (tag === 10) {
|
4230
|
+
const end2 = reader.uint32() + reader.pos;
|
4231
|
+
while (reader.pos < end2) {
|
4232
|
+
message.results.push(longToNumber(reader.int64()));
|
4233
|
+
}
|
4234
|
+
continue;
|
4235
|
+
}
|
4236
|
+
break;
|
4237
|
+
}
|
4238
|
+
if ((tag & 7) === 4 || tag === 0) {
|
4239
|
+
break;
|
4240
|
+
}
|
4241
|
+
reader.skipType(tag & 7);
|
4242
|
+
}
|
4243
|
+
return message;
|
4244
|
+
},
|
4245
|
+
fromJSON(object) {
|
4246
|
+
return {
|
4247
|
+
results: globalThis.Array.isArray(object?.results) ? object.results.map((e) => globalThis.Number(e)) : [],
|
4248
|
+
};
|
4249
|
+
},
|
4250
|
+
toJSON(message) {
|
4251
|
+
const obj = {};
|
4252
|
+
if (message.results?.length) {
|
4253
|
+
obj.results = message.results.map((e) => Math.round(e));
|
4254
|
+
}
|
4255
|
+
return obj;
|
4256
|
+
},
|
4257
|
+
create(base) {
|
4258
|
+
return BitfieldResponse.fromPartial(base ?? {});
|
4259
|
+
},
|
4260
|
+
fromPartial(object) {
|
4261
|
+
const message = createBaseBitfieldResponse();
|
4262
|
+
message.results = object.results?.map((e) => e) || [];
|
4263
|
+
return message;
|
4264
|
+
},
|
4265
|
+
};
|
4266
|
+
messageTypeRegistry.set(BitfieldResponse.$type, BitfieldResponse);
|
3691
4267
|
export const RedisAPIServiceName = "devvit.plugin.redis.RedisAPI";
|
3692
4268
|
export class RedisAPIClientImpl {
|
3693
4269
|
constructor(rpc, opts) {
|
@@ -3730,6 +4306,7 @@ export class RedisAPIClientImpl {
|
|
3730
4306
|
this.ZRank = this.ZRank.bind(this);
|
3731
4307
|
this.ZIncrBy = this.ZIncrBy.bind(this);
|
3732
4308
|
this.ZScan = this.ZScan.bind(this);
|
4309
|
+
this.Bitfield = this.Bitfield.bind(this);
|
3733
4310
|
}
|
3734
4311
|
Get(request, metadata) {
|
3735
4312
|
const data = KeyRequest.encode(request).finish();
|
@@ -3916,6 +4493,11 @@ export class RedisAPIClientImpl {
|
|
3916
4493
|
const promise = this.rpc.request(this.service, "ZScan", data, metadata);
|
3917
4494
|
return promise.then((data) => ZScanResponse.decode(_m0.Reader.create(data)));
|
3918
4495
|
}
|
4496
|
+
Bitfield(request, metadata) {
|
4497
|
+
const data = BitfieldRequest.encode(request).finish();
|
4498
|
+
const promise = this.rpc.request(this.service, "Bitfield", data, metadata);
|
4499
|
+
return promise.then((data) => BitfieldResponse.decode(_m0.Reader.create(data)));
|
4500
|
+
}
|
3919
4501
|
}
|
3920
4502
|
export const RedisAPIDefinition = {
|
3921
4503
|
name: "RedisAPI",
|
@@ -4225,6 +4807,15 @@ export const RedisAPIDefinition = {
|
|
4225
4807
|
responseStream: false,
|
4226
4808
|
options: {},
|
4227
4809
|
},
|
4810
|
+
/** Bitfield */
|
4811
|
+
bitfield: {
|
4812
|
+
name: "Bitfield",
|
4813
|
+
requestType: BitfieldRequest,
|
4814
|
+
requestStream: false,
|
4815
|
+
responseType: BitfieldResponse,
|
4816
|
+
responseStream: false,
|
4817
|
+
options: {},
|
4818
|
+
},
|
4228
4819
|
},
|
4229
4820
|
};
|
4230
4821
|
function longToNumber(long) {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { KeyRequest, SetRequest, KeysRequest, IncrByRequest, HSetRequest, HGetRequest, HMGetRequest, RedisValues, RedisFieldValues, HDelRequest, HScanRequest, HScanResponse, KeysResponse, HIncrByRequest, TransactionId, TransactionResponses, WatchRequest, KeyRangeRequest, SetRangeRequest, KeyValuesRequest, ExpireRequest, ZAddRequest, ZRangeRequest, ZMembers, ZRemRequest, ZRemRangeByLexRequest, ZRemRangeByRankRequest, ZRemRangeByScoreRequest, ZScoreRequest, ZRankRequest, ZIncrByRequest, ZScanRequest, ZScanResponse } from './redisapi.js';
|
1
|
+
import { KeyRequest, SetRequest, KeysRequest, IncrByRequest, HSetRequest, HGetRequest, HMGetRequest, RedisValues, RedisFieldValues, HDelRequest, HScanRequest, HScanResponse, KeysResponse, HIncrByRequest, TransactionId, TransactionResponses, WatchRequest, KeyRangeRequest, SetRangeRequest, KeyValuesRequest, ExpireRequest, ZAddRequest, ZRangeRequest, ZMembers, ZRemRequest, ZRemRangeByLexRequest, ZRemRangeByRankRequest, ZRemRangeByScoreRequest, ZScoreRequest, ZRankRequest, ZIncrByRequest, ZScanRequest, ZScanResponse, BitfieldRequest, BitfieldResponse } from './redisapi.js';
|
2
2
|
import { StringValue, Int64Value, DoubleValue } from '../../../google/protobuf/wrappers.js';
|
3
3
|
import { Empty } from '../../../google/protobuf/empty.js';
|
4
4
|
interface Rpc {
|
@@ -42,6 +42,7 @@ export interface RedisAPIClient {
|
|
42
42
|
ZRank(request: ZRankRequest): Promise<Int64Value>;
|
43
43
|
ZIncrBy(request: ZIncrByRequest): Promise<DoubleValue>;
|
44
44
|
ZScan(request: ZScanRequest): Promise<ZScanResponse>;
|
45
|
+
Bitfield(request: BitfieldRequest): Promise<BitfieldResponse>;
|
45
46
|
}
|
46
47
|
export declare class RedisAPIClientJSON implements RedisAPIClient {
|
47
48
|
private readonly rpc;
|
@@ -83,6 +84,7 @@ export declare class RedisAPIClientJSON implements RedisAPIClient {
|
|
83
84
|
ZRank(request: ZRankRequest): Promise<Int64Value>;
|
84
85
|
ZIncrBy(request: ZIncrByRequest): Promise<DoubleValue>;
|
85
86
|
ZScan(request: ZScanRequest): Promise<ZScanResponse>;
|
87
|
+
Bitfield(request: BitfieldRequest): Promise<BitfieldResponse>;
|
86
88
|
}
|
87
89
|
export declare class RedisAPIClientProtobuf implements RedisAPIClient {
|
88
90
|
private readonly rpc;
|
@@ -124,6 +126,7 @@ export declare class RedisAPIClientProtobuf implements RedisAPIClient {
|
|
124
126
|
ZRank(request: ZRankRequest): Promise<Int64Value>;
|
125
127
|
ZIncrBy(request: ZIncrByRequest): Promise<DoubleValue>;
|
126
128
|
ZScan(request: ZScanRequest): Promise<ZScanResponse>;
|
129
|
+
Bitfield(request: BitfieldRequest): Promise<BitfieldResponse>;
|
127
130
|
}
|
128
131
|
export {};
|
129
132
|
//# sourceMappingURL=redisapi.twirp-client.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"redisapi.twirp-client.d.ts","sourceRoot":"","sources":["../../../../../src/types/devvit/plugin/redis/redisapi.twirp-client.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,UAAU,EACV,UAAU,EACV,WAAW,EACX,aAAa,EACb,WAAW,EACX,WAAW,EACX,YAAY,EACZ,WAAW,EACX,gBAAgB,EAChB,WAAW,EACX,YAAY,EACZ,aAAa,EACb,YAAY,EACZ,cAAc,EACd,aAAa,EACb,oBAAoB,EACpB,YAAY,EACZ,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,aAAa,EACb,WAAW,EACX,aAAa,EACb,QAAQ,EACR,WAAW,EACX,qBAAqB,EACrB,sBAAsB,EACtB,uBAAuB,EACvB,aAAa,EACb,YAAY,EACZ,cAAc,EACd,YAAY,EACZ,aAAa,
|
1
|
+
{"version":3,"file":"redisapi.twirp-client.d.ts","sourceRoot":"","sources":["../../../../../src/types/devvit/plugin/redis/redisapi.twirp-client.ts"],"names":[],"mappings":"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"}
|