@wundergraph/cosmo-connect 0.105.0 → 0.107.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.
@@ -5247,6 +5247,565 @@ export class CreateFederatedGraphTokenResponse extends Message {
5247
5247
  return proto3.util.equals(CreateFederatedGraphTokenResponse, a, b);
5248
5248
  }
5249
5249
  }
5250
+ /**
5251
+ * @generated from message wg.cosmo.platform.v1.OrganizationGroupRule
5252
+ */
5253
+ export class OrganizationGroupRule extends Message {
5254
+ /**
5255
+ * @generated from field: string role = 1;
5256
+ */
5257
+ role = "";
5258
+ /**
5259
+ * @generated from field: repeated string namespaces = 2;
5260
+ */
5261
+ namespaces = [];
5262
+ /**
5263
+ * @generated from field: repeated string resources = 3;
5264
+ */
5265
+ resources = [];
5266
+ constructor(data) {
5267
+ super();
5268
+ proto3.util.initPartial(data, this);
5269
+ }
5270
+ static runtime = proto3;
5271
+ static typeName = "wg.cosmo.platform.v1.OrganizationGroupRule";
5272
+ static fields = proto3.util.newFieldList(() => [
5273
+ { no: 1, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5274
+ { no: 2, name: "namespaces", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5275
+ { no: 3, name: "resources", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5276
+ ]);
5277
+ static fromBinary(bytes, options) {
5278
+ return new OrganizationGroupRule().fromBinary(bytes, options);
5279
+ }
5280
+ static fromJson(jsonValue, options) {
5281
+ return new OrganizationGroupRule().fromJson(jsonValue, options);
5282
+ }
5283
+ static fromJsonString(jsonString, options) {
5284
+ return new OrganizationGroupRule().fromJsonString(jsonString, options);
5285
+ }
5286
+ static equals(a, b) {
5287
+ return proto3.util.equals(OrganizationGroupRule, a, b);
5288
+ }
5289
+ }
5290
+ /**
5291
+ * @generated from message wg.cosmo.platform.v1.OrganizationGroup
5292
+ */
5293
+ export class OrganizationGroup extends Message {
5294
+ /**
5295
+ * @generated from field: string groupId = 1;
5296
+ */
5297
+ groupId = "";
5298
+ /**
5299
+ * @generated from field: string name = 2;
5300
+ */
5301
+ name = "";
5302
+ /**
5303
+ * @generated from field: string description = 3;
5304
+ */
5305
+ description = "";
5306
+ /**
5307
+ * @generated from field: bool builtin = 4;
5308
+ */
5309
+ builtin = false;
5310
+ /**
5311
+ * @generated from field: int32 membersCount = 5;
5312
+ */
5313
+ membersCount = 0;
5314
+ /**
5315
+ * @generated from field: repeated wg.cosmo.platform.v1.OrganizationGroupRule rules = 6;
5316
+ */
5317
+ rules = [];
5318
+ /**
5319
+ * @generated from field: bool hasOidcMappers = 7;
5320
+ */
5321
+ hasOidcMappers = false;
5322
+ /**
5323
+ * @generated from field: int32 apiKeysCount = 8;
5324
+ */
5325
+ apiKeysCount = 0;
5326
+ constructor(data) {
5327
+ super();
5328
+ proto3.util.initPartial(data, this);
5329
+ }
5330
+ static runtime = proto3;
5331
+ static typeName = "wg.cosmo.platform.v1.OrganizationGroup";
5332
+ static fields = proto3.util.newFieldList(() => [
5333
+ { no: 1, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5334
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5335
+ { no: 3, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5336
+ { no: 4, name: "builtin", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
5337
+ { no: 5, name: "membersCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
5338
+ { no: 6, name: "rules", kind: "message", T: OrganizationGroupRule, repeated: true },
5339
+ { no: 7, name: "hasOidcMappers", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
5340
+ { no: 8, name: "apiKeysCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
5341
+ ]);
5342
+ static fromBinary(bytes, options) {
5343
+ return new OrganizationGroup().fromBinary(bytes, options);
5344
+ }
5345
+ static fromJson(jsonValue, options) {
5346
+ return new OrganizationGroup().fromJson(jsonValue, options);
5347
+ }
5348
+ static fromJsonString(jsonString, options) {
5349
+ return new OrganizationGroup().fromJsonString(jsonString, options);
5350
+ }
5351
+ static equals(a, b) {
5352
+ return proto3.util.equals(OrganizationGroup, a, b);
5353
+ }
5354
+ }
5355
+ /**
5356
+ * @generated from message wg.cosmo.platform.v1.CreateOrganizationGroupRequest
5357
+ */
5358
+ export class CreateOrganizationGroupRequest extends Message {
5359
+ /**
5360
+ * @generated from field: string name = 1;
5361
+ */
5362
+ name = "";
5363
+ /**
5364
+ * @generated from field: string description = 2;
5365
+ */
5366
+ description = "";
5367
+ constructor(data) {
5368
+ super();
5369
+ proto3.util.initPartial(data, this);
5370
+ }
5371
+ static runtime = proto3;
5372
+ static typeName = "wg.cosmo.platform.v1.CreateOrganizationGroupRequest";
5373
+ static fields = proto3.util.newFieldList(() => [
5374
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5375
+ { no: 2, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5376
+ ]);
5377
+ static fromBinary(bytes, options) {
5378
+ return new CreateOrganizationGroupRequest().fromBinary(bytes, options);
5379
+ }
5380
+ static fromJson(jsonValue, options) {
5381
+ return new CreateOrganizationGroupRequest().fromJson(jsonValue, options);
5382
+ }
5383
+ static fromJsonString(jsonString, options) {
5384
+ return new CreateOrganizationGroupRequest().fromJsonString(jsonString, options);
5385
+ }
5386
+ static equals(a, b) {
5387
+ return proto3.util.equals(CreateOrganizationGroupRequest, a, b);
5388
+ }
5389
+ }
5390
+ /**
5391
+ * @generated from message wg.cosmo.platform.v1.CreateOrganizationGroupResponse
5392
+ */
5393
+ export class CreateOrganizationGroupResponse extends Message {
5394
+ /**
5395
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
5396
+ */
5397
+ response;
5398
+ /**
5399
+ * @generated from field: wg.cosmo.platform.v1.OrganizationGroup group = 2;
5400
+ */
5401
+ group;
5402
+ constructor(data) {
5403
+ super();
5404
+ proto3.util.initPartial(data, this);
5405
+ }
5406
+ static runtime = proto3;
5407
+ static typeName = "wg.cosmo.platform.v1.CreateOrganizationGroupResponse";
5408
+ static fields = proto3.util.newFieldList(() => [
5409
+ { no: 1, name: "response", kind: "message", T: Response },
5410
+ { no: 2, name: "group", kind: "message", T: OrganizationGroup },
5411
+ ]);
5412
+ static fromBinary(bytes, options) {
5413
+ return new CreateOrganizationGroupResponse().fromBinary(bytes, options);
5414
+ }
5415
+ static fromJson(jsonValue, options) {
5416
+ return new CreateOrganizationGroupResponse().fromJson(jsonValue, options);
5417
+ }
5418
+ static fromJsonString(jsonString, options) {
5419
+ return new CreateOrganizationGroupResponse().fromJsonString(jsonString, options);
5420
+ }
5421
+ static equals(a, b) {
5422
+ return proto3.util.equals(CreateOrganizationGroupResponse, a, b);
5423
+ }
5424
+ }
5425
+ /**
5426
+ * @generated from message wg.cosmo.platform.v1.GetOrganizationGroupsRequest
5427
+ */
5428
+ export class GetOrganizationGroupsRequest extends Message {
5429
+ constructor(data) {
5430
+ super();
5431
+ proto3.util.initPartial(data, this);
5432
+ }
5433
+ static runtime = proto3;
5434
+ static typeName = "wg.cosmo.platform.v1.GetOrganizationGroupsRequest";
5435
+ static fields = proto3.util.newFieldList(() => []);
5436
+ static fromBinary(bytes, options) {
5437
+ return new GetOrganizationGroupsRequest().fromBinary(bytes, options);
5438
+ }
5439
+ static fromJson(jsonValue, options) {
5440
+ return new GetOrganizationGroupsRequest().fromJson(jsonValue, options);
5441
+ }
5442
+ static fromJsonString(jsonString, options) {
5443
+ return new GetOrganizationGroupsRequest().fromJsonString(jsonString, options);
5444
+ }
5445
+ static equals(a, b) {
5446
+ return proto3.util.equals(GetOrganizationGroupsRequest, a, b);
5447
+ }
5448
+ }
5449
+ /**
5450
+ * @generated from message wg.cosmo.platform.v1.GetOrganizationGroupsResponse
5451
+ */
5452
+ export class GetOrganizationGroupsResponse extends Message {
5453
+ /**
5454
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
5455
+ */
5456
+ response;
5457
+ /**
5458
+ * @generated from field: repeated wg.cosmo.platform.v1.OrganizationGroup groups = 2;
5459
+ */
5460
+ groups = [];
5461
+ constructor(data) {
5462
+ super();
5463
+ proto3.util.initPartial(data, this);
5464
+ }
5465
+ static runtime = proto3;
5466
+ static typeName = "wg.cosmo.platform.v1.GetOrganizationGroupsResponse";
5467
+ static fields = proto3.util.newFieldList(() => [
5468
+ { no: 1, name: "response", kind: "message", T: Response },
5469
+ { no: 2, name: "groups", kind: "message", T: OrganizationGroup, repeated: true },
5470
+ ]);
5471
+ static fromBinary(bytes, options) {
5472
+ return new GetOrganizationGroupsResponse().fromBinary(bytes, options);
5473
+ }
5474
+ static fromJson(jsonValue, options) {
5475
+ return new GetOrganizationGroupsResponse().fromJson(jsonValue, options);
5476
+ }
5477
+ static fromJsonString(jsonString, options) {
5478
+ return new GetOrganizationGroupsResponse().fromJsonString(jsonString, options);
5479
+ }
5480
+ static equals(a, b) {
5481
+ return proto3.util.equals(GetOrganizationGroupsResponse, a, b);
5482
+ }
5483
+ }
5484
+ /**
5485
+ * @generated from message wg.cosmo.platform.v1.GetOrganizationGroupMembersRequest
5486
+ */
5487
+ export class GetOrganizationGroupMembersRequest extends Message {
5488
+ /**
5489
+ * @generated from field: string groupId = 1;
5490
+ */
5491
+ groupId = "";
5492
+ constructor(data) {
5493
+ super();
5494
+ proto3.util.initPartial(data, this);
5495
+ }
5496
+ static runtime = proto3;
5497
+ static typeName = "wg.cosmo.platform.v1.GetOrganizationGroupMembersRequest";
5498
+ static fields = proto3.util.newFieldList(() => [
5499
+ { no: 1, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5500
+ ]);
5501
+ static fromBinary(bytes, options) {
5502
+ return new GetOrganizationGroupMembersRequest().fromBinary(bytes, options);
5503
+ }
5504
+ static fromJson(jsonValue, options) {
5505
+ return new GetOrganizationGroupMembersRequest().fromJson(jsonValue, options);
5506
+ }
5507
+ static fromJsonString(jsonString, options) {
5508
+ return new GetOrganizationGroupMembersRequest().fromJsonString(jsonString, options);
5509
+ }
5510
+ static equals(a, b) {
5511
+ return proto3.util.equals(GetOrganizationGroupMembersRequest, a, b);
5512
+ }
5513
+ }
5514
+ /**
5515
+ * @generated from message wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse
5516
+ */
5517
+ export class GetOrganizationGroupMembersResponse extends Message {
5518
+ /**
5519
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
5520
+ */
5521
+ response;
5522
+ /**
5523
+ * @generated from field: repeated wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse.GroupMember members = 2;
5524
+ */
5525
+ members = [];
5526
+ /**
5527
+ * @generated from field: repeated wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse.GroupApiKey apiKeys = 3;
5528
+ */
5529
+ apiKeys = [];
5530
+ constructor(data) {
5531
+ super();
5532
+ proto3.util.initPartial(data, this);
5533
+ }
5534
+ static runtime = proto3;
5535
+ static typeName = "wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse";
5536
+ static fields = proto3.util.newFieldList(() => [
5537
+ { no: 1, name: "response", kind: "message", T: Response },
5538
+ { no: 2, name: "members", kind: "message", T: GetOrganizationGroupMembersResponse_GroupMember, repeated: true },
5539
+ { no: 3, name: "apiKeys", kind: "message", T: GetOrganizationGroupMembersResponse_GroupApiKey, repeated: true },
5540
+ ]);
5541
+ static fromBinary(bytes, options) {
5542
+ return new GetOrganizationGroupMembersResponse().fromBinary(bytes, options);
5543
+ }
5544
+ static fromJson(jsonValue, options) {
5545
+ return new GetOrganizationGroupMembersResponse().fromJson(jsonValue, options);
5546
+ }
5547
+ static fromJsonString(jsonString, options) {
5548
+ return new GetOrganizationGroupMembersResponse().fromJsonString(jsonString, options);
5549
+ }
5550
+ static equals(a, b) {
5551
+ return proto3.util.equals(GetOrganizationGroupMembersResponse, a, b);
5552
+ }
5553
+ }
5554
+ /**
5555
+ * @generated from message wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse.GroupMember
5556
+ */
5557
+ export class GetOrganizationGroupMembersResponse_GroupMember extends Message {
5558
+ /**
5559
+ * @generated from field: string id = 1;
5560
+ */
5561
+ id = "";
5562
+ /**
5563
+ * @generated from field: string email = 2;
5564
+ */
5565
+ email = "";
5566
+ /**
5567
+ * @generated from field: string createdAt = 3;
5568
+ */
5569
+ createdAt = "";
5570
+ constructor(data) {
5571
+ super();
5572
+ proto3.util.initPartial(data, this);
5573
+ }
5574
+ static runtime = proto3;
5575
+ static typeName = "wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse.GroupMember";
5576
+ static fields = proto3.util.newFieldList(() => [
5577
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5578
+ { no: 2, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5579
+ { no: 3, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5580
+ ]);
5581
+ static fromBinary(bytes, options) {
5582
+ return new GetOrganizationGroupMembersResponse_GroupMember().fromBinary(bytes, options);
5583
+ }
5584
+ static fromJson(jsonValue, options) {
5585
+ return new GetOrganizationGroupMembersResponse_GroupMember().fromJson(jsonValue, options);
5586
+ }
5587
+ static fromJsonString(jsonString, options) {
5588
+ return new GetOrganizationGroupMembersResponse_GroupMember().fromJsonString(jsonString, options);
5589
+ }
5590
+ static equals(a, b) {
5591
+ return proto3.util.equals(GetOrganizationGroupMembersResponse_GroupMember, a, b);
5592
+ }
5593
+ }
5594
+ /**
5595
+ * @generated from message wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse.GroupApiKey
5596
+ */
5597
+ export class GetOrganizationGroupMembersResponse_GroupApiKey extends Message {
5598
+ /**
5599
+ * @generated from field: string id = 1;
5600
+ */
5601
+ id = "";
5602
+ /**
5603
+ * @generated from field: string name = 2;
5604
+ */
5605
+ name = "";
5606
+ /**
5607
+ * @generated from field: string createdAt = 3;
5608
+ */
5609
+ createdAt = "";
5610
+ constructor(data) {
5611
+ super();
5612
+ proto3.util.initPartial(data, this);
5613
+ }
5614
+ static runtime = proto3;
5615
+ static typeName = "wg.cosmo.platform.v1.GetOrganizationGroupMembersResponse.GroupApiKey";
5616
+ static fields = proto3.util.newFieldList(() => [
5617
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5618
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5619
+ { no: 3, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5620
+ ]);
5621
+ static fromBinary(bytes, options) {
5622
+ return new GetOrganizationGroupMembersResponse_GroupApiKey().fromBinary(bytes, options);
5623
+ }
5624
+ static fromJson(jsonValue, options) {
5625
+ return new GetOrganizationGroupMembersResponse_GroupApiKey().fromJson(jsonValue, options);
5626
+ }
5627
+ static fromJsonString(jsonString, options) {
5628
+ return new GetOrganizationGroupMembersResponse_GroupApiKey().fromJsonString(jsonString, options);
5629
+ }
5630
+ static equals(a, b) {
5631
+ return proto3.util.equals(GetOrganizationGroupMembersResponse_GroupApiKey, a, b);
5632
+ }
5633
+ }
5634
+ /**
5635
+ * @generated from message wg.cosmo.platform.v1.UpdateOrganizationGroupRequest
5636
+ */
5637
+ export class UpdateOrganizationGroupRequest extends Message {
5638
+ /**
5639
+ * @generated from field: string groupId = 1;
5640
+ */
5641
+ groupId = "";
5642
+ /**
5643
+ * @generated from field: string description = 2;
5644
+ */
5645
+ description = "";
5646
+ /**
5647
+ * @generated from field: repeated wg.cosmo.platform.v1.UpdateOrganizationGroupRequest.GroupRule rules = 3;
5648
+ */
5649
+ rules = [];
5650
+ constructor(data) {
5651
+ super();
5652
+ proto3.util.initPartial(data, this);
5653
+ }
5654
+ static runtime = proto3;
5655
+ static typeName = "wg.cosmo.platform.v1.UpdateOrganizationGroupRequest";
5656
+ static fields = proto3.util.newFieldList(() => [
5657
+ { no: 1, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5658
+ { no: 2, name: "description", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5659
+ { no: 3, name: "rules", kind: "message", T: UpdateOrganizationGroupRequest_GroupRule, repeated: true },
5660
+ ]);
5661
+ static fromBinary(bytes, options) {
5662
+ return new UpdateOrganizationGroupRequest().fromBinary(bytes, options);
5663
+ }
5664
+ static fromJson(jsonValue, options) {
5665
+ return new UpdateOrganizationGroupRequest().fromJson(jsonValue, options);
5666
+ }
5667
+ static fromJsonString(jsonString, options) {
5668
+ return new UpdateOrganizationGroupRequest().fromJsonString(jsonString, options);
5669
+ }
5670
+ static equals(a, b) {
5671
+ return proto3.util.equals(UpdateOrganizationGroupRequest, a, b);
5672
+ }
5673
+ }
5674
+ /**
5675
+ * @generated from message wg.cosmo.platform.v1.UpdateOrganizationGroupRequest.GroupRule
5676
+ */
5677
+ export class UpdateOrganizationGroupRequest_GroupRule extends Message {
5678
+ /**
5679
+ * @generated from field: string role = 1;
5680
+ */
5681
+ role = "";
5682
+ /**
5683
+ * @generated from field: repeated string namespaces = 2;
5684
+ */
5685
+ namespaces = [];
5686
+ /**
5687
+ * @generated from field: repeated string resources = 3;
5688
+ */
5689
+ resources = [];
5690
+ constructor(data) {
5691
+ super();
5692
+ proto3.util.initPartial(data, this);
5693
+ }
5694
+ static runtime = proto3;
5695
+ static typeName = "wg.cosmo.platform.v1.UpdateOrganizationGroupRequest.GroupRule";
5696
+ static fields = proto3.util.newFieldList(() => [
5697
+ { no: 1, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5698
+ { no: 2, name: "namespaces", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5699
+ { no: 3, name: "resources", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5700
+ ]);
5701
+ static fromBinary(bytes, options) {
5702
+ return new UpdateOrganizationGroupRequest_GroupRule().fromBinary(bytes, options);
5703
+ }
5704
+ static fromJson(jsonValue, options) {
5705
+ return new UpdateOrganizationGroupRequest_GroupRule().fromJson(jsonValue, options);
5706
+ }
5707
+ static fromJsonString(jsonString, options) {
5708
+ return new UpdateOrganizationGroupRequest_GroupRule().fromJsonString(jsonString, options);
5709
+ }
5710
+ static equals(a, b) {
5711
+ return proto3.util.equals(UpdateOrganizationGroupRequest_GroupRule, a, b);
5712
+ }
5713
+ }
5714
+ /**
5715
+ * @generated from message wg.cosmo.platform.v1.UpdateOrganizationGroupResponse
5716
+ */
5717
+ export class UpdateOrganizationGroupResponse extends Message {
5718
+ /**
5719
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
5720
+ */
5721
+ response;
5722
+ constructor(data) {
5723
+ super();
5724
+ proto3.util.initPartial(data, this);
5725
+ }
5726
+ static runtime = proto3;
5727
+ static typeName = "wg.cosmo.platform.v1.UpdateOrganizationGroupResponse";
5728
+ static fields = proto3.util.newFieldList(() => [
5729
+ { no: 1, name: "response", kind: "message", T: Response },
5730
+ ]);
5731
+ static fromBinary(bytes, options) {
5732
+ return new UpdateOrganizationGroupResponse().fromBinary(bytes, options);
5733
+ }
5734
+ static fromJson(jsonValue, options) {
5735
+ return new UpdateOrganizationGroupResponse().fromJson(jsonValue, options);
5736
+ }
5737
+ static fromJsonString(jsonString, options) {
5738
+ return new UpdateOrganizationGroupResponse().fromJsonString(jsonString, options);
5739
+ }
5740
+ static equals(a, b) {
5741
+ return proto3.util.equals(UpdateOrganizationGroupResponse, a, b);
5742
+ }
5743
+ }
5744
+ /**
5745
+ * @generated from message wg.cosmo.platform.v1.DeleteOrganizationGroupRequest
5746
+ */
5747
+ export class DeleteOrganizationGroupRequest extends Message {
5748
+ /**
5749
+ * @generated from field: string groupId = 1;
5750
+ */
5751
+ groupId = "";
5752
+ /**
5753
+ * @generated from field: optional string toGroupId = 2;
5754
+ */
5755
+ toGroupId;
5756
+ constructor(data) {
5757
+ super();
5758
+ proto3.util.initPartial(data, this);
5759
+ }
5760
+ static runtime = proto3;
5761
+ static typeName = "wg.cosmo.platform.v1.DeleteOrganizationGroupRequest";
5762
+ static fields = proto3.util.newFieldList(() => [
5763
+ { no: 1, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5764
+ { no: 2, name: "toGroupId", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
5765
+ ]);
5766
+ static fromBinary(bytes, options) {
5767
+ return new DeleteOrganizationGroupRequest().fromBinary(bytes, options);
5768
+ }
5769
+ static fromJson(jsonValue, options) {
5770
+ return new DeleteOrganizationGroupRequest().fromJson(jsonValue, options);
5771
+ }
5772
+ static fromJsonString(jsonString, options) {
5773
+ return new DeleteOrganizationGroupRequest().fromJsonString(jsonString, options);
5774
+ }
5775
+ static equals(a, b) {
5776
+ return proto3.util.equals(DeleteOrganizationGroupRequest, a, b);
5777
+ }
5778
+ }
5779
+ /**
5780
+ * @generated from message wg.cosmo.platform.v1.DeleteOrganizationGroupResponse
5781
+ */
5782
+ export class DeleteOrganizationGroupResponse extends Message {
5783
+ /**
5784
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
5785
+ */
5786
+ response;
5787
+ constructor(data) {
5788
+ super();
5789
+ proto3.util.initPartial(data, this);
5790
+ }
5791
+ static runtime = proto3;
5792
+ static typeName = "wg.cosmo.platform.v1.DeleteOrganizationGroupResponse";
5793
+ static fields = proto3.util.newFieldList(() => [
5794
+ { no: 1, name: "response", kind: "message", T: Response },
5795
+ ]);
5796
+ static fromBinary(bytes, options) {
5797
+ return new DeleteOrganizationGroupResponse().fromBinary(bytes, options);
5798
+ }
5799
+ static fromJson(jsonValue, options) {
5800
+ return new DeleteOrganizationGroupResponse().fromJson(jsonValue, options);
5801
+ }
5802
+ static fromJsonString(jsonString, options) {
5803
+ return new DeleteOrganizationGroupResponse().fromJsonString(jsonString, options);
5804
+ }
5805
+ static equals(a, b) {
5806
+ return proto3.util.equals(DeleteOrganizationGroupResponse, a, b);
5807
+ }
5808
+ }
5250
5809
  /**
5251
5810
  * @generated from message wg.cosmo.platform.v1.OrgMember
5252
5811
  */
@@ -5260,17 +5819,21 @@ export class OrgMember extends Message {
5260
5819
  */
5261
5820
  email = "";
5262
5821
  /**
5263
- * @generated from field: repeated string roles = 3;
5264
- */
5265
- roles = [];
5266
- /**
5267
- * @generated from field: string orgMemberID = 4;
5822
+ * @generated from field: string orgMemberID = 3;
5268
5823
  */
5269
5824
  orgMemberID = "";
5270
5825
  /**
5271
- * @generated from field: bool active = 5;
5826
+ * @generated from field: bool active = 4;
5272
5827
  */
5273
5828
  active = false;
5829
+ /**
5830
+ * @generated from field: string joinedAt = 5;
5831
+ */
5832
+ joinedAt = "";
5833
+ /**
5834
+ * @generated from field: repeated wg.cosmo.platform.v1.OrgMember.Group groups = 6;
5835
+ */
5836
+ groups = [];
5274
5837
  constructor(data) {
5275
5838
  super();
5276
5839
  proto3.util.initPartial(data, this);
@@ -5280,9 +5843,10 @@ export class OrgMember extends Message {
5280
5843
  static fields = proto3.util.newFieldList(() => [
5281
5844
  { no: 1, name: "userID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5282
5845
  { no: 2, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5283
- { no: 3, name: "roles", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5284
- { no: 4, name: "orgMemberID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5285
- { no: 5, name: "active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
5846
+ { no: 3, name: "orgMemberID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5847
+ { no: 4, name: "active", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
5848
+ { no: 5, name: "joinedAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5849
+ { no: 6, name: "groups", kind: "message", T: OrgMember_Group, repeated: true },
5286
5850
  ]);
5287
5851
  static fromBinary(bytes, options) {
5288
5852
  return new OrgMember().fromBinary(bytes, options);
@@ -5297,6 +5861,41 @@ export class OrgMember extends Message {
5297
5861
  return proto3.util.equals(OrgMember, a, b);
5298
5862
  }
5299
5863
  }
5864
+ /**
5865
+ * @generated from message wg.cosmo.platform.v1.OrgMember.Group
5866
+ */
5867
+ export class OrgMember_Group extends Message {
5868
+ /**
5869
+ * @generated from field: string groupId = 1;
5870
+ */
5871
+ groupId = "";
5872
+ /**
5873
+ * @generated from field: string name = 2;
5874
+ */
5875
+ name = "";
5876
+ constructor(data) {
5877
+ super();
5878
+ proto3.util.initPartial(data, this);
5879
+ }
5880
+ static runtime = proto3;
5881
+ static typeName = "wg.cosmo.platform.v1.OrgMember.Group";
5882
+ static fields = proto3.util.newFieldList(() => [
5883
+ { no: 1, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5884
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5885
+ ]);
5886
+ static fromBinary(bytes, options) {
5887
+ return new OrgMember_Group().fromBinary(bytes, options);
5888
+ }
5889
+ static fromJson(jsonValue, options) {
5890
+ return new OrgMember_Group().fromJson(jsonValue, options);
5891
+ }
5892
+ static fromJsonString(jsonString, options) {
5893
+ return new OrgMember_Group().fromJsonString(jsonString, options);
5894
+ }
5895
+ static equals(a, b) {
5896
+ return proto3.util.equals(OrgMember_Group, a, b);
5897
+ }
5898
+ }
5300
5899
  /**
5301
5900
  * @generated from message wg.cosmo.platform.v1.PendingOrgInvitation
5302
5901
  */
@@ -5490,6 +6089,10 @@ export class InviteUserRequest extends Message {
5490
6089
  * @generated from field: string email = 1;
5491
6090
  */
5492
6091
  email = "";
6092
+ /**
6093
+ * @generated from field: string groupId = 2;
6094
+ */
6095
+ groupId = "";
5493
6096
  constructor(data) {
5494
6097
  super();
5495
6098
  proto3.util.initPartial(data, this);
@@ -5498,6 +6101,7 @@ export class InviteUserRequest extends Message {
5498
6101
  static typeName = "wg.cosmo.platform.v1.InviteUserRequest";
5499
6102
  static fields = proto3.util.newFieldList(() => [
5500
6103
  { no: 1, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6104
+ { no: 2, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5501
6105
  ]);
5502
6106
  static fromBinary(bytes, options) {
5503
6107
  return new InviteUserRequest().fromBinary(bytes, options);
@@ -5570,6 +6174,10 @@ export class APIKey extends Message {
5570
6174
  * @generated from field: string expiresAt = 6;
5571
6175
  */
5572
6176
  expiresAt = "";
6177
+ /**
6178
+ * @generated from field: optional wg.cosmo.platform.v1.APIKey.Group group = 7;
6179
+ */
6180
+ group;
5573
6181
  constructor(data) {
5574
6182
  super();
5575
6183
  proto3.util.initPartial(data, this);
@@ -5583,6 +6191,7 @@ export class APIKey extends Message {
5583
6191
  { no: 4, name: "createdAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5584
6192
  { no: 5, name: "lastUsedAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5585
6193
  { no: 6, name: "expiresAt", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6194
+ { no: 7, name: "group", kind: "message", T: APIKey_Group, opt: true },
5586
6195
  ]);
5587
6196
  static fromBinary(bytes, options) {
5588
6197
  return new APIKey().fromBinary(bytes, options);
@@ -5597,6 +6206,41 @@ export class APIKey extends Message {
5597
6206
  return proto3.util.equals(APIKey, a, b);
5598
6207
  }
5599
6208
  }
6209
+ /**
6210
+ * @generated from message wg.cosmo.platform.v1.APIKey.Group
6211
+ */
6212
+ export class APIKey_Group extends Message {
6213
+ /**
6214
+ * @generated from field: string id = 1;
6215
+ */
6216
+ id = "";
6217
+ /**
6218
+ * @generated from field: string name = 2;
6219
+ */
6220
+ name = "";
6221
+ constructor(data) {
6222
+ super();
6223
+ proto3.util.initPartial(data, this);
6224
+ }
6225
+ static runtime = proto3;
6226
+ static typeName = "wg.cosmo.platform.v1.APIKey.Group";
6227
+ static fields = proto3.util.newFieldList(() => [
6228
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6229
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6230
+ ]);
6231
+ static fromBinary(bytes, options) {
6232
+ return new APIKey_Group().fromBinary(bytes, options);
6233
+ }
6234
+ static fromJson(jsonValue, options) {
6235
+ return new APIKey_Group().fromJson(jsonValue, options);
6236
+ }
6237
+ static fromJsonString(jsonString, options) {
6238
+ return new APIKey_Group().fromJsonString(jsonString, options);
6239
+ }
6240
+ static equals(a, b) {
6241
+ return proto3.util.equals(APIKey_Group, a, b);
6242
+ }
6243
+ }
5600
6244
  /**
5601
6245
  * @generated from message wg.cosmo.platform.v1.GetAPIKeysRequest
5602
6246
  */
@@ -5673,21 +6317,13 @@ export class CreateAPIKeyRequest extends Message {
5673
6317
  */
5674
6318
  expires = ExpiresAt.NEVER;
5675
6319
  /**
5676
- * @generated from field: repeated string federatedGraphTargetIds = 4;
5677
- */
5678
- federatedGraphTargetIds = [];
5679
- /**
5680
- * @generated from field: repeated string subgraphTargetIds = 5;
6320
+ * @generated from field: string groupId = 4;
5681
6321
  */
5682
- subgraphTargetIds = [];
6322
+ groupId = "";
5683
6323
  /**
5684
- * @generated from field: repeated string permissions = 6;
6324
+ * @generated from field: repeated string permissions = 5;
5685
6325
  */
5686
6326
  permissions = [];
5687
- /**
5688
- * @generated from field: bool allowAllResources = 7;
5689
- */
5690
- allowAllResources = false;
5691
6327
  constructor(data) {
5692
6328
  super();
5693
6329
  proto3.util.initPartial(data, this);
@@ -5698,10 +6334,8 @@ export class CreateAPIKeyRequest extends Message {
5698
6334
  { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5699
6335
  { no: 2, name: "userID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5700
6336
  { no: 3, name: "expires", kind: "enum", T: proto3.getEnumType(ExpiresAt) },
5701
- { no: 4, name: "federatedGraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5702
- { no: 5, name: "subgraphTargetIds", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5703
- { no: 6, name: "permissions", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5704
- { no: 7, name: "allowAllResources", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
6337
+ { no: 4, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6338
+ { no: 5, name: "permissions", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
5705
6339
  ]);
5706
6340
  static fromBinary(bytes, options) {
5707
6341
  return new CreateAPIKeyRequest().fromBinary(bytes, options);
@@ -5811,6 +6445,71 @@ export class DeleteAPIKeyResponse extends Message {
5811
6445
  return proto3.util.equals(DeleteAPIKeyResponse, a, b);
5812
6446
  }
5813
6447
  }
6448
+ /**
6449
+ * @generated from message wg.cosmo.platform.v1.UpdateAPIKeyRequest
6450
+ */
6451
+ export class UpdateAPIKeyRequest extends Message {
6452
+ /**
6453
+ * @generated from field: string name = 1;
6454
+ */
6455
+ name = "";
6456
+ /**
6457
+ * @generated from field: string groupId = 2;
6458
+ */
6459
+ groupId = "";
6460
+ constructor(data) {
6461
+ super();
6462
+ proto3.util.initPartial(data, this);
6463
+ }
6464
+ static runtime = proto3;
6465
+ static typeName = "wg.cosmo.platform.v1.UpdateAPIKeyRequest";
6466
+ static fields = proto3.util.newFieldList(() => [
6467
+ { no: 1, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6468
+ { no: 2, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6469
+ ]);
6470
+ static fromBinary(bytes, options) {
6471
+ return new UpdateAPIKeyRequest().fromBinary(bytes, options);
6472
+ }
6473
+ static fromJson(jsonValue, options) {
6474
+ return new UpdateAPIKeyRequest().fromJson(jsonValue, options);
6475
+ }
6476
+ static fromJsonString(jsonString, options) {
6477
+ return new UpdateAPIKeyRequest().fromJsonString(jsonString, options);
6478
+ }
6479
+ static equals(a, b) {
6480
+ return proto3.util.equals(UpdateAPIKeyRequest, a, b);
6481
+ }
6482
+ }
6483
+ /**
6484
+ * @generated from message wg.cosmo.platform.v1.UpdateAPIKeyResponse
6485
+ */
6486
+ export class UpdateAPIKeyResponse extends Message {
6487
+ /**
6488
+ * @generated from field: wg.cosmo.platform.v1.Response response = 1;
6489
+ */
6490
+ response;
6491
+ constructor(data) {
6492
+ super();
6493
+ proto3.util.initPartial(data, this);
6494
+ }
6495
+ static runtime = proto3;
6496
+ static typeName = "wg.cosmo.platform.v1.UpdateAPIKeyResponse";
6497
+ static fields = proto3.util.newFieldList(() => [
6498
+ { no: 1, name: "response", kind: "message", T: Response },
6499
+ ]);
6500
+ static fromBinary(bytes, options) {
6501
+ return new UpdateAPIKeyResponse().fromBinary(bytes, options);
6502
+ }
6503
+ static fromJson(jsonValue, options) {
6504
+ return new UpdateAPIKeyResponse().fromJson(jsonValue, options);
6505
+ }
6506
+ static fromJsonString(jsonString, options) {
6507
+ return new UpdateAPIKeyResponse().fromJsonString(jsonString, options);
6508
+ }
6509
+ static equals(a, b) {
6510
+ return proto3.util.equals(UpdateAPIKeyResponse, a, b);
6511
+ }
6512
+ }
5814
6513
  /**
5815
6514
  * @generated from message wg.cosmo.platform.v1.RemoveOrganizationMemberRequest
5816
6515
  */
@@ -7838,9 +8537,9 @@ export class UpdateOrganizationDetailsResponse extends Message {
7838
8537
  }
7839
8538
  }
7840
8539
  /**
7841
- * @generated from message wg.cosmo.platform.v1.UpdateOrgMemberRoleRequest
8540
+ * @generated from message wg.cosmo.platform.v1.UpdateOrgMemberGroupRequest
7842
8541
  */
7843
- export class UpdateOrgMemberRoleRequest extends Message {
8542
+ export class UpdateOrgMemberGroupRequest extends Message {
7844
8543
  /**
7845
8544
  * @generated from field: string userID = 1;
7846
8545
  */
@@ -7850,37 +8549,37 @@ export class UpdateOrgMemberRoleRequest extends Message {
7850
8549
  */
7851
8550
  orgMemberUserID = "";
7852
8551
  /**
7853
- * @generated from field: string role = 3;
8552
+ * @generated from field: string groupId = 3;
7854
8553
  */
7855
- role = "";
8554
+ groupId = "";
7856
8555
  constructor(data) {
7857
8556
  super();
7858
8557
  proto3.util.initPartial(data, this);
7859
8558
  }
7860
8559
  static runtime = proto3;
7861
- static typeName = "wg.cosmo.platform.v1.UpdateOrgMemberRoleRequest";
8560
+ static typeName = "wg.cosmo.platform.v1.UpdateOrgMemberGroupRequest";
7862
8561
  static fields = proto3.util.newFieldList(() => [
7863
8562
  { no: 1, name: "userID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7864
8563
  { no: 2, name: "orgMemberUserID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7865
- { no: 3, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8564
+ { no: 3, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7866
8565
  ]);
7867
8566
  static fromBinary(bytes, options) {
7868
- return new UpdateOrgMemberRoleRequest().fromBinary(bytes, options);
8567
+ return new UpdateOrgMemberGroupRequest().fromBinary(bytes, options);
7869
8568
  }
7870
8569
  static fromJson(jsonValue, options) {
7871
- return new UpdateOrgMemberRoleRequest().fromJson(jsonValue, options);
8570
+ return new UpdateOrgMemberGroupRequest().fromJson(jsonValue, options);
7872
8571
  }
7873
8572
  static fromJsonString(jsonString, options) {
7874
- return new UpdateOrgMemberRoleRequest().fromJsonString(jsonString, options);
8573
+ return new UpdateOrgMemberGroupRequest().fromJsonString(jsonString, options);
7875
8574
  }
7876
8575
  static equals(a, b) {
7877
- return proto3.util.equals(UpdateOrgMemberRoleRequest, a, b);
8576
+ return proto3.util.equals(UpdateOrgMemberGroupRequest, a, b);
7878
8577
  }
7879
8578
  }
7880
8579
  /**
7881
- * @generated from message wg.cosmo.platform.v1.UpdateOrgMemberRoleResponse
8580
+ * @generated from message wg.cosmo.platform.v1.UpdateOrgMemberGroupResponse
7882
8581
  */
7883
- export class UpdateOrgMemberRoleResponse extends Message {
8582
+ export class UpdateOrgMemberGroupResponse extends Message {
7884
8583
  /**
7885
8584
  * @generated from field: wg.cosmo.platform.v1.Response response = 1;
7886
8585
  */
@@ -7890,21 +8589,21 @@ export class UpdateOrgMemberRoleResponse extends Message {
7890
8589
  proto3.util.initPartial(data, this);
7891
8590
  }
7892
8591
  static runtime = proto3;
7893
- static typeName = "wg.cosmo.platform.v1.UpdateOrgMemberRoleResponse";
8592
+ static typeName = "wg.cosmo.platform.v1.UpdateOrgMemberGroupResponse";
7894
8593
  static fields = proto3.util.newFieldList(() => [
7895
8594
  { no: 1, name: "response", kind: "message", T: Response },
7896
8595
  ]);
7897
8596
  static fromBinary(bytes, options) {
7898
- return new UpdateOrgMemberRoleResponse().fromBinary(bytes, options);
8597
+ return new UpdateOrgMemberGroupResponse().fromBinary(bytes, options);
7899
8598
  }
7900
8599
  static fromJson(jsonValue, options) {
7901
- return new UpdateOrgMemberRoleResponse().fromJson(jsonValue, options);
8600
+ return new UpdateOrgMemberGroupResponse().fromJson(jsonValue, options);
7902
8601
  }
7903
8602
  static fromJsonString(jsonString, options) {
7904
- return new UpdateOrgMemberRoleResponse().fromJsonString(jsonString, options);
8603
+ return new UpdateOrgMemberGroupResponse().fromJsonString(jsonString, options);
7905
8604
  }
7906
8605
  static equals(a, b) {
7907
- return proto3.util.equals(UpdateOrgMemberRoleResponse, a, b);
8606
+ return proto3.util.equals(UpdateOrgMemberGroupResponse, a, b);
7908
8607
  }
7909
8608
  }
7910
8609
  /**
@@ -9891,9 +10590,9 @@ export class IsGitHubAppInstalledResponse extends Message {
9891
10590
  */
9892
10591
  export class GroupMapper extends Message {
9893
10592
  /**
9894
- * @generated from field: string role = 1;
10593
+ * @generated from field: string groupId = 1;
9895
10594
  */
9896
- role = "";
10595
+ groupId = "";
9897
10596
  /**
9898
10597
  * @generated from field: string ssoGroup = 2;
9899
10598
  */
@@ -9905,7 +10604,7 @@ export class GroupMapper extends Message {
9905
10604
  static runtime = proto3;
9906
10605
  static typeName = "wg.cosmo.platform.v1.GroupMapper";
9907
10606
  static fields = proto3.util.newFieldList(() => [
9908
- { no: 1, name: "role", kind: "scalar", T: 9 /* ScalarType.STRING */ },
10607
+ { no: 1, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9909
10608
  { no: 2, name: "ssoGroup", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9910
10609
  ]);
9911
10610
  static fromBinary(bytes, options) {
@@ -11210,11 +11909,15 @@ export class GetUserAccessibleResourcesResponse extends Message {
11210
11909
  */
11211
11910
  response;
11212
11911
  /**
11213
- * @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph federatedGraphs = 2;
11912
+ * @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Namespace namespaces = 2;
11913
+ */
11914
+ namespaces = [];
11915
+ /**
11916
+ * @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.FederatedGraph federatedGraphs = 3;
11214
11917
  */
11215
11918
  federatedGraphs = [];
11216
11919
  /**
11217
- * @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph subgraphs = 3;
11920
+ * @generated from field: repeated wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.SubGraph subgraphs = 4;
11218
11921
  */
11219
11922
  subgraphs = [];
11220
11923
  constructor(data) {
@@ -11225,8 +11928,9 @@ export class GetUserAccessibleResourcesResponse extends Message {
11225
11928
  static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse";
11226
11929
  static fields = proto3.util.newFieldList(() => [
11227
11930
  { no: 1, name: "response", kind: "message", T: Response },
11228
- { no: 2, name: "federatedGraphs", kind: "message", T: GetUserAccessibleResourcesResponse_Graph, repeated: true },
11229
- { no: 3, name: "subgraphs", kind: "message", T: GetUserAccessibleResourcesResponse_Graph, repeated: true },
11931
+ { no: 2, name: "namespaces", kind: "message", T: GetUserAccessibleResourcesResponse_Namespace, repeated: true },
11932
+ { no: 3, name: "federatedGraphs", kind: "message", T: GetUserAccessibleResourcesResponse_FederatedGraph, repeated: true },
11933
+ { no: 4, name: "subgraphs", kind: "message", T: GetUserAccessibleResourcesResponse_SubGraph, repeated: true },
11230
11934
  ]);
11231
11935
  static fromBinary(bytes, options) {
11232
11936
  return new GetUserAccessibleResourcesResponse().fromBinary(bytes, options);
@@ -11242,224 +11946,164 @@ export class GetUserAccessibleResourcesResponse extends Message {
11242
11946
  }
11243
11947
  }
11244
11948
  /**
11245
- * @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph
11949
+ * @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Namespace
11246
11950
  */
11247
- export class GetUserAccessibleResourcesResponse_Graph extends Message {
11951
+ export class GetUserAccessibleResourcesResponse_Namespace extends Message {
11248
11952
  /**
11249
- * @generated from field: string targetId = 1;
11953
+ * @generated from field: string id = 1;
11250
11954
  */
11251
- targetId = "";
11955
+ id = "";
11252
11956
  /**
11253
11957
  * @generated from field: string name = 2;
11254
11958
  */
11255
11959
  name = "";
11256
- /**
11257
- * @generated from field: string namespace = 3;
11258
- */
11259
- namespace = "";
11260
11960
  constructor(data) {
11261
11961
  super();
11262
11962
  proto3.util.initPartial(data, this);
11263
11963
  }
11264
11964
  static runtime = proto3;
11265
- static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Graph";
11965
+ static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.Namespace";
11266
11966
  static fields = proto3.util.newFieldList(() => [
11267
- { no: 1, name: "targetId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11967
+ { no: 1, name: "id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11268
11968
  { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11269
- { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11270
11969
  ]);
11271
11970
  static fromBinary(bytes, options) {
11272
- return new GetUserAccessibleResourcesResponse_Graph().fromBinary(bytes, options);
11971
+ return new GetUserAccessibleResourcesResponse_Namespace().fromBinary(bytes, options);
11273
11972
  }
11274
11973
  static fromJson(jsonValue, options) {
11275
- return new GetUserAccessibleResourcesResponse_Graph().fromJson(jsonValue, options);
11974
+ return new GetUserAccessibleResourcesResponse_Namespace().fromJson(jsonValue, options);
11276
11975
  }
11277
11976
  static fromJsonString(jsonString, options) {
11278
- return new GetUserAccessibleResourcesResponse_Graph().fromJsonString(jsonString, options);
11977
+ return new GetUserAccessibleResourcesResponse_Namespace().fromJsonString(jsonString, options);
11279
11978
  }
11280
11979
  static equals(a, b) {
11281
- return proto3.util.equals(GetUserAccessibleResourcesResponse_Graph, a, b);
11980
+ return proto3.util.equals(GetUserAccessibleResourcesResponse_Namespace, a, b);
11282
11981
  }
11283
11982
  }
11284
11983
  /**
11285
- * @generated from message wg.cosmo.platform.v1.UpdateFeatureSettingsRequest
11984
+ * @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.FederatedGraph
11286
11985
  */
11287
- export class UpdateFeatureSettingsRequest extends Message {
11986
+ export class GetUserAccessibleResourcesResponse_FederatedGraph extends Message {
11288
11987
  /**
11289
- * @generated from field: bool enable = 1;
11988
+ * @generated from field: string targetId = 1;
11290
11989
  */
11291
- enable = false;
11990
+ targetId = "";
11292
11991
  /**
11293
- * @generated from field: wg.cosmo.platform.v1.Feature featureId = 2;
11992
+ * @generated from field: string name = 2;
11294
11993
  */
11295
- featureId = Feature.rbac;
11296
- constructor(data) {
11297
- super();
11298
- proto3.util.initPartial(data, this);
11299
- }
11300
- static runtime = proto3;
11301
- static typeName = "wg.cosmo.platform.v1.UpdateFeatureSettingsRequest";
11302
- static fields = proto3.util.newFieldList(() => [
11303
- { no: 1, name: "enable", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
11304
- { no: 2, name: "featureId", kind: "enum", T: proto3.getEnumType(Feature) },
11305
- ]);
11306
- static fromBinary(bytes, options) {
11307
- return new UpdateFeatureSettingsRequest().fromBinary(bytes, options);
11308
- }
11309
- static fromJson(jsonValue, options) {
11310
- return new UpdateFeatureSettingsRequest().fromJson(jsonValue, options);
11311
- }
11312
- static fromJsonString(jsonString, options) {
11313
- return new UpdateFeatureSettingsRequest().fromJsonString(jsonString, options);
11314
- }
11315
- static equals(a, b) {
11316
- return proto3.util.equals(UpdateFeatureSettingsRequest, a, b);
11317
- }
11318
- }
11319
- /**
11320
- * @generated from message wg.cosmo.platform.v1.UpdateFeatureSettingsResponse
11321
- */
11322
- export class UpdateFeatureSettingsResponse extends Message {
11994
+ name = "";
11323
11995
  /**
11324
- * @generated from field: wg.cosmo.platform.v1.Response response = 1;
11996
+ * @generated from field: string namespace = 3;
11325
11997
  */
11326
- response;
11998
+ namespace = "";
11327
11999
  constructor(data) {
11328
12000
  super();
11329
12001
  proto3.util.initPartial(data, this);
11330
12002
  }
11331
12003
  static runtime = proto3;
11332
- static typeName = "wg.cosmo.platform.v1.UpdateFeatureSettingsResponse";
12004
+ static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.FederatedGraph";
11333
12005
  static fields = proto3.util.newFieldList(() => [
11334
- { no: 1, name: "response", kind: "message", T: Response },
12006
+ { no: 1, name: "targetId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
12007
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
12008
+ { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11335
12009
  ]);
11336
12010
  static fromBinary(bytes, options) {
11337
- return new UpdateFeatureSettingsResponse().fromBinary(bytes, options);
12011
+ return new GetUserAccessibleResourcesResponse_FederatedGraph().fromBinary(bytes, options);
11338
12012
  }
11339
12013
  static fromJson(jsonValue, options) {
11340
- return new UpdateFeatureSettingsResponse().fromJson(jsonValue, options);
12014
+ return new GetUserAccessibleResourcesResponse_FederatedGraph().fromJson(jsonValue, options);
11341
12015
  }
11342
12016
  static fromJsonString(jsonString, options) {
11343
- return new UpdateFeatureSettingsResponse().fromJsonString(jsonString, options);
12017
+ return new GetUserAccessibleResourcesResponse_FederatedGraph().fromJsonString(jsonString, options);
11344
12018
  }
11345
12019
  static equals(a, b) {
11346
- return proto3.util.equals(UpdateFeatureSettingsResponse, a, b);
12020
+ return proto3.util.equals(GetUserAccessibleResourcesResponse_FederatedGraph, a, b);
11347
12021
  }
11348
12022
  }
11349
12023
  /**
11350
- * @generated from message wg.cosmo.platform.v1.AddSubgraphMemberRequest
12024
+ * @generated from message wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.SubGraph
11351
12025
  */
11352
- export class AddSubgraphMemberRequest extends Message {
12026
+ export class GetUserAccessibleResourcesResponse_SubGraph extends Message {
11353
12027
  /**
11354
- * @generated from field: string subgraphName = 1;
12028
+ * @generated from field: string targetId = 1;
11355
12029
  */
11356
- subgraphName = "";
12030
+ targetId = "";
11357
12031
  /**
11358
- * @generated from field: string userEmail = 2;
12032
+ * @generated from field: string name = 2;
11359
12033
  */
11360
- userEmail = "";
12034
+ name = "";
11361
12035
  /**
11362
12036
  * @generated from field: string namespace = 3;
11363
12037
  */
11364
12038
  namespace = "";
11365
- constructor(data) {
11366
- super();
11367
- proto3.util.initPartial(data, this);
11368
- }
11369
- static runtime = proto3;
11370
- static typeName = "wg.cosmo.platform.v1.AddSubgraphMemberRequest";
11371
- static fields = proto3.util.newFieldList(() => [
11372
- { no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11373
- { no: 2, name: "userEmail", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11374
- { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11375
- ]);
11376
- static fromBinary(bytes, options) {
11377
- return new AddSubgraphMemberRequest().fromBinary(bytes, options);
11378
- }
11379
- static fromJson(jsonValue, options) {
11380
- return new AddSubgraphMemberRequest().fromJson(jsonValue, options);
11381
- }
11382
- static fromJsonString(jsonString, options) {
11383
- return new AddSubgraphMemberRequest().fromJsonString(jsonString, options);
11384
- }
11385
- static equals(a, b) {
11386
- return proto3.util.equals(AddSubgraphMemberRequest, a, b);
11387
- }
11388
- }
11389
- /**
11390
- * @generated from message wg.cosmo.platform.v1.AddSubgraphMemberResponse
11391
- */
11392
- export class AddSubgraphMemberResponse extends Message {
11393
12039
  /**
11394
- * @generated from field: wg.cosmo.platform.v1.Response response = 1;
12040
+ * @generated from field: string federatedGraphId = 4;
11395
12041
  */
11396
- response;
12042
+ federatedGraphId = "";
11397
12043
  constructor(data) {
11398
12044
  super();
11399
12045
  proto3.util.initPartial(data, this);
11400
12046
  }
11401
12047
  static runtime = proto3;
11402
- static typeName = "wg.cosmo.platform.v1.AddSubgraphMemberResponse";
12048
+ static typeName = "wg.cosmo.platform.v1.GetUserAccessibleResourcesResponse.SubGraph";
11403
12049
  static fields = proto3.util.newFieldList(() => [
11404
- { no: 1, name: "response", kind: "message", T: Response },
12050
+ { no: 1, name: "targetId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
12051
+ { no: 2, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
12052
+ { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
12053
+ { no: 4, name: "federatedGraphId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11405
12054
  ]);
11406
12055
  static fromBinary(bytes, options) {
11407
- return new AddSubgraphMemberResponse().fromBinary(bytes, options);
12056
+ return new GetUserAccessibleResourcesResponse_SubGraph().fromBinary(bytes, options);
11408
12057
  }
11409
12058
  static fromJson(jsonValue, options) {
11410
- return new AddSubgraphMemberResponse().fromJson(jsonValue, options);
12059
+ return new GetUserAccessibleResourcesResponse_SubGraph().fromJson(jsonValue, options);
11411
12060
  }
11412
12061
  static fromJsonString(jsonString, options) {
11413
- return new AddSubgraphMemberResponse().fromJsonString(jsonString, options);
12062
+ return new GetUserAccessibleResourcesResponse_SubGraph().fromJsonString(jsonString, options);
11414
12063
  }
11415
12064
  static equals(a, b) {
11416
- return proto3.util.equals(AddSubgraphMemberResponse, a, b);
12065
+ return proto3.util.equals(GetUserAccessibleResourcesResponse_SubGraph, a, b);
11417
12066
  }
11418
12067
  }
11419
12068
  /**
11420
- * @generated from message wg.cosmo.platform.v1.RemoveSubgraphMemberRequest
12069
+ * @generated from message wg.cosmo.platform.v1.UpdateFeatureSettingsRequest
11421
12070
  */
11422
- export class RemoveSubgraphMemberRequest extends Message {
11423
- /**
11424
- * @generated from field: string subgraphName = 1;
11425
- */
11426
- subgraphName = "";
12071
+ export class UpdateFeatureSettingsRequest extends Message {
11427
12072
  /**
11428
- * @generated from field: string subgraphMemberId = 2;
12073
+ * @generated from field: bool enable = 1;
11429
12074
  */
11430
- subgraphMemberId = "";
12075
+ enable = false;
11431
12076
  /**
11432
- * @generated from field: string namespace = 3;
12077
+ * @generated from field: wg.cosmo.platform.v1.Feature featureId = 2;
11433
12078
  */
11434
- namespace = "";
12079
+ featureId = Feature.rbac;
11435
12080
  constructor(data) {
11436
12081
  super();
11437
12082
  proto3.util.initPartial(data, this);
11438
12083
  }
11439
12084
  static runtime = proto3;
11440
- static typeName = "wg.cosmo.platform.v1.RemoveSubgraphMemberRequest";
12085
+ static typeName = "wg.cosmo.platform.v1.UpdateFeatureSettingsRequest";
11441
12086
  static fields = proto3.util.newFieldList(() => [
11442
- { no: 1, name: "subgraphName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11443
- { no: 2, name: "subgraphMemberId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11444
- { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
12087
+ { no: 1, name: "enable", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
12088
+ { no: 2, name: "featureId", kind: "enum", T: proto3.getEnumType(Feature) },
11445
12089
  ]);
11446
12090
  static fromBinary(bytes, options) {
11447
- return new RemoveSubgraphMemberRequest().fromBinary(bytes, options);
12091
+ return new UpdateFeatureSettingsRequest().fromBinary(bytes, options);
11448
12092
  }
11449
12093
  static fromJson(jsonValue, options) {
11450
- return new RemoveSubgraphMemberRequest().fromJson(jsonValue, options);
12094
+ return new UpdateFeatureSettingsRequest().fromJson(jsonValue, options);
11451
12095
  }
11452
12096
  static fromJsonString(jsonString, options) {
11453
- return new RemoveSubgraphMemberRequest().fromJsonString(jsonString, options);
12097
+ return new UpdateFeatureSettingsRequest().fromJsonString(jsonString, options);
11454
12098
  }
11455
12099
  static equals(a, b) {
11456
- return proto3.util.equals(RemoveSubgraphMemberRequest, a, b);
12100
+ return proto3.util.equals(UpdateFeatureSettingsRequest, a, b);
11457
12101
  }
11458
12102
  }
11459
12103
  /**
11460
- * @generated from message wg.cosmo.platform.v1.RemoveSubgraphMemberResponse
12104
+ * @generated from message wg.cosmo.platform.v1.UpdateFeatureSettingsResponse
11461
12105
  */
11462
- export class RemoveSubgraphMemberResponse extends Message {
12106
+ export class UpdateFeatureSettingsResponse extends Message {
11463
12107
  /**
11464
12108
  * @generated from field: wg.cosmo.platform.v1.Response response = 1;
11465
12109
  */
@@ -11469,21 +12113,21 @@ export class RemoveSubgraphMemberResponse extends Message {
11469
12113
  proto3.util.initPartial(data, this);
11470
12114
  }
11471
12115
  static runtime = proto3;
11472
- static typeName = "wg.cosmo.platform.v1.RemoveSubgraphMemberResponse";
12116
+ static typeName = "wg.cosmo.platform.v1.UpdateFeatureSettingsResponse";
11473
12117
  static fields = proto3.util.newFieldList(() => [
11474
12118
  { no: 1, name: "response", kind: "message", T: Response },
11475
12119
  ]);
11476
12120
  static fromBinary(bytes, options) {
11477
- return new RemoveSubgraphMemberResponse().fromBinary(bytes, options);
12121
+ return new UpdateFeatureSettingsResponse().fromBinary(bytes, options);
11478
12122
  }
11479
12123
  static fromJson(jsonValue, options) {
11480
- return new RemoveSubgraphMemberResponse().fromJson(jsonValue, options);
12124
+ return new UpdateFeatureSettingsResponse().fromJson(jsonValue, options);
11481
12125
  }
11482
12126
  static fromJsonString(jsonString, options) {
11483
- return new RemoveSubgraphMemberResponse().fromJsonString(jsonString, options);
12127
+ return new UpdateFeatureSettingsResponse().fromJsonString(jsonString, options);
11484
12128
  }
11485
12129
  static equals(a, b) {
11486
- return proto3.util.equals(RemoveSubgraphMemberResponse, a, b);
12130
+ return proto3.util.equals(UpdateFeatureSettingsResponse, a, b);
11487
12131
  }
11488
12132
  }
11489
12133
  /**