Skip to content

Commit

Permalink
Continuous Integration Build Protobuf Client Libraries for ES
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 16, 2024
1 parent c6e9cea commit 49b1689
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion build/es/node/devices/devices_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/* eslint-disable */
// @ts-nocheck

import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Struct } from "@bufbuild/protobuf";
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Struct, Timestamp } from "@bufbuild/protobuf";
import { Message, proto3 } from "@bufbuild/protobuf";
import type { Access } from "../access/access_pb.js";

Expand Down Expand Up @@ -71,6 +71,11 @@ export declare class Device extends Message<Device> {
*/
config?: Struct;

/**
* @generated from field: google.protobuf.Timestamp last_updated = 10;
*/
lastUpdated?: Timestamp;

constructor(data?: PartialMessage<Device>);

static readonly runtime: typeof proto3;
Expand Down
3 changes: 2 additions & 1 deletion build/es/node/devices/devices_pb.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/* eslint-disable */
// @ts-nocheck

import { proto3, Struct } from "@bufbuild/protobuf";
import { proto3, Struct, Timestamp } from "@bufbuild/protobuf";
import { Access } from "../access/access_pb.js";

/**
Expand All @@ -36,6 +36,7 @@ export const Device = proto3.makeMessageType(
{ no: 7, name: "token", kind: "scalar", T: 9 /* ScalarType.STRING */ },
{ no: 8, name: "access", kind: "message", T: Access, opt: true },
{ no: 9, name: "config", kind: "message", T: Struct },
{ no: 10, name: "last_updated", kind: "message", T: Timestamp },
],
);

Expand Down

0 comments on commit 49b1689

Please sign in to comment.