@wundergraph/cosmo-connect 0.36.0 → 0.38.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 +311 -0
- package/dist/platform/v1/platform_pb.js +518 -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);
|
|
@@ -1730,6 +1735,10 @@ export class SchemaCheck extends Message {
|
|
|
1730
1735
|
* @generated from field: bool isDeleted = 9;
|
|
1731
1736
|
*/
|
|
1732
1737
|
isDeleted = false;
|
|
1738
|
+
/**
|
|
1739
|
+
* @generated from field: optional wg.cosmo.platform.v1.SchemaCheckGhDetails ghDetails = 10;
|
|
1740
|
+
*/
|
|
1741
|
+
ghDetails;
|
|
1733
1742
|
constructor(data) {
|
|
1734
1743
|
super();
|
|
1735
1744
|
proto3.util.initPartial(data, this);
|
|
@@ -1746,6 +1755,7 @@ export class SchemaCheck extends Message {
|
|
|
1746
1755
|
{ no: 7, name: "hasClientTraffic", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1747
1756
|
{ no: 8, name: "isForcedSuccess", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1748
1757
|
{ no: 9, name: "isDeleted", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1758
|
+
{ no: 10, name: "ghDetails", kind: "message", T: SchemaCheckGhDetails, opt: true },
|
|
1749
1759
|
]);
|
|
1750
1760
|
static fromBinary(bytes, options) {
|
|
1751
1761
|
return new SchemaCheck().fromBinary(bytes, options);
|
|
@@ -1760,6 +1770,51 @@ export class SchemaCheck extends Message {
|
|
|
1760
1770
|
return proto3.util.equals(SchemaCheck, a, b);
|
|
1761
1771
|
}
|
|
1762
1772
|
}
|
|
1773
|
+
/**
|
|
1774
|
+
* @generated from message wg.cosmo.platform.v1.SchemaCheckGhDetails
|
|
1775
|
+
*/
|
|
1776
|
+
export class SchemaCheckGhDetails extends Message {
|
|
1777
|
+
/**
|
|
1778
|
+
* @generated from field: string commitSha = 1;
|
|
1779
|
+
*/
|
|
1780
|
+
commitSha = "";
|
|
1781
|
+
/**
|
|
1782
|
+
* @generated from field: string ownerSlug = 3;
|
|
1783
|
+
*/
|
|
1784
|
+
ownerSlug = "";
|
|
1785
|
+
/**
|
|
1786
|
+
* @generated from field: string repositorySlug = 4;
|
|
1787
|
+
*/
|
|
1788
|
+
repositorySlug = "";
|
|
1789
|
+
/**
|
|
1790
|
+
* @generated from field: int32 checkRunId = 5;
|
|
1791
|
+
*/
|
|
1792
|
+
checkRunId = 0;
|
|
1793
|
+
constructor(data) {
|
|
1794
|
+
super();
|
|
1795
|
+
proto3.util.initPartial(data, this);
|
|
1796
|
+
}
|
|
1797
|
+
static runtime = proto3;
|
|
1798
|
+
static typeName = "wg.cosmo.platform.v1.SchemaCheckGhDetails";
|
|
1799
|
+
static fields = proto3.util.newFieldList(() => [
|
|
1800
|
+
{ no: 1, name: "commitSha", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1801
|
+
{ no: 3, name: "ownerSlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1802
|
+
{ no: 4, name: "repositorySlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
1803
|
+
{ no: 5, name: "checkRunId", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
1804
|
+
]);
|
|
1805
|
+
static fromBinary(bytes, options) {
|
|
1806
|
+
return new SchemaCheckGhDetails().fromBinary(bytes, options);
|
|
1807
|
+
}
|
|
1808
|
+
static fromJson(jsonValue, options) {
|
|
1809
|
+
return new SchemaCheckGhDetails().fromJson(jsonValue, options);
|
|
1810
|
+
}
|
|
1811
|
+
static fromJsonString(jsonString, options) {
|
|
1812
|
+
return new SchemaCheckGhDetails().fromJsonString(jsonString, options);
|
|
1813
|
+
}
|
|
1814
|
+
static equals(a, b) {
|
|
1815
|
+
return proto3.util.equals(SchemaCheckGhDetails, a, b);
|
|
1816
|
+
}
|
|
1817
|
+
}
|
|
1763
1818
|
/**
|
|
1764
1819
|
* @generated from message wg.cosmo.platform.v1.GetChecksByFederatedGraphNameResponse
|
|
1765
1820
|
*/
|
|
@@ -3787,6 +3842,14 @@ export class CreateAPIKeyRequest extends Message {
|
|
|
3787
3842
|
* @generated from field: wg.cosmo.platform.v1.ExpiresAt expires = 3;
|
|
3788
3843
|
*/
|
|
3789
3844
|
expires = ExpiresAt.NEVER;
|
|
3845
|
+
/**
|
|
3846
|
+
* @generated from field: repeated string federatedGraphTargetIds = 4;
|
|
3847
|
+
*/
|
|
3848
|
+
federatedGraphTargetIds = [];
|
|
3849
|
+
/**
|
|
3850
|
+
* @generated from field: repeated string subgraphTargetIds = 5;
|
|
3851
|
+
*/
|
|
3852
|
+
subgraphTargetIds = [];
|
|
3790
3853
|
constructor(data) {
|
|
3791
3854
|
super();
|
|
3792
3855
|
proto3.util.initPartial(data, this);
|
|
@@ -3797,6 +3860,8 @@ export class CreateAPIKeyRequest extends Message {
|
|
|
3797
3860
|
{ no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3798
3861
|
{ no: 2, name: "userID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
3799
3862
|
{ no: 3, name: "expires", kind: "enum", T: proto3.getEnumType(ExpiresAt) },
|
|
3863
|
+
{ no: 4, name: "federatedGraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
3864
|
+
{ no: 5, name: "subgraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
|
|
3800
3865
|
]);
|
|
3801
3866
|
static fromBinary(bytes, options) {
|
|
3802
3867
|
return new CreateAPIKeyRequest().fromBinary(bytes, options);
|
|
@@ -7347,6 +7412,459 @@ export class GetChangelogBySchemaVersionResponse extends Message {
|
|
|
7347
7412
|
return proto3.util.equals(GetChangelogBySchemaVersionResponse, a, b);
|
|
7348
7413
|
}
|
|
7349
7414
|
}
|
|
7415
|
+
/**
|
|
7416
|
+
* @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesRequest
|
|
7417
|
+
*/
|
|
7418
|
+
export class GetUserAccessibleResourcesRequest extends Message {
|
|
7419
|
+
constructor(data) {
|
|
7420
|
+
super();
|
|
7421
|
+
proto3.util.initPartial(data, this);
|
|
7422
|
+
}
|
|
7423
|
+
static runtime = proto3;
|
|
7424
|
+
static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesRequest";
|
|
7425
|
+
static fields = proto3.util.newFieldList(() => []);
|
|
7426
|
+
static fromBinary(bytes, options) {
|
|
7427
|
+
return new GetUserAccessibleResourcesRequest().fromBinary(bytes, options);
|
|
7428
|
+
}
|
|
7429
|
+
static fromJson(jsonValue, options) {
|
|
7430
|
+
return new GetUserAccessibleResourcesRequest().fromJson(jsonValue, options);
|
|
7431
|
+
}
|
|
7432
|
+
static fromJsonString(jsonString, options) {
|
|
7433
|
+
return new GetUserAccessibleResourcesRequest().fromJsonString(jsonString, options);
|
|
7434
|
+
}
|
|
7435
|
+
static equals(a, b) {
|
|
7436
|
+
return proto3.util.equals(GetUserAccessibleResourcesRequest, a, b);
|
|
7437
|
+
}
|
|
7438
|
+
}
|
|
7439
|
+
/**
|
|
7440
|
+
* @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse
|
|
7441
|
+
*/
|
|
7442
|
+
export class GetUserAccessibleResourcesResponse extends Message {
|
|
7443
|
+
/**
|
|
7444
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7445
|
+
*/
|
|
7446
|
+
response;
|
|
7447
|
+
/**
|
|
7448
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph federatedGraphs = 2;
|
|
7449
|
+
*/
|
|
7450
|
+
federatedGraphs = [];
|
|
7451
|
+
/**
|
|
7452
|
+
* @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph subgraphs = 3;
|
|
7453
|
+
*/
|
|
7454
|
+
subgraphs = [];
|
|
7455
|
+
constructor(data) {
|
|
7456
|
+
super();
|
|
7457
|
+
proto3.util.initPartial(data, this);
|
|
7458
|
+
}
|
|
7459
|
+
static runtime = proto3;
|
|
7460
|
+
static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse";
|
|
7461
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7462
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7463
|
+
{ no: 2, name: "federatedGraphs", kind: "message", T: GetUserAccessibleResourcesResponse_Graph, repeated: true },
|
|
7464
|
+
{ no: 3, name: "subgraphs", kind: "message", T: GetUserAccessibleResourcesResponse_Graph, repeated: true },
|
|
7465
|
+
]);
|
|
7466
|
+
static fromBinary(bytes, options) {
|
|
7467
|
+
return new GetUserAccessibleResourcesResponse().fromBinary(bytes, options);
|
|
7468
|
+
}
|
|
7469
|
+
static fromJson(jsonValue, options) {
|
|
7470
|
+
return new GetUserAccessibleResourcesResponse().fromJson(jsonValue, options);
|
|
7471
|
+
}
|
|
7472
|
+
static fromJsonString(jsonString, options) {
|
|
7473
|
+
return new GetUserAccessibleResourcesResponse().fromJsonString(jsonString, options);
|
|
7474
|
+
}
|
|
7475
|
+
static equals(a, b) {
|
|
7476
|
+
return proto3.util.equals(GetUserAccessibleResourcesResponse, a, b);
|
|
7477
|
+
}
|
|
7478
|
+
}
|
|
7479
|
+
/**
|
|
7480
|
+
* @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph
|
|
7481
|
+
*/
|
|
7482
|
+
export class GetUserAccessibleResourcesResponse_Graph extends Message {
|
|
7483
|
+
/**
|
|
7484
|
+
* @generated from field: string targetId = 1;
|
|
7485
|
+
*/
|
|
7486
|
+
targetId = "";
|
|
7487
|
+
/**
|
|
7488
|
+
* @generated from field: string name = 2;
|
|
7489
|
+
*/
|
|
7490
|
+
name = "";
|
|
7491
|
+
constructor(data) {
|
|
7492
|
+
super();
|
|
7493
|
+
proto3.util.initPartial(data, this);
|
|
7494
|
+
}
|
|
7495
|
+
static runtime = proto3;
|
|
7496
|
+
static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph";
|
|
7497
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7498
|
+
{ no: 1, name: "targetId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7499
|
+
{ no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7500
|
+
]);
|
|
7501
|
+
static fromBinary(bytes, options) {
|
|
7502
|
+
return new GetUserAccessibleResourcesResponse_Graph().fromBinary(bytes, options);
|
|
7503
|
+
}
|
|
7504
|
+
static fromJson(jsonValue, options) {
|
|
7505
|
+
return new GetUserAccessibleResourcesResponse_Graph().fromJson(jsonValue, options);
|
|
7506
|
+
}
|
|
7507
|
+
static fromJsonString(jsonString, options) {
|
|
7508
|
+
return new GetUserAccessibleResourcesResponse_Graph().fromJsonString(jsonString, options);
|
|
7509
|
+
}
|
|
7510
|
+
static equals(a, b) {
|
|
7511
|
+
return proto3.util.equals(GetUserAccessibleResourcesResponse_Graph, a, b);
|
|
7512
|
+
}
|
|
7513
|
+
}
|
|
7514
|
+
/**
|
|
7515
|
+
* @generated from message wg.cosmo.platform.v1.UpdateRBACSettingsRequest
|
|
7516
|
+
*/
|
|
7517
|
+
export class UpdateRBACSettingsRequest extends Message {
|
|
7518
|
+
/**
|
|
7519
|
+
* @generated from field: bool enable = 1;
|
|
7520
|
+
*/
|
|
7521
|
+
enable = false;
|
|
7522
|
+
constructor(data) {
|
|
7523
|
+
super();
|
|
7524
|
+
proto3.util.initPartial(data, this);
|
|
7525
|
+
}
|
|
7526
|
+
static runtime = proto3;
|
|
7527
|
+
static typeName = "wg.cosmo.platform.v1.UpdateRBACSettingsRequest";
|
|
7528
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7529
|
+
{ no: 1, name: "enable", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
7530
|
+
]);
|
|
7531
|
+
static fromBinary(bytes, options) {
|
|
7532
|
+
return new UpdateRBACSettingsRequest().fromBinary(bytes, options);
|
|
7533
|
+
}
|
|
7534
|
+
static fromJson(jsonValue, options) {
|
|
7535
|
+
return new UpdateRBACSettingsRequest().fromJson(jsonValue, options);
|
|
7536
|
+
}
|
|
7537
|
+
static fromJsonString(jsonString, options) {
|
|
7538
|
+
return new UpdateRBACSettingsRequest().fromJsonString(jsonString, options);
|
|
7539
|
+
}
|
|
7540
|
+
static equals(a, b) {
|
|
7541
|
+
return proto3.util.equals(UpdateRBACSettingsRequest, a, b);
|
|
7542
|
+
}
|
|
7543
|
+
}
|
|
7544
|
+
/**
|
|
7545
|
+
* @generated from message wg.cosmo.platform.v1.UpdateRBACSettingsResponse
|
|
7546
|
+
*/
|
|
7547
|
+
export class UpdateRBACSettingsResponse extends Message {
|
|
7548
|
+
/**
|
|
7549
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7550
|
+
*/
|
|
7551
|
+
response;
|
|
7552
|
+
constructor(data) {
|
|
7553
|
+
super();
|
|
7554
|
+
proto3.util.initPartial(data, this);
|
|
7555
|
+
}
|
|
7556
|
+
static runtime = proto3;
|
|
7557
|
+
static typeName = "wg.cosmo.platform.v1.UpdateRBACSettingsResponse";
|
|
7558
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7559
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7560
|
+
]);
|
|
7561
|
+
static fromBinary(bytes, options) {
|
|
7562
|
+
return new UpdateRBACSettingsResponse().fromBinary(bytes, options);
|
|
7563
|
+
}
|
|
7564
|
+
static fromJson(jsonValue, options) {
|
|
7565
|
+
return new UpdateRBACSettingsResponse().fromJson(jsonValue, options);
|
|
7566
|
+
}
|
|
7567
|
+
static fromJsonString(jsonString, options) {
|
|
7568
|
+
return new UpdateRBACSettingsResponse().fromJsonString(jsonString, options);
|
|
7569
|
+
}
|
|
7570
|
+
static equals(a, b) {
|
|
7571
|
+
return proto3.util.equals(UpdateRBACSettingsResponse, a, b);
|
|
7572
|
+
}
|
|
7573
|
+
}
|
|
7574
|
+
/**
|
|
7575
|
+
* @generated from message wg.cosmo.platform.v1.IsRBACEnabledRequest
|
|
7576
|
+
*/
|
|
7577
|
+
export class IsRBACEnabledRequest extends Message {
|
|
7578
|
+
constructor(data) {
|
|
7579
|
+
super();
|
|
7580
|
+
proto3.util.initPartial(data, this);
|
|
7581
|
+
}
|
|
7582
|
+
static runtime = proto3;
|
|
7583
|
+
static typeName = "wg.cosmo.platform.v1.IsRBACEnabledRequest";
|
|
7584
|
+
static fields = proto3.util.newFieldList(() => []);
|
|
7585
|
+
static fromBinary(bytes, options) {
|
|
7586
|
+
return new IsRBACEnabledRequest().fromBinary(bytes, options);
|
|
7587
|
+
}
|
|
7588
|
+
static fromJson(jsonValue, options) {
|
|
7589
|
+
return new IsRBACEnabledRequest().fromJson(jsonValue, options);
|
|
7590
|
+
}
|
|
7591
|
+
static fromJsonString(jsonString, options) {
|
|
7592
|
+
return new IsRBACEnabledRequest().fromJsonString(jsonString, options);
|
|
7593
|
+
}
|
|
7594
|
+
static equals(a, b) {
|
|
7595
|
+
return proto3.util.equals(IsRBACEnabledRequest, a, b);
|
|
7596
|
+
}
|
|
7597
|
+
}
|
|
7598
|
+
/**
|
|
7599
|
+
* @generated from message wg.cosmo.platform.v1.IsRBACEnabledResponse
|
|
7600
|
+
*/
|
|
7601
|
+
export class IsRBACEnabledResponse extends Message {
|
|
7602
|
+
/**
|
|
7603
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7604
|
+
*/
|
|
7605
|
+
response;
|
|
7606
|
+
/**
|
|
7607
|
+
* @generated from field: bool enabled = 2;
|
|
7608
|
+
*/
|
|
7609
|
+
enabled = false;
|
|
7610
|
+
constructor(data) {
|
|
7611
|
+
super();
|
|
7612
|
+
proto3.util.initPartial(data, this);
|
|
7613
|
+
}
|
|
7614
|
+
static runtime = proto3;
|
|
7615
|
+
static typeName = "wg.cosmo.platform.v1.IsRBACEnabledResponse";
|
|
7616
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7617
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7618
|
+
{ no: 2, name: "enabled", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
7619
|
+
]);
|
|
7620
|
+
static fromBinary(bytes, options) {
|
|
7621
|
+
return new IsRBACEnabledResponse().fromBinary(bytes, options);
|
|
7622
|
+
}
|
|
7623
|
+
static fromJson(jsonValue, options) {
|
|
7624
|
+
return new IsRBACEnabledResponse().fromJson(jsonValue, options);
|
|
7625
|
+
}
|
|
7626
|
+
static fromJsonString(jsonString, options) {
|
|
7627
|
+
return new IsRBACEnabledResponse().fromJsonString(jsonString, options);
|
|
7628
|
+
}
|
|
7629
|
+
static equals(a, b) {
|
|
7630
|
+
return proto3.util.equals(IsRBACEnabledResponse, a, b);
|
|
7631
|
+
}
|
|
7632
|
+
}
|
|
7633
|
+
/**
|
|
7634
|
+
* @generated from message wg.cosmo.platform.v1.AddSubgraphMemberRequest
|
|
7635
|
+
*/
|
|
7636
|
+
export class AddSubgraphMemberRequest extends Message {
|
|
7637
|
+
/**
|
|
7638
|
+
* @generated from field: string subgraphName = 1;
|
|
7639
|
+
*/
|
|
7640
|
+
subgraphName = "";
|
|
7641
|
+
/**
|
|
7642
|
+
* @generated from field: string userEmail = 2;
|
|
7643
|
+
*/
|
|
7644
|
+
userEmail = "";
|
|
7645
|
+
constructor(data) {
|
|
7646
|
+
super();
|
|
7647
|
+
proto3.util.initPartial(data, this);
|
|
7648
|
+
}
|
|
7649
|
+
static runtime = proto3;
|
|
7650
|
+
static typeName = "wg.cosmo.platform.v1.AddSubgraphMemberRequest";
|
|
7651
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7652
|
+
{ no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7653
|
+
{ no: 2, name: "userEmail", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7654
|
+
]);
|
|
7655
|
+
static fromBinary(bytes, options) {
|
|
7656
|
+
return new AddSubgraphMemberRequest().fromBinary(bytes, options);
|
|
7657
|
+
}
|
|
7658
|
+
static fromJson(jsonValue, options) {
|
|
7659
|
+
return new AddSubgraphMemberRequest().fromJson(jsonValue, options);
|
|
7660
|
+
}
|
|
7661
|
+
static fromJsonString(jsonString, options) {
|
|
7662
|
+
return new AddSubgraphMemberRequest().fromJsonString(jsonString, options);
|
|
7663
|
+
}
|
|
7664
|
+
static equals(a, b) {
|
|
7665
|
+
return proto3.util.equals(AddSubgraphMemberRequest, a, b);
|
|
7666
|
+
}
|
|
7667
|
+
}
|
|
7668
|
+
/**
|
|
7669
|
+
* @generated from message wg.cosmo.platform.v1.AddSubgraphMemberResponse
|
|
7670
|
+
*/
|
|
7671
|
+
export class AddSubgraphMemberResponse extends Message {
|
|
7672
|
+
/**
|
|
7673
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7674
|
+
*/
|
|
7675
|
+
response;
|
|
7676
|
+
constructor(data) {
|
|
7677
|
+
super();
|
|
7678
|
+
proto3.util.initPartial(data, this);
|
|
7679
|
+
}
|
|
7680
|
+
static runtime = proto3;
|
|
7681
|
+
static typeName = "wg.cosmo.platform.v1.AddSubgraphMemberResponse";
|
|
7682
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7683
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7684
|
+
]);
|
|
7685
|
+
static fromBinary(bytes, options) {
|
|
7686
|
+
return new AddSubgraphMemberResponse().fromBinary(bytes, options);
|
|
7687
|
+
}
|
|
7688
|
+
static fromJson(jsonValue, options) {
|
|
7689
|
+
return new AddSubgraphMemberResponse().fromJson(jsonValue, options);
|
|
7690
|
+
}
|
|
7691
|
+
static fromJsonString(jsonString, options) {
|
|
7692
|
+
return new AddSubgraphMemberResponse().fromJsonString(jsonString, options);
|
|
7693
|
+
}
|
|
7694
|
+
static equals(a, b) {
|
|
7695
|
+
return proto3.util.equals(AddSubgraphMemberResponse, a, b);
|
|
7696
|
+
}
|
|
7697
|
+
}
|
|
7698
|
+
/**
|
|
7699
|
+
* @generated from message wg.cosmo.platform.v1.RemoveSubgraphMemberRequest
|
|
7700
|
+
*/
|
|
7701
|
+
export class RemoveSubgraphMemberRequest extends Message {
|
|
7702
|
+
/**
|
|
7703
|
+
* @generated from field: string subgraphName = 1;
|
|
7704
|
+
*/
|
|
7705
|
+
subgraphName = "";
|
|
7706
|
+
/**
|
|
7707
|
+
* @generated from field: string subgraphMemberId = 2;
|
|
7708
|
+
*/
|
|
7709
|
+
subgraphMemberId = "";
|
|
7710
|
+
constructor(data) {
|
|
7711
|
+
super();
|
|
7712
|
+
proto3.util.initPartial(data, this);
|
|
7713
|
+
}
|
|
7714
|
+
static runtime = proto3;
|
|
7715
|
+
static typeName = "wg.cosmo.platform.v1.RemoveSubgraphMemberRequest";
|
|
7716
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7717
|
+
{ no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7718
|
+
{ no: 2, name: "subgraphMemberId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7719
|
+
]);
|
|
7720
|
+
static fromBinary(bytes, options) {
|
|
7721
|
+
return new RemoveSubgraphMemberRequest().fromBinary(bytes, options);
|
|
7722
|
+
}
|
|
7723
|
+
static fromJson(jsonValue, options) {
|
|
7724
|
+
return new RemoveSubgraphMemberRequest().fromJson(jsonValue, options);
|
|
7725
|
+
}
|
|
7726
|
+
static fromJsonString(jsonString, options) {
|
|
7727
|
+
return new RemoveSubgraphMemberRequest().fromJsonString(jsonString, options);
|
|
7728
|
+
}
|
|
7729
|
+
static equals(a, b) {
|
|
7730
|
+
return proto3.util.equals(RemoveSubgraphMemberRequest, a, b);
|
|
7731
|
+
}
|
|
7732
|
+
}
|
|
7733
|
+
/**
|
|
7734
|
+
* @generated from message wg.cosmo.platform.v1.RemoveSubgraphMemberResponse
|
|
7735
|
+
*/
|
|
7736
|
+
export class RemoveSubgraphMemberResponse extends Message {
|
|
7737
|
+
/**
|
|
7738
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7739
|
+
*/
|
|
7740
|
+
response;
|
|
7741
|
+
constructor(data) {
|
|
7742
|
+
super();
|
|
7743
|
+
proto3.util.initPartial(data, this);
|
|
7744
|
+
}
|
|
7745
|
+
static runtime = proto3;
|
|
7746
|
+
static typeName = "wg.cosmo.platform.v1.RemoveSubgraphMemberResponse";
|
|
7747
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7748
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7749
|
+
]);
|
|
7750
|
+
static fromBinary(bytes, options) {
|
|
7751
|
+
return new RemoveSubgraphMemberResponse().fromBinary(bytes, options);
|
|
7752
|
+
}
|
|
7753
|
+
static fromJson(jsonValue, options) {
|
|
7754
|
+
return new RemoveSubgraphMemberResponse().fromJson(jsonValue, options);
|
|
7755
|
+
}
|
|
7756
|
+
static fromJsonString(jsonString, options) {
|
|
7757
|
+
return new RemoveSubgraphMemberResponse().fromJsonString(jsonString, options);
|
|
7758
|
+
}
|
|
7759
|
+
static equals(a, b) {
|
|
7760
|
+
return proto3.util.equals(RemoveSubgraphMemberResponse, a, b);
|
|
7761
|
+
}
|
|
7762
|
+
}
|
|
7763
|
+
/**
|
|
7764
|
+
* @generated from message wg.cosmo.platform.v1.GetSubgraphMembersRequest
|
|
7765
|
+
*/
|
|
7766
|
+
export class GetSubgraphMembersRequest extends Message {
|
|
7767
|
+
/**
|
|
7768
|
+
* @generated from field: string subgraphName = 1;
|
|
7769
|
+
*/
|
|
7770
|
+
subgraphName = "";
|
|
7771
|
+
constructor(data) {
|
|
7772
|
+
super();
|
|
7773
|
+
proto3.util.initPartial(data, this);
|
|
7774
|
+
}
|
|
7775
|
+
static runtime = proto3;
|
|
7776
|
+
static typeName = "wg.cosmo.platform.v1.GetSubgraphMembersRequest";
|
|
7777
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7778
|
+
{ no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7779
|
+
]);
|
|
7780
|
+
static fromBinary(bytes, options) {
|
|
7781
|
+
return new GetSubgraphMembersRequest().fromBinary(bytes, options);
|
|
7782
|
+
}
|
|
7783
|
+
static fromJson(jsonValue, options) {
|
|
7784
|
+
return new GetSubgraphMembersRequest().fromJson(jsonValue, options);
|
|
7785
|
+
}
|
|
7786
|
+
static fromJsonString(jsonString, options) {
|
|
7787
|
+
return new GetSubgraphMembersRequest().fromJsonString(jsonString, options);
|
|
7788
|
+
}
|
|
7789
|
+
static equals(a, b) {
|
|
7790
|
+
return proto3.util.equals(GetSubgraphMembersRequest, a, b);
|
|
7791
|
+
}
|
|
7792
|
+
}
|
|
7793
|
+
/**
|
|
7794
|
+
* @generated from message wg.cosmo.platform.v1.SubgraphMember
|
|
7795
|
+
*/
|
|
7796
|
+
export class SubgraphMember extends Message {
|
|
7797
|
+
/**
|
|
7798
|
+
* @generated from field: string userId = 1;
|
|
7799
|
+
*/
|
|
7800
|
+
userId = "";
|
|
7801
|
+
/**
|
|
7802
|
+
* @generated from field: string email = 2;
|
|
7803
|
+
*/
|
|
7804
|
+
email = "";
|
|
7805
|
+
/**
|
|
7806
|
+
* @generated from field: string subgraphMemberId = 4;
|
|
7807
|
+
*/
|
|
7808
|
+
subgraphMemberId = "";
|
|
7809
|
+
constructor(data) {
|
|
7810
|
+
super();
|
|
7811
|
+
proto3.util.initPartial(data, this);
|
|
7812
|
+
}
|
|
7813
|
+
static runtime = proto3;
|
|
7814
|
+
static typeName = "wg.cosmo.platform.v1.SubgraphMember";
|
|
7815
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7816
|
+
{ no: 1, name: "userId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7817
|
+
{ no: 2, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7818
|
+
{ no: 4, name: "subgraphMemberId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
7819
|
+
]);
|
|
7820
|
+
static fromBinary(bytes, options) {
|
|
7821
|
+
return new SubgraphMember().fromBinary(bytes, options);
|
|
7822
|
+
}
|
|
7823
|
+
static fromJson(jsonValue, options) {
|
|
7824
|
+
return new SubgraphMember().fromJson(jsonValue, options);
|
|
7825
|
+
}
|
|
7826
|
+
static fromJsonString(jsonString, options) {
|
|
7827
|
+
return new SubgraphMember().fromJsonString(jsonString, options);
|
|
7828
|
+
}
|
|
7829
|
+
static equals(a, b) {
|
|
7830
|
+
return proto3.util.equals(SubgraphMember, a, b);
|
|
7831
|
+
}
|
|
7832
|
+
}
|
|
7833
|
+
/**
|
|
7834
|
+
* @generated from message wg.cosmo.platform.v1.GetSubgraphMembersResponse
|
|
7835
|
+
*/
|
|
7836
|
+
export class GetSubgraphMembersResponse extends Message {
|
|
7837
|
+
/**
|
|
7838
|
+
* @generated from field: wg.cosmo.platform.v1.Response response = 1;
|
|
7839
|
+
*/
|
|
7840
|
+
response;
|
|
7841
|
+
/**
|
|
7842
|
+
* @generated from field: repeated wg.cosmo.platform.v1.SubgraphMember members = 2;
|
|
7843
|
+
*/
|
|
7844
|
+
members = [];
|
|
7845
|
+
constructor(data) {
|
|
7846
|
+
super();
|
|
7847
|
+
proto3.util.initPartial(data, this);
|
|
7848
|
+
}
|
|
7849
|
+
static runtime = proto3;
|
|
7850
|
+
static typeName = "wg.cosmo.platform.v1.GetSubgraphMembersResponse";
|
|
7851
|
+
static fields = proto3.util.newFieldList(() => [
|
|
7852
|
+
{ no: 1, name: "response", kind: "message", T: Response },
|
|
7853
|
+
{ no: 2, name: "members", kind: "message", T: SubgraphMember, repeated: true },
|
|
7854
|
+
]);
|
|
7855
|
+
static fromBinary(bytes, options) {
|
|
7856
|
+
return new GetSubgraphMembersResponse().fromBinary(bytes, options);
|
|
7857
|
+
}
|
|
7858
|
+
static fromJson(jsonValue, options) {
|
|
7859
|
+
return new GetSubgraphMembersResponse().fromJson(jsonValue, options);
|
|
7860
|
+
}
|
|
7861
|
+
static fromJsonString(jsonString, options) {
|
|
7862
|
+
return new GetSubgraphMembersResponse().fromJsonString(jsonString, options);
|
|
7863
|
+
}
|
|
7864
|
+
static equals(a, b) {
|
|
7865
|
+
return proto3.util.equals(GetSubgraphMembersResponse, a, b);
|
|
7866
|
+
}
|
|
7867
|
+
}
|
|
7350
7868
|
/**
|
|
7351
7869
|
* @generated from message wg.cosmo.platform.v1.ClientInfo
|
|
7352
7870
|
*/
|