@wundergraph/cosmo-connect 0.112.0 → 0.113.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.
@@ -2364,6 +2364,10 @@ export declare class GetCheckOperationsRequest extends Message<GetCheckOperation
2364
2364
  * @generated from field: int32 offset = 5;
2365
2365
  */
2366
2366
  offset: number;
2367
+ /**
2368
+ * @generated from field: optional string search = 6;
2369
+ */
2370
+ search?: string;
2367
2371
  constructor(data?: PartialMessage<GetCheckOperationsRequest>);
2368
2372
  static readonly runtime: typeof proto3;
2369
2373
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsRequest";
@@ -2401,6 +2405,14 @@ export declare class GetCheckOperationsResponse extends Message<GetCheckOperatio
2401
2405
  * @generated from field: int32 totalOperationsCount = 6;
2402
2406
  */
2403
2407
  totalOperationsCount: number;
2408
+ /**
2409
+ * @generated from field: bool doAllOperationsHaveIgnoreAllOverride = 7;
2410
+ */
2411
+ doAllOperationsHaveIgnoreAllOverride: boolean;
2412
+ /**
2413
+ * @generated from field: bool doAllOperationsHaveAllTheirChangesMarkedSafe = 8;
2414
+ */
2415
+ doAllOperationsHaveAllTheirChangesMarkedSafe: boolean;
2404
2416
  constructor(data?: PartialMessage<GetCheckOperationsResponse>);
2405
2417
  static readonly runtime: typeof proto3;
2406
2418
  static readonly typeName = "wg.cosmo.platform.v1.GetCheckOperationsResponse";
