@adempiere/grpc-api
Advanced tools
Comparing version 1.6.6 to 1.6.7
{ | ||
"name": "@adempiere/grpc-api", | ||
"version": "1.6.6", | ||
"version": "1.6.7", | ||
"description": "ADempiere Web Store write in Javascript for a node service", | ||
@@ -5,0 +5,0 @@ "author": "Yamel Senih", |
@@ -640,2 +640,24 @@ // GENERATED CODE -- DO NOT EDIT! | ||
function serialize_data_ListTabEntitiesRequest(arg) { | ||
if (!(arg instanceof proto_business_pb.ListTabEntitiesRequest)) { | ||
throw new Error('Expected argument of type data.ListTabEntitiesRequest'); | ||
} | ||
return Buffer.from(arg.serializeBinary()); | ||
} | ||
function deserialize_data_ListTabEntitiesRequest(buffer_arg) { | ||
return proto_business_pb.ListTabEntitiesRequest.deserializeBinary(new Uint8Array(buffer_arg)); | ||
} | ||
function serialize_data_ListTabEntitiesResponse(arg) { | ||
if (!(arg instanceof proto_business_pb.ListTabEntitiesResponse)) { | ||
throw new Error('Expected argument of type data.ListTabEntitiesResponse'); | ||
} | ||
return Buffer.from(arg.serializeBinary()); | ||
} | ||
function deserialize_data_ListTabEntitiesResponse(buffer_arg) { | ||
return proto_business_pb.ListTabEntitiesResponse.deserializeBinary(new Uint8Array(buffer_arg)); | ||
} | ||
function serialize_data_ListTranslationsRequest(arg) { | ||
@@ -1284,2 +1306,14 @@ if (!(arg instanceof proto_business_pb.ListTranslationsRequest)) { | ||
}, | ||
// List tab Entities | ||
listTabEntities: { | ||
path: '/data.UserInterface/ListTabEntities', | ||
requestStream: false, | ||
responseStream: false, | ||
requestType: proto_business_pb.ListTabEntitiesRequest, | ||
responseType: proto_business_pb.ListTabEntitiesResponse, | ||
requestSerialize: serialize_data_ListTabEntitiesRequest, | ||
requestDeserialize: deserialize_data_ListTabEntitiesRequest, | ||
responseSerialize: serialize_data_ListTabEntitiesResponse, | ||
responseDeserialize: deserialize_data_ListTabEntitiesResponse, | ||
}, | ||
}; | ||
@@ -1286,0 +1320,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2604297
75890