@wundergraph/cosmo-connect 0.87.0 → 0.88.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.
|
@@ -2193,6 +2193,14 @@ export declare class GetCheckOperationsRequest extends Message<GetCheckOperation
|
|
|
2193
2193
|
* @generated from field: string namespace = 3;
|
|
2194
2194
|
*/
|
|
2195
2195
|
namespace: string;
|
|
2196
|
+
/**
|
|
2197
|
+
* @generated from field: int32 limit = 4;
|
|
2198
|
+
*/
|
|
2199
|
+
limit: number;
|
|
2200
|
+
/**
|
|
2201
|
+
* @generated from field: int32 offset = 5;
|
|
2202
|
+
*/
|
|
2203
|
+
offset: number;
|
|
2196
2204
|
constructor(data?: PartialMessage<GetCheckOperationsRequest>);
|
|
2197
2205
|
static readonly runtime: typeof proto3;
|
|
2198
2206
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsRequest";
|
|
@@ -2226,6 +2234,10 @@ export declare class GetCheckOperationsResponse extends Message<GetCheckOperatio
|
|
|
2226
2234
|
* @generated from field: bool client_traffic_check_skipped = 5;
|
|
2227
2235
|
*/
|
|
2228
2236
|
clientTrafficCheckSkipped: boolean;
|
|
2237
|
+
/**
|
|
2238
|
+
* @generated from field: int32 totalOperationsCount = 6;
|
|
2239
|
+
*/
|
|
2240
|
+
totalOperationsCount: number;
|
|
2229
2241
|
constructor(data?: PartialMessage<GetCheckOperationsResponse>);
|
|
2230
2242
|
static readonly runtime: typeof proto3;
|
|
2231
2243
|
static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsResponse";
|
|
@@ -3281,6 +3281,14 @@ export class GetCheckOperationsRequest extends Message {
|
|
|
3281
3281
|
* @generated from field: string namespace = 3;
|
|
3282
3282
|
*/
|
|
3283
3283
|
namespace = "";
|
|
3284
|
+
/**
|
|
3285
|
+
* @generated from field: int32 limit = 4;
|
|
3286
|
+
*/
|
|
3287
|
+
limit = 0;
|
|
3288
|
+
/**
|
|
3289
|
+
* @generated from field: int32 offset = 5;
|
|
3290
|
+
*/
|
|
3291
|
+
offset = 0;
|
|
3284
3292
|
constructor(data) {
|
|
3285
3293
|
super();
|
|
3286
3294
|
proto3.util.initPartial(data, this);
|
|
@@ -3291,6 +3299,8 @@ export class GetCheckOperationsRequest extends Message {
|
|
|
3291
3299
|
{ no: 1, name: "check_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3292
3300
|
{ no: 2, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3293
3301
|
{ no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3302
|
+
{ no: 4, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3303
|
+
{ no: 5, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3294
3304
|
]);
|
|
3295
3305
|
static fromBinary(bytes, options) {
|
|
3296
3306
|
return new GetCheckOperationsRequest().fromBinary(bytes, options);
|
|
@@ -3329,6 +3339,10 @@ export class GetCheckOperationsResponse extends Message {
|
|
|
3329
3339
|
* @generated from field: bool client_traffic_check_skipped = 5;
|
|
3330
3340
|
*/
|
|
3331
3341
|
clientTrafficCheckSkipped = false;
|
|
3342
|
+
/**
|
|
3343
|
+
* @generated from field: int32 totalOperationsCount = 6;
|
|
3344
|
+
*/
|
|
3345
|
+
totalOperationsCount = 0;
|
|
3332
3346
|
constructor(data) {
|
|
3333
3347
|
super();
|
|
3334
3348
|
proto3.util.initPartial(data, this);
|
|
@@ -3341,6 +3355,7 @@ export class GetCheckOperationsResponse extends Message {
|
|
|
3341
3355
|
{ no: 3, name: "traffic_check_days", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3342
3356
|
{ no: 4, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3343
3357
|
{ no: 5, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
3358
|
+
{ no: 6, name: "totalOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
3344
3359
|
]);
|
|
3345
3360
|
static fromBinary(bytes, options) {
|
|
3346
3361
|
return new GetCheckOperationsResponse().fromBinary(bytes, options);
|