blob: 0d68a60e26887358e21c6ec9a27396cef64f378c [file] [log] [blame]
// Copyright 2023 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
syntax = "proto3";
package recipes.fuchsia.contrib.firebase_docs;
message InputProperties {
// Whether to upload docs to firebase.
bool dry_run = 1;
// Packages to build.
repeated string generators = 2;
// Jiri manifest to use.
string manifest = 3;
// Name of top-level output reference-docs directory.
string output_name = 4;
// Remote manifest repository.
string remote = 5;
// Path to a fint params file.
string fint_params_path = 6;
}