@flyteorg/flyteidl 0.24.17 → 0.24.18

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.
@@ -16906,6 +16906,9 @@ export namespace flyteidl {
16906
16906
 
16907
16907
  /** PublicClientAuthConfigResponse authorizationMetadataKey */
16908
16908
  authorizationMetadataKey?: (string|null);
16909
+
16910
+ /** PublicClientAuthConfigResponse serviceHttpEndpoint */
16911
+ serviceHttpEndpoint?: (string|null);
16909
16912
  }
16910
16913
 
16911
16914
  /** Represents a PublicClientAuthConfigResponse. */
@@ -16929,6 +16932,9 @@ export namespace flyteidl {
16929
16932
  /** PublicClientAuthConfigResponse authorizationMetadataKey. */
16930
16933
  public authorizationMetadataKey: string;
16931
16934
 
16935
+ /** PublicClientAuthConfigResponse serviceHttpEndpoint. */
16936
+ public serviceHttpEndpoint: string;
16937
+
16932
16938
  /**
16933
16939
  * Creates a new PublicClientAuthConfigResponse instance using the specified properties.
16934
16940
  * @param [properties] Properties to set
@@ -39424,6 +39424,7 @@ export const flyteidl = $root.flyteidl = (() => {
39424
39424
  * @property {string|null} [redirectUri] PublicClientAuthConfigResponse redirectUri
39425
39425
  * @property {Array.<string>|null} [scopes] PublicClientAuthConfigResponse scopes
39426
39426
  * @property {string|null} [authorizationMetadataKey] PublicClientAuthConfigResponse authorizationMetadataKey
39427
+ * @property {string|null} [serviceHttpEndpoint] PublicClientAuthConfigResponse serviceHttpEndpoint
39427
39428
  */
39428
39429
 
39429
39430
  /**
@@ -39474,6 +39475,14 @@ export const flyteidl = $root.flyteidl = (() => {
39474
39475
  */
39475
39476
  PublicClientAuthConfigResponse.prototype.authorizationMetadataKey = "";
39476
39477
 
39478
+ /**
39479
+ * PublicClientAuthConfigResponse serviceHttpEndpoint.
39480
+ * @member {string} serviceHttpEndpoint
39481
+ * @memberof flyteidl.service.PublicClientAuthConfigResponse
39482
+ * @instance
39483
+ */
39484
+ PublicClientAuthConfigResponse.prototype.serviceHttpEndpoint = "";
39485
+
39477
39486
  /**
39478
39487
  * Creates a new PublicClientAuthConfigResponse instance using the specified properties.
39479
39488
  * @function create
@@ -39507,6 +39516,8 @@ export const flyteidl = $root.flyteidl = (() => {
39507
39516
  writer.uint32(/* id 3, wireType 2 =*/26).string(message.scopes[i]);
39508
39517
  if (message.authorizationMetadataKey != null && message.hasOwnProperty("authorizationMetadataKey"))
39509
39518
  writer.uint32(/* id 4, wireType 2 =*/34).string(message.authorizationMetadataKey);
39519
+ if (message.serviceHttpEndpoint != null && message.hasOwnProperty("serviceHttpEndpoint"))
39520
+ writer.uint32(/* id 5, wireType 2 =*/42).string(message.serviceHttpEndpoint);
39510
39521
  return writer;
39511
39522
  };
39512
39523
 
@@ -39542,6 +39553,9 @@ export const flyteidl = $root.flyteidl = (() => {
39542
39553
  case 4:
39543
39554
  message.authorizationMetadataKey = reader.string();
39544
39555
  break;
39556
+ case 5:
39557
+ message.serviceHttpEndpoint = reader.string();
39558
+ break;
39545
39559
  default:
39546
39560
  reader.skipType(tag & 7);
39547
39561
  break;
@@ -39577,6 +39591,9 @@ export const flyteidl = $root.flyteidl = (() => {
39577
39591
  if (message.authorizationMetadataKey != null && message.hasOwnProperty("authorizationMetadataKey"))
39578
39592
  if (!$util.isString(message.authorizationMetadataKey))
39579
39593
  return "authorizationMetadataKey: string expected";
39594
+ if (message.serviceHttpEndpoint != null && message.hasOwnProperty("serviceHttpEndpoint"))
39595
+ if (!$util.isString(message.serviceHttpEndpoint))
39596
+ return "serviceHttpEndpoint: string expected";
39580
39597
  return null;
39581
39598
  };
39582
39599
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "0.24.17",
3
+ "version": "0.24.18",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -56,6 +56,10 @@ message PublicClientAuthConfigResponse {
56
56
  // Authorization Header to use when passing Access Tokens to the server. If not provided, the client should use the
57
57
  // default http `Authorization` header.
58
58
  string authorization_metadata_key = 4;
59
+ // ServiceHttpEndpoint points to the http endpoint for the backend. If empty, clients can assume the endpoint used
60
+ // to configure the gRPC connection can be used for the http one respecting the insecure flag to choose between
61
+ // SSL or no SSL connections.
62
+ string service_http_endpoint = 5;
59
63
  }
60
64
 
61
65
  // The following defines an RPC service that is also served over HTTP via grpc-gateway.