@wundergraph/cosmo-connect 0.46.0 → 0.47.0

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.
@@ -4867,6 +4867,14 @@ export declare class GetAuditLogsRequest extends Message<GetAuditLogsRequest> {
4867
4867
  * @generated from field: int32 offset = 2;
4868
4868
  */
4869
4869
  offset: number;
4870
+ /**
4871
+ * @generated from field: string startDate = 3;
4872
+ */
4873
+ startDate: string;
4874
+ /**
4875
+ * @generated from field: string endDate = 4;
4876
+ */
4877
+ endDate: string;
4870
4878
  constructor(data?: PartialMessage<GetAuditLogsRequest>);
4871
4879
  static readonly runtime: typeof proto3;
4872
4880
  static readonly typeName = "wg.cosmo.platform.v1.GetAuditLogsRequest";
@@ -4937,6 +4945,10 @@ export declare class GetAuditLogsResponse extends Message<GetAuditLogsResponse>
4937
4945
  * @generated from field: repeated wg.cosmo.platform.v1.AuditLog logs = 2;
4938
4946
  */
4939
4947
  logs: AuditLog[];
4948
+ /**
4949
+ * @generated from field: int32 count = 3;
4950
+ */
4951
+ count: number;
4940
4952
  constructor(data?: PartialMessage<GetAuditLogsResponse>);
4941
4953
  static readonly runtime: typeof proto3;
4942
4954
  static readonly typeName = "wg.cosmo.platform.v1.GetAuditLogsResponse";
@@ -7685,6 +7685,14 @@ export class GetAuditLogsRequest extends Message {
7685
7685
  * @generated from field: int32 offset = 2;
7686
7686
  */
7687
7687
  offset = 0;
7688
+ /**
7689
+ * @generated from field: string startDate = 3;
7690
+ */
7691
+ startDate = "";
7692
+ /**
7693
+ * @generated from field: string endDate = 4;
7694
+ */
7695
+ endDate = "";
7688
7696
  constructor(data) {
7689
7697
  super();
7690
7698
  proto3.util.initPartial(data, this);
@@ -7694,6 +7702,8 @@ export class GetAuditLogsRequest extends Message {
7694
7702
  static fields = proto3.util.newFieldList(() => [
7695
7703
  { no: 1, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
7696
7704
  { no: 2, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
7705
+ { no: 3, name: "startDate", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7706
+ { no: 4, name: "endDate", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7697
7707
  ]);
7698
7708
  static fromBinary(bytes, options) {
7699
7709
  return new GetAuditLogsRequest().fromBinary(bytes, options);
@@ -7790,6 +7800,10 @@ export class GetAuditLogsResponse extends Message {
7790
7800
  * @generated from field: repeated wg.cosmo.platform.v1.AuditLog logs = 2;
7791
7801
  */
7792
7802
  logs = [];
7803
+ /**
7804
+ * @generated from field: int32 count = 3;
7805
+ */
7806
+ count = 0;
7793
7807
  constructor(data) {
7794
7808
  super();
7795
7809
  proto3.util.initPartial(data, this);
@@ -7799,6 +7813,7 @@ export class GetAuditLogsResponse extends Message {
7799
7813
  static fields = proto3.util.newFieldList(() => [
7800
7814
  { no: 1, name: "response", kind: "message", T: Response },
7801
7815
  { no: 2, name: "logs", kind: "message", T: AuditLog, repeated: true },
7816
+ { no: 3, name: "count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
7802
7817
  ]);
7803
7818
  static fromBinary(bytes, options) {
7804
7819
  return new GetAuditLogsResponse().fromBinary(bytes, options);