You've already forked npm-core-sdk
Latest generation
This commit is contained in:
21
shared.ts
21
shared.ts
@@ -1088,6 +1088,17 @@ export interface CoreEndpoint {
|
||||
* @generated from protobuf field: string GrpcCoreClaimTypeEndpoint = 9
|
||||
*/
|
||||
GrpcCoreClaimTypeEndpoint: string;
|
||||
/**
|
||||
* GrpcCoreEndpoint is the URL to access GRPC services of Platform.
|
||||
* It is expected to include protocol.
|
||||
* The protocol is expected to be "https://".
|
||||
* Empty protocol MUST raise an error.
|
||||
* Empty protocol or empty value MUST prevent attempts to access gRPC services.
|
||||
* Empty value or protocol SHOULD NOT prevent normal use of other functions.
|
||||
*
|
||||
* @generated from protobuf field: string GrpcCoreEndpoint = 10
|
||||
*/
|
||||
GrpcCoreEndpoint: string;
|
||||
}
|
||||
/**
|
||||
* IntegrationEndpoint represents the different endpoints of the integration Platform
|
||||
@@ -5496,7 +5507,8 @@ class CoreEndpoint$Type extends MessageType<CoreEndpoint> {
|
||||
{ no: 6, name: "GrpcProjectModelEndpoint", kind: "scalar", localName: "GrpcProjectModelEndpoint", jsonName: "GrpcProjectModelEndpoint", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 7, name: "GrpcCoreCollabInputEndpoint", kind: "scalar", localName: "GrpcCoreCollabInputEndpoint", jsonName: "GrpcCoreCollabInputEndpoint", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 8, name: "GrpcCoreCollabQueryEndpoint", kind: "scalar", localName: "GrpcCoreCollabQueryEndpoint", jsonName: "GrpcCoreCollabQueryEndpoint", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 9, name: "GrpcCoreClaimTypeEndpoint", kind: "scalar", localName: "GrpcCoreClaimTypeEndpoint", jsonName: "GrpcCoreClaimTypeEndpoint", T: 9 /*ScalarType.STRING*/ }
|
||||
{ no: 9, name: "GrpcCoreClaimTypeEndpoint", kind: "scalar", localName: "GrpcCoreClaimTypeEndpoint", jsonName: "GrpcCoreClaimTypeEndpoint", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 10, name: "GrpcCoreEndpoint", kind: "scalar", localName: "GrpcCoreEndpoint", jsonName: "GrpcCoreEndpoint", T: 9 /*ScalarType.STRING*/ }
|
||||
]);
|
||||
}
|
||||
create(value?: PartialMessage<CoreEndpoint>): CoreEndpoint {
|
||||
@@ -5510,6 +5522,7 @@ class CoreEndpoint$Type extends MessageType<CoreEndpoint> {
|
||||
message.GrpcCoreCollabInputEndpoint = "";
|
||||
message.GrpcCoreCollabQueryEndpoint = "";
|
||||
message.GrpcCoreClaimTypeEndpoint = "";
|
||||
message.GrpcCoreEndpoint = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<CoreEndpoint>(this, message, value);
|
||||
return message;
|
||||
@@ -5546,6 +5559,9 @@ class CoreEndpoint$Type extends MessageType<CoreEndpoint> {
|
||||
case /* string GrpcCoreClaimTypeEndpoint */ 9:
|
||||
message.GrpcCoreClaimTypeEndpoint = reader.string();
|
||||
break;
|
||||
case /* string GrpcCoreEndpoint */ 10:
|
||||
message.GrpcCoreEndpoint = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -5585,6 +5601,9 @@ class CoreEndpoint$Type extends MessageType<CoreEndpoint> {
|
||||
/* string GrpcCoreClaimTypeEndpoint = 9; */
|
||||
if (message.GrpcCoreClaimTypeEndpoint !== "")
|
||||
writer.tag(9, WireType.LengthDelimited).string(message.GrpcCoreClaimTypeEndpoint);
|
||||
/* string GrpcCoreEndpoint = 10; */
|
||||
if (message.GrpcCoreEndpoint !== "")
|
||||
writer.tag(10, WireType.LengthDelimited).string(message.GrpcCoreEndpoint);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user