@wix/app-extensions 1.0.144 → 1.0.145

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.
@@ -27008,10 +27008,6 @@ interface NoVerificationConfig {
27008
27008
  /** Always UNSIGNED for this arm. */
27009
27009
  verificationSource?: VerificationSourceWithLiterals;
27010
27010
  }
27011
- /**
27012
- * Not yet selectable: OIDC_BEARER is enum_maturity NOT_IMPLEMENTED and the validator rejects
27013
- * it outright. Shape carries forward the flat oidc_expected_* fields unchanged.
27014
- */
27015
27011
  /** @internal */
27016
27012
  interface OidcBearerConfig {
27017
27013
  /** Scope of the material used to verify the token. See WebhookConfig.VerificationSource. */
@@ -27031,6 +27027,12 @@ interface OidcBearerConfig {
27031
27027
  * @maxLength 2000
27032
27028
  */
27033
27029
  oidcExpectedSubject?: string;
27030
+ /**
27031
+ * Endpoint publishing the provider's public keys, shared with PublicKeyConfig's own field of
27032
+ * the same name.
27033
+ * @maxLength 2000
27034
+ */
27035
+ publicKeyUrl?: string;
27034
27036
  }
27035
27037
  /** Per-strategy payload for the `replay_protection_config` oneof above. */
27036
27038
  /** @internal */
@@ -27245,12 +27247,7 @@ interface WebhookConfig extends WebhookConfigVerificationOneOf, WebhookConfigRep
27245
27247
  callbackTokenConfig?: CallbackTokenConfig;
27246
27248
  /** Payload for NO_VERIFICATION. */
27247
27249
  noVerificationConfig?: NoVerificationConfig;
27248
- /**
27249
- * Payload for OIDC_BEARER. Carried even though that method is enum_maturity
27250
- * NOT_IMPLEMENTED and the validator rejects selecting it: the enum value and its flat
27251
- * fields (24-26) are already published, so omitting the arm now would mean a second
27252
- * breaking change once the gate lifts.
27253
- */
27250
+ /** Payload for OIDC_BEARER. */
27254
27251
  oidcBearerConfig?: OidcBearerConfig;
27255
27252
  /** Payload for DELIVERY_ID_HEADER. */
27256
27253
  deliveryIdHeaderConfig?: DeliveryIdHeaderConfig;
@@ -27566,12 +27563,7 @@ interface WebhookConfigVerificationOneOf {
27566
27563
  callbackTokenConfig?: CallbackTokenConfig;
27567
27564
  /** Payload for NO_VERIFICATION. */
27568
27565
  noVerificationConfig?: NoVerificationConfig;
27569
- /**
27570
- * Payload for OIDC_BEARER. Carried even though that method is enum_maturity
27571
- * NOT_IMPLEMENTED and the validator rejects selecting it: the enum value and its flat
27572
- * fields (24-26) are already published, so omitting the arm now would mean a second
27573
- * breaking change once the gate lifts.
27574
- */
27566
+ /** Payload for OIDC_BEARER. */
27575
27567
  oidcBearerConfig?: OidcBearerConfig;
27576
27568
  }
27577
27569
  /** @oneof */