@wundergraph/cosmo-connect 0.87.0 → 0.88.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.
@@ -84,7 +84,11 @@ export declare enum Unit {
84
84
  /**
85
85
  * @generated from enum value: SpanID = 7;
86
86
  */
87
- SpanID = 7
87
+ SpanID = 7,
88
+ /**
89
+ * @generated from enum value: Percentage = 8;
90
+ */
91
+ Percentage = 8
88
92
  }
89
93
  /**
90
94
  * @generated from enum wg.cosmo.platform.v1.AnalyticsViewFilterOperator
@@ -2193,6 +2197,14 @@ export declare class GetCheckOperationsRequest extends Message<GetCheckOperation
2193
2197
  * @generated from field: string namespace = 3;
2194
2198
  */
2195
2199
  namespace: string;
2200
+ /**
2201
+ * @generated from field: int32 limit = 4;
2202
+ */
2203
+ limit: number;
2204
+ /**
2205
+ * @generated from field: int32 offset = 5;
2206
+ */
2207
+ offset: number;
2196
2208
  constructor(data?: PartialMessage<GetCheckOperationsRequest>);
2197
2209
  static readonly runtime: typeof proto3;
2198
2210
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsRequest";
@@ -2226,6 +2238,10 @@ export declare class GetCheckOperationsResponse extends Message<GetCheckOperatio
2226
2238
  * @generated from field: bool client_traffic_check_skipped = 5;
2227
2239
  */
2228
2240
  clientTrafficCheckSkipped: boolean;
2241
+ /**
2242
+ * @generated from field: int32 totalOperationsCount = 6;
2243
+ */
2244
+ totalOperationsCount: number;
2229
2245
  constructor(data?: PartialMessage<GetCheckOperationsResponse>);
2230
2246
  static readonly runtime: typeof proto3;
2231
2247
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsResponse";
@@ -106,6 +106,10 @@ export var Unit;
106
106
  * @generated from enum value: SpanID = 7;
107
107
  */
108
108
  Unit[Unit["SpanID"] = 7] = "SpanID";
109
+ /**
110
+ * @generated from enum value: Percentage = 8;
111
+ */
112
+ Unit[Unit["Percentage"] = 8] = "Percentage";
109
113
  })(Unit || (Unit = {}));
110
114
  // Retrieve enum metadata with: proto3.getEnumType(Unit)
111
115
  proto3.util.setEnumType(Unit, "wg.cosmo.platform.v1.Unit", [
@@ -117,6 +121,7 @@ proto3.util.setEnumType(Unit, "wg.cosmo.platform.v1.Unit", [
117
121
  { no: 5, name: "StatusCode" },
118
122
  { no: 6, name: "TraceID" },
119
123
  { no: 7, name: "SpanID" },
124
+ { no: 8, name: "Percentage" },
120
125
  ]);
121
126
  /**
122
127
  * @generated from enum wg.cosmo.platform.v1.AnalyticsViewFilterOperator
@@ -3281,6 +3286,14 @@ export class GetCheckOperationsRequest extends Message {
3281
3286
  * @generated from field: string namespace = 3;
3282
3287
  */
3283
3288
  namespace = "";
3289
+ /**
3290
+ * @generated from field: int32 limit = 4;
3291
+ */
3292
+ limit = 0;
3293
+ /**
3294
+ * @generated from field: int32 offset = 5;
3295
+ */
3296
+ offset = 0;
3284
3297
  constructor(data) {
3285
3298
  super();
3286
3299
  proto3.util.initPartial(data, this);
@@ -3291,6 +3304,8 @@ export class GetCheckOperationsRequest extends Message {
3291
3304
  { no: 1, name: "check_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3292
3305
  { no: 2, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3293
3306
  { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3307
+ { no: 4, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3308
+ { no: 5, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3294
3309
  ]);
3295
3310
  static fromBinary(bytes, options) {
3296
3311
  return new GetCheckOperationsRequest().fromBinary(bytes, options);
@@ -3329,6 +3344,10 @@ export class GetCheckOperationsResponse extends Message {
3329
3344
  * @generated from field: bool client_traffic_check_skipped = 5;
3330
3345
  */
3331
3346
  clientTrafficCheckSkipped = false;
3347
+ /**
3348
+ * @generated from field: int32 totalOperationsCount = 6;
3349
+ */
3350
+ totalOperationsCount = 0;
3332
3351
  constructor(data) {
3333
3352
  super();
3334
3353
  proto3.util.initPartial(data, this);
@@ -3341,6 +3360,7 @@ export class GetCheckOperationsResponse extends Message {
3341
3360
  { no: 3, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3342
3361
  { no: 4, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3343
3362
  { no: 5, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3363
+ { no: 6, name: "totalOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3344
3364
  ]);
3345
3365
  static fromBinary(bytes, options) {
3346
3366
  return new GetCheckOperationsResponse().fromBinary(bytes, options);