@flyteorg/flyteidl 1.3.2 → 1.3.3

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.
@@ -19160,6 +19160,9 @@ export namespace flyteidl {
19160
19160
 
19161
19161
  /** UserInfoResponse picture */
19162
19162
  picture?: (string|null);
19163
+
19164
+ /** UserInfoResponse additionalClaims */
19165
+ additionalClaims?: (google.protobuf.IStruct|null);
19163
19166
  }
19164
19167
 
19165
19168
  /** Represents a UserInfoResponse. */
@@ -19192,6 +19195,9 @@ export namespace flyteidl {
19192
19195
  /** UserInfoResponse picture. */
19193
19196
  public picture: string;
19194
19197
 
19198
+ /** UserInfoResponse additionalClaims. */
19199
+ public additionalClaims?: (google.protobuf.IStruct|null);
19200
+
19195
19201
  /**
19196
19202
  * Creates a new UserInfoResponse instance using the specified properties.
19197
19203
  * @param [properties] Properties to set
@@ -44528,6 +44528,7 @@
44528
44528
  * @property {string|null} [familyName] UserInfoResponse familyName
44529
44529
  * @property {string|null} [email] UserInfoResponse email
44530
44530
  * @property {string|null} [picture] UserInfoResponse picture
44531
+ * @property {google.protobuf.IStruct|null} [additionalClaims] UserInfoResponse additionalClaims
44531
44532
  */
44532
44533
 
44533
44534
  /**
@@ -44601,6 +44602,14 @@
44601
44602
  */
44602
44603
  UserInfoResponse.prototype.picture = "";
44603
44604
 
44605
+ /**
44606
+ * UserInfoResponse additionalClaims.
44607
+ * @member {google.protobuf.IStruct|null|undefined} additionalClaims
44608
+ * @memberof flyteidl.service.UserInfoResponse
44609
+ * @instance
44610
+ */
44611
+ UserInfoResponse.prototype.additionalClaims = null;
44612
+
44604
44613
  /**
44605
44614
  * Creates a new UserInfoResponse instance using the specified properties.
44606
44615
  * @function create
@@ -44639,6 +44648,8 @@
44639
44648
  writer.uint32(/* id 6, wireType 2 =*/50).string(message.email);
44640
44649
  if (message.picture != null && message.hasOwnProperty("picture"))
44641
44650
  writer.uint32(/* id 7, wireType 2 =*/58).string(message.picture);
44651
+ if (message.additionalClaims != null && message.hasOwnProperty("additionalClaims"))
44652
+ $root.google.protobuf.Struct.encode(message.additionalClaims, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim();
44642
44653
  return writer;
44643
44654
  };
44644
44655
 
@@ -44681,6 +44692,9 @@
44681
44692
  case 7:
44682
44693
  message.picture = reader.string();
44683
44694
  break;
44695
+ case 8:
44696
+ message.additionalClaims = $root.google.protobuf.Struct.decode(reader, reader.uint32());
44697
+ break;
44684
44698
  default:
44685
44699
  reader.skipType(tag & 7);
44686
44700
  break;
@@ -44721,6 +44735,11 @@
44721
44735
  if (message.picture != null && message.hasOwnProperty("picture"))
44722
44736
  if (!$util.isString(message.picture))
44723
44737
  return "picture: string expected";
44738
+ if (message.additionalClaims != null && message.hasOwnProperty("additionalClaims")) {
44739
+ var error = $root.google.protobuf.Struct.verify(message.additionalClaims);
44740
+ if (error)
44741
+ return "additionalClaims." + error;
44742
+ }
44724
44743
  return null;
44725
44744
  };
44726
44745
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -4,6 +4,7 @@ package flyteidl.service;
4
4
  option go_package = "github.com/flyteorg/flyteidl/gen/pb-go/flyteidl/service";
5
5
 
6
6
  import "google/api/annotations.proto";
7
+ import "google/protobuf/struct.proto";
7
8
  // import "protoc-gen-swagger/options/annotations.proto";
8
9
 
9
10
  message UserInfoRequest {}
@@ -31,6 +32,9 @@ message UserInfoResponse {
31
32
 
32
33
  // Profile picture URL
33
34
  string picture = 7;
35
+
36
+ // Additional claims
37
+ google.protobuf.Struct additional_claims = 8;
34
38
  }
35
39
 
36
40
  // IdentityService defines an RPC Service that interacts with user/app identities.