@wix/app-extensions 1.0.148 → 1.0.149
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.
|
@@ -27974,25 +27974,21 @@ interface ComponentsDeletionHookProviderConfig {
|
|
|
27974
27974
|
*/
|
|
27975
27975
|
componentTypes?: ComponentTypeWithLiterals[];
|
|
27976
27976
|
}
|
|
27977
|
-
/**
|
|
27978
|
-
* Configuration for a webhook provider-module SPI implementer, stored on the host side.
|
|
27979
|
-
*
|
|
27980
|
-
* The SPI service proto (its five RPCs) has not been written yet, so this file is hand-authored
|
|
27981
|
-
* rather than protodep-vendored. Once the service proto exists, replace this file with a real
|
|
27982
|
-
* `protodep up -f` vendor per SPI.md's "Updating the SPI component definition" section, keeping
|
|
27983
|
-
* this message's name, field numbers and toggle names unchanged.
|
|
27984
|
-
*/
|
|
27985
27977
|
/** @internal */
|
|
27986
27978
|
interface WebhookProviderModuleConfig {
|
|
27987
27979
|
/** URI where the SPI implementer is deployed. */
|
|
27988
27980
|
baseUri?: SpiBaseUri;
|
|
27989
27981
|
/**
|
|
27990
27982
|
* One toggle per host-called endpoint. Each corresponds to an
|
|
27991
|
-
* `option (.wix.spi.feature_toggle)` on the matching RPC in the
|
|
27983
|
+
* `option (.wix.spi.feature_toggle)` on the matching RPC in the SPI service proto.
|
|
27992
27984
|
* False/unset means the host falls back to its own default behaviour for that endpoint.
|
|
27993
27985
|
*/
|
|
27994
27986
|
verifyExternalSignatureEnabled?: boolean;
|
|
27995
27987
|
resolveDeliveryTenantEnabled?: boolean;
|
|
27988
|
+
/**
|
|
27989
|
+
* Must stay false on every config until OnDelivery's request/response contract is defined -- see that
|
|
27990
|
+
* RPC's own doc. Enabling it today would call an endpoint that receives nothing and returns nothing.
|
|
27991
|
+
*/
|
|
27996
27992
|
onDeliveryEnabled?: boolean;
|
|
27997
27993
|
buildFetchRequestEnabled?: boolean;
|
|
27998
27994
|
prepareDeliveryPayloadsEnabled?: boolean;
|
|
@@ -31045,12 +31041,6 @@ declare function componentsDeletionHookProvider({ id, data, name, }: {
|
|
|
31045
31041
|
* Webhook Provider Module SPI - lets connectors-webhooks call an implementer for provider-specific
|
|
31046
31042
|
* notify-and-fetch behaviour on an inbound delivery.
|
|
31047
31043
|
* @param id - A unique identifier for the extension
|
|
31048
|
-
* @param data - Configuration for a webhook provider-module SPI implementer, stored on the host side.
|
|
31049
|
-
*
|
|
31050
|
-
* The SPI service proto (its five RPCs) has not been written yet, so this file is hand-authored
|
|
31051
|
-
* rather than protodep-vendored. Once the service proto exists, replace this file with a real
|
|
31052
|
-
* `protodep up -f` vendor per SPI.md's "Updating the SPI component definition" section, keeping
|
|
31053
|
-
* this message's name, field numbers and toggle names unchanged.
|
|
31054
31044
|
* @param name - Optional - A human readable name for the extension
|
|
31055
31045
|
* @returns A general form of extensions
|
|
31056
31046
|
*/
|