You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@reflex-platform/npm-core-sdk",
|
"name": "@reflex-platform/npm-core-sdk",
|
||||||
"version": "1.13.0-SNAPSHOT-260319142921",
|
"version": "1.13.0-SNAPSHOT-260320103829",
|
||||||
"description": "npm libs from core model proto files",
|
"description": "npm libs from core model proto files",
|
||||||
"homepage": "",
|
"homepage": "",
|
||||||
"main": "index.ts",
|
"main": "index.ts",
|
||||||
|
|||||||
16
site.ts
16
site.ts
@@ -1109,9 +1109,11 @@ export interface GetActorAuthorisationRequest {
|
|||||||
*/
|
*/
|
||||||
export interface GetActorAuthorisationResponse {
|
export interface GetActorAuthorisationResponse {
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf field: api.ProjectAuthorisation Authorisation = 1
|
* ProjectAuthorisation Authorisation = 1;
|
||||||
|
*
|
||||||
|
* @generated from protobuf field: api.ProjectAuthorisationWithValue Authorisation = 2
|
||||||
*/
|
*/
|
||||||
Authorisation?: ProjectAuthorisation;
|
Authorisation?: ProjectAuthorisationWithValue;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* @generated from protobuf message api.GetBasicSettingsRequest
|
* @generated from protobuf message api.GetBasicSettingsRequest
|
||||||
@@ -4565,7 +4567,7 @@ export const GetActorAuthorisationRequest = new GetActorAuthorisationRequest$Typ
|
|||||||
class GetActorAuthorisationResponse$Type extends MessageType<GetActorAuthorisationResponse> {
|
class GetActorAuthorisationResponse$Type extends MessageType<GetActorAuthorisationResponse> {
|
||||||
constructor() {
|
constructor() {
|
||||||
super("api.GetActorAuthorisationResponse", [
|
super("api.GetActorAuthorisationResponse", [
|
||||||
{ no: 1, name: "Authorisation", kind: "message", localName: "Authorisation", jsonName: "Authorisation", T: () => ProjectAuthorisation }
|
{ no: 2, name: "Authorisation", kind: "message", localName: "Authorisation", jsonName: "Authorisation", T: () => ProjectAuthorisationWithValue }
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
create(value?: PartialMessage<GetActorAuthorisationResponse>): GetActorAuthorisationResponse {
|
create(value?: PartialMessage<GetActorAuthorisationResponse>): GetActorAuthorisationResponse {
|
||||||
@@ -4579,8 +4581,8 @@ class GetActorAuthorisationResponse$Type extends MessageType<GetActorAuthorisati
|
|||||||
while (reader.pos < end) {
|
while (reader.pos < end) {
|
||||||
let [fieldNo, wireType] = reader.tag();
|
let [fieldNo, wireType] = reader.tag();
|
||||||
switch (fieldNo) {
|
switch (fieldNo) {
|
||||||
case /* api.ProjectAuthorisation Authorisation */ 1:
|
case /* api.ProjectAuthorisationWithValue Authorisation */ 2:
|
||||||
message.Authorisation = ProjectAuthorisation.internalBinaryRead(reader, reader.uint32(), options, message.Authorisation);
|
message.Authorisation = ProjectAuthorisationWithValue.internalBinaryRead(reader, reader.uint32(), options, message.Authorisation);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
let u = options.readUnknownField;
|
let u = options.readUnknownField;
|
||||||
@@ -4594,9 +4596,9 @@ class GetActorAuthorisationResponse$Type extends MessageType<GetActorAuthorisati
|
|||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
internalBinaryWrite(message: GetActorAuthorisationResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
internalBinaryWrite(message: GetActorAuthorisationResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||||
/* api.ProjectAuthorisation Authorisation = 1; */
|
/* api.ProjectAuthorisationWithValue Authorisation = 2; */
|
||||||
if (message.Authorisation)
|
if (message.Authorisation)
|
||||||
ProjectAuthorisation.internalBinaryWrite(message.Authorisation, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
ProjectAuthorisationWithValue.internalBinaryWrite(message.Authorisation, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
|
||||||
let u = options.writeUnknownFields;
|
let u = options.writeUnknownFields;
|
||||||
if (u !== false)
|
if (u !== false)
|
||||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||||
|
|||||||
Reference in New Issue
Block a user