@wundergraph/cosmo-connect 0.112.0 → 0.114.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.
@@ -215,6 +215,19 @@ export declare enum Feature {
215
215
  */
216
216
  scim = 2
217
217
  }
218
+ /**
219
+ * @generated from enum wg.cosmo.platform.v1.ProposalNamingConvention
220
+ */
221
+ export declare enum ProposalNamingConvention {
222
+ /**
223
+ * @generated from enum value: NORMAL = 0;
224
+ */
225
+ NORMAL = 0,
226
+ /**
227
+ * @generated from enum value: INCREMENTAL = 1;
228
+ */
229
+ INCREMENTAL = 1
230
+ }
218
231
  /**
219
232
  * @generated from message wg.cosmo.platform.v1.Label
220
233
  */
@@ -2364,6 +2377,10 @@ export declare class GetCheckOperationsRequest extends Message<GetCheckOperation
2364
2377
  * @generated from field: int32 offset = 5;
2365
2378
  */
2366
2379
  offset: number;
2380
+ /**
2381
+ * @generated from field: optional string search = 6;
2382
+ */
2383
+ search?: string;
2367
2384
  constructor(data?: PartialMessage<GetCheckOperationsRequest>);
2368
2385
  static readonly runtime: typeof proto3;
2369
2386
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsRequest";
@@ -2401,6 +2418,14 @@ export declare class GetCheckOperationsResponse extends Message<GetCheckOperatio
2401
2418
  * @generated from field: int32 totalOperationsCount = 6;
2402
2419
  */
2403
2420
  totalOperationsCount: number;
2421
+ /**
2422
+ * @generated from field: bool doAllOperationsHaveIgnoreAllOverride = 7;
2423
+ */
2424
+ doAllOperationsHaveIgnoreAllOverride: boolean;
2425
+ /**
2426
+ * @generated from field: bool doAllOperationsHaveAllTheirChangesMarkedSafe = 8;
2427
+ */
2428
+ doAllOperationsHaveAllTheirChangesMarkedSafe: boolean;
2404
2429
  constructor(data?: PartialMessage<GetCheckOperationsResponse>);
2405
2430
  static readonly runtime: typeof proto3;
