-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: improvements to protobuf-es-lite
Signed-off-by: Christian Stewart <[email protected]>
- Loading branch information
Showing
76 changed files
with
2,414 additions
and
2,874 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// @generated by protoc-gen-es-lite unknown with parameter "target=ts,ts_nocheck=false" | ||
// @generated from file github.com/aperturerobotics/bifrost/daemon/api/api.proto (package bifrost.api, syntax proto3) | ||
/* eslint-disable */ | ||
|
||
import type { MessageType, PartialFieldInfo } from "@aptre/protobuf-es-lite"; | ||
import { createMessageType, Message } from "@aptre/protobuf-es-lite"; | ||
import { Config as Config$1 } from "../../../controllerbus/bus/api/api.pb.js"; | ||
|
||
export const protobufPackage = "bifrost.api"; | ||
|
||
/** | ||
* Config configures the API. | ||
* | ||
* @generated from message bifrost.api.Config | ||
*/ | ||
export type Config = Message<{ | ||
/** | ||
* BusConfig configures the bus api. | ||
* | ||
* @generated from field: bus.api.Config bus_config = 1; | ||
*/ | ||
busConfig?: Config$1; | ||
|
||
}>; | ||
|
||
export const Config: MessageType<Config> = createMessageType( | ||
{ | ||
typeName: "bifrost.api.Config", | ||
fields: [ | ||
{ no: 1, name: "bus_config", kind: "message", T: () => Config$1 }, | ||
] as readonly PartialFieldInfo[], | ||
packedByDefault: true, | ||
}, | ||
); | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// @generated by protoc-gen-es-lite unknown with parameter "target=ts,ts_nocheck=false" | ||
// @generated from file github.com/aperturerobotics/bifrost/daemon/api/controller/controller.proto (package bifrost.api.controller, syntax proto3) | ||
/* eslint-disable */ | ||
|
||
import type { MessageType, PartialFieldInfo } from "@aptre/protobuf-es-lite"; | ||
import { createMessageType, Message } from "@aptre/protobuf-es-lite"; | ||
import { Config as Config$1 } from "../api.pb.js"; | ||
import { Config as Config$2 } from "../../../../controllerbus/bus/api/api.pb.js"; | ||
|
||
export const protobufPackage = "bifrost.api.controller"; | ||
|
||
/** | ||
* Config configures the API. | ||
* | ||
* @generated from message bifrost.api.controller.Config | ||
*/ | ||
export type Config = Message<{ | ||
/** | ||
* ListenAddr is the address to listen on for connections. | ||
* | ||
* @generated from field: string listen_addr = 1; | ||
*/ | ||
listenAddr?: string; | ||
/** | ||
* ApiConfig are api config options. | ||
* | ||
* @generated from field: bifrost.api.Config api_config = 2; | ||
*/ | ||
apiConfig?: Config$1; | ||
/** | ||
* DisableBusApi disables the bus api. | ||
* | ||
* @generated from field: bool disable_bus_api = 3; | ||
*/ | ||
disableBusApi?: boolean; | ||
/** | ||
* BusApiConfig are controller-bus bus api config options. | ||
* BusApiConfig are options for controller bus api. | ||
* | ||
* @generated from field: bus.api.Config bus_api_config = 4; | ||
*/ | ||
busApiConfig?: Config$2; | ||
|
||
}>; | ||
|
||
export const Config: MessageType<Config> = createMessageType( | ||
{ | ||
typeName: "bifrost.api.controller.Config", | ||
fields: [ | ||
{ no: 1, name: "listen_addr", kind: "scalar", T: 9 /* ScalarType.STRING */ }, | ||
{ no: 2, name: "api_config", kind: "message", T: () => Config$1 }, | ||
{ no: 3, name: "disable_bus_api", kind: "scalar", T: 8 /* ScalarType.BOOL */ }, | ||
{ no: 4, name: "bus_api_config", kind: "message", T: () => Config$2 }, | ||
] as readonly PartialFieldInfo[], | ||
packedByDefault: true, | ||
}, | ||
); | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// @generated by protoc-gen-es-lite unknown with parameter "target=ts,ts_nocheck=false" | ||
// @generated from file github.com/aperturerobotics/bifrost/entitygraph/config.proto (package bifrost.entitygraph, syntax proto3) | ||
/* eslint-disable */ | ||
|
||
import type { MessageType, PartialFieldInfo } from "@aptre/protobuf-es-lite"; | ||
import { createMessageType, Message } from "@aptre/protobuf-es-lite"; | ||
|
||
export const protobufPackage = "bifrost.entitygraph"; | ||
|
||
/** | ||
* Config is the config object for the entitygraph repoter. | ||
* | ||
* @generated from message bifrost.entitygraph.Config | ||
*/ | ||
export type Config = Message<{ | ||
|
||
}>; | ||
|
||
export const Config: MessageType<Config> = createMessageType( | ||
{ | ||
typeName: "bifrost.entitygraph.Config", | ||
fields: [ | ||
] as readonly PartialFieldInfo[], | ||
packedByDefault: true, | ||
}, | ||
); | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.