@wundergraph/cosmo-connect 0.111.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.
- package/dist/node/v1/node_pb.d.ts +25 -0
- package/dist/node/v1/node_pb.js +40 -0
- package/dist/node/v1/node_pb.js.map +1 -1
- package/dist/platform/v1/platform_pb.d.ts +25 -9
- package/dist/platform/v1/platform_pb.js +33 -13
- package/dist/platform/v1/platform_pb.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -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
|
|
6108
|
+
* @generated from field: repeated string groups = 2;
|
|
6094
6109
|
*/
|
|
6095
|
-
|
|
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: "
|
|
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
|
|
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
|
|
8557
|
+
* @generated from field: repeated string groups = 2;
|
|
8547
8558
|
*/
|
|
8548
|
-
|
|
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: "
|
|
8557
|
-
{ no: 2, name: "
|
|
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);
|