2406
2431
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsResponse";
@@ -4023,9 +4048,9 @@ export declare class InviteUserRequest extends Message<InviteUserRequest> {
4023
4048
  */
4024
4049
  email: string;
4025
4050
  /**
4026
- * @generated from field: string groupId = 2;
4051
+ * @generated from field: repeated string groups = 2;
4027
4052
  */
4028
- groupId: string;
4053
+ groups: string[];
4029
4054
  constructor(data?: PartialMessage<InviteUserRequest>);
4030
4055
  static readonly runtime: typeof proto3;
4031
4056
  static readonly typeName = "wg.cosmo.platform.v1.InviteUserRequest";
@@ -5518,17 +5543,13 @@ export declare class UpdateOrganizationDetailsResponse extends Message<UpdateOrg
5518
5543
  */
5519
5544
  export declare class UpdateOrgMemberGroupRequest extends Message<UpdateOrgMemberGroupRequest> {
5520
5545
  /**
5521
- * @generated from field: string userID = 1;
5522
- */
5523
- userID: string;
5524
- /**
5525
- * @generated from field: string orgMemberUserID = 2;
5546
+ * @generated from field: string orgMemberUserID = 1;
5526
5547
  */
5527
5548
  orgMemberUserID: string;
5528
5549
  /**
5529
- * @generated from field: string groupId = 3;
5550
+ * @generated from field: repeated string groups = 2;
5530
5551
  */
5531
- groupId: string;
5552
+ groups: string[];
5532
5553
  constructor(data?: PartialMessage<UpdateOrgMemberGroupRequest>);
5533
5554
  static readonly runtime: typeof proto3;
5534
5555
  static readonly typeName = "wg.cosmo.platform.v1.UpdateOrgMemberGroupRequest";
@@ -6355,6 +6376,10 @@ export declare class ToggleChangeOverridesForAllOperationsRequest extends Messag
6355
6376
  * @generated from field: string namespace = 4;
6356
6377
  */
6357
6378
  namespace: string;
6379
+ /**
6380
+ * @generated from field: optional string search = 5;
6381
+ */
6382
+ search?: string;
6358
6383
  constructor(data?: PartialMessage<ToggleChangeOverridesForAllOperationsRequest>);
6359
6384
  static readonly runtime: typeof proto3;
6360
6385
  static readonly typeName = "wg.cosmo.platform.v1.ToggleChangeOverridesForAllOperationsRequest";
@@ -6397,6 +6422,10 @@ export declare class CreateIgnoreOverridesForAllOperationsRequest extends Messag
6397
6422
  * @generated from field: string namespace = 3;
6398
6423
  */
6399
6424
  namespace: string;
6425
+ /**
6426
+ * @generated from field: optional string search = 4;
6427
+ */
6428
+ search?: string;
6400
6429
  constructor(data?: PartialMessage<CreateIgnoreOverridesForAllOperationsRequest>);
6401
6430
  static readonly runtime: typeof proto3;
6402
6431
  static readonly typeName = "wg.cosmo.platform.v1.CreateIgnoreOverridesForAllOperationsRequest";
@@ -10772,6 +10801,10 @@ export declare class CreateProposalRequest extends Message<CreateProposalRequest
10772
10801
  * @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 4;
10773
10802
  */
10774
10803
  subgraphs: ProposalSubgraph[];
10804
+ /**
10805
+ * @generated from field: wg.cosmo.platform.v1.ProposalNamingConvention namingConvention = 5;
10806
+ */
10807
+ namingConvention: ProposalNamingConvention;
10775
10808
  constructor(data?: PartialMessage<CreateProposalRequest>);
10776
10809
  static readonly runtime: typeof proto3;
10777
10810
  static readonly typeName = "wg.cosmo.platform.v1.CreateProposalRequest";
@@ -10849,6 +10882,10 @@ export declare class CreateProposalResponse extends Message<CreateProposalRespon
10849
10882
  * @generated from field: string proposalUrl = 16;
10850
10883
  */
10851
10884
  proposalUrl: string;
10885
+ /**
10886
+ * @generated from field: string proposalName = 17;
10887
+ */
10888
+ proposalName: string;
10852
10889
  constructor(data?: PartialMessage<CreateProposalResponse>);
10853
10890
  static readonly runtime: typeof proto3;
10854
10891
  static readonly typeName = "wg.cosmo.platform.v1.CreateProposalResponse";
@@ -293,6 +293,25 @@ proto3.util.setEnumType(Feature, "wg.cosmo.platform.v1.Feature", [
293
293
  { no: 1, name: "ai" },
294
294
  { no: 2, name: "scim" },
295
295
  ]);
296
+ /**
297
+ * @generated from enum wg.cosmo.platform.v1.ProposalNamingConvention
298
+ */
299
+ export var ProposalNamingConvention;
300
+ (function (ProposalNamingConvention) {
301
+ /**
302
+ * @generated from enum value: NORMAL = 0;
303
+ */
304
+ ProposalNamingConvention[ProposalNamingConvention["NORMAL"] = 0] = "NORMAL";
305
+ /**
306
+ * @generated from enum value: INCREMENTAL = 1;
307
+ */
308
+ ProposalNamingConvention[ProposalNamingConvention["INCREMENTAL"] = 1] = "INCREMENTAL";
309
+ })(ProposalNamingConvention || (ProposalNamingConvention = {}));
310
+ // Retrieve enum metadata with: proto3.getEnumType(ProposalNamingConvention)
311
+ proto3.util.setEnumType(ProposalNamingConvention, "wg.cosmo.platform.v1.ProposalNamingConvention", [
312
+ { no: 0, name: "NORMAL" },
313
+ { no: 1, name: "INCREMENTAL" },
314
+ ]);
296
315
  /**
297
316
  * @generated from message wg.cosmo.platform.v1.Label
298
317
  */
@@ -3518,6 +3537,10 @@ export class GetCheckOperationsRequest extends Message {
3518
3537
  * @generated from field: int32 offset = 5;
3519
3538
  */
3520
3539
  offset = 0;
3540
+ /**
3541
+ * @generated from field: optional string search = 6;
3542
+ */
3543
+ search;
3521
3544
  constructor(data) {
3522
3545
  super();
3523
3546
  proto3.util.initPartial(data, this);
@@ -3530,6 +3553,7 @@ export class GetCheckOperationsRequest extends Message {
3530
3553
  { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3531
3554
  { no: 4, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3532
3555
  { no: 5, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3556
+ { no: 6, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
3533
3557
  ]);
3534
3558
  static fromBinary(bytes, options) {
3535
3559
  return new GetCheckOperationsRequest().fromBinary(bytes, options);
@@ -3572,6 +3596,14 @@ export class GetCheckOperationsResponse extends Message {
3572
3596
  * @generated from field: int32 totalOperationsCount = 6;
3573
3597
  */
3574
3598
  totalOperationsCount = 0;
3599
+ /**
3600
+ * @generated from field: bool doAllOperationsHaveIgnoreAllOverride = 7;
3601
+ */
3602
+ doAllOperationsHaveIgnoreAllOverride = false;
3603
+ /**
3604
+ * @generated from field: bool doAllOperationsHaveAllTheirChangesMarkedSafe = 8;
3605
+ */
3606
+ doAllOperationsHaveAllTheirChangesMarkedSafe = false;
3575
3607
  constructor(data) {
3576
3608
  super();
3577
3609
  proto3.util.initPartial(data, this);
@@ -3585,6 +3617,8 @@ export class GetCheckOperationsResponse extends Message {
3585
3617
  { no: 4, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3586
3618
  { no: 5, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3587
3619
  { no: 6, name: "totalOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3620
+ { no: 7, name: "doAllOperationsHaveIgnoreAllOverride", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3621
+ { no: 8, name: "doAllOperationsHaveAllTheirChangesMarkedSafe", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3588
3622
  ]);
3589
3623
  static fromBinary(bytes, options) {
3590
3624
  return new GetCheckOperationsResponse().fromBinary(bytes, options);
@@ -6090,9 +6124,9 @@ export class InviteUserRequest extends Message {
6090
6124
  */
6091
6125
  email = "";
6092
6126
  /**
6093
- * @generated from field: string groupId = 2;
6127
+ * @generated from field: repeated string groups = 2;
6094
6128
  */
6095
- groupId = "";
6129
+ groups = [];
6096
6130
  constructor(data) {
6097
6131
  super();
6098
6132
  proto3.util.initPartial(data, this);
@@ -6101,7 +6135,7 @@ export class InviteUserRequest extends Message {
6101
6135
  static typeName = "wg.cosmo.platform.v1.InviteUserRequest";
6102
6136
  static fields = proto3.util.newFieldList(() => [
6103
6137
  { no: 1, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6104
- { no: 2, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6138
+ { no: 2, name: "groups", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
6105
6139
  ]);
6106
6140
  static fromBinary(bytes, options) {
6107
6141
  return new InviteUserRequest().fromBinary(bytes, options);
@@ -8535,17 +8569,13 @@ export class UpdateOrganizationDetailsResponse extends Message {
8535
8569
  */
8536
8570
  export class UpdateOrgMemberGroupRequest extends Message {
8537
8571
  /**
8538
- * @generated from field: string userID = 1;
8539
- */
8540
- userID = "";
8541
- /**
8542
- * @generated from field: string orgMemberUserID = 2;
8572
+ * @generated from field: string orgMemberUserID = 1;
8543
8573
  */
8544
8574
  orgMemberUserID = "";
8545
8575
  /**
8546
- * @generated from field: string groupId = 3;
8576
+ * @generated from field: repeated string groups = 2;
8547
8577
  */
8548
- groupId = "";
8578
+ groups = [];
8549
8579
  constructor(data) {
8550
8580
  super();
8551
8581
  proto3.util.initPartial(data, this);
@@ -8553,9 +8583,8 @@ export class UpdateOrgMemberGroupRequest extends Message {
8553
8583
  static runtime = proto3;
8554
8584
  static typeName = "wg.cosmo.platform.v1.UpdateOrgMemberGroupRequest";
8555
8585
  static fields = proto3.util.newFieldList(() => [
8556
- { no: 1, name: "userID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8557
- { no: 2, name: "orgMemberUserID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8558
- { no: 3, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8586
+ { no: 1, name: "orgMemberUserID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8587
+ { no: 2, name: "groups", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
8559
8588
  ]);
8560
8589
  static fromBinary(bytes, options) {
8561
8590
  return new UpdateOrgMemberGroupRequest().fromBinary(bytes, options);
@@ -9854,6 +9883,10 @@ export class ToggleChangeOverridesForAllOperationsRequest extends Message {
9854
9883
  * @generated from field: string namespace = 4;
9855
9884
  */
9856
9885
  namespace = "";
9886
+ /**
9887
+ * @generated from field: optional string search = 5;
9888
+ */
9889
+ search;
9857
9890
  constructor(data) {
9858
9891
  super();
9859
9892
  proto3.util.initPartial(data, this);
@@ -9865,6 +9898,7 @@ export class ToggleChangeOverridesForAllOperationsRequest extends Message {
9865
9898
  { no: 2, name: "is_safe", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
9866
9899
  { no: 3, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9867
9900
  { no: 4, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9901
+ { no: 5, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
9868
9902
  ]);
9869
9903
  static fromBinary(bytes, options) {
9870
9904
  return new ToggleChangeOverridesForAllOperationsRequest().fromBinary(bytes, options);
@@ -9925,6 +9959,10 @@ export class CreateIgnoreOverridesForAllOperationsRequest extends Message {
9925
9959
  * @generated from field: string namespace = 3;
9926
9960
  */
9927
9961
  namespace = "";
9962
+ /**
9963
+ * @generated from field: optional string search = 4;
9964
+ */
9965
+ search;
9928
9966
  constructor(data) {
9929
9967
  super();
9930
9968
  proto3.util.initPartial(data, this);
@@ -9935,6 +9973,7 @@ export class CreateIgnoreOverridesForAllOperationsRequest extends Message {
9935
9973
  { no: 1, name: "check_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9936
9974
  { no: 2, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9937
9975
  { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9976
+ { no: 4, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
9938
9977
  ]);
9939
9978
  static fromBinary(bytes, options) {
9940
9979
  return new CreateIgnoreOverridesForAllOperationsRequest().fromBinary(bytes, options);
@@ -16922,6 +16961,10 @@ export class CreateProposalRequest extends Message {
16922
16961
  * @generated from field: repeated wg.cosmo.platform.v1.ProposalSubgraph subgraphs = 4;
16923
16962
  */
16924
16963
  subgraphs = [];
16964
+ /**
16965
+ * @generated from field: wg.cosmo.platform.v1.ProposalNamingConvention namingConvention = 5;
16966
+ */
16967
+ namingConvention = ProposalNamingConvention.NORMAL;
16925
16968
  constructor(data) {
16926
16969
  super();
16927
16970
  proto3.util.initPartial(data, this);
@@ -16933,6 +16976,7 @@ export class CreateProposalRequest extends Message {
16933
16976
  { no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
16934
16977
  { no: 3, name: "name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
16935
16978
  { no: 4, name: "subgraphs", kind: "message", T: ProposalSubgraph, repeated: true },
16979
+ { no: 5, name: "namingConvention", kind: "enum", T: proto3.getEnumType(ProposalNamingConvention) },
16936
16980
  ]);
16937
16981
  static fromBinary(bytes, options) {
16938
16982
  return new CreateProposalRequest().fromBinary(bytes, options);
@@ -17015,6 +17059,10 @@ export class CreateProposalResponse extends Message {
17015
17059
  * @generated from field: string proposalUrl = 16;
17016
17060
  */
17017
17061
  proposalUrl = "";
17062
+ /**
17063
+ * @generated from field: string proposalName = 17;
17064
+ */
17065
+ proposalName = "";
17018
17066
  constructor(data) {
17019
17067
  super();
17020
17068
  proto3.util.initPartial(data, this);
@@ -17038,6 +17086,7 @@ export class CreateProposalResponse extends Message {
17038
17086
  { no: 14, name: "graphPruningSkipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
17039
17087
  { no: 15, name: "checkUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17040
17088
  { no: 16, name: "proposalUrl", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17089
+ { no: 17, name: "proposalName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
17041
17090
  ]);
17042
17091
  static fromBinary(bytes, options) {
17043
17092
  return new CreateProposalResponse().fromBinary(bytes, options);