@wundergraph/cosmo-connect 0.138.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";
|
|
@@ -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);
|