UNPKG

@mochabug/adapt-web

Version:

The client library to execute automations, without effort, in a browser environment

65 lines 3.62 kB
"use strict"; // Copyright 2023, mochabug AB // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. Object.defineProperty(exports, "__esModule", { value: true }); exports.Transmitter_ModeSchema = exports.Transmitter_Mode = exports.TransmitterSchema = exports.file_mochabugapis_adapt_graph_transmitter = void 0; const codegenv2_1 = require("@bufbuild/protobuf/codegenv2"); const validate_pb_js_1 = require("../../../buf/validate/validate_pb.js"); const signal_descriptor_pb_js_1 = require("./signal_descriptor_pb.js"); /** * Describes the file mochabugapis/adapt/graph/transmitter.proto. */ exports.file_mochabugapis_adapt_graph_transmitter = (0, codegenv2_1.fileDesc)("Ciptb2NoYWJ1Z2FwaXMvYWRhcHQvZ3JhcGgvdHJhbnNtaXR0ZXIucHJvdG8SGG1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaCLCAwoLVHJhbnNtaXR0ZXISMwoEbmFtZRgBIAEoCUIlukgiciAQARgyMhpeW18kYS16QS1aXVtfJGEtekEtWjAtOV0qJBIiCgtkZXNjcmlwdGlvbhgCIAEoCUIIukgFcgMY+gFIAIgBARKtAQoHc2lnbmFscxgDIAMoCzIqLm1vY2hhYnVnYXBpcy5hZGFwdC5ncmFwaC5TaWduYWxEZXNjcmlwdG9yQnC6SG26AWQKFHNpZ25hbHNfdW5pcXVlX25hbWVzEiRFYWNoIHNpZ25hbCBtdXN0IGhhdmUgYSB1bmlxdWUgbmFtZS4aJnRoaXMubWFwKHNpZ25hbCwgc2lnbmFsLm5hbWUpLnVuaXF1ZSgpkgEDEIAEEj0KBG1vZGUYBCABKA4yKi5tb2NoYWJ1Z2FwaXMuYWRhcHQuZ3JhcGguVHJhbnNtaXR0ZXIuTW9kZUgBiAEBIlIKBE1vZGUSFAoQTU9ERV9VTlNQRUNJRklFRBAAEhEKDU1PREVfU1RBTkRBUkQQARIPCgtNT0RFX1NUUkVBTRACEhAKDE1PREVfRkFJTFVSRRADQg4KDF9kZXNjcmlwdGlvbkIHCgVfbW9kZWIGcHJvdG8z", [validate_pb_js_1.file_buf_validate_validate, signal_descriptor_pb_js_1.file_mochabugapis_adapt_graph_signal_descriptor]); /** * Describes the message mochabugapis.adapt.graph.Transmitter. * Use `create(TransmitterSchema)` to create a new message. */ exports.TransmitterSchema = (0, codegenv2_1.messageDesc)(exports.file_mochabugapis_adapt_graph_transmitter, 0); /** * The type of the transmitter. * * @generated from enum mochabugapis.adapt.graph.Transmitter.Mode */ var Transmitter_Mode; (function (Transmitter_Mode) { /** * Default value indicating the mode is not explicitly set. * * @generated from enum value: MODE_UNSPECIFIED = 0; */ Transmitter_Mode[Transmitter_Mode["UNSPECIFIED"] = 0] = "UNSPECIFIED"; /** * Transmitter is transmitting with the standard mode. I.e. a single transmission * * @generated from enum value: MODE_STANDARD = 1; */ Transmitter_Mode[Transmitter_Mode["STANDARD"] = 1] = "STANDARD"; /** * Transmitter is transmitter with stream. I.e. multiple transmissions * * @generated from enum value: MODE_STREAM = 2; */ Transmitter_Mode[Transmitter_Mode["STREAM"] = 2] = "STREAM"; /** * Transmitter is transmitting a failure. I.e. a single transmission with a failure flag * * @generated from enum value: MODE_FAILURE = 3; */ Transmitter_Mode[Transmitter_Mode["FAILURE"] = 3] = "FAILURE"; })(Transmitter_Mode || (exports.Transmitter_Mode = Transmitter_Mode = {})); /** * Describes the enum mochabugapis.adapt.graph.Transmitter.Mode. */ exports.Transmitter_ModeSchema = (0, codegenv2_1.enumDesc)(exports.file_mochabugapis_adapt_graph_transmitter, 0, 0); //# sourceMappingURL=transmitter_pb.js.map