Skip to content

Commit

Permalink
docs:card proto update
Browse files Browse the repository at this point in the history
feat: material icon in card

PiperOrigin-RevId: 624942359
  • Loading branch information
Google APIs authored and Copybara-Service committed Apr 15, 2024
1 parent 113a378 commit 436a34a
Show file tree
Hide file tree
Showing 3 changed files with 275 additions and 165 deletions.
35 changes: 30 additions & 5 deletions google/apps/card/v1/BUILD.bazel
@@ -1,5 +1,7 @@
# This file was automatically generated by BuildFileGenerator

# buildifier: disable=load-on-top

# This is an API workspace, having public visibility by default makes perfect sense.
package(default_visibility = ["//visibility:public"])

Expand All @@ -21,6 +23,7 @@ proto_library(
##############################################################################
# Java
##############################################################################
# buildifier: disable=same-origin-load
load(
"@com_google_googleapis_imports//:imports.bzl",
"java_proto_library",
Expand All @@ -44,6 +47,7 @@ java_gapic_assembly_gradle_pkg(
##############################################################################
# Go
##############################################################################
# buildifier: disable=same-origin-load
load(
"@com_google_googleapis_imports//:imports.bzl",
"go_proto_library",
Expand All @@ -70,28 +74,45 @@ go_gapic_assembly_pkg(
##############################################################################
# Python
##############################################################################
# buildifier: disable=same-origin-load
load(
"@com_google_googleapis_imports//:imports.bzl",
"py_gapic_assembly_pkg",
"py_gapic_library",
"moved_proto_library",
"py_grpc_library",
"py_proto_library",
"py_gapic_library",
"py_gapic_assembly_pkg",
)

moved_proto_library(
name = "card_moved_proto",
srcs = [":card_proto"],
deps = [
"//google/type:color_proto",
],
)

py_proto_library(
name = "card_py_proto",
deps = [":card_proto"],
deps = [":card_moved_proto"],
)

py_grpc_library(
name = "card_py_grpc",
srcs = [":card_moved_proto"],
deps = [":card_py_proto"],
)

py_gapic_library(
name = "card_py_gapic",
srcs = [":card_proto"],
rest_numeric_enums = False,
transport = "grpc",
transport = "grpc+rest",
)

# Open Source Packages
py_gapic_assembly_pkg(
name = "card-v1-py",
name = "google-apps-card-v1-py",
deps = [
":card_py_gapic",
],
Expand All @@ -100,6 +121,7 @@ py_gapic_assembly_pkg(
##############################################################################
# PHP
##############################################################################
# buildifier: disable=same-origin-load
load(
"@com_google_googleapis_imports//:imports.bzl",
"php_gapic_assembly_pkg",
Expand All @@ -121,6 +143,7 @@ php_gapic_assembly_pkg(
##############################################################################
# Ruby
##############################################################################
# buildifier: disable=same-origin-load
load(
"@com_google_googleapis_imports//:imports.bzl",
"ruby_grpc_library",
Expand All @@ -141,6 +164,7 @@ ruby_grpc_library(
##############################################################################
# C#
##############################################################################
# buildifier: disable=same-origin-load
load(
"@com_google_googleapis_imports//:imports.bzl",
"csharp_proto_library",
Expand All @@ -165,6 +189,7 @@ csharp_gapic_assembly_pkg(
##############################################################################
# C++
##############################################################################
# buildifier: disable=same-origin-load
load(
"@com_google_googleapis_imports//:imports.bzl",
"cc_grpc_library",
Expand Down
3 changes: 3 additions & 0 deletions google/apps/card/v1/README.md
@@ -0,0 +1,3 @@
# Card

These protos represent the Card interface displayed in a Google Chat message or Google Workspace Add-on.

0 comments on commit 436a34a

Please sign in to comment.