@wix/app-extensions 1.0.123 → 1.0.125
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.
|
@@ -5173,6 +5173,8 @@ interface MembershipsSPIConfig {
|
|
|
5173
5173
|
catalogAppDefIds?: string[];
|
|
5174
5174
|
/** Set to true once your app implements the updated redemption methods (`ListExistingMemberships`, `ListPurchasablePlans`, `EnhanceAndValidateSelection`) */
|
|
5175
5175
|
toggleUpdatedMethodsEnabled?: boolean;
|
|
5176
|
+
/** Set to true once your app implements `ListMembershipsByIds` */
|
|
5177
|
+
toggleMembershipsLookupEnabled?: boolean;
|
|
5176
5178
|
}
|
|
5177
5179
|
/** @internal */
|
|
5178
5180
|
interface LineItemsEnricherConfig {
|
|
@@ -25864,6 +25866,13 @@ interface ProviderIdentityOperation {
|
|
|
25864
25866
|
* @maxLength 500
|
|
25865
25867
|
*/
|
|
25866
25868
|
responseIdJsonPointer?: string;
|
|
25869
|
+
/**
|
|
25870
|
+
* Extra HTTP headers to send on the identity request, on top of the Authorization bearer and
|
|
25871
|
+
* Accept: application/json the client always sets. Some providers require a version header —
|
|
25872
|
+
* e.g. Notion requires "Notion-Version" on api.notion.com/v1/users/me. Sent verbatim.
|
|
25873
|
+
* @maxSize 20
|
|
25874
|
+
*/
|
|
25875
|
+
headers?: Record<string, string>;
|
|
25867
25876
|
}
|
|
25868
25877
|
/**
|
|
25869
25878
|
* Provider-specific parameters required when the normal authorization endpoint is reused to
|