@wundergraph/cosmo-connect 0.43.0 → 0.43.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5951,6 +5951,10 @@ export declare class DiscussionComment extends Message<DiscussionComment> {
5951
5951
  * @generated from field: optional string updated_at = 5;
5952
5952
  */
5953
5953
  updatedAt?: string;
5954
+ /**
5955
+ * @generated from field: bool is_deleted = 6;
5956
+ */
5957
+ isDeleted: boolean;
5954
5958
  constructor(data?: PartialMessage<DiscussionComment>);
5955
5959
  static readonly runtime: typeof proto3;
5956
5960
  static readonly typeName = "wg.cosmo.platform.v1.DiscussionComment";
@@ -9454,6 +9454,10 @@ export class DiscussionComment extends Message {
9454
9454
  * @generated from field: optional string updated_at = 5;
9455
9455
  */
9456
9456
  updatedAt;
9457
+ /**
9458
+ * @generated from field: bool is_deleted = 6;
9459
+ */
9460
+ isDeleted = false;
9457
9461
  constructor(data) {
9458
9462
  super();
9459
9463
  proto3.util.initPartial(data, this);
@@ -9466,6 +9470,7 @@ export class DiscussionComment extends Message {
9466
9470
  { no: 3, name: "created_by", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9467
9471
  { no: 4, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9468
9472
  { no: 5, name: "updated_at", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
9473
+ { no: 6, name: "is_deleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
9469
9474
  ]);
9470
9475
  static fromBinary(bytes, options) {
9471
9476
  return new DiscussionComment().fromBinary(bytes, options);