@acequants/aegis-contracts 0.1.13 → 0.1.14
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.
|
@@ -35,7 +35,7 @@ export interface DtoSession {
|
|
|
35
35
|
export interface DtoAuthenticate {
|
|
36
36
|
valid?: boolean | undefined;
|
|
37
37
|
reason?: string | undefined;
|
|
38
|
-
|
|
38
|
+
session?: DtoSession | undefined;
|
|
39
39
|
}
|
|
40
40
|
export interface DtoAuthorize {
|
|
41
41
|
allowed: boolean;
|
|
@@ -309,8 +309,8 @@ export const DtoAuthenticate = {
|
|
|
309
309
|
if (message.reason !== undefined) {
|
|
310
310
|
writer.uint32(18).string(message.reason);
|
|
311
311
|
}
|
|
312
|
-
if (message.
|
|
313
|
-
DtoSession.encode(message.
|
|
312
|
+
if (message.session !== undefined) {
|
|
313
|
+
DtoSession.encode(message.session, writer.uint32(26).fork()).ldelim();
|
|
314
314
|
}
|
|
315
315
|
return writer;
|
|
316
316
|
},
|
|
@@ -337,7 +337,7 @@ export const DtoAuthenticate = {
|
|
|
337
337
|
if (tag !== 26) {
|
|
338
338
|
break;
|
|
339
339
|
}
|
|
340
|
-
message.
|
|
340
|
+
message.session = DtoSession.decode(reader, reader.uint32());
|
|
341
341
|
continue;
|
|
342
342
|
}
|
|
343
343
|
if ((tag & 7) === 4 || tag === 0) {
|
package/package.json
CHANGED