@flyteorg/flyteidl 1.1.12 → 1.1.13

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.
@@ -16805,6 +16805,9 @@ export namespace flyteidl {
16805
16805
 
16806
16806
  /** OAuth2MetadataResponse grantTypesSupported */
16807
16807
  grantTypesSupported?: (string[]|null);
16808
+
16809
+ /** OAuth2MetadataResponse deviceAuthorizationEndpoint */
16810
+ deviceAuthorizationEndpoint?: (string|null);
16808
16811
  }
16809
16812
 
16810
16813
  /** Represents a OAuth2MetadataResponse. */
@@ -16843,6 +16846,9 @@ export namespace flyteidl {
16843
16846
  /** OAuth2MetadataResponse grantTypesSupported. */
16844
16847
  public grantTypesSupported: string[];
16845
16848
 
16849
+ /** OAuth2MetadataResponse deviceAuthorizationEndpoint. */
16850
+ public deviceAuthorizationEndpoint: string;
16851
+
16846
16852
  /**
16847
16853
  * Creates a new OAuth2MetadataResponse instance using the specified properties.
16848
16854
  * @param [properties] Properties to set
@@ -39141,6 +39141,7 @@ export const flyteidl = $root.flyteidl = (() => {
39141
39141
  * @property {string|null} [jwksUri] OAuth2MetadataResponse jwksUri
39142
39142
  * @property {Array.<string>|null} [codeChallengeMethodsSupported] OAuth2MetadataResponse codeChallengeMethodsSupported
39143
39143
  * @property {Array.<string>|null} [grantTypesSupported] OAuth2MetadataResponse grantTypesSupported
39144
+ * @property {string|null} [deviceAuthorizationEndpoint] OAuth2MetadataResponse deviceAuthorizationEndpoint
39144
39145
  */
39145
39146
 
39146
39147
  /**
@@ -39235,6 +39236,14 @@ export const flyteidl = $root.flyteidl = (() => {
39235
39236
  */
39236
39237
  OAuth2MetadataResponse.prototype.grantTypesSupported = $util.emptyArray;
39237
39238
 
39239
+ /**
39240
+ * OAuth2MetadataResponse deviceAuthorizationEndpoint.
39241
+ * @member {string} deviceAuthorizationEndpoint
39242
+ * @memberof flyteidl.service.OAuth2MetadataResponse
39243
+ * @instance
39244
+ */
39245
+ OAuth2MetadataResponse.prototype.deviceAuthorizationEndpoint = "";
39246
+
39238
39247
  /**
39239
39248
  * Creates a new OAuth2MetadataResponse instance using the specified properties.
39240
39249
  * @function create
@@ -39282,6 +39291,8 @@ export const flyteidl = $root.flyteidl = (() => {
39282
39291
  if (message.grantTypesSupported != null && message.grantTypesSupported.length)
39283
39292
  for (let i = 0; i < message.grantTypesSupported.length; ++i)
39284
39293
  writer.uint32(/* id 9, wireType 2 =*/74).string(message.grantTypesSupported[i]);
39294
+ if (message.deviceAuthorizationEndpoint != null && message.hasOwnProperty("deviceAuthorizationEndpoint"))
39295
+ writer.uint32(/* id 10, wireType 2 =*/82).string(message.deviceAuthorizationEndpoint);
39285
39296
  return writer;
39286
39297
  };
39287
39298
 
@@ -39340,6 +39351,9 @@ export const flyteidl = $root.flyteidl = (() => {
39340
39351
  message.grantTypesSupported = [];
39341
39352
  message.grantTypesSupported.push(reader.string());
39342
39353
  break;
39354
+ case 10:
39355
+ message.deviceAuthorizationEndpoint = reader.string();
39356
+ break;
39343
39357
  default:
39344
39358
  reader.skipType(tag & 7);
39345
39359
  break;
@@ -39406,6 +39420,9 @@ export const flyteidl = $root.flyteidl = (() => {
39406
39420
  if (!$util.isString(message.grantTypesSupported[i]))
39407
39421
  return "grantTypesSupported: string[] expected";
39408
39422
  }
39423
+ if (message.deviceAuthorizationEndpoint != null && message.hasOwnProperty("deviceAuthorizationEndpoint"))
39424
+ if (!$util.isString(message.deviceAuthorizationEndpoint))
39425
+ return "deviceAuthorizationEndpoint: string expected";
39409
39426
  return null;
39410
39427
  };
39411
39428
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flyteorg/flyteidl",
3
- "version": "1.1.12",
3
+ "version": "1.1.13",
4
4
  "description": "Compiled protocol buffers and gRPC service clients/servers for Flyte IDLs",
5
5
  "repository": {
6
6
  "type": "git",
@@ -138,6 +138,7 @@ as defined in https://tools.ietf.org/html/rfc8414
138
138
  "jwks_uri", ":ref:`ref_string`", "", "URL of the authorization server's JWK Set [JWK] document. The referenced document contains the signing key(s) the client uses to validate signatures from the authorization server."
139
139
  "code_challenge_methods_supported", ":ref:`ref_string`", "repeated", "JSON array containing a list of Proof Key for Code Exchange (PKCE) [RFC7636] code challenge methods supported by this authorization server."
140
140
  "grant_types_supported", ":ref:`ref_string`", "repeated", "JSON array containing a list of the OAuth 2.0 grant type values that this authorization server supports."
141
+ "device_authorization_endpoint", ":ref:`ref_string`", "", "URL of the authorization server's device authorization endpoint, as defined in Section 3.1 of [RFC8628]"
141
142
 
142
143
 
143
144
 
@@ -41,6 +41,9 @@ message OAuth2MetadataResponse {
41
41
 
42
42
  // JSON array containing a list of the OAuth 2.0 grant type values that this authorization server supports.
43
43
  repeated string grant_types_supported = 9;
44
+
45
+ // URL of the authorization server's device authorization endpoint, as defined in Section 3.1 of [RFC8628]
46
+ string device_authorization_endpoint = 10;
44
47
  }
45
48
 
46
49
  message PublicClientAuthConfigRequest {}