@wundergraph/cosmo-connect 0.36.0 → 0.37.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.
- package/dist/common/common_pb.d.ts +5 -1
- package/dist/common/common_pb.js +5 -0
- package/dist/common/common_pb.js.map +1 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.d.ts +103 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js +103 -1
- package/dist/platform/v1/platform-PlatformService_connectquery.js.map +1 -1
- package/dist/platform/v1/platform_connect.d.ts +67 -1
- package/dist/platform/v1/platform_connect.js +67 -1
- package/dist/platform/v1/platform_connect.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +278 -0
- package/dist/platform/v1/platform_pb.js +468 -0
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -1294,6 +1294,10 @@ export class Subgraph extends Message {
|
|
|
1294
1294
|
* @generated from field: repeated wg.cosmo.platform.v1.Label labels = 5;
|
|
1295
1295
|
*/
|
|
1296
1296
|
labels = [];
|
|
1297
|
+
/**
|
|
1298
|
+
* @generated from field: optional string creatorUserId = 6;
|
|
1299
|
+
*/
|
|
1300
|
+
creatorUserId;
|
|
1297
1301
|
constructor(data) {
|
|
1298
1302
|
super();
|
|
1299
1303
|
proto3.util.initPartial(data, this);
|
|
@@ -1306,6 +1310,7 @@ export class Subgraph extends Message {
|
|
|
1306
1310
|
{ no: 3, name: "routingURL", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1307
1311
|
{ no: 4, name: "lastUpdatedAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1308
1312
|
{ no: 5, name: "labels", kind: "message", T: Label, repeated: true },
|
|
1313
|
+
{ no: 6, name: "creatorUserId", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
1309
1314
|
]);
|
|
1310
1315
|
static fromBinary(bytes, options) {
|
|
1311
1316
|
return new Subgraph().fromBinary(bytes, options);
|
|
@@ -3787,6 +3792,14 @@ export class CreateAPIKeyRequest extends Message {
|
|
|
3787
3792
|
* @generated from field: wg.cosmo.platform.v1.ExpiresAt expires = 3;
|
|
3788
3793
|
*/
|
|
3789
3794
|
expires = ExpiresAt.NEVER;
|
|
3795
|
+
/**
|
|
3796
|
+
* @generated from field: repeated string federatedGraphTargetIds = 4;
|
|
3797
|
+
*/
|
|
3798
|
+
federatedGraphTargetIds = [];
|
|
3799
|
+
/**
|
|
3800
|
+
* @generated from field: repeated string subgraphTargetIds = 5;
|
|
3801
|
+
*/
|
|
3802
|
+
subgraphTargetIds = [];
|
|
3790
3803
|
constructor(data) {
|
|
3791
3804
|
super();
|
|
3792
3805
|
proto3.util.initPartial(data, this);
|
|
@@ -3797,6 +3810,8 @@ export class CreateAPIKeyRequest extends Message {
|
|
|
3797
3810
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3798
3811
|
{ no: 2, name: "userID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3799
3812
|
{ no: 3, name: "expires", kind: "enum", T: proto3.getEnumType(ExpiresAt) },
|
|
3813
|
+
{ no: 4, name: "federatedGraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
3814
|
+
{ no: 5, name: "subgraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
3800
3815
|
]);
|
|
3801
3816
|
static fromBinary(bytes, options) {
|
|
3802
3817
|
return new CreateAPIKeyRequest().fromBinary(bytes, options);
|
|
@@ -7347,6 +7362,459 @@ export class GetChangelogBySchemaVersionResponse extends Message {
|
|
|
7347
7362
|
return proto3.util.equals(GetChangelogBySchemaVersionResponse, a, b);
|
|
7348
7363
|
}
|
|
7349
7364
|
}
|
|
7365
|
+
/**
|
|
7366
|
+
* @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesRequest
|
|
7367
|
+
*/
|
|
7368
|
+
export class GetUserAccessibleResourcesRequest extends Message {
|
|
7369
|
+
constructor(data) {
|
|
7370
|
+
super();
|
|
7371
|
+
proto3.util.initPartial(data, this);
|
|
7372
|
+
}
|
|
7373
|
+
static runtime = proto3;
|
|
7374
|
+
static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesRequest";
|
|
7375
|
+
static fields = proto3.util.newFieldList(() => []);
|
|
7376
|
+
static fromBinary(bytes, options) {
|
|
7377
|
+
return new GetUserAccessibleResourcesRequest().fromBinary(bytes, options);
|
|
7378
|
+
}
|
|
7379
|
+
static fromJson(jsonValue, options) {
|
|
7380
|
+
return new GetUserAccessibleResourcesRequest().fromJson(jsonValue, options);
|
|
7381
|
+
}
|
|
7382
|
+
static fromJsonString(jsonString, options) {
|
|
7383
|
+
return new GetUserAccessibleResourcesRequest().fromJsonString(jsonString, options);
|
|
7384
|
+
}
|
|
7385
|
+
static equals(a, b) {
|
|
7386
|
+
return proto3.util.equals(GetUserAccessibleResourcesRequest, a, b);
|
|
7387
|
+
}
|
|
7388
|
+
}
|
|
7389
|
+
/**
|
|
7390
|
+
* @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse
|
|
7391
|
+
*/
|
|
7392
|
+
export class GetUserAccessibleResourcesResponse extends Message {
|
|
7393
|
+
/**
|
|
7394
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7395
|
+
*/
|
|
7396
|
+
response;
|
|
7397
|
+
/**
|
|
7398
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph federatedGraphs = 2;
|
|
7399
|
+
*/
|
|
7400
|
+
federatedGraphs = [];
|
|
7401
|
+
/**
|
|
7402
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph subgraphs = 3;
|
|
7403
|
+
*/
|
|
7404
|
+
subgraphs = [];
|
|
7405
|
+
constructor(data) {
|
|
7406
|
+
super();
|
|
7407
|
+
proto3.util.initPartial(data, this);
|
|
7408
|
+
}
|
|
7409
|
+
static runtime = proto3;
|
|
7410
|
+
static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse";
|
|
7411
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7412
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7413
|
+
{ no: 2, name: "federatedGraphs", kind: "message", T: GetUserAccessibleResourcesResponse_Graph, repeated: true },
|
|
7414
|
+
{ no: 3, name: "subgraphs", kind: "message", T: GetUserAccessibleResourcesResponse_Graph, repeated: true },
|
|
7415
|
+
]);
|
|
7416
|
+
static fromBinary(bytes, options) {
|
|
7417
|
+
return new GetUserAccessibleResourcesResponse().fromBinary(bytes, options);
|
|
7418
|
+
}
|
|
7419
|
+
static fromJson(jsonValue, options) {
|
|
7420
|
+
return new GetUserAccessibleResourcesResponse().fromJson(jsonValue, options);
|
|
7421
|
+
}
|
|
7422
|
+
static fromJsonString(jsonString, options) {
|
|
7423
|
+
return new GetUserAccessibleResourcesResponse().fromJsonString(jsonString, options);
|
|
7424
|
+
}
|
|
7425
|
+
static equals(a, b) {
|
|
7426
|
+
return proto3.util.equals(GetUserAccessibleResourcesResponse, a, b);
|
|
7427
|
+
}
|
|
7428
|
+
}
|
|
7429
|
+
/**
|
|
7430
|
+
* @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph
|
|
7431
|
+
*/
|
|
7432
|
+
export class GetUserAccessibleResourcesResponse_Graph extends Message {
|
|
7433
|
+
/**
|
|
7434
|
+
* @generated from field: string targetId = 1;
|
|
7435
|
+
*/
|
|
7436
|
+
targetId = "";
|
|
7437
|
+
/**
|
|
7438
|
+
* @generated from field: string name = 2;
|
|
7439
|
+
*/
|
|
7440
|
+
name = "";
|
|
7441
|
+
constructor(data) {
|
|
7442
|
+
super();
|
|
7443
|
+
proto3.util.initPartial(data, this);
|
|
7444
|
+
}
|
|
7445
|
+
static runtime = proto3;
|
|
7446
|
+
static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph";
|
|
7447
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7448
|
+
{ no: 1, name: "targetId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7449
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7450
|
+
]);
|
|
7451
|
+
static fromBinary(bytes, options) {
|
|
7452
|
+
return new GetUserAccessibleResourcesResponse_Graph().fromBinary(bytes, options);
|
|
7453
|
+
}
|
|
7454
|
+
static fromJson(jsonValue, options) {
|
|
7455
|
+
return new GetUserAccessibleResourcesResponse_Graph().fromJson(jsonValue, options);
|
|
7456
|
+
}
|
|
7457
|
+
static fromJsonString(jsonString, options) {
|
|
7458
|
+
return new GetUserAccessibleResourcesResponse_Graph().fromJsonString(jsonString, options);
|
|
7459
|
+
}
|
|
7460
|
+
static equals(a, b) {
|
|
7461
|
+
return proto3.util.equals(GetUserAccessibleResourcesResponse_Graph, a, b);
|
|
7462
|
+
}
|
|
7463
|
+
}
|
|
7464
|
+
/**
|
|
7465
|
+
* @generated from message wg.cosmo.platform.v1.UpdateRBACSettingsRequest
|
|
7466
|
+
*/
|
|
7467
|
+
export class UpdateRBACSettingsRequest extends Message {
|
|
7468
|
+
/**
|
|
7469
|
+
* @generated from field: bool enable = 1;
|
|
7470
|
+
*/
|
|
7471
|
+
enable = false;
|
|
7472
|
+
constructor(data) {
|
|
7473
|
+
super();
|
|
7474
|
+
proto3.util.initPartial(data, this);
|
|
7475
|
+
}
|
|
7476
|
+
static runtime = proto3;
|
|
7477
|
+
static typeName = "wg.cosmo.platform.v1.UpdateRBACSettingsRequest";
|
|
7478
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7479
|
+
{ no: 1, name: "enable", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
7480
|
+
]);
|
|
7481
|
+
static fromBinary(bytes, options) {
|
|
7482
|
+
return new UpdateRBACSettingsRequest().fromBinary(bytes, options);
|
|
7483
|
+
}
|
|
7484
|
+
static fromJson(jsonValue, options) {
|
|
7485
|
+
return new UpdateRBACSettingsRequest().fromJson(jsonValue, options);
|
|
7486
|
+
}
|
|
7487
|
+
static fromJsonString(jsonString, options) {
|
|
7488
|
+
return new UpdateRBACSettingsRequest().fromJsonString(jsonString, options);
|
|
7489
|
+
}
|
|
7490
|
+
static equals(a, b) {
|
|
7491
|
+
return proto3.util.equals(UpdateRBACSettingsRequest, a, b);
|
|
7492
|
+
}
|
|
7493
|
+
}
|
|
7494
|
+
/**
|
|
7495
|
+
* @generated from message wg.cosmo.platform.v1.UpdateRBACSettingsResponse
|
|
7496
|
+
*/
|
|
7497
|
+
export class UpdateRBACSettingsResponse extends Message {
|
|
7498
|
+
/**
|
|
7499
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7500
|
+
*/
|
|
7501
|
+
response;
|
|
7502
|
+
constructor(data) {
|
|
7503
|
+
super();
|
|
7504
|
+
proto3.util.initPartial(data, this);
|
|
7505
|
+
}
|
|
7506
|
+
static runtime = proto3;
|
|
7507
|
+
static typeName = "wg.cosmo.platform.v1.UpdateRBACSettingsResponse";
|
|
7508
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7509
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7510
|
+
]);
|
|
7511
|
+
static fromBinary(bytes, options) {
|
|
7512
|
+
return new UpdateRBACSettingsResponse().fromBinary(bytes, options);
|
|
7513
|
+
}
|
|
7514
|
+
static fromJson(jsonValue, options) {
|
|
7515
|
+
return new UpdateRBACSettingsResponse().fromJson(jsonValue, options);
|
|
7516
|
+
}
|
|
7517
|
+
static fromJsonString(jsonString, options) {
|
|
7518
|
+
return new UpdateRBACSettingsResponse().fromJsonString(jsonString, options);
|
|
7519
|
+
}
|
|
7520
|
+
static equals(a, b) {
|
|
7521
|
+
return proto3.util.equals(UpdateRBACSettingsResponse, a, b);
|
|
7522
|
+
}
|
|
7523
|
+
}
|
|
7524
|
+
/**
|
|
7525
|
+
* @generated from message wg.cosmo.platform.v1.IsRBACEnabledRequest
|
|
7526
|
+
*/
|
|
7527
|
+
export class IsRBACEnabledRequest extends Message {
|
|
7528
|
+
constructor(data) {
|
|
7529
|
+
super();
|
|
7530
|
+
proto3.util.initPartial(data, this);
|
|
7531
|
+
}
|
|
7532
|
+
static runtime = proto3;
|
|
7533
|
+
static typeName = "wg.cosmo.platform.v1.IsRBACEnabledRequest";
|
|
7534
|
+
static fields = proto3.util.newFieldList(() => []);
|
|
7535
|
+
static fromBinary(bytes, options) {
|
|
7536
|
+
return new IsRBACEnabledRequest().fromBinary(bytes, options);
|
|
7537
|
+
}
|
|
7538
|
+
static fromJson(jsonValue, options) {
|
|
7539
|
+
return new IsRBACEnabledRequest().fromJson(jsonValue, options);
|
|
7540
|
+
}
|
|
7541
|
+
static fromJsonString(jsonString, options) {
|
|
7542
|
+
return new IsRBACEnabledRequest().fromJsonString(jsonString, options);
|
|
7543
|
+
}
|
|
7544
|
+
static equals(a, b) {
|
|
7545
|
+
return proto3.util.equals(IsRBACEnabledRequest, a, b);
|
|
7546
|
+
}
|
|
7547
|
+
}
|
|
7548
|
+
/**
|
|
7549
|
+
* @generated from message wg.cosmo.platform.v1.IsRBACEnabledResponse
|
|
7550
|
+
*/
|
|
7551
|
+
export class IsRBACEnabledResponse extends Message {
|
|
7552
|
+
/**
|
|
7553
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7554
|
+
*/
|
|
7555
|
+
response;
|
|
7556
|
+
/**
|
|
7557
|
+
* @generated from field: bool enabled = 2;
|
|
7558
|
+
*/
|
|
7559
|
+
enabled = false;
|
|
7560
|
+
constructor(data) {
|
|
7561
|
+
super();
|
|
7562
|
+
proto3.util.initPartial(data, this);
|
|
7563
|
+
}
|
|
7564
|
+
static runtime = proto3;
|
|
7565
|
+
static typeName = "wg.cosmo.platform.v1.IsRBACEnabledResponse";
|
|
7566
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7567
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7568
|
+
{ no: 2, name: "enabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
7569
|
+
]);
|
|
7570
|
+
static fromBinary(bytes, options) {
|
|
7571
|
+
return new IsRBACEnabledResponse().fromBinary(bytes, options);
|
|
7572
|
+
}
|
|
7573
|
+
static fromJson(jsonValue, options) {
|
|
7574
|
+
return new IsRBACEnabledResponse().fromJson(jsonValue, options);
|
|
7575
|
+
}
|
|
7576
|
+
static fromJsonString(jsonString, options) {
|
|
7577
|
+
return new IsRBACEnabledResponse().fromJsonString(jsonString, options);
|
|
7578
|
+
}
|
|
7579
|
+
static equals(a, b) {
|
|
7580
|
+
return proto3.util.equals(IsRBACEnabledResponse, a, b);
|
|
7581
|
+
}
|
|
7582
|
+
}
|
|
7583
|
+
/**
|
|
7584
|
+
* @generated from message wg.cosmo.platform.v1.AddSubgraphMemberRequest
|
|
7585
|
+
*/
|
|
7586
|
+
export class AddSubgraphMemberRequest extends Message {
|
|
7587
|
+
/**
|
|
7588
|
+
* @generated from field: string subgraphName = 1;
|
|
7589
|
+
*/
|
|
7590
|
+
subgraphName = "";
|
|
7591
|
+
/**
|
|
7592
|
+
* @generated from field: string userEmail = 2;
|
|
7593
|
+
*/
|
|
7594
|
+
userEmail = "";
|
|
7595
|
+
constructor(data) {
|
|
7596
|
+
super();
|
|
7597
|
+
proto3.util.initPartial(data, this);
|
|
7598
|
+
}
|
|
7599
|
+
static runtime = proto3;
|
|
7600
|
+
static typeName = "wg.cosmo.platform.v1.AddSubgraphMemberRequest";
|
|
7601
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7602
|
+
{ no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7603
|
+
{ no: 2, name: "userEmail", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7604
|
+
]);
|
|
7605
|
+
static fromBinary(bytes, options) {
|
|
7606
|
+
return new AddSubgraphMemberRequest().fromBinary(bytes, options);
|
|
7607
|
+
}
|
|
7608
|
+
static fromJson(jsonValue, options) {
|
|
7609
|
+
return new AddSubgraphMemberRequest().fromJson(jsonValue, options);
|
|
7610
|
+
}
|
|
7611
|
+
static fromJsonString(jsonString, options) {
|
|
7612
|
+
return new AddSubgraphMemberRequest().fromJsonString(jsonString, options);
|
|
7613
|
+
}
|
|
7614
|
+
static equals(a, b) {
|
|
7615
|
+
return proto3.util.equals(AddSubgraphMemberRequest, a, b);
|
|
7616
|
+
}
|
|
7617
|
+
}
|
|
7618
|
+
/**
|
|
7619
|
+
* @generated from message wg.cosmo.platform.v1.AddSubgraphMemberResponse
|
|
7620
|
+
*/
|
|
7621
|
+
export class AddSubgraphMemberResponse extends Message {
|
|
7622
|
+
/**
|
|
7623
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7624
|
+
*/
|
|
7625
|
+
response;
|
|
7626
|
+
constructor(data) {
|
|
7627
|
+
super();
|
|
7628
|
+
proto3.util.initPartial(data, this);
|
|
7629
|
+
}
|
|
7630
|
+
static runtime = proto3;
|
|
7631
|
+
static typeName = "wg.cosmo.platform.v1.AddSubgraphMemberResponse";
|
|
7632
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7633
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7634
|
+
]);
|
|
7635
|
+
static fromBinary(bytes, options) {
|
|
7636
|
+
return new AddSubgraphMemberResponse().fromBinary(bytes, options);
|
|
7637
|
+
}
|
|
7638
|
+
static fromJson(jsonValue, options) {
|
|
7639
|
+
return new AddSubgraphMemberResponse().fromJson(jsonValue, options);
|
|
7640
|
+
}
|
|
7641
|
+
static fromJsonString(jsonString, options) {
|
|
7642
|
+
return new AddSubgraphMemberResponse().fromJsonString(jsonString, options);
|
|
7643
|
+
}
|
|
7644
|
+
static equals(a, b) {
|
|
7645
|
+
return proto3.util.equals(AddSubgraphMemberResponse, a, b);
|
|
7646
|
+
}
|
|
7647
|
+
}
|
|
7648
|
+
/**
|
|
7649
|
+
* @generated from message wg.cosmo.platform.v1.RemoveSubgraphMemberRequest
|
|
7650
|
+
*/
|
|
7651
|
+
export class RemoveSubgraphMemberRequest extends Message {
|
|
7652
|
+
/**
|
|
7653
|
+
* @generated from field: string subgraphName = 1;
|
|
7654
|
+
*/
|
|
7655
|
+
subgraphName = "";
|
|
7656
|
+
/**
|
|
7657
|
+
* @generated from field: string subgraphMemberId = 2;
|
|
7658
|
+
*/
|
|
7659
|
+
subgraphMemberId = "";
|
|
7660
|
+
constructor(data) {
|
|
7661
|
+
super();
|
|
7662
|
+
proto3.util.initPartial(data, this);
|
|
7663
|
+
}
|
|
7664
|
+
static runtime = proto3;
|
|
7665
|
+
static typeName = "wg.cosmo.platform.v1.RemoveSubgraphMemberRequest";
|
|
7666
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7667
|
+
{ no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7668
|
+
{ no: 2, name: "subgraphMemberId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7669
|
+
]);
|
|
7670
|
+
static fromBinary(bytes, options) {
|
|
7671
|
+
return new RemoveSubgraphMemberRequest().fromBinary(bytes, options);
|
|
7672
|
+
}
|
|
7673
|
+
static fromJson(jsonValue, options) {
|
|
7674
|
+
return new RemoveSubgraphMemberRequest().fromJson(jsonValue, options);
|
|
7675
|
+
}
|
|
7676
|
+
static fromJsonString(jsonString, options) {
|
|
7677
|
+
return new RemoveSubgraphMemberRequest().fromJsonString(jsonString, options);
|
|
7678
|
+
}
|
|
7679
|
+
static equals(a, b) {
|
|
7680
|
+
return proto3.util.equals(RemoveSubgraphMemberRequest, a, b);
|
|
7681
|
+
}
|
|
7682
|
+
}
|
|
7683
|
+
/**
|
|
7684
|
+
* @generated from message wg.cosmo.platform.v1.RemoveSubgraphMemberResponse
|
|
7685
|
+
*/
|
|
7686
|
+
export class RemoveSubgraphMemberResponse extends Message {
|
|
7687
|
+
/**
|
|
7688
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7689
|
+
*/
|
|
7690
|
+
response;
|
|
7691
|
+
constructor(data) {
|
|
7692
|
+
super();
|
|
7693
|
+
proto3.util.initPartial(data, this);
|
|
7694
|
+
}
|
|
7695
|
+
static runtime = proto3;
|
|
7696
|
+
static typeName = "wg.cosmo.platform.v1.RemoveSubgraphMemberResponse";
|
|
7697
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7698
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7699
|
+
]);
|
|
7700
|
+
static fromBinary(bytes, options) {
|
|
7701
|
+
return new RemoveSubgraphMemberResponse().fromBinary(bytes, options);
|
|
7702
|
+
}
|
|
7703
|
+
static fromJson(jsonValue, options) {
|
|
7704
|
+
return new RemoveSubgraphMemberResponse().fromJson(jsonValue, options);
|
|
7705
|
+
}
|
|
7706
|
+
static fromJsonString(jsonString, options) {
|
|
7707
|
+
return new RemoveSubgraphMemberResponse().fromJsonString(jsonString, options);
|
|
7708
|
+
}
|
|
7709
|
+
static equals(a, b) {
|
|
7710
|
+
return proto3.util.equals(RemoveSubgraphMemberResponse, a, b);
|
|
7711
|
+
}
|
|
7712
|
+
}
|
|
7713
|
+
/**
|
|
7714
|
+
* @generated from message wg.cosmo.platform.v1.GetSubgraphMembersRequest
|
|
7715
|
+
*/
|
|
7716
|
+
export class GetSubgraphMembersRequest extends Message {
|
|
7717
|
+
/**
|
|
7718
|
+
* @generated from field: string subgraphName = 1;
|
|
7719
|
+
*/
|
|
7720
|
+
subgraphName = "";
|
|
7721
|
+
constructor(data) {
|
|
7722
|
+
super();
|
|
7723
|
+
proto3.util.initPartial(data, this);
|
|
7724
|
+
}
|
|
7725
|
+
static runtime = proto3;
|
|
7726
|
+
static typeName = "wg.cosmo.platform.v1.GetSubgraphMembersRequest";
|
|
7727
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7728
|
+
{ no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7729
|
+
]);
|
|
7730
|
+
static fromBinary(bytes, options) {
|
|
7731
|
+
return new GetSubgraphMembersRequest().fromBinary(bytes, options);
|
|
7732
|
+
}
|
|
7733
|
+
static fromJson(jsonValue, options) {
|
|
7734
|
+
return new GetSubgraphMembersRequest().fromJson(jsonValue, options);
|
|
7735
|
+
}
|
|
7736
|
+
static fromJsonString(jsonString, options) {
|
|
7737
|
+
return new GetSubgraphMembersRequest().fromJsonString(jsonString, options);
|
|
7738
|
+
}
|
|
7739
|
+
static equals(a, b) {
|
|
7740
|
+
return proto3.util.equals(GetSubgraphMembersRequest, a, b);
|
|
7741
|
+
}
|
|
7742
|
+
}
|
|
7743
|
+
/**
|
|
7744
|
+
* @generated from message wg.cosmo.platform.v1.SubgraphMember
|
|
7745
|
+
*/
|
|
7746
|
+
export class SubgraphMember extends Message {
|
|
7747
|
+
/**
|
|
7748
|
+
* @generated from field: string userId = 1;
|
|
7749
|
+
*/
|
|
7750
|
+
userId = "";
|
|
7751
|
+
/**
|
|
7752
|
+
* @generated from field: string email = 2;
|
|
7753
|
+
*/
|
|
7754
|
+
email = "";
|
|
7755
|
+
/**
|
|
7756
|
+
* @generated from field: string subgraphMemberId = 4;
|
|
7757
|
+
*/
|
|
7758
|
+
subgraphMemberId = "";
|
|
7759
|
+
constructor(data) {
|
|
7760
|
+
super();
|
|
7761
|
+
proto3.util.initPartial(data, this);
|
|
7762
|
+
}
|
|
7763
|
+
static runtime = proto3;
|
|
7764
|
+
static typeName = "wg.cosmo.platform.v1.SubgraphMember";
|
|
7765
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7766
|
+
{ no: 1, name: "userId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7767
|
+
{ no: 2, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7768
|
+
{ no: 4, name: "subgraphMemberId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7769
|
+
]);
|
|
7770
|
+
static fromBinary(bytes, options) {
|
|
7771
|
+
return new SubgraphMember().fromBinary(bytes, options);
|
|
7772
|
+
}
|
|
7773
|
+
static fromJson(jsonValue, options) {
|
|
7774
|
+
return new SubgraphMember().fromJson(jsonValue, options);
|
|
7775
|
+
}
|
|
7776
|
+
static fromJsonString(jsonString, options) {
|
|
7777
|
+
return new SubgraphMember().fromJsonString(jsonString, options);
|
|
7778
|
+
}
|
|
7779
|
+
static equals(a, b) {
|
|
7780
|
+
return proto3.util.equals(SubgraphMember, a, b);
|
|
7781
|
+
}
|
|
7782
|
+
}
|
|
7783
|
+
/**
|
|
7784
|
+
* @generated from message wg.cosmo.platform.v1.GetSubgraphMembersResponse
|
|
7785
|
+
*/
|
|
7786
|
+
export class GetSubgraphMembersResponse extends Message {
|
|
7787
|
+
/**
|
|
7788
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7789
|
+
*/
|
|
7790
|
+
response;
|
|
7791
|
+
/**
|
|
7792
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SubgraphMember members = 2;
|
|
7793
|
+
*/
|
|
7794
|
+
members = [];
|
|
7795
|
+
constructor(data) {
|
|
7796
|
+
super();
|
|
7797
|
+
proto3.util.initPartial(data, this);
|
|
7798
|
+
}
|
|
7799
|
+
static runtime = proto3;
|
|
7800
|
+
static typeName = "wg.cosmo.platform.v1.GetSubgraphMembersResponse";
|
|
7801
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7802
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7803
|
+
{ no: 2, name: "members", kind: "message", T: SubgraphMember, repeated: true },
|
|
7804
|
+
]);
|
|
7805
|
+
static fromBinary(bytes, options) {
|
|
7806
|
+
return new GetSubgraphMembersResponse().fromBinary(bytes, options);
|
|
7807
|
+
}
|
|
7808
|
+
static fromJson(jsonValue, options) {
|
|
7809
|
+
return new GetSubgraphMembersResponse().fromJson(jsonValue, options);
|
|
7810
|
+
}
|
|
7811
|
+
static fromJsonString(jsonString, options) {
|
|
7812
|
+
return new GetSubgraphMembersResponse().fromJsonString(jsonString, options);
|
|
7813
|
+
}
|
|
7814
|
+
static equals(a, b) {
|
|
7815
|
+
return proto3.util.equals(GetSubgraphMembersResponse, a, b);
|
|
7816
|
+
}
|
|
7817
|
+
}
|
|
7350
7818
|
/**
|
|
7351
7819
|
* @generated from message wg.cosmo.platform.v1.ClientInfo
|
|
7352
7820
|
*/
|