@dcl/protocol 1.0.0-16571562775.commit-b0f1f6b → 1.0.0-16670787325.commit-554f0f2

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.
@@ -0,0 +1,96 @@
1
+ import _m0 from "protobufjs/minimal";
2
+ export declare const protobufPackage = "decentraland.social_service";
3
+ export interface InvalidFriendshipAction {
4
+ message?: string | undefined;
5
+ }
6
+ export interface InternalServerError {
7
+ message?: string | undefined;
8
+ }
9
+ export interface InvalidRequest {
10
+ message?: string | undefined;
11
+ }
12
+ export interface ProfileNotFound {
13
+ message?: string | undefined;
14
+ }
15
+ export interface ConflictingError {
16
+ message?: string | undefined;
17
+ }
18
+ export interface ForbiddenError {
19
+ message?: string | undefined;
20
+ }
21
+ export interface NotFoundError {
22
+ message?: string | undefined;
23
+ }
24
+ export declare namespace InvalidFriendshipAction {
25
+ function encode(message: InvalidFriendshipAction, writer?: _m0.Writer): _m0.Writer;
26
+ function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidFriendshipAction;
27
+ function fromJSON(object: any): InvalidFriendshipAction;
28
+ function toJSON(message: InvalidFriendshipAction): unknown;
29
+ function create<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(base?: I): InvalidFriendshipAction;
30
+ function fromPartial<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(object: I): InvalidFriendshipAction;
31
+ }
32
+ export declare namespace InternalServerError {
33
+ function encode(message: InternalServerError, writer?: _m0.Writer): _m0.Writer;
34
+ function decode(input: _m0.Reader | Uint8Array, length?: number): InternalServerError;
35
+ function fromJSON(object: any): InternalServerError;
36
+ function toJSON(message: InternalServerError): unknown;
37
+ function create<I extends Exact<DeepPartial<InternalServerError>, I>>(base?: I): InternalServerError;
38
+ function fromPartial<I extends Exact<DeepPartial<InternalServerError>, I>>(object: I): InternalServerError;
39
+ }
40
+ export declare namespace InvalidRequest {
41
+ function encode(message: InvalidRequest, writer?: _m0.Writer): _m0.Writer;
42
+ function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidRequest;
43
+ function fromJSON(object: any): InvalidRequest;
44
+ function toJSON(message: InvalidRequest): unknown;
45
+ function create<I extends Exact<DeepPartial<InvalidRequest>, I>>(base?: I): InvalidRequest;
46
+ function fromPartial<I extends Exact<DeepPartial<InvalidRequest>, I>>(object: I): InvalidRequest;
47
+ }
48
+ export declare namespace ProfileNotFound {
49
+ function encode(message: ProfileNotFound, writer?: _m0.Writer): _m0.Writer;
50
+ function decode(input: _m0.Reader | Uint8Array, length?: number): ProfileNotFound;
51
+ function fromJSON(object: any): ProfileNotFound;
52
+ function toJSON(message: ProfileNotFound): unknown;
53
+ function create<I extends Exact<DeepPartial<ProfileNotFound>, I>>(base?: I): ProfileNotFound;
54
+ function fromPartial<I extends Exact<DeepPartial<ProfileNotFound>, I>>(object: I): ProfileNotFound;
55
+ }
56
+ export declare namespace ConflictingError {
57
+ function encode(message: ConflictingError, writer?: _m0.Writer): _m0.Writer;
58
+ function decode(input: _m0.Reader | Uint8Array, length?: number): ConflictingError;
59
+ function fromJSON(object: any): ConflictingError;
60
+ function toJSON(message: ConflictingError): unknown;
61
+ function create<I extends Exact<DeepPartial<ConflictingError>, I>>(base?: I): ConflictingError;
62
+ function fromPartial<I extends Exact<DeepPartial<ConflictingError>, I>>(object: I): ConflictingError;
63
+ }
64
+ export declare namespace ForbiddenError {
65
+ function encode(message: ForbiddenError, writer?: _m0.Writer): _m0.Writer;
66
+ function decode(input: _m0.Reader | Uint8Array, length?: number): ForbiddenError;
67
+ function fromJSON(object: any): ForbiddenError;
68
+ function toJSON(message: ForbiddenError): unknown;
69
+ function create<I extends Exact<DeepPartial<ForbiddenError>, I>>(base?: I): ForbiddenError;
70
+ function fromPartial<I extends Exact<DeepPartial<ForbiddenError>, I>>(object: I): ForbiddenError;
71
+ }
72
+ export declare namespace NotFoundError {
73
+ function encode(message: NotFoundError, writer?: _m0.Writer): _m0.Writer;
74
+ function decode(input: _m0.Reader | Uint8Array, length?: number): NotFoundError;
75
+ function fromJSON(object: any): NotFoundError;
76
+ function toJSON(message: NotFoundError): unknown;
77
+ function create<I extends Exact<DeepPartial<NotFoundError>, I>>(base?: I): NotFoundError;
78
+ function fromPartial<I extends Exact<DeepPartial<NotFoundError>, I>>(object: I): NotFoundError;
79
+ }
80
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
81
+ export type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {
82
+ $case: string;
83
+ } ? {
84
+ [K in keyof Omit<T, "$case">]?: DeepPartial<T[K]>;
85
+ } & {
86
+ $case: T["$case"];
87
+ } : T extends {} ? {
88
+ [K in keyof T]?: DeepPartial<T[K]>;
89
+ } : Partial<T>;
90
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
91
+ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
92
+ [K in keyof P]: Exact<P[K], I[K]>;
93
+ } & {
94
+ [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
95
+ };
96
+ export {};
@@ -0,0 +1,405 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.NotFoundError = exports.ForbiddenError = exports.ConflictingError = exports.ProfileNotFound = exports.InvalidRequest = exports.InternalServerError = exports.InvalidFriendshipAction = exports.protobufPackage = void 0;
7
+ /* eslint-disable */
8
+ const minimal_1 = __importDefault(require("protobufjs/minimal"));
9
+ exports.protobufPackage = "decentraland.social_service";
10
+ function createBaseInvalidFriendshipAction() {
11
+ return { message: undefined };
12
+ }
13
+ var InvalidFriendshipAction;
14
+ (function (InvalidFriendshipAction) {
15
+ function encode(message, writer = minimal_1.default.Writer.create()) {
16
+ if (message.message !== undefined) {
17
+ writer.uint32(10).string(message.message);
18
+ }
19
+ return writer;
20
+ }
21
+ InvalidFriendshipAction.encode = encode;
22
+ function decode(input, length) {
23
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
24
+ let end = length === undefined ? reader.len : reader.pos + length;
25
+ const message = createBaseInvalidFriendshipAction();
26
+ while (reader.pos < end) {
27
+ const tag = reader.uint32();
28
+ switch (tag >>> 3) {
29
+ case 1:
30
+ if (tag !== 10) {
31
+ break;
32
+ }
33
+ message.message = reader.string();
34
+ continue;
35
+ }
36
+ if ((tag & 7) === 4 || tag === 0) {
37
+ break;
38
+ }
39
+ reader.skipType(tag & 7);
40
+ }
41
+ return message;
42
+ }
43
+ InvalidFriendshipAction.decode = decode;
44
+ function fromJSON(object) {
45
+ return { message: isSet(object.message) ? String(object.message) : undefined };
46
+ }
47
+ InvalidFriendshipAction.fromJSON = fromJSON;
48
+ function toJSON(message) {
49
+ const obj = {};
50
+ message.message !== undefined && (obj.message = message.message);
51
+ return obj;
52
+ }
53
+ InvalidFriendshipAction.toJSON = toJSON;
54
+ function create(base) {
55
+ return InvalidFriendshipAction.fromPartial(base !== null && base !== void 0 ? base : {});
56
+ }
57
+ InvalidFriendshipAction.create = create;
58
+ function fromPartial(object) {
59
+ var _a;
60
+ const message = createBaseInvalidFriendshipAction();
61
+ message.message = (_a = object.message) !== null && _a !== void 0 ? _a : undefined;
62
+ return message;
63
+ }
64
+ InvalidFriendshipAction.fromPartial = fromPartial;
65
+ })(InvalidFriendshipAction || (exports.InvalidFriendshipAction = InvalidFriendshipAction = {}));
66
+ function createBaseInternalServerError() {
67
+ return { message: undefined };
68
+ }
69
+ var InternalServerError;
70
+ (function (InternalServerError) {
71
+ function encode(message, writer = minimal_1.default.Writer.create()) {
72
+ if (message.message !== undefined) {
73
+ writer.uint32(10).string(message.message);
74
+ }
75
+ return writer;
76
+ }
77
+ InternalServerError.encode = encode;
78
+ function decode(input, length) {
79
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
80
+ let end = length === undefined ? reader.len : reader.pos + length;
81
+ const message = createBaseInternalServerError();
82
+ while (reader.pos < end) {
83
+ const tag = reader.uint32();
84
+ switch (tag >>> 3) {
85
+ case 1:
86
+ if (tag !== 10) {
87
+ break;
88
+ }
89
+ message.message = reader.string();
90
+ continue;
91
+ }
92
+ if ((tag & 7) === 4 || tag === 0) {
93
+ break;
94
+ }
95
+ reader.skipType(tag & 7);
96
+ }
97
+ return message;
98
+ }
99
+ InternalServerError.decode = decode;
100
+ function fromJSON(object) {
101
+ return { message: isSet(object.message) ? String(object.message) : undefined };
102
+ }
103
+ InternalServerError.fromJSON = fromJSON;
104
+ function toJSON(message) {
105
+ const obj = {};
106
+ message.message !== undefined && (obj.message = message.message);
107
+ return obj;
108
+ }
109
+ InternalServerError.toJSON = toJSON;
110
+ function create(base) {
111
+ return InternalServerError.fromPartial(base !== null && base !== void 0 ? base : {});
112
+ }
113
+ InternalServerError.create = create;
114
+ function fromPartial(object) {
115
+ var _a;
116
+ const message = createBaseInternalServerError();
117
+ message.message = (_a = object.message) !== null && _a !== void 0 ? _a : undefined;
118
+ return message;
119
+ }
120
+ InternalServerError.fromPartial = fromPartial;
121
+ })(InternalServerError || (exports.InternalServerError = InternalServerError = {}));
122
+ function createBaseInvalidRequest() {
123
+ return { message: undefined };
124
+ }
125
+ var InvalidRequest;
126
+ (function (InvalidRequest) {
127
+ function encode(message, writer = minimal_1.default.Writer.create()) {
128
+ if (message.message !== undefined) {
129
+ writer.uint32(10).string(message.message);
130
+ }
131
+ return writer;
132
+ }
133
+ InvalidRequest.encode = encode;
134
+ function decode(input, length) {
135
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
136
+ let end = length === undefined ? reader.len : reader.pos + length;
137
+ const message = createBaseInvalidRequest();
138
+ while (reader.pos < end) {
139
+ const tag = reader.uint32();
140
+ switch (tag >>> 3) {
141
+ case 1:
142
+ if (tag !== 10) {
143
+ break;
144
+ }
145
+ message.message = reader.string();
146
+ continue;
147
+ }
148
+ if ((tag & 7) === 4 || tag === 0) {
149
+ break;
150
+ }
151
+ reader.skipType(tag & 7);
152
+ }
153
+ return message;
154
+ }
155
+ InvalidRequest.decode = decode;
156
+ function fromJSON(object) {
157
+ return { message: isSet(object.message) ? String(object.message) : undefined };
158
+ }
159
+ InvalidRequest.fromJSON = fromJSON;
160
+ function toJSON(message) {
161
+ const obj = {};
162
+ message.message !== undefined && (obj.message = message.message);
163
+ return obj;
164
+ }
165
+ InvalidRequest.toJSON = toJSON;
166
+ function create(base) {
167
+ return InvalidRequest.fromPartial(base !== null && base !== void 0 ? base : {});
168
+ }
169
+ InvalidRequest.create = create;
170
+ function fromPartial(object) {
171
+ var _a;
172
+ const message = createBaseInvalidRequest();
173
+ message.message = (_a = object.message) !== null && _a !== void 0 ? _a : undefined;
174
+ return message;
175
+ }
176
+ InvalidRequest.fromPartial = fromPartial;
177
+ })(InvalidRequest || (exports.InvalidRequest = InvalidRequest = {}));
178
+ function createBaseProfileNotFound() {
179
+ return { message: undefined };
180
+ }
181
+ var ProfileNotFound;
182
+ (function (ProfileNotFound) {
183
+ function encode(message, writer = minimal_1.default.Writer.create()) {
184
+ if (message.message !== undefined) {
185
+ writer.uint32(10).string(message.message);
186
+ }
187
+ return writer;
188
+ }
189
+ ProfileNotFound.encode = encode;
190
+ function decode(input, length) {
191
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
192
+ let end = length === undefined ? reader.len : reader.pos + length;
193
+ const message = createBaseProfileNotFound();
194
+ while (reader.pos < end) {
195
+ const tag = reader.uint32();
196
+ switch (tag >>> 3) {
197
+ case 1:
198
+ if (tag !== 10) {
199
+ break;
200
+ }
201
+ message.message = reader.string();
202
+ continue;
203
+ }
204
+ if ((tag & 7) === 4 || tag === 0) {
205
+ break;
206
+ }
207
+ reader.skipType(tag & 7);
208
+ }
209
+ return message;
210
+ }
211
+ ProfileNotFound.decode = decode;
212
+ function fromJSON(object) {
213
+ return { message: isSet(object.message) ? String(object.message) : undefined };
214
+ }
215
+ ProfileNotFound.fromJSON = fromJSON;
216
+ function toJSON(message) {
217
+ const obj = {};
218
+ message.message !== undefined && (obj.message = message.message);
219
+ return obj;
220
+ }
221
+ ProfileNotFound.toJSON = toJSON;
222
+ function create(base) {
223
+ return ProfileNotFound.fromPartial(base !== null && base !== void 0 ? base : {});
224
+ }
225
+ ProfileNotFound.create = create;
226
+ function fromPartial(object) {
227
+ var _a;
228
+ const message = createBaseProfileNotFound();
229
+ message.message = (_a = object.message) !== null && _a !== void 0 ? _a : undefined;
230
+ return message;
231
+ }
232
+ ProfileNotFound.fromPartial = fromPartial;
233
+ })(ProfileNotFound || (exports.ProfileNotFound = ProfileNotFound = {}));
234
+ function createBaseConflictingError() {
235
+ return { message: undefined };
236
+ }
237
+ var ConflictingError;
238
+ (function (ConflictingError) {
239
+ function encode(message, writer = minimal_1.default.Writer.create()) {
240
+ if (message.message !== undefined) {
241
+ writer.uint32(10).string(message.message);
242
+ }
243
+ return writer;
244
+ }
245
+ ConflictingError.encode = encode;
246
+ function decode(input, length) {
247
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
248
+ let end = length === undefined ? reader.len : reader.pos + length;
249
+ const message = createBaseConflictingError();
250
+ while (reader.pos < end) {
251
+ const tag = reader.uint32();
252
+ switch (tag >>> 3) {
253
+ case 1:
254
+ if (tag !== 10) {
255
+ break;
256
+ }
257
+ message.message = reader.string();
258
+ continue;
259
+ }
260
+ if ((tag & 7) === 4 || tag === 0) {
261
+ break;
262
+ }
263
+ reader.skipType(tag & 7);
264
+ }
265
+ return message;
266
+ }
267
+ ConflictingError.decode = decode;
268
+ function fromJSON(object) {
269
+ return { message: isSet(object.message) ? String(object.message) : undefined };
270
+ }
271
+ ConflictingError.fromJSON = fromJSON;
272
+ function toJSON(message) {
273
+ const obj = {};
274
+ message.message !== undefined && (obj.message = message.message);
275
+ return obj;
276
+ }
277
+ ConflictingError.toJSON = toJSON;
278
+ function create(base) {
279
+ return ConflictingError.fromPartial(base !== null && base !== void 0 ? base : {});
280
+ }
281
+ ConflictingError.create = create;
282
+ function fromPartial(object) {
283
+ var _a;
284
+ const message = createBaseConflictingError();
285
+ message.message = (_a = object.message) !== null && _a !== void 0 ? _a : undefined;
286
+ return message;
287
+ }
288
+ ConflictingError.fromPartial = fromPartial;
289
+ })(ConflictingError || (exports.ConflictingError = ConflictingError = {}));
290
+ function createBaseForbiddenError() {
291
+ return { message: undefined };
292
+ }
293
+ var ForbiddenError;
294
+ (function (ForbiddenError) {
295
+ function encode(message, writer = minimal_1.default.Writer.create()) {
296
+ if (message.message !== undefined) {
297
+ writer.uint32(10).string(message.message);
298
+ }
299
+ return writer;
300
+ }
301
+ ForbiddenError.encode = encode;
302
+ function decode(input, length) {
303
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
304
+ let end = length === undefined ? reader.len : reader.pos + length;
305
+ const message = createBaseForbiddenError();
306
+ while (reader.pos < end) {
307
+ const tag = reader.uint32();
308
+ switch (tag >>> 3) {
309
+ case 1:
310
+ if (tag !== 10) {
311
+ break;
312
+ }
313
+ message.message = reader.string();
314
+ continue;
315
+ }
316
+ if ((tag & 7) === 4 || tag === 0) {
317
+ break;
318
+ }
319
+ reader.skipType(tag & 7);
320
+ }
321
+ return message;
322
+ }
323
+ ForbiddenError.decode = decode;
324
+ function fromJSON(object) {
325
+ return { message: isSet(object.message) ? String(object.message) : undefined };
326
+ }
327
+ ForbiddenError.fromJSON = fromJSON;
328
+ function toJSON(message) {
329
+ const obj = {};
330
+ message.message !== undefined && (obj.message = message.message);
331
+ return obj;
332
+ }
333
+ ForbiddenError.toJSON = toJSON;
334
+ function create(base) {
335
+ return ForbiddenError.fromPartial(base !== null && base !== void 0 ? base : {});
336
+ }
337
+ ForbiddenError.create = create;
338
+ function fromPartial(object) {
339
+ var _a;
340
+ const message = createBaseForbiddenError();
341
+ message.message = (_a = object.message) !== null && _a !== void 0 ? _a : undefined;
342
+ return message;
343
+ }
344
+ ForbiddenError.fromPartial = fromPartial;
345
+ })(ForbiddenError || (exports.ForbiddenError = ForbiddenError = {}));
346
+ function createBaseNotFoundError() {
347
+ return { message: undefined };
348
+ }
349
+ var NotFoundError;
350
+ (function (NotFoundError) {
351
+ function encode(message, writer = minimal_1.default.Writer.create()) {
352
+ if (message.message !== undefined) {
353
+ writer.uint32(10).string(message.message);
354
+ }
355
+ return writer;
356
+ }
357
+ NotFoundError.encode = encode;
358
+ function decode(input, length) {
359
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
360
+ let end = length === undefined ? reader.len : reader.pos + length;
361
+ const message = createBaseNotFoundError();
362
+ while (reader.pos < end) {
363
+ const tag = reader.uint32();
364
+ switch (tag >>> 3) {
365
+ case 1:
366
+ if (tag !== 10) {
367
+ break;
368
+ }
369
+ message.message = reader.string();
370
+ continue;
371
+ }
372
+ if ((tag & 7) === 4 || tag === 0) {
373
+ break;
374
+ }
375
+ reader.skipType(tag & 7);
376
+ }
377
+ return message;
378
+ }
379
+ NotFoundError.decode = decode;
380
+ function fromJSON(object) {
381
+ return { message: isSet(object.message) ? String(object.message) : undefined };
382
+ }
383
+ NotFoundError.fromJSON = fromJSON;
384
+ function toJSON(message) {
385
+ const obj = {};
386
+ message.message !== undefined && (obj.message = message.message);
387
+ return obj;
388
+ }
389
+ NotFoundError.toJSON = toJSON;
390
+ function create(base) {
391
+ return NotFoundError.fromPartial(base !== null && base !== void 0 ? base : {});
392
+ }
393
+ NotFoundError.create = create;
394
+ function fromPartial(object) {
395
+ var _a;
396
+ const message = createBaseNotFoundError();
397
+ message.message = (_a = object.message) !== null && _a !== void 0 ? _a : undefined;
398
+ return message;
399
+ }
400
+ NotFoundError.fromPartial = fromPartial;
401
+ })(NotFoundError || (exports.NotFoundError = NotFoundError = {}));
402
+ function isSet(value) {
403
+ return value !== null && value !== undefined;
404
+ }
405
+ //# sourceMappingURL=errors.gen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"errors.gen.js","sourceRoot":"","sources":["../../../out-ts/decentraland/social_service/errors.gen.ts"],"names":[],"mappings":";;;;;;AAAA,oBAAoB;AACpB,iEAAqC;AAExB,QAAA,eAAe,GAAG,6BAA6B,CAAC;AA8B7D,SAAS,iCAAiC;IACxC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC;AAChC,CAAC;AAED,IAAiB,uBAAuB,CAoDvC;AApDD,WAAiB,uBAAuB;IACtC,SAAgB,MAAM,CAAC,OAAgC,EAAE,SAAqB,iBAAG,CAAC,MAAM,CAAC,MAAM,EAAE;QAC/F,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAClC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IALe,8BAAM,SAKrB,CAAA;IAED,SAAgB,MAAM,CAAC,KAA8B,EAAE,MAAe;QACpE,MAAM,MAAM,GAAG,KAAK,YAAY,iBAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,iBAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAI,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QAClE,MAAM,OAAO,GAAG,iCAAiC,EAAE,CAAC;QACpD,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC;oBACJ,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAClC,SAAS;YACb,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IArBe,8BAAM,SAqBrB,CAAA;IAED,SAAgB,QAAQ,CAAC,MAAW;QAClC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;IACjF,CAAC;IAFe,gCAAQ,WAEvB,CAAA;IAED,SAAgB,MAAM,CAAC,OAAgC;QACrD,MAAM,GAAG,GAAQ,EAAE,CAAC;QACpB,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;QACjE,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,8BAAM,SAIrB,CAAA;IAED,SAAgB,MAAM,CAA2D,IAAQ;QACvF,OAAO,uBAAuB,CAAC,WAAW,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,EAAE,CAAC,CAAC;IACzD,CAAC;IAFe,8BAAM,SAErB,CAAA;IAED,SAAgB,WAAW,CACzB,MAAS;;QAET,MAAM,OAAO,GAAG,iCAAiC,EAAE,CAAC;QACpD,OAAO,CAAC,OAAO,GAAG,MAAA,MAAM,CAAC,OAAO,mCAAI,SAAS,CAAC;QAC9C,OAAO,OAAO,CAAC;IACjB,CAAC;IANe,mCAAW,cAM1B,CAAA;AACH,CAAC,EApDgB,uBAAuB,uCAAvB,uBAAuB,QAoDvC;AAED,SAAS,6BAA6B;IACpC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC;AAChC,CAAC;AAED,IAAiB,mBAAmB,CAkDnC;AAlDD,WAAiB,mBAAmB;IAClC,SAAgB,MAAM,CAAC,OAA4B,EAAE,SAAqB,iBAAG,CAAC,MAAM,CAAC,MAAM,EAAE;QAC3F,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAClC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IALe,0BAAM,SAKrB,CAAA;IAED,SAAgB,MAAM,CAAC,KAA8B,EAAE,MAAe;QACpE,MAAM,MAAM,GAAG,KAAK,YAAY,iBAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,iBAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAI,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QAClE,MAAM,OAAO,GAAG,6BAA6B,EAAE,CAAC;QAChD,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC;oBACJ,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAClC,SAAS;YACb,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IArBe,0BAAM,SAqBrB,CAAA;IAED,SAAgB,QAAQ,CAAC,MAAW;QAClC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;IACjF,CAAC;IAFe,4BAAQ,WAEvB,CAAA;IAED,SAAgB,MAAM,CAAC,OAA4B;QACjD,MAAM,GAAG,GAAQ,EAAE,CAAC;QACpB,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;QACjE,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,0BAAM,SAIrB,CAAA;IAED,SAAgB,MAAM,CAAuD,IAAQ;QACnF,OAAO,mBAAmB,CAAC,WAAW,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,EAAE,CAAC,CAAC;IACrD,CAAC;IAFe,0BAAM,SAErB,CAAA;IAED,SAAgB,WAAW,CAAuD,MAAS;;QACzF,MAAM,OAAO,GAAG,6BAA6B,EAAE,CAAC;QAChD,OAAO,CAAC,OAAO,GAAG,MAAA,MAAM,CAAC,OAAO,mCAAI,SAAS,CAAC;QAC9C,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,+BAAW,cAI1B,CAAA;AACH,CAAC,EAlDgB,mBAAmB,mCAAnB,mBAAmB,QAkDnC;AAED,SAAS,wBAAwB;IAC/B,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC;AAChC,CAAC;AAED,IAAiB,cAAc,CAkD9B;AAlDD,WAAiB,cAAc;IAC7B,SAAgB,MAAM,CAAC,OAAuB,EAAE,SAAqB,iBAAG,CAAC,MAAM,CAAC,MAAM,EAAE;QACtF,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAClC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IALe,qBAAM,SAKrB,CAAA;IAED,SAAgB,MAAM,CAAC,KAA8B,EAAE,MAAe;QACpE,MAAM,MAAM,GAAG,KAAK,YAAY,iBAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,iBAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAI,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QAClE,MAAM,OAAO,GAAG,wBAAwB,EAAE,CAAC;QAC3C,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC;oBACJ,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAClC,SAAS;YACb,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IArBe,qBAAM,SAqBrB,CAAA;IAED,SAAgB,QAAQ,CAAC,MAAW;QAClC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;IACjF,CAAC;IAFe,uBAAQ,WAEvB,CAAA;IAED,SAAgB,MAAM,CAAC,OAAuB;QAC5C,MAAM,GAAG,GAAQ,EAAE,CAAC;QACpB,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;QACjE,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,qBAAM,SAIrB,CAAA;IAED,SAAgB,MAAM,CAAkD,IAAQ;QAC9E,OAAO,cAAc,CAAC,WAAW,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,EAAE,CAAC,CAAC;IAChD,CAAC;IAFe,qBAAM,SAErB,CAAA;IAED,SAAgB,WAAW,CAAkD,MAAS;;QACpF,MAAM,OAAO,GAAG,wBAAwB,EAAE,CAAC;QAC3C,OAAO,CAAC,OAAO,GAAG,MAAA,MAAM,CAAC,OAAO,mCAAI,SAAS,CAAC;QAC9C,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0BAAW,cAI1B,CAAA;AACH,CAAC,EAlDgB,cAAc,8BAAd,cAAc,QAkD9B;AAED,SAAS,yBAAyB;IAChC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC;AAChC,CAAC;AAED,IAAiB,eAAe,CAkD/B;AAlDD,WAAiB,eAAe;IAC9B,SAAgB,MAAM,CAAC,OAAwB,EAAE,SAAqB,iBAAG,CAAC,MAAM,CAAC,MAAM,EAAE;QACvF,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAClC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IALe,sBAAM,SAKrB,CAAA;IAED,SAAgB,MAAM,CAAC,KAA8B,EAAE,MAAe;QACpE,MAAM,MAAM,GAAG,KAAK,YAAY,iBAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,iBAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAI,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QAClE,MAAM,OAAO,GAAG,yBAAyB,EAAE,CAAC;QAC5C,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC;oBACJ,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAClC,SAAS;YACb,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IArBe,sBAAM,SAqBrB,CAAA;IAED,SAAgB,QAAQ,CAAC,MAAW;QAClC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;IACjF,CAAC;IAFe,wBAAQ,WAEvB,CAAA;IAED,SAAgB,MAAM,CAAC,OAAwB;QAC7C,MAAM,GAAG,GAAQ,EAAE,CAAC;QACpB,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;QACjE,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,sBAAM,SAIrB,CAAA;IAED,SAAgB,MAAM,CAAmD,IAAQ;QAC/E,OAAO,eAAe,CAAC,WAAW,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,EAAE,CAAC,CAAC;IACjD,CAAC;IAFe,sBAAM,SAErB,CAAA;IAED,SAAgB,WAAW,CAAmD,MAAS;;QACrF,MAAM,OAAO,GAAG,yBAAyB,EAAE,CAAC;QAC5C,OAAO,CAAC,OAAO,GAAG,MAAA,MAAM,CAAC,OAAO,mCAAI,SAAS,CAAC;QAC9C,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,2BAAW,cAI1B,CAAA;AACH,CAAC,EAlDgB,eAAe,+BAAf,eAAe,QAkD/B;AAED,SAAS,0BAA0B;IACjC,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC;AAChC,CAAC;AAED,IAAiB,gBAAgB,CAkDhC;AAlDD,WAAiB,gBAAgB;IAC/B,SAAgB,MAAM,CAAC,OAAyB,EAAE,SAAqB,iBAAG,CAAC,MAAM,CAAC,MAAM,EAAE;QACxF,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAClC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IALe,uBAAM,SAKrB,CAAA;IAED,SAAgB,MAAM,CAAC,KAA8B,EAAE,MAAe;QACpE,MAAM,MAAM,GAAG,KAAK,YAAY,iBAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,iBAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAI,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QAClE,MAAM,OAAO,GAAG,0BAA0B,EAAE,CAAC;QAC7C,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC;oBACJ,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAClC,SAAS;YACb,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IArBe,uBAAM,SAqBrB,CAAA;IAED,SAAgB,QAAQ,CAAC,MAAW;QAClC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;IACjF,CAAC;IAFe,yBAAQ,WAEvB,CAAA;IAED,SAAgB,MAAM,CAAC,OAAyB;QAC9C,MAAM,GAAG,GAAQ,EAAE,CAAC;QACpB,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;QACjE,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,uBAAM,SAIrB,CAAA;IAED,SAAgB,MAAM,CAAoD,IAAQ;QAChF,OAAO,gBAAgB,CAAC,WAAW,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,EAAE,CAAC,CAAC;IAClD,CAAC;IAFe,uBAAM,SAErB,CAAA;IAED,SAAgB,WAAW,CAAoD,MAAS;;QACtF,MAAM,OAAO,GAAG,0BAA0B,EAAE,CAAC;QAC7C,OAAO,CAAC,OAAO,GAAG,MAAA,MAAM,CAAC,OAAO,mCAAI,SAAS,CAAC;QAC9C,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,4BAAW,cAI1B,CAAA;AACH,CAAC,EAlDgB,gBAAgB,gCAAhB,gBAAgB,QAkDhC;AAED,SAAS,wBAAwB;IAC/B,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC;AAChC,CAAC;AAED,IAAiB,cAAc,CAkD9B;AAlDD,WAAiB,cAAc;IAC7B,SAAgB,MAAM,CAAC,OAAuB,EAAE,SAAqB,iBAAG,CAAC,MAAM,CAAC,MAAM,EAAE;QACtF,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAClC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IALe,qBAAM,SAKrB,CAAA;IAED,SAAgB,MAAM,CAAC,KAA8B,EAAE,MAAe;QACpE,MAAM,MAAM,GAAG,KAAK,YAAY,iBAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,iBAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAI,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QAClE,MAAM,OAAO,GAAG,wBAAwB,EAAE,CAAC;QAC3C,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC;oBACJ,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAClC,SAAS;YACb,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IArBe,qBAAM,SAqBrB,CAAA;IAED,SAAgB,QAAQ,CAAC,MAAW;QAClC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;IACjF,CAAC;IAFe,uBAAQ,WAEvB,CAAA;IAED,SAAgB,MAAM,CAAC,OAAuB;QAC5C,MAAM,GAAG,GAAQ,EAAE,CAAC;QACpB,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;QACjE,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,qBAAM,SAIrB,CAAA;IAED,SAAgB,MAAM,CAAkD,IAAQ;QAC9E,OAAO,cAAc,CAAC,WAAW,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,EAAE,CAAC,CAAC;IAChD,CAAC;IAFe,qBAAM,SAErB,CAAA;IAED,SAAgB,WAAW,CAAkD,MAAS;;QACpF,MAAM,OAAO,GAAG,wBAAwB,EAAE,CAAC;QAC3C,OAAO,CAAC,OAAO,GAAG,MAAA,MAAM,CAAC,OAAO,mCAAI,SAAS,CAAC;QAC9C,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,0BAAW,cAI1B,CAAA;AACH,CAAC,EAlDgB,cAAc,8BAAd,cAAc,QAkD9B;AAED,SAAS,uBAAuB;IAC9B,OAAO,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC;AAChC,CAAC;AAED,IAAiB,aAAa,CAkD7B;AAlDD,WAAiB,aAAa;IAC5B,SAAgB,MAAM,CAAC,OAAsB,EAAE,SAAqB,iBAAG,CAAC,MAAM,CAAC,MAAM,EAAE;QACrF,IAAI,OAAO,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;YAClC,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QAC5C,CAAC;QACD,OAAO,MAAM,CAAC;IAChB,CAAC;IALe,oBAAM,SAKrB,CAAA;IAED,SAAgB,MAAM,CAAC,KAA8B,EAAE,MAAe;QACpE,MAAM,MAAM,GAAG,KAAK,YAAY,iBAAG,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,iBAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QAC9E,IAAI,GAAG,GAAG,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,GAAG,GAAG,MAAM,CAAC;QAClE,MAAM,OAAO,GAAG,uBAAuB,EAAE,CAAC;QAC1C,OAAO,MAAM,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC;YACxB,MAAM,GAAG,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;YAC5B,QAAQ,GAAG,KAAK,CAAC,EAAE,CAAC;gBAClB,KAAK,CAAC;oBACJ,IAAI,GAAG,KAAK,EAAE,EAAE,CAAC;wBACf,MAAM;oBACR,CAAC;oBAED,OAAO,CAAC,OAAO,GAAG,MAAM,CAAC,MAAM,EAAE,CAAC;oBAClC,SAAS;YACb,CAAC;YACD,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,EAAE,CAAC;gBACjC,MAAM;YACR,CAAC;YACD,MAAM,CAAC,QAAQ,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC;QAC3B,CAAC;QACD,OAAO,OAAO,CAAC;IACjB,CAAC;IArBe,oBAAM,SAqBrB,CAAA;IAED,SAAgB,QAAQ,CAAC,MAAW;QAClC,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,EAAE,CAAC;IACjF,CAAC;IAFe,sBAAQ,WAEvB,CAAA;IAED,SAAgB,MAAM,CAAC,OAAsB;QAC3C,MAAM,GAAG,GAAQ,EAAE,CAAC;QACpB,OAAO,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,GAAG,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;QACjE,OAAO,GAAG,CAAC;IACb,CAAC;IAJe,oBAAM,SAIrB,CAAA;IAED,SAAgB,MAAM,CAAiD,IAAQ;QAC7E,OAAO,aAAa,CAAC,WAAW,CAAC,IAAI,aAAJ,IAAI,cAAJ,IAAI,GAAI,EAAE,CAAC,CAAC;IAC/C,CAAC;IAFe,oBAAM,SAErB,CAAA;IAED,SAAgB,WAAW,CAAiD,MAAS;;QACnF,MAAM,OAAO,GAAG,uBAAuB,EAAE,CAAC;QAC1C,OAAO,CAAC,OAAO,GAAG,MAAA,MAAM,CAAC,OAAO,mCAAI,SAAS,CAAC;QAC9C,OAAO,OAAO,CAAC;IACjB,CAAC;IAJe,yBAAW,cAI1B,CAAA;AACH,CAAC,EAlDgB,aAAa,6BAAb,aAAa,QAkD7B;AAcD,SAAS,KAAK,CAAC,KAAU;IACvB,OAAO,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,CAAC;AAC/C,CAAC"}
@@ -1,5 +1,6 @@
1
1
  import _m0 from "protobufjs/minimal";
2
2
  import { Empty } from "../../../google/protobuf/empty.gen";
3
+ import { ConflictingError, ForbiddenError, InternalServerError, InvalidFriendshipAction, InvalidRequest, NotFoundError, ProfileNotFound } from "../errors.gen";
3
4
  export declare const protobufPackage = "decentraland.social_service.v2";
4
5
  export declare enum ConnectivityStatus {
5
6
  ONLINE = 0,
@@ -54,28 +55,6 @@ export declare enum CommunityVoiceChatStatus {
54
55
  }
55
56
  export declare function communityVoiceChatStatusFromJSON(object: any): CommunityVoiceChatStatus;
56
57
  export declare function communityVoiceChatStatusToJSON(object: CommunityVoiceChatStatus): string;
57
- /** Errors */
58
- export interface InvalidFriendshipAction {
59
- message?: string | undefined;
60
- }
61
- export interface InternalServerError {
62
- message?: string | undefined;
63
- }
64
- export interface InvalidRequest {
65
- message?: string | undefined;
66
- }
67
- export interface ProfileNotFound {
68
- message?: string | undefined;
69
- }
70
- export interface ConflictingError {
71
- message?: string | undefined;
72
- }
73
- export interface ForbiddenError {
74
- message?: string | undefined;
75
- }
76
- export interface NotFoundError {
77
- message?: string | undefined;
78
- }
79
58
  /** Types */
80
59
  export interface User {
81
60
  address: string;
@@ -178,6 +157,9 @@ export interface UpsertFriendshipResponse {
178
157
  } | {
179
158
  $case: "internalServerError";
180
159
  internalServerError: InternalServerError;
160
+ } | {
161
+ $case: "invalidRequest";
162
+ invalidRequest: InvalidRequest;
181
163
  } | undefined;
182
164
  }
183
165
  export interface UpsertFriendshipResponse_Accepted {
@@ -242,6 +224,9 @@ export interface GetFriendshipStatusResponse {
242
224
  } | {
243
225
  $case: "internalServerError";
244
226
  internalServerError: InternalServerError;
227
+ } | {
228
+ $case: "invalidRequest";
229
+ invalidRequest: InvalidRequest;
245
230
  } | undefined;
246
231
  }
247
232
  export interface GetFriendshipStatusResponse_Ok {
@@ -647,68 +632,21 @@ export interface KickPlayerFromCommunityVoiceChatResponse_Ok {
647
632
  /** Community voice chat updates/events - 'started' and 'ended' status */
648
633
  export interface CommunityVoiceChatUpdate {
649
634
  communityId: string;
650
- voiceChatId: string;
651
635
  createdAt: number;
652
636
  /** 'started' or 'ended' */
653
637
  status: CommunityVoiceChatStatus;
654
638
  /** Only present when status is 'ended' */
655
639
  endedAt?: number | undefined;
656
- }
657
- export declare namespace InvalidFriendshipAction {
658
- function encode(message: InvalidFriendshipAction, writer?: _m0.Writer): _m0.Writer;
659
- function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidFriendshipAction;
660
- function fromJSON(object: any): InvalidFriendshipAction;
661
- function toJSON(message: InvalidFriendshipAction): unknown;
662
- function create<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(base?: I): InvalidFriendshipAction;
663
- function fromPartial<I extends Exact<DeepPartial<InvalidFriendshipAction>, I>>(object: I): InvalidFriendshipAction;
664
- }
665
- export declare namespace InternalServerError {
666
- function encode(message: InternalServerError, writer?: _m0.Writer): _m0.Writer;
667
- function decode(input: _m0.Reader | Uint8Array, length?: number): InternalServerError;
668
- function fromJSON(object: any): InternalServerError;
669
- function toJSON(message: InternalServerError): unknown;
670
- function create<I extends Exact<DeepPartial<InternalServerError>, I>>(base?: I): InternalServerError;
671
- function fromPartial<I extends Exact<DeepPartial<InternalServerError>, I>>(object: I): InternalServerError;
672
- }
673
- export declare namespace InvalidRequest {
674
- function encode(message: InvalidRequest, writer?: _m0.Writer): _m0.Writer;
675
- function decode(input: _m0.Reader | Uint8Array, length?: number): InvalidRequest;
676
- function fromJSON(object: any): InvalidRequest;
677
- function toJSON(message: InvalidRequest): unknown;
678
- function create<I extends Exact<DeepPartial<InvalidRequest>, I>>(base?: I): InvalidRequest;
679
- function fromPartial<I extends Exact<DeepPartial<InvalidRequest>, I>>(object: I): InvalidRequest;
680
- }
681
- export declare namespace ProfileNotFound {
682
- function encode(message: ProfileNotFound, writer?: _m0.Writer): _m0.Writer;
683
- function decode(input: _m0.Reader | Uint8Array, length?: number): ProfileNotFound;
684
- function fromJSON(object: any): ProfileNotFound;
685
- function toJSON(message: ProfileNotFound): unknown;
686
- function create<I extends Exact<DeepPartial<ProfileNotFound>, I>>(base?: I): ProfileNotFound;
687
- function fromPartial<I extends Exact<DeepPartial<ProfileNotFound>, I>>(object: I): ProfileNotFound;
688
- }
689
- export declare namespace ConflictingError {
690
- function encode(message: ConflictingError, writer?: _m0.Writer): _m0.Writer;
691
- function decode(input: _m0.Reader | Uint8Array, length?: number): ConflictingError;
692
- function fromJSON(object: any): ConflictingError;
693
- function toJSON(message: ConflictingError): unknown;
694
- function create<I extends Exact<DeepPartial<ConflictingError>, I>>(base?: I): ConflictingError;
695
- function fromPartial<I extends Exact<DeepPartial<ConflictingError>, I>>(object: I): ConflictingError;
696
- }
697
- export declare namespace ForbiddenError {
698
- function encode(message: ForbiddenError, writer?: _m0.Writer): _m0.Writer;
699
- function decode(input: _m0.Reader | Uint8Array, length?: number): ForbiddenError;
700
- function fromJSON(object: any): ForbiddenError;
701
- function toJSON(message: ForbiddenError): unknown;
702
- function create<I extends Exact<DeepPartial<ForbiddenError>, I>>(base?: I): ForbiddenError;
703
- function fromPartial<I extends Exact<DeepPartial<ForbiddenError>, I>>(object: I): ForbiddenError;
704
- }
705
- export declare namespace NotFoundError {
706
- function encode(message: NotFoundError, writer?: _m0.Writer): _m0.Writer;
707
- function decode(input: _m0.Reader | Uint8Array, length?: number): NotFoundError;
708
- function fromJSON(object: any): NotFoundError;
709
- function toJSON(message: NotFoundError): unknown;
710
- function create<I extends Exact<DeepPartial<NotFoundError>, I>>(base?: I): NotFoundError;
711
- function fromPartial<I extends Exact<DeepPartial<NotFoundError>, I>>(object: I): NotFoundError;
640
+ /** Positions/coordinates associated with the community (world: false) */
641
+ positions: string[];
642
+ /** Whether the receiving user is a member of the community */
643
+ isMember: boolean;
644
+ /** Name of the community */
645
+ communityName: string;
646
+ /** Image/picture of the community */
647
+ communityImage?: string | undefined;
648
+ /** World names associated with the community (world: true) */
649
+ worlds: string[];
712
650
  }
713
651
  export declare namespace User {
714
652
  function encode(message: User, writer?: _m0.Writer): _m0.Writer;