@wundergraph/cosmo-connect 0.137.0 → 0.139.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.
@@ -5038,6 +5038,10 @@ export declare class WhoAmIResponse extends Message<WhoAmIResponse> {
5038
5038
  * @generated from field: string organizationSlug = 4;
5039
5039
  */
5040
5040
  organizationSlug: string;
5041
+ /**
5042
+ * @generated from field: string organizationId = 5;
5043
+ */
5044
+ organizationId: string;
5041
5045
  constructor(data?: PartialMessage<WhoAmIResponse>);
5042
5046
  static readonly runtime: typeof proto3;
5043
5047
  static readonly typeName = "wg.cosmo.platform.v1.WhoAmIResponse";
@@ -7364,6 +7368,14 @@ export declare class GetAllOverridesRequest extends Message<GetAllOverridesReque
7364
7368
  * @generated from field: string namespace = 2;
7365
7369
  */
7366
7370
  namespace: string;
7371
+ /**
7372
+ * @generated from field: int32 limit = 3;
7373
+ */
7374
+ limit: number;
7375
+ /**
7376
+ * @generated from field: int32 offset = 4;
7377
+ */
7378
+ offset: number;
7367
7379
  constructor(data?: PartialMessage<GetAllOverridesRequest>);
7368
7380
  static readonly runtime: typeof proto3;
7369
7381
  static readonly typeName = "wg.cosmo.platform.v1.GetAllOverridesRequest";
@@ -7385,6 +7397,10 @@ export declare class GetAllOverridesResponse extends Message<GetAllOverridesResp
7385
7397
  * @generated from field: repeated wg.cosmo.platform.v1.GetAllOverridesResponse.Override overrides = 2;
7386
7398
  */
7387
7399
  overrides: GetAllOverridesResponse_Override[];
7400
+ /**
7401
+ * @generated from field: int32 total_count = 3;
7402
+ */
7403
+ totalCount: number;
7388
7404
  constructor(data?: PartialMessage<GetAllOverridesResponse>);
7389
7405
  static readonly runtime: typeof proto3;
7390
7406
  static readonly typeName = "wg.cosmo.platform.v1.GetAllOverridesResponse";
@@ -7618,6 +7618,10 @@ export class WhoAmIResponse extends Message {
7618
7618
  * @generated from field: string organizationSlug = 4;
7619
7619
  */
7620
7620
  organizationSlug = "";
7621
+ /**
7622
+ * @generated from field: string organizationId = 5;
7623
+ */
7624
+ organizationId = "";
7621
7625
  constructor(data) {
7622
7626
  super();
7623
7627
  proto3.util.initPartial(data, this);
@@ -7629,6 +7633,7 @@ export class WhoAmIResponse extends Message {
7629
7633
  { no: 2, name: "organizationName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7630
7634
  { no: 3, name: "userEmail", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
7631
7635
  { no: 4, name: "organizationSlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7636
+ { no: 5, name: "organizationId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
7632
7637
  ]);
7633
7638
  static fromBinary(bytes, options) {
7634
7639
  return new WhoAmIResponse().fromBinary(bytes, options);
@@ -11375,6 +11380,14 @@ export class GetAllOverridesRequest extends Message {
11375
11380
  * @generated from field: string namespace = 2;
11376
11381
  */
11377
11382
  namespace = "";
11383
+ /**
11384
+ * @generated from field: int32 limit = 3;
11385
+ */
11386
+ limit = 0;
11387
+ /**
11388
+ * @generated from field: int32 offset = 4;
11389
+ */
11390
+ offset = 0;
11378
11391
  constructor(data) {
11379
11392
  super();
11380
11393
  proto3.util.initPartial(data, this);
@@ -11384,6 +11397,8 @@ export class GetAllOverridesRequest extends Message {
11384
11397
  static fields = proto3.util.newFieldList(() => [
11385
11398
  { no: 1, name: "graph_name", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11386
11399
  { no: 2, name: "namespace", kind: "scalar", T: 9 /* ScalarType.STRING */ },
11400
+ { no: 3, name: "limit", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
11401
+ { no: 4, name: "offset", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
11387
11402
  ]);
11388
11403
  static fromBinary(bytes, options) {
11389
11404
  return new GetAllOverridesRequest().fromBinary(bytes, options);
@@ -11410,6 +11425,10 @@ export class GetAllOverridesResponse extends Message {
11410
11425
  * @generated from field: repeated wg.cosmo.platform.v1.GetAllOverridesResponse.Override overrides = 2;
11411
11426
  */
11412
11427
  overrides = [];
11428
+ /**
11429
+ * @generated from field: int32 total_count = 3;
11430
+ */
11431
+ totalCount = 0;
11413
11432
  constructor(data) {
11414
11433
  super();
11415
11434
  proto3.util.initPartial(data, this);
@@ -11419,6 +11438,7 @@ export class GetAllOverridesResponse extends Message {
11419
11438
  static fields = proto3.util.newFieldList(() => [
11420
11439
  { no: 1, name: "response", kind: "message", T: Response },
11421
11440
  { no: 2, name: "overrides", kind: "message", T: GetAllOverridesResponse_Override, repeated: true },
11441
+ { no: 3, name: "total_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
11422
11442
  ]);
11423
11443
  static fromBinary(bytes, options) {
11424
11444
  return new GetAllOverridesResponse().fromBinary(bytes, options);