@@ -4023,9 +4035,9 @@ export declare class InviteUserRequest extends Message<InviteUserRequest> {
4023
4035
  */
4024
4036
  email: string;
4025
4037
  /**
4026
- * @generated from field: string groupId = 2;
4038
+ * @generated from field: repeated string groups = 2;
4027
4039
  */
4028
- groupId: string;
4040
+ groups: string[];
4029
4041
  constructor(data?: PartialMessage<InviteUserRequest>);
4030
4042
  static readonly runtime: typeof proto3;
4031
4043
  static readonly typeName = "wg.cosmo.platform.v1.InviteUserRequest";
@@ -5518,17 +5530,13 @@ export declare class UpdateOrganizationDetailsResponse extends Message<UpdateOrg
5518
5530
  */
5519
5531
  export declare class UpdateOrgMemberGroupRequest extends Message<UpdateOrgMemberGroupRequest> {
5520
5532
  /**
5521
- * @generated from field: string userID = 1;
5522
- */
5523
- userID: string;
5524
- /**
5525
- * @generated from field: string orgMemberUserID = 2;
5533
+ * @generated from field: string orgMemberUserID = 1;
5526
5534
  */
5527
5535
  orgMemberUserID: string;
5528
5536
  /**
5529
- * @generated from field: string groupId = 3;
5537
+ * @generated from field: repeated string groups = 2;
5530
5538
  */
5531
- groupId: string;
5539
+ groups: string[];
5532
5540
  constructor(data?: PartialMessage<UpdateOrgMemberGroupRequest>);
5533
5541
  static readonly runtime: typeof proto3;
5534
5542
  static readonly typeName = "wg.cosmo.platform.v1.UpdateOrgMemberGroupRequest";
@@ -6355,6 +6363,10 @@ export declare class ToggleChangeOverridesForAllOperationsRequest extends Messag
6355
6363
  * @generated from field: string namespace = 4;
6356
6364
  */
6357
6365
  namespace: string;
6366
+ /**
6367
+ * @generated from field: optional string search = 5;
6368
+ */
6369
+ search?: string;
6358
6370
  constructor(data?: PartialMessage<ToggleChangeOverridesForAllOperationsRequest>);
6359
6371
  static readonly runtime: typeof proto3;
6360
6372
  static readonly typeName = "wg.cosmo.platform.v1.ToggleChangeOverridesForAllOperationsRequest";
@@ -6397,6 +6409,10 @@ export declare class CreateIgnoreOverridesForAllOperationsRequest extends Messag
6397
6409
  * @generated from field: string namespace = 3;
6398
6410
  */
6399
6411
  namespace: string;
6412
+ /**
6413
+ * @generated from field: optional string search = 4;
6414
+ */
6415
+ search?: string;
6400
6416
  constructor(data?: PartialMessage<CreateIgnoreOverridesForAllOperationsRequest>);
6401
6417
  static readonly runtime: typeof proto3;
6402
6418
  static readonly typeName = "wg.cosmo.platform.v1.CreateIgnoreOverridesForAllOperationsRequest";
@@ -3518,6 +3518,10 @@ export class GetCheckOperationsRequest extends Message {
3518
3518
  * @generated from field: int32 offset = 5;
3519
3519
  */
3520
3520
  offset = 0;
3521
+ /**
3522
+ * @generated from field: optional string search = 6;
3523
+ */
3524
+ search;
3521
3525
  constructor(data) {
3522
3526
  super();
3523
3527
  proto3.util.initPartial(data, this);
@@ -3530,6 +3534,7 @@ export class GetCheckOperationsRequest extends Message {
3530
3534
  { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3531
3535
  { no: 4, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3532
3536
  { no: 5, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3537
+ { no: 6, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
3533
3538
  ]);
3534
3539
  static fromBinary(bytes, options) {
3535
3540
  return new GetCheckOperationsRequest().fromBinary(bytes, options);
@@ -3572,6 +3577,14 @@ export class GetCheckOperationsResponse extends Message {
3572
3577
  * @generated from field: int32 totalOperationsCount = 6;
3573
3578
  */
3574
3579
  totalOperationsCount = 0;
3580
+ /**
3581
+ * @generated from field: bool doAllOperationsHaveIgnoreAllOverride = 7;
3582
+ */
3583
+ doAllOperationsHaveIgnoreAllOverride = false;
3584
+ /**
3585
+ * @generated from field: bool doAllOperationsHaveAllTheirChangesMarkedSafe = 8;
3586
+ */
3587
+ doAllOperationsHaveAllTheirChangesMarkedSafe = false;
3575
3588
  constructor(data) {
3576
3589
  super();
3577
3590
  proto3.util.initPartial(data, this);
@@ -3585,6 +3598,8 @@ export class GetCheckOperationsResponse extends Message {
3585
3598
  { no: 4, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */ },
3586
3599
  { no: 5, name: "client_traffic_check_skipped", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3587
3600
  { no: 6, name: "totalOperationsCount", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
3601
+ { no: 7, name: "doAllOperationsHaveIgnoreAllOverride", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3602
+ { no: 8, name: "doAllOperationsHaveAllTheirChangesMarkedSafe", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
3588
3603
  ]);
3589
3604
  static fromBinary(bytes, options) {
3590
3605
  return new GetCheckOperationsResponse().fromBinary(bytes, options);
@@ -6090,9 +6105,9 @@ export class InviteUserRequest extends Message {
6090
6105
  */
6091
6106
  email = "";
6092
6107
  /**
6093
- * @generated from field: string groupId = 2;
6108
+ * @generated from field: repeated string groups = 2;
6094
6109
  */
6095
- groupId = "";
6110
+ groups = [];
6096
6111
  constructor(data) {
6097
6112
  super();
6098
6113
  proto3.util.initPartial(data, this);
@@ -6101,7 +6116,7 @@ export class InviteUserRequest extends Message {
6101
6116
  static typeName = "wg.cosmo.platform.v1.InviteUserRequest";
6102
6117
  static fields = proto3.util.newFieldList(() => [
6103
6118
  { no: 1, name: "email", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6104
- { no: 2, name: "groupId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
6119
+ { no: 2, name: "groups", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
6105
6120
  ]);
6106
6121
  static fromBinary(bytes, options) {
6107
6122
  return new InviteUserRequest().fromBinary(bytes, options);
@@ -8535,17 +8550,13 @@ export class UpdateOrganizationDetailsResponse extends Message {
8535
8550
  */
8536
8551
  export class UpdateOrgMemberGroupRequest extends Message {
8537
8552
  /**
8538
- * @generated from field: string userID = 1;
8539
- */
8540
- userID = "";
8541
- /**
8542
- * @generated from field: string orgMemberUserID = 2;
8553
+ * @generated from field: string orgMemberUserID = 1;
8543
8554
  */
8544
8555
  orgMemberUserID = "";
8545
8556
  /**
8546
- * @generated from field: string groupId = 3;
8557
+ * @generated from field: repeated string groups = 2;
8547
8558
  */
8548
- groupId = "";
8559
+ groups = [];
8549
8560
  constructor(data) {
8550
8561
  super();
8551
8562
  proto3.util.initPartial(data, this);
@@ -8553,9 +8564,8 @@ export class UpdateOrgMemberGroupRequest extends Message {
8553
8564
  static runtime = proto3;
8554
8565
  static typeName = "wg.cosmo.platform.v1.UpdateOrgMemberGroupRequest";
8555
8566
  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 */ },
8567
+ { no: 1, name: "orgMemberUserID", kind: "scalar", T: 9 /* ScalarType.STRING */ },
8568
+ { no: 2, name: "groups", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
8559
8569
  ]);
8560
8570
  static fromBinary(bytes, options) {
8561
8571
  return new UpdateOrgMemberGroupRequest().fromBinary(bytes, options);
@@ -9854,6 +9864,10 @@ export class ToggleChangeOverridesForAllOperationsRequest extends Message {
9854
9864
  * @generated from field: string namespace = 4;
9855
9865
  */
9856
9866
  namespace = "";
9867
+ /**
9868
+ * @generated from field: optional string search = 5;
9869
+ */
9870
+ search;
9857
9871
  constructor(data) {
9858
9872
  super();
9859
9873
  proto3.util.initPartial(data, this);
@@ -9865,6 +9879,7 @@ export class ToggleChangeOverridesForAllOperationsRequest extends Message {
9865
9879
  { no: 2, name: "is_safe", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
9866
9880
  { no: 3, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9867
9881
  { no: 4, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9882
+ { no: 5, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
9868
9883
  ]);
9869
9884
  static fromBinary(bytes, options) {
9870
9885
  return new ToggleChangeOverridesForAllOperationsRequest().fromBinary(bytes, options);
@@ -9925,6 +9940,10 @@ export class CreateIgnoreOverridesForAllOperationsRequest extends Message {
9925
9940
  * @generated from field: string namespace = 3;
9926
9941
  */
9927
9942
  namespace = "";
9943
+ /**
9944
+ * @generated from field: optional string search = 4;
9945
+ */
9946
+ search;
9928
9947
  constructor(data) {
9929
9948
  super();
9930
9949
  proto3.util.initPartial(data, this);
@@ -9935,6 +9954,7 @@ export class CreateIgnoreOverridesForAllOperationsRequest extends Message {
9935
9954
  { no: 1, name: "check_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9936
9955
  { no: 2, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9937
9956
  { no: 3, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
9957
+ { no: 4, name: "search", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
9938
9958
  ]);
9939
9959
  static fromBinary(bytes, options) {
9940
9960
  return new CreateIgnoreOverridesForAllOperationsRequest().fromBinary(bytes, options);