@wundergraph/cosmo-connect 0.79.1 → 0.80.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.
@@ -3733,6 +3733,10 @@ export declare class WhoAmIResponse extends Message<WhoAmIResponse> {
3733
3733
  * @generated from field: optional string userEmail = 3;
3734
3734
  */
3735
3735
  userEmail?: string;
3736
+ /**
3737
+ * @generated from field: string organizationSlug = 4;
3738
+ */
3739
+ organizationSlug: string;
3736
3740
  constructor(data?: PartialMessage<WhoAmIResponse>);
3737
3741
  static readonly runtime: typeof proto3;
3738
3742
  static readonly typeName = "wg.cosmo.platform.v1.WhoAmIResponse";
@@ -5697,6 +5697,10 @@ export class WhoAmIResponse extends Message {
5697
5697
  * @generated from field: optional string userEmail = 3;
5698
5698
  */
5699
5699
  userEmail;
5700
+ /**
5701
+ * @generated from field: string organizationSlug = 4;
5702
+ */
5703
+ organizationSlug = "";
5700
5704
  constructor(data) {
5701
5705
  super();
5702
5706
  proto3.util.initPartial(data, this);
@@ -5707,6 +5711,7 @@ export class WhoAmIResponse extends Message {
5707
5711
  { no: 1, name: "response", kind: "message", T: Response },
5708
5712
  { no: 2, name: "organizationName", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5709
5713
  { no: 3, name: "userEmail", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
5714
+ { no: 4, name: "organizationSlug", kind: "scalar", T: 9 /* ScalarType.STRING */ },
5710
5715
  ]);
5711
5716
  static fromBinary(bytes, options) {
5712
5717
  return new WhoAmIResponse().fromBinary(bytes, options);