You've already forked npm-viz-sdk
1704 lines
90 KiB
TypeScript
1704 lines
90 KiB
TypeScript
// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name
|
|
// @generated from protobuf file "viz-composed-field.proto" (package "vizapi", syntax proto3)
|
|
// tslint:disable
|
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
import { WireType } from "@protobuf-ts/runtime";
|
|
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
import { MessageType } from "@protobuf-ts/runtime";
|
|
import { RequestProjectHeader } from "./core/shared";
|
|
/**
|
|
* @generated from protobuf message vizapi.ComposedField
|
|
*/
|
|
export interface ComposedField {
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 1
|
|
*/
|
|
ComposedFieldID: string;
|
|
/**
|
|
* Name of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Name = 2
|
|
*/
|
|
Name: string;
|
|
/**
|
|
* Identifier of the project
|
|
*
|
|
* @generated from protobuf field: string ProjectID = 3
|
|
*/
|
|
ProjectID: string;
|
|
/**
|
|
* Identifier of the Screen
|
|
*
|
|
* @generated from protobuf field: string ScreenID = 4
|
|
*/
|
|
ScreenID: string;
|
|
/**
|
|
* Identifier of the user who created
|
|
*
|
|
* @generated from protobuf field: string CreateUserID = 5
|
|
*/
|
|
CreateUserID: string;
|
|
/**
|
|
* Identifier of the user who did the last update
|
|
*
|
|
* @generated from protobuf field: string UpdateUserID = 6
|
|
*/
|
|
UpdateUserID: string;
|
|
/**
|
|
* Date of creation in ISO 8601 format with time zone (accepted tzd formats: [+01:00, -01:00, Z]
|
|
*
|
|
* @generated from protobuf field: string CreateDateTime = 7
|
|
*/
|
|
CreateDateTime: string;
|
|
/**
|
|
* Date of last update in ISO 8601 format with time zone (accepted tzd formats: [+01:00, -01:00, Z]
|
|
*
|
|
* @generated from protobuf field: string UpdateDateTime = 8
|
|
*/
|
|
UpdateDateTime: string;
|
|
/**
|
|
* Identifier of the Tab
|
|
*
|
|
* @generated from protobuf field: string TabID = 9
|
|
*/
|
|
TabID: string;
|
|
/**
|
|
* Content in the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Payload = 10
|
|
*/
|
|
Payload: string;
|
|
}
|
|
/**
|
|
* IDs of the Composed Field
|
|
*
|
|
* @generated from protobuf message vizapi.GetComposedFieldRequest
|
|
*/
|
|
export interface GetComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 2
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* All the Content about the composed field
|
|
*
|
|
* @generated from protobuf message vizapi.GetComposedFieldResult
|
|
*/
|
|
export interface GetComposedFieldResult {
|
|
/**
|
|
* @generated from protobuf field: vizapi.ComposedField Result = 1
|
|
*/
|
|
Result?: ComposedField;
|
|
}
|
|
/**
|
|
* Content that needs to be stored
|
|
*
|
|
* @generated from protobuf message vizapi.CreateComposedFieldRequest
|
|
*/
|
|
export interface CreateComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Name of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Name = 2
|
|
*/
|
|
Name: string;
|
|
/**
|
|
* Identifier of the Screen
|
|
*
|
|
* @generated from protobuf field: string ScreenID = 3
|
|
*/
|
|
ScreenID: string;
|
|
/**
|
|
* Identifier of the Tab
|
|
*
|
|
* @generated from protobuf field: string TabID = 4
|
|
*/
|
|
TabID: string;
|
|
/**
|
|
* Content in the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Payload = 5
|
|
*/
|
|
Payload: string;
|
|
}
|
|
/**
|
|
* ID of the created Composed Field
|
|
*
|
|
* @generated from protobuf message vizapi.CreateComposedFieldResult
|
|
*/
|
|
export interface CreateComposedFieldResult {
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 1
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* Content that needs to be updated
|
|
*
|
|
* @generated from protobuf message vizapi.UpdateComposedFieldRequest
|
|
*/
|
|
export interface UpdateComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 2
|
|
*/
|
|
ComposedFieldID: string;
|
|
/**
|
|
* Name of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Name = 3
|
|
*/
|
|
Name: string;
|
|
/**
|
|
* Identifier of the Screen
|
|
*
|
|
* @generated from protobuf field: string ScreenID = 4
|
|
*/
|
|
ScreenID: string;
|
|
/**
|
|
* Identifier of the Tab
|
|
*
|
|
* @generated from protobuf field: string TabID = 5
|
|
*/
|
|
TabID: string;
|
|
/**
|
|
* Content in the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Payload = 6
|
|
*/
|
|
Payload: string;
|
|
}
|
|
/**
|
|
* Updated dashboard ID
|
|
*
|
|
* @generated from protobuf message vizapi.UpdateComposedFieldResult
|
|
*/
|
|
export interface UpdateComposedFieldResult {
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 1
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* IDs of the Composed Field to be deleted
|
|
*
|
|
* @generated from protobuf message vizapi.DeleteComposedFieldRequest
|
|
*/
|
|
export interface DeleteComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 2
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* @generated from protobuf message vizapi.DeleteComposedFieldResult
|
|
*/
|
|
export interface DeleteComposedFieldResult {
|
|
}
|
|
/**
|
|
* @generated from protobuf message vizapi.ListComposedFieldRequest
|
|
*/
|
|
export interface ListComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Screen
|
|
*
|
|
* @generated from protobuf field: string ScreenID = 2
|
|
*/
|
|
ScreenID: string;
|
|
/**
|
|
* Identifier of the Tab
|
|
*
|
|
* @generated from protobuf field: string TabID = 3
|
|
*/
|
|
TabID: string;
|
|
}
|
|
/**
|
|
* List of Composed Fields
|
|
*
|
|
* @generated from protobuf message vizapi.ListComposedFieldResult
|
|
*/
|
|
export interface ListComposedFieldResult {
|
|
/**
|
|
* All Content in a Composed Field
|
|
*
|
|
* @generated from protobuf field: repeated vizapi.ComposedField Results = 1
|
|
*/
|
|
Results: ComposedField[];
|
|
}
|
|
/**
|
|
* IDs of the Composed Field
|
|
*
|
|
* @generated from protobuf message vizapi.GetProjectComposedFieldRequest
|
|
*/
|
|
export interface GetProjectComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 2
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* All the Content about the composed field
|
|
*
|
|
* @generated from protobuf message vizapi.GetProjectComposedFieldResult
|
|
*/
|
|
export interface GetProjectComposedFieldResult {
|
|
/**
|
|
* @generated from protobuf field: vizapi.ComposedField Result = 1
|
|
*/
|
|
Result?: ComposedField;
|
|
}
|
|
/**
|
|
* Content that needs to be stored
|
|
*
|
|
* @generated from protobuf message vizapi.CreateProjectComposedFieldRequest
|
|
*/
|
|
export interface CreateProjectComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Name of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Name = 2
|
|
*/
|
|
Name: string;
|
|
/**
|
|
* Identifier of the Screen
|
|
*
|
|
* @generated from protobuf field: string ScreenID = 3
|
|
*/
|
|
ScreenID: string;
|
|
/**
|
|
* Identifier of the Tab
|
|
*
|
|
* @generated from protobuf field: string TabID = 4
|
|
*/
|
|
TabID: string;
|
|
/**
|
|
* Content in the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Payload = 5
|
|
*/
|
|
Payload: string;
|
|
}
|
|
/**
|
|
* ID of the created Composed Field
|
|
*
|
|
* @generated from protobuf message vizapi.CreateProjectComposedFieldResult
|
|
*/
|
|
export interface CreateProjectComposedFieldResult {
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 1
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* Content that needs to be updated
|
|
*
|
|
* @generated from protobuf message vizapi.UpdateProjectComposedFieldRequest
|
|
*/
|
|
export interface UpdateProjectComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 2
|
|
*/
|
|
ComposedFieldID: string;
|
|
/**
|
|
* Name of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Name = 3
|
|
*/
|
|
Name: string;
|
|
/**
|
|
* Identifier of the Screen
|
|
*
|
|
* @generated from protobuf field: string ScreenID = 4
|
|
*/
|
|
ScreenID: string;
|
|
/**
|
|
* Identifier of the Tab
|
|
*
|
|
* @generated from protobuf field: string TabID = 5
|
|
*/
|
|
TabID: string;
|
|
/**
|
|
* Content in the Composed Field
|
|
*
|
|
* @generated from protobuf field: string Payload = 6
|
|
*/
|
|
Payload: string;
|
|
}
|
|
/**
|
|
* Updated dashboard ID
|
|
*
|
|
* @generated from protobuf message vizapi.UpdateProjectComposedFieldResult
|
|
*/
|
|
export interface UpdateProjectComposedFieldResult {
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 1
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* IDs of the Composed Field to be deleted
|
|
*
|
|
* @generated from protobuf message vizapi.DeleteProjectComposedFieldRequest
|
|
*/
|
|
export interface DeleteProjectComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Composed Field
|
|
*
|
|
* @generated from protobuf field: string ComposedFieldID = 2
|
|
*/
|
|
ComposedFieldID: string;
|
|
}
|
|
/**
|
|
* @generated from protobuf message vizapi.DeleteProjectComposedFieldResult
|
|
*/
|
|
export interface DeleteProjectComposedFieldResult {
|
|
}
|
|
/**
|
|
* @generated from protobuf message vizapi.ListProjectComposedFieldRequest
|
|
*/
|
|
export interface ListProjectComposedFieldRequest {
|
|
/**
|
|
* @generated from protobuf field: api.RequestProjectHeader Header = 1
|
|
*/
|
|
Header?: RequestProjectHeader;
|
|
/**
|
|
* Identifier of the Screen
|
|
*
|
|
* @generated from protobuf field: string ScreenID = 2
|
|
*/
|
|
ScreenID: string;
|
|
/**
|
|
* Identifier of the Tab
|
|
*
|
|
* @generated from protobuf field: string TabID = 3
|
|
*/
|
|
TabID: string;
|
|
}
|
|
/**
|
|
* List of Composed Fields
|
|
*
|
|
* @generated from protobuf message vizapi.ListProjectComposedFieldResult
|
|
*/
|
|
export interface ListProjectComposedFieldResult {
|
|
/**
|
|
* All Content in a Composed Field
|
|
*
|
|
* @generated from protobuf field: repeated vizapi.ComposedField Results = 1
|
|
*/
|
|
Results: ComposedField[];
|
|
}
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class ComposedField$Type extends MessageType<ComposedField> {
|
|
constructor() {
|
|
super("vizapi.ComposedField", [
|
|
{ no: 1, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" } } },
|
|
{ no: 2, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Name of the Composed Field" } } },
|
|
{ no: 3, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the project" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 4, name: "ScreenID", kind: "scalar", localName: "ScreenID", jsonName: "ScreenID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Screen" } } },
|
|
{ no: 5, name: "CreateUserID", kind: "scalar", localName: "CreateUserID", jsonName: "CreateUserID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the user who created" } } },
|
|
{ no: 6, name: "UpdateUserID", kind: "scalar", localName: "UpdateUserID", jsonName: "UpdateUserID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the user who did the last update" } } },
|
|
{ no: 7, name: "CreateDateTime", kind: "scalar", localName: "CreateDateTime", jsonName: "CreateDateTime", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Date of creation in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format with time zone (accepted tzd formats: [+01:00, -01:00, Z]" } } },
|
|
{ no: 8, name: "UpdateDateTime", kind: "scalar", localName: "UpdateDateTime", jsonName: "UpdateDateTime", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Date of last update in <a href=\"https://en.wikipedia.org/wiki/ISO_8601\">ISO 8601</a> format with time zone (accepted tzd formats: [+01:00, -01:00, Z]" } } },
|
|
{ no: 9, name: "TabID", kind: "scalar", localName: "TabID", jsonName: "TabID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Tab" } } },
|
|
{ no: 10, name: "Payload", kind: "scalar", localName: "Payload", jsonName: "Payload", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Content in the Composed Field" } } }
|
|
]);
|
|
}
|
|
create(value?: PartialMessage<ComposedField>): ComposedField {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
message.Name = "";
|
|
message.ProjectID = "";
|
|
message.ScreenID = "";
|
|
message.CreateUserID = "";
|
|
message.UpdateUserID = "";
|
|
message.CreateDateTime = "";
|
|
message.UpdateDateTime = "";
|
|
message.TabID = "";
|
|
message.Payload = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<ComposedField>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ComposedField): ComposedField {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* string ComposedFieldID */ 1:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
case /* string Name */ 2:
|
|
message.Name = reader.string();
|
|
break;
|
|
case /* string ProjectID */ 3:
|
|
message.ProjectID = reader.string();
|
|
break;
|
|
case /* string ScreenID */ 4:
|
|
message.ScreenID = reader.string();
|
|
break;
|
|
case /* string CreateUserID */ 5:
|
|
message.CreateUserID = reader.string();
|
|
break;
|
|
case /* string UpdateUserID */ 6:
|
|
message.UpdateUserID = reader.string();
|
|
break;
|
|
case /* string CreateDateTime */ 7:
|
|
message.CreateDateTime = reader.string();
|
|
break;
|
|
case /* string UpdateDateTime */ 8:
|
|
message.UpdateDateTime = reader.string();
|
|
break;
|
|
case /* string TabID */ 9:
|
|
message.TabID = reader.string();
|
|
break;
|
|
case /* string Payload */ 10:
|
|
message.Payload = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: ComposedField, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* string ComposedFieldID = 1; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(1, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
/* string Name = 2; */
|
|
if (message.Name !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.Name);
|
|
/* string ProjectID = 3; */
|
|
if (message.ProjectID !== "")
|
|
writer.tag(3, WireType.LengthDelimited).string(message.ProjectID);
|
|
/* string ScreenID = 4; */
|
|
if (message.ScreenID !== "")
|
|
writer.tag(4, WireType.LengthDelimited).string(message.ScreenID);
|
|
/* string CreateUserID = 5; */
|
|
if (message.CreateUserID !== "")
|
|
writer.tag(5, WireType.LengthDelimited).string(message.CreateUserID);
|
|
/* string UpdateUserID = 6; */
|
|
if (message.UpdateUserID !== "")
|
|
writer.tag(6, WireType.LengthDelimited).string(message.UpdateUserID);
|
|
/* string CreateDateTime = 7; */
|
|
if (message.CreateDateTime !== "")
|
|
writer.tag(7, WireType.LengthDelimited).string(message.CreateDateTime);
|
|
/* string UpdateDateTime = 8; */
|
|
if (message.UpdateDateTime !== "")
|
|
writer.tag(8, WireType.LengthDelimited).string(message.UpdateDateTime);
|
|
/* string TabID = 9; */
|
|
if (message.TabID !== "")
|
|
writer.tag(9, WireType.LengthDelimited).string(message.TabID);
|
|
/* string Payload = 10; */
|
|
if (message.Payload !== "")
|
|
writer.tag(10, WireType.LengthDelimited).string(message.Payload);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.ComposedField
|
|
*/
|
|
export const ComposedField = new ComposedField$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class GetComposedFieldRequest$Type extends MessageType<GetComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.GetComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "IDs of the Composed Field", required: ["Header", "ComposedFieldID"] } } });
|
|
}
|
|
create(value?: PartialMessage<GetComposedFieldRequest>): GetComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<GetComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetComposedFieldRequest): GetComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ComposedFieldID */ 2:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: GetComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ComposedFieldID = 2; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.GetComposedFieldRequest
|
|
*/
|
|
export const GetComposedFieldRequest = new GetComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class GetComposedFieldResult$Type extends MessageType<GetComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.GetComposedFieldResult", [
|
|
{ no: 1, name: "Result", kind: "message", localName: "Result", jsonName: "Result", T: () => ComposedField }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "All the Content about the composed field" } } });
|
|
}
|
|
create(value?: PartialMessage<GetComposedFieldResult>): GetComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
if (value !== undefined)
|
|
reflectionMergePartial<GetComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetComposedFieldResult): GetComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* vizapi.ComposedField Result */ 1:
|
|
message.Result = ComposedField.internalBinaryRead(reader, reader.uint32(), options, message.Result);
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: GetComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* vizapi.ComposedField Result = 1; */
|
|
if (message.Result)
|
|
ComposedField.internalBinaryWrite(message.Result, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.GetComposedFieldResult
|
|
*/
|
|
export const GetComposedFieldResult = new GetComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class CreateComposedFieldRequest$Type extends MessageType<CreateComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.CreateComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Name of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 3, name: "ScreenID", kind: "scalar", localName: "ScreenID", jsonName: "ScreenID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Screen" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 4, name: "TabID", kind: "scalar", localName: "TabID", jsonName: "TabID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Tab" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 5, name: "Payload", kind: "scalar", localName: "Payload", jsonName: "Payload", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Content in the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Content that needs to be stored ", required: ["Header", "Name", "ScreenID", "TabID", "Payload"] } } });
|
|
}
|
|
create(value?: PartialMessage<CreateComposedFieldRequest>): CreateComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.Name = "";
|
|
message.ScreenID = "";
|
|
message.TabID = "";
|
|
message.Payload = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<CreateComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateComposedFieldRequest): CreateComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string Name */ 2:
|
|
message.Name = reader.string();
|
|
break;
|
|
case /* string ScreenID */ 3:
|
|
message.ScreenID = reader.string();
|
|
break;
|
|
case /* string TabID */ 4:
|
|
message.TabID = reader.string();
|
|
break;
|
|
case /* string Payload */ 5:
|
|
message.Payload = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: CreateComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string Name = 2; */
|
|
if (message.Name !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.Name);
|
|
/* string ScreenID = 3; */
|
|
if (message.ScreenID !== "")
|
|
writer.tag(3, WireType.LengthDelimited).string(message.ScreenID);
|
|
/* string TabID = 4; */
|
|
if (message.TabID !== "")
|
|
writer.tag(4, WireType.LengthDelimited).string(message.TabID);
|
|
/* string Payload = 5; */
|
|
if (message.Payload !== "")
|
|
writer.tag(5, WireType.LengthDelimited).string(message.Payload);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.CreateComposedFieldRequest
|
|
*/
|
|
export const CreateComposedFieldRequest = new CreateComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class CreateComposedFieldResult$Type extends MessageType<CreateComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.CreateComposedFieldResult", [
|
|
{ no: 1, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "ID of the created Composed Field" } } });
|
|
}
|
|
create(value?: PartialMessage<CreateComposedFieldResult>): CreateComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<CreateComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateComposedFieldResult): CreateComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* string ComposedFieldID */ 1:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: CreateComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* string ComposedFieldID = 1; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(1, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.CreateComposedFieldResult
|
|
*/
|
|
export const CreateComposedFieldResult = new CreateComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class UpdateComposedFieldRequest$Type extends MessageType<UpdateComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.UpdateComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 3, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Name of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 4, name: "ScreenID", kind: "scalar", localName: "ScreenID", jsonName: "ScreenID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Screen" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 5, name: "TabID", kind: "scalar", localName: "TabID", jsonName: "TabID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Tab" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 6, name: "Payload", kind: "scalar", localName: "Payload", jsonName: "Payload", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Content in the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Content that needs to be updated", required: ["Header", "ComposedFieldID", "Name", "ScreenID", "TabID", "Payload"] } } });
|
|
}
|
|
create(value?: PartialMessage<UpdateComposedFieldRequest>): UpdateComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
message.Name = "";
|
|
message.ScreenID = "";
|
|
message.TabID = "";
|
|
message.Payload = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<UpdateComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateComposedFieldRequest): UpdateComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ComposedFieldID */ 2:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
case /* string Name */ 3:
|
|
message.Name = reader.string();
|
|
break;
|
|
case /* string ScreenID */ 4:
|
|
message.ScreenID = reader.string();
|
|
break;
|
|
case /* string TabID */ 5:
|
|
message.TabID = reader.string();
|
|
break;
|
|
case /* string Payload */ 6:
|
|
message.Payload = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: UpdateComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ComposedFieldID = 2; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
/* string Name = 3; */
|
|
if (message.Name !== "")
|
|
writer.tag(3, WireType.LengthDelimited).string(message.Name);
|
|
/* string ScreenID = 4; */
|
|
if (message.ScreenID !== "")
|
|
writer.tag(4, WireType.LengthDelimited).string(message.ScreenID);
|
|
/* string TabID = 5; */
|
|
if (message.TabID !== "")
|
|
writer.tag(5, WireType.LengthDelimited).string(message.TabID);
|
|
/* string Payload = 6; */
|
|
if (message.Payload !== "")
|
|
writer.tag(6, WireType.LengthDelimited).string(message.Payload);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.UpdateComposedFieldRequest
|
|
*/
|
|
export const UpdateComposedFieldRequest = new UpdateComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class UpdateComposedFieldResult$Type extends MessageType<UpdateComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.UpdateComposedFieldResult", [
|
|
{ no: 1, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Updated dashboard ID" } } });
|
|
}
|
|
create(value?: PartialMessage<UpdateComposedFieldResult>): UpdateComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<UpdateComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateComposedFieldResult): UpdateComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* string ComposedFieldID */ 1:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: UpdateComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* string ComposedFieldID = 1; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(1, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.UpdateComposedFieldResult
|
|
*/
|
|
export const UpdateComposedFieldResult = new UpdateComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class DeleteComposedFieldRequest$Type extends MessageType<DeleteComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.DeleteComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "IDs of the Composed Field to be deleted", required: ["Header", "ComposedFieldID"] } } });
|
|
}
|
|
create(value?: PartialMessage<DeleteComposedFieldRequest>): DeleteComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<DeleteComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteComposedFieldRequest): DeleteComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ComposedFieldID */ 2:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: DeleteComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ComposedFieldID = 2; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.DeleteComposedFieldRequest
|
|
*/
|
|
export const DeleteComposedFieldRequest = new DeleteComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class DeleteComposedFieldResult$Type extends MessageType<DeleteComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.DeleteComposedFieldResult", []);
|
|
}
|
|
create(value?: PartialMessage<DeleteComposedFieldResult>): DeleteComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
if (value !== undefined)
|
|
reflectionMergePartial<DeleteComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteComposedFieldResult): DeleteComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: DeleteComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.DeleteComposedFieldResult
|
|
*/
|
|
export const DeleteComposedFieldResult = new DeleteComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class ListComposedFieldRequest$Type extends MessageType<ListComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.ListComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ScreenID", kind: "scalar", localName: "ScreenID", jsonName: "ScreenID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Screen" } } },
|
|
{ no: 3, name: "TabID", kind: "scalar", localName: "TabID", jsonName: "TabID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Tab" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
|
|
}
|
|
create(value?: PartialMessage<ListComposedFieldRequest>): ListComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ScreenID = "";
|
|
message.TabID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<ListComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ListComposedFieldRequest): ListComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ScreenID */ 2:
|
|
message.ScreenID = reader.string();
|
|
break;
|
|
case /* string TabID */ 3:
|
|
message.TabID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: ListComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ScreenID = 2; */
|
|
if (message.ScreenID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ScreenID);
|
|
/* string TabID = 3; */
|
|
if (message.TabID !== "")
|
|
writer.tag(3, WireType.LengthDelimited).string(message.TabID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.ListComposedFieldRequest
|
|
*/
|
|
export const ListComposedFieldRequest = new ListComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class ListComposedFieldResult$Type extends MessageType<ListComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.ListComposedFieldResult", [
|
|
{ no: 1, name: "Results", kind: "message", localName: "Results", jsonName: "Results", repeat: 2 /*RepeatType.UNPACKED*/, T: () => ComposedField, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "All Content in a Composed Field" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "List of Composed Fields" } } });
|
|
}
|
|
create(value?: PartialMessage<ListComposedFieldResult>): ListComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.Results = [];
|
|
if (value !== undefined)
|
|
reflectionMergePartial<ListComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ListComposedFieldResult): ListComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* repeated vizapi.ComposedField Results */ 1:
|
|
message.Results.push(ComposedField.internalBinaryRead(reader, reader.uint32(), options));
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: ListComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* repeated vizapi.ComposedField Results = 1; */
|
|
for (let i = 0; i < message.Results.length; i++)
|
|
ComposedField.internalBinaryWrite(message.Results[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.ListComposedFieldResult
|
|
*/
|
|
export const ListComposedFieldResult = new ListComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class GetProjectComposedFieldRequest$Type extends MessageType<GetProjectComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.GetProjectComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "IDs of the Composed Field", required: ["Header", "ComposedFieldID"] } } });
|
|
}
|
|
create(value?: PartialMessage<GetProjectComposedFieldRequest>): GetProjectComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<GetProjectComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetProjectComposedFieldRequest): GetProjectComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ComposedFieldID */ 2:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: GetProjectComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ComposedFieldID = 2; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.GetProjectComposedFieldRequest
|
|
*/
|
|
export const GetProjectComposedFieldRequest = new GetProjectComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class GetProjectComposedFieldResult$Type extends MessageType<GetProjectComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.GetProjectComposedFieldResult", [
|
|
{ no: 1, name: "Result", kind: "message", localName: "Result", jsonName: "Result", T: () => ComposedField }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "All the Content about the composed field" } } });
|
|
}
|
|
create(value?: PartialMessage<GetProjectComposedFieldResult>): GetProjectComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
if (value !== undefined)
|
|
reflectionMergePartial<GetProjectComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: GetProjectComposedFieldResult): GetProjectComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* vizapi.ComposedField Result */ 1:
|
|
message.Result = ComposedField.internalBinaryRead(reader, reader.uint32(), options, message.Result);
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: GetProjectComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* vizapi.ComposedField Result = 1; */
|
|
if (message.Result)
|
|
ComposedField.internalBinaryWrite(message.Result, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.GetProjectComposedFieldResult
|
|
*/
|
|
export const GetProjectComposedFieldResult = new GetProjectComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class CreateProjectComposedFieldRequest$Type extends MessageType<CreateProjectComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.CreateProjectComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Name of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 3, name: "ScreenID", kind: "scalar", localName: "ScreenID", jsonName: "ScreenID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Screen" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 4, name: "TabID", kind: "scalar", localName: "TabID", jsonName: "TabID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Tab" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 5, name: "Payload", kind: "scalar", localName: "Payload", jsonName: "Payload", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Content in the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Content that needs to be stored ", required: ["Header", "Name", "ScreenID", "TabID", "Payload"] } } });
|
|
}
|
|
create(value?: PartialMessage<CreateProjectComposedFieldRequest>): CreateProjectComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.Name = "";
|
|
message.ScreenID = "";
|
|
message.TabID = "";
|
|
message.Payload = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<CreateProjectComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateProjectComposedFieldRequest): CreateProjectComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string Name */ 2:
|
|
message.Name = reader.string();
|
|
break;
|
|
case /* string ScreenID */ 3:
|
|
message.ScreenID = reader.string();
|
|
break;
|
|
case /* string TabID */ 4:
|
|
message.TabID = reader.string();
|
|
break;
|
|
case /* string Payload */ 5:
|
|
message.Payload = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: CreateProjectComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string Name = 2; */
|
|
if (message.Name !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.Name);
|
|
/* string ScreenID = 3; */
|
|
if (message.ScreenID !== "")
|
|
writer.tag(3, WireType.LengthDelimited).string(message.ScreenID);
|
|
/* string TabID = 4; */
|
|
if (message.TabID !== "")
|
|
writer.tag(4, WireType.LengthDelimited).string(message.TabID);
|
|
/* string Payload = 5; */
|
|
if (message.Payload !== "")
|
|
writer.tag(5, WireType.LengthDelimited).string(message.Payload);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.CreateProjectComposedFieldRequest
|
|
*/
|
|
export const CreateProjectComposedFieldRequest = new CreateProjectComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class CreateProjectComposedFieldResult$Type extends MessageType<CreateProjectComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.CreateProjectComposedFieldResult", [
|
|
{ no: 1, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "ID of the created Composed Field" } } });
|
|
}
|
|
create(value?: PartialMessage<CreateProjectComposedFieldResult>): CreateProjectComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<CreateProjectComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: CreateProjectComposedFieldResult): CreateProjectComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* string ComposedFieldID */ 1:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: CreateProjectComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* string ComposedFieldID = 1; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(1, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.CreateProjectComposedFieldResult
|
|
*/
|
|
export const CreateProjectComposedFieldResult = new CreateProjectComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class UpdateProjectComposedFieldRequest$Type extends MessageType<UpdateProjectComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.UpdateProjectComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 3, name: "Name", kind: "scalar", localName: "Name", jsonName: "Name", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Name of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 4, name: "ScreenID", kind: "scalar", localName: "ScreenID", jsonName: "ScreenID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Screen" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 5, name: "TabID", kind: "scalar", localName: "TabID", jsonName: "TabID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Tab" }, "validate.rules": { string: { minLen: "1" } } } },
|
|
{ no: 6, name: "Payload", kind: "scalar", localName: "Payload", jsonName: "Payload", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Content in the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Content that needs to be updated", required: ["Header", "ComposedFieldID", "Name", "ScreenID", "TabID", "Payload"] } } });
|
|
}
|
|
create(value?: PartialMessage<UpdateProjectComposedFieldRequest>): UpdateProjectComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
message.Name = "";
|
|
message.ScreenID = "";
|
|
message.TabID = "";
|
|
message.Payload = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<UpdateProjectComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateProjectComposedFieldRequest): UpdateProjectComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ComposedFieldID */ 2:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
case /* string Name */ 3:
|
|
message.Name = reader.string();
|
|
break;
|
|
case /* string ScreenID */ 4:
|
|
message.ScreenID = reader.string();
|
|
break;
|
|
case /* string TabID */ 5:
|
|
message.TabID = reader.string();
|
|
break;
|
|
case /* string Payload */ 6:
|
|
message.Payload = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: UpdateProjectComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ComposedFieldID = 2; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
/* string Name = 3; */
|
|
if (message.Name !== "")
|
|
writer.tag(3, WireType.LengthDelimited).string(message.Name);
|
|
/* string ScreenID = 4; */
|
|
if (message.ScreenID !== "")
|
|
writer.tag(4, WireType.LengthDelimited).string(message.ScreenID);
|
|
/* string TabID = 5; */
|
|
if (message.TabID !== "")
|
|
writer.tag(5, WireType.LengthDelimited).string(message.TabID);
|
|
/* string Payload = 6; */
|
|
if (message.Payload !== "")
|
|
writer.tag(6, WireType.LengthDelimited).string(message.Payload);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.UpdateProjectComposedFieldRequest
|
|
*/
|
|
export const UpdateProjectComposedFieldRequest = new UpdateProjectComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class UpdateProjectComposedFieldResult$Type extends MessageType<UpdateProjectComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.UpdateProjectComposedFieldResult", [
|
|
{ no: 1, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "Updated dashboard ID" } } });
|
|
}
|
|
create(value?: PartialMessage<UpdateProjectComposedFieldResult>): UpdateProjectComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<UpdateProjectComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UpdateProjectComposedFieldResult): UpdateProjectComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* string ComposedFieldID */ 1:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: UpdateProjectComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* string ComposedFieldID = 1; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(1, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.UpdateProjectComposedFieldResult
|
|
*/
|
|
export const UpdateProjectComposedFieldResult = new UpdateProjectComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class DeleteProjectComposedFieldRequest$Type extends MessageType<DeleteProjectComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.DeleteProjectComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ComposedFieldID", kind: "scalar", localName: "ComposedFieldID", jsonName: "ComposedFieldID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Composed Field" }, "validate.rules": { string: { minLen: "1" } } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "IDs of the Composed Field to be deleted", required: ["Header", "ComposedFieldID"] } } });
|
|
}
|
|
create(value?: PartialMessage<DeleteProjectComposedFieldRequest>): DeleteProjectComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ComposedFieldID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<DeleteProjectComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteProjectComposedFieldRequest): DeleteProjectComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ComposedFieldID */ 2:
|
|
message.ComposedFieldID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: DeleteProjectComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ComposedFieldID = 2; */
|
|
if (message.ComposedFieldID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ComposedFieldID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.DeleteProjectComposedFieldRequest
|
|
*/
|
|
export const DeleteProjectComposedFieldRequest = new DeleteProjectComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class DeleteProjectComposedFieldResult$Type extends MessageType<DeleteProjectComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.DeleteProjectComposedFieldResult", []);
|
|
}
|
|
create(value?: PartialMessage<DeleteProjectComposedFieldResult>): DeleteProjectComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
if (value !== undefined)
|
|
reflectionMergePartial<DeleteProjectComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: DeleteProjectComposedFieldResult): DeleteProjectComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: DeleteProjectComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.DeleteProjectComposedFieldResult
|
|
*/
|
|
export const DeleteProjectComposedFieldResult = new DeleteProjectComposedFieldResult$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class ListProjectComposedFieldRequest$Type extends MessageType<ListProjectComposedFieldRequest> {
|
|
constructor() {
|
|
super("vizapi.ListProjectComposedFieldRequest", [
|
|
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
|
|
{ no: 2, name: "ScreenID", kind: "scalar", localName: "ScreenID", jsonName: "ScreenID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Screen" } } },
|
|
{ no: 3, name: "TabID", kind: "scalar", localName: "TabID", jsonName: "TabID", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Identifier of the Tab" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
|
|
}
|
|
create(value?: PartialMessage<ListProjectComposedFieldRequest>): ListProjectComposedFieldRequest {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.ScreenID = "";
|
|
message.TabID = "";
|
|
if (value !== undefined)
|
|
reflectionMergePartial<ListProjectComposedFieldRequest>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ListProjectComposedFieldRequest): ListProjectComposedFieldRequest {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* api.RequestProjectHeader Header */ 1:
|
|
message.Header = RequestProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
|
|
break;
|
|
case /* string ScreenID */ 2:
|
|
message.ScreenID = reader.string();
|
|
break;
|
|
case /* string TabID */ 3:
|
|
message.TabID = reader.string();
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: ListProjectComposedFieldRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* api.RequestProjectHeader Header = 1; */
|
|
if (message.Header)
|
|
RequestProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
/* string ScreenID = 2; */
|
|
if (message.ScreenID !== "")
|
|
writer.tag(2, WireType.LengthDelimited).string(message.ScreenID);
|
|
/* string TabID = 3; */
|
|
if (message.TabID !== "")
|
|
writer.tag(3, WireType.LengthDelimited).string(message.TabID);
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.ListProjectComposedFieldRequest
|
|
*/
|
|
export const ListProjectComposedFieldRequest = new ListProjectComposedFieldRequest$Type();
|
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
class ListProjectComposedFieldResult$Type extends MessageType<ListProjectComposedFieldResult> {
|
|
constructor() {
|
|
super("vizapi.ListProjectComposedFieldResult", [
|
|
{ no: 1, name: "Results", kind: "message", localName: "Results", jsonName: "Results", repeat: 2 /*RepeatType.UNPACKED*/, T: () => ComposedField, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "All Content in a Composed Field" } } }
|
|
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { description: "List of Composed Fields" } } });
|
|
}
|
|
create(value?: PartialMessage<ListProjectComposedFieldResult>): ListProjectComposedFieldResult {
|
|
const message = globalThis.Object.create((this.messagePrototype!));
|
|
message.Results = [];
|
|
if (value !== undefined)
|
|
reflectionMergePartial<ListProjectComposedFieldResult>(this, message, value);
|
|
return message;
|
|
}
|
|
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ListProjectComposedFieldResult): ListProjectComposedFieldResult {
|
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
while (reader.pos < end) {
|
|
let [fieldNo, wireType] = reader.tag();
|
|
switch (fieldNo) {
|
|
case /* repeated vizapi.ComposedField Results */ 1:
|
|
message.Results.push(ComposedField.internalBinaryRead(reader, reader.uint32(), options));
|
|
break;
|
|
default:
|
|
let u = options.readUnknownField;
|
|
if (u === "throw")
|
|
throw new globalThis.Error(`Unknown field ${fieldNo} (wire type ${wireType}) for ${this.typeName}`);
|
|
let d = reader.skip(wireType);
|
|
if (u !== false)
|
|
(u === true ? UnknownFieldHandler.onRead : u)(this.typeName, message, fieldNo, wireType, d);
|
|
}
|
|
}
|
|
return message;
|
|
}
|
|
internalBinaryWrite(message: ListProjectComposedFieldResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
|
/* repeated vizapi.ComposedField Results = 1; */
|
|
for (let i = 0; i < message.Results.length; i++)
|
|
ComposedField.internalBinaryWrite(message.Results[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
let u = options.writeUnknownFields;
|
|
if (u !== false)
|
|
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
|
return writer;
|
|
}
|
|
}
|
|
/**
|
|
* @generated MessageType for protobuf message vizapi.ListProjectComposedFieldResult
|
|
*/
|
|
export const ListProjectComposedFieldResult = new ListProjectComposedFieldResult$Type();
|
|
/**
|
|
* @generated ServiceType for protobuf service vizapi.ComposedFieldService
|
|
*/
|
|
export const ComposedFieldService = new ServiceType("vizapi.ComposedFieldService", [
|
|
{ name: "Get", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Get a composed field" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetComposedFieldRequest, O: GetComposedFieldResult },
|
|
{ name: "Create", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Create a composed field", description: "TODO" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: CreateComposedFieldRequest, O: CreateComposedFieldResult },
|
|
{ name: "Update", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Update a composed field", description: "TODO" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: UpdateComposedFieldRequest, O: UpdateComposedFieldResult },
|
|
{ name: "Delete", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Delete a composed field", description: "TODO" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: DeleteComposedFieldRequest, O: DeleteComposedFieldResult },
|
|
{ name: "List", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "List composed fields", description: "List all composed fields present under the same Project and with the same Screen and Tab IDs" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ListComposedFieldRequest, O: ListComposedFieldResult },
|
|
{ name: "GetProject", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Get a composed field" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: GetProjectComposedFieldRequest, O: GetProjectComposedFieldResult },
|
|
{ name: "CreateProject", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Create a composed field", description: "TODO" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: CreateProjectComposedFieldRequest, O: CreateProjectComposedFieldResult },
|
|
{ name: "UpdateProject", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Update a composed field", description: "TODO" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: UpdateProjectComposedFieldRequest, O: UpdateProjectComposedFieldResult },
|
|
{ name: "DeleteProject", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "Delete a composed field", description: "TODO" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: DeleteProjectComposedFieldRequest, O: DeleteProjectComposedFieldResult },
|
|
{ name: "ListProject", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["Composed Field"], summary: "List composed fields", description: "List all composed fields present under the same Project and with the same Screen and Tab IDs" }, "api.rscType": "Project", "api.roles": "", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: ListProjectComposedFieldRequest, O: ListProjectComposedFieldResult }
|
|
], { "api.k8sService": "views-server" });
|