@wix/app-extensions 1.0.144 → 1.0.146
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.
|
@@ -26741,6 +26741,17 @@ interface ProviderIdentityOperation {
|
|
|
26741
26741
|
* @maxSize 20
|
|
26742
26742
|
*/
|
|
26743
26743
|
headers?: Record<string, string>;
|
|
26744
|
+
/**
|
|
26745
|
+
* RFC 6901 JSON Pointer selecting a human-readable display label from the same response —
|
|
26746
|
+
* GitHub's /user has "login" next to "node_id", Google's userinfo has "email" next to "sub".
|
|
26747
|
+
* Optional, deliberately with no minLength: a connector may leave this unset and stay
|
|
26748
|
+
* perfectly valid — an identity operation with no label pointer is not a misconfiguration.
|
|
26749
|
+
* This selects a display label only. It is mutable, never used for dedup, uniqueness, or
|
|
26750
|
+
* authorization, and it is not the identity — deduping on a display name would let a
|
|
26751
|
+
* provider-side rename fabricate a phantom duplicate connection.
|
|
26752
|
+
* @maxLength 500
|
|
26753
|
+
*/
|
|
26754
|
+
responseDisplayNameJsonPointer?: string;
|
|
26744
26755
|
}
|
|
26745
26756
|
/**
|
|
26746
26757
|
* Provider-specific parameters required when the normal authorization endpoint is reused to
|
|
@@ -27008,10 +27019,6 @@ interface NoVerificationConfig {
|
|
|
27008
27019
|
/** Always UNSIGNED for this arm. */
|
|
27009
27020
|
verificationSource?: VerificationSourceWithLiterals;
|
|
27010
27021
|
}
|
|
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
27022
|
/** @internal */
|
|
27016
27023
|
interface OidcBearerConfig {
|
|
27017
27024
|
/** Scope of the material used to verify the token. See WebhookConfig.VerificationSource. */
|
|
@@ -27031,6 +27038,12 @@ interface OidcBearerConfig {
|
|
|
27031
27038
|
* @maxLength 2000
|
|
27032
27039
|
*/
|
|
27033
27040
|
oidcExpectedSubject?: string;
|
|
27041
|
+
/**
|
|
27042
|
+
* Endpoint publishing the provider's public keys, shared with PublicKeyConfig's own field of
|
|
27043
|
+
* the same name.
|
|
27044
|
+
* @maxLength 2000
|
|
27045
|
+
*/
|
|
27046
|
+
publicKeyUrl?: string;
|
|
27034
27047
|
}
|
|
27035
27048
|
/** Per-strategy payload for the `replay_protection_config` oneof above. */
|
|
27036
27049
|
/** @internal */
|
|
@@ -27245,12 +27258,7 @@ interface WebhookConfig extends WebhookConfigVerificationOneOf, WebhookConfigRep
|
|
|
27245
27258
|
callbackTokenConfig?: CallbackTokenConfig;
|
|
27246
27259
|
/** Payload for NO_VERIFICATION. */
|
|
27247
27260
|
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
|
-
*/
|
|
27261
|
+
/** Payload for OIDC_BEARER. */
|
|
27254
27262
|
oidcBearerConfig?: OidcBearerConfig;
|
|
27255
27263
|
/** Payload for DELIVERY_ID_HEADER. */
|
|
27256
27264
|
deliveryIdHeaderConfig?: DeliveryIdHeaderConfig;
|
|
@@ -27566,12 +27574,7 @@ interface WebhookConfigVerificationOneOf {
|
|
|
27566
27574
|
callbackTokenConfig?: CallbackTokenConfig;
|
|
27567
27575
|
/** Payload for NO_VERIFICATION. */
|
|
27568
27576
|
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
|
-
*/
|
|
27577
|
+
/** Payload for OIDC_BEARER. */
|
|
27575
27578
|
oidcBearerConfig?: OidcBearerConfig;
|
|
27576
27579
|
}
|
|
27577
27580
|
/** @oneof */
|