Compare commits
4 Commits
b16f526fb5
...
v1.0.10
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f6366f14b5 | ||
|
|
39d0e360a2 | ||
|
|
4f038b0f92 | ||
|
|
f592ccc021 |
1
.github/workflows/publish.yml
vendored
1
.github/workflows/publish.yml
vendored
@@ -50,7 +50,6 @@ jobs:
|
|||||||
npm install -g ts-proto
|
npm install -g ts-proto
|
||||||
protoc -I ./proto ./proto/*.proto \
|
protoc -I ./proto ./proto/*.proto \
|
||||||
--ts_proto_out=nestJs=true,package=omit:./gen \
|
--ts_proto_out=nestJs=true,package=omit:./gen \
|
||||||
--go_out=Mgoogle/protobuf/any.proto=google.golang.org/protobuf/types/known/anypb,paths=source_relative:./gen \
|
|
||||||
--go-grpc_out=paths=source_relative:./gen
|
--go-grpc_out=paths=source_relative:./gen
|
||||||
|
|
||||||
- name: Publish package
|
- name: Publish package
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-ts_proto v2.11.6
|
|
||||||
// protoc v7.34.1
|
|
||||||
// source: google/protobuf/any.proto
|
|
||||||
|
|
||||||
/* eslint-disable */
|
|
||||||
|
|
||||||
export const protobufPackage = "google.protobuf";
|
|
||||||
|
|
||||||
export interface Any {
|
|
||||||
typeUrl: string;
|
|
||||||
value: Uint8Array;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const GOOGLE_PROTOBUF_PACKAGE_NAME = "google.protobuf";
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
||||||
// versions:
|
|
||||||
// protoc-gen-ts_proto v2.11.6
|
|
||||||
// protoc v7.34.1
|
|
||||||
// source: google/rpc/status.proto
|
|
||||||
|
|
||||||
/* eslint-disable */
|
|
||||||
import { Any } from "../protobuf/any";
|
|
||||||
|
|
||||||
export const protobufPackage = "google.rpc";
|
|
||||||
|
|
||||||
export interface Status {
|
|
||||||
code: number;
|
|
||||||
message: string;
|
|
||||||
details: Any[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export const GOOGLE_RPC_PACKAGE_NAME = "google.rpc";
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@lendry-erp/contracts",
|
"name": "@lendry-erp/contracts",
|
||||||
"version": "1.0.13",
|
"version": "1.0.9",
|
||||||
"description": "Protobuf definitions and generated TypeScript types",
|
"description": "Protobuf definitions and generated TypeScript types",
|
||||||
"type": "commonjs",
|
"type": "commonjs",
|
||||||
"main": "./dist/index.js",
|
"main": "./dist/index.js",
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package google.protobuf;
|
|
||||||
|
|
||||||
message Any {
|
|
||||||
string type_url = 1;
|
|
||||||
bytes value = 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
syntax = "proto3";
|
|
||||||
|
|
||||||
package google.rpc;
|
|
||||||
|
|
||||||
import "google/protobuf/any.proto";
|
|
||||||
|
|
||||||
message Status {
|
|
||||||
int32 code = 1;
|
|
||||||
string message = 2;
|
|
||||||
repeated google.protobuf.Any details = 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package identity;
|
package identity;
|
||||||
import "google/rpc/status.proto";
|
|
||||||
|
|
||||||
|
option go_package = './gen';
|
||||||
|
|
||||||
service AuthService {
|
service AuthService {
|
||||||
rpc Login (LoginRequest) returns (LoginResponse);
|
rpc Login (LoginRequest) returns (LoginResponse);
|
||||||
@@ -36,7 +36,6 @@ message LoginResponse {
|
|||||||
optional string temp_token = 5;
|
optional string temp_token = 5;
|
||||||
optional string message = 6;
|
optional string message = 6;
|
||||||
optional string error_code = 7;
|
optional string error_code = 7;
|
||||||
optional google.rpc.Status error = 8;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
message RefreshRequest {
|
message RefreshRequest {
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ syntax = "proto3";
|
|||||||
|
|
||||||
package ldap_service;
|
package ldap_service;
|
||||||
|
|
||||||
|
option go_package = './gen';
|
||||||
|
|
||||||
service LdapAuth {
|
service LdapAuth {
|
||||||
rpc VerifyUser (VerifyRequest) returns (VerifyResponse);
|
rpc VerifyUser (VerifyRequest) returns (VerifyResponse);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user