@wix/app-extensions 1.0.139 → 1.0.140
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.
- package/build/cjs/index.d.ts +30 -1
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +30 -1
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +6 -7
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +6 -7
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -986,8 +986,8 @@ interface ComponentData extends ComponentDataDataOneOf {
|
|
|
986
986
|
*/
|
|
987
987
|
bookingsPlatformConfiguration?: BookingsPlatformConfig;
|
|
988
988
|
/**
|
|
989
|
-
* Bookings Validation Provider SPI -
|
|
990
|
-
*
|
|
989
|
+
* Bookings Validation Provider SPI - integrate with Wix Bookings to enforce your own booking rules, by validating bookings before they are created, canceled, or rescheduled.
|
|
990
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-validation-service-plugin/introduction
|
|
991
991
|
*/
|
|
992
992
|
bookingsValidationProvider?: BookingsValidationProviderConfig;
|
|
993
993
|
/**
|
|
@@ -2170,8 +2170,8 @@ interface ComponentDataDataOneOf {
|
|
|
2170
2170
|
*/
|
|
2171
2171
|
bookingsPlatformConfiguration?: BookingsPlatformConfig;
|
|
2172
2172
|
/**
|
|
2173
|
-
* Bookings Validation Provider SPI -
|
|
2174
|
-
*
|
|
2173
|
+
* Bookings Validation Provider SPI - integrate with Wix Bookings to enforce your own booking rules, by validating bookings before they are created, canceled, or rescheduled.
|
|
2174
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-validation-service-plugin/introduction
|
|
2175
2175
|
*/
|
|
2176
2176
|
bookingsValidationProvider?: BookingsValidationProviderConfig;
|
|
2177
2177
|
/**
|
|
@@ -24843,7 +24843,6 @@ interface FieldOverride {
|
|
|
24843
24843
|
targetFieldName?: string | null;
|
|
24844
24844
|
}
|
|
24845
24845
|
/** Configuration for the bookings validation provider. */
|
|
24846
|
-
/** @internal */
|
|
24847
24846
|
interface BookingsValidationProviderConfig {
|
|
24848
24847
|
/** The base URI to reach the provider's service. */
|
|
24849
24848
|
baseUri?: SpiBaseUri;
|
|
@@ -29706,13 +29705,13 @@ declare function bookingsPlatformConfiguration({ id, data, name, }: {
|
|
|
29706
29705
|
name?: string;
|
|
29707
29706
|
}): ExtensionData;
|
|
29708
29707
|
/**
|
|
29709
|
-
* Bookings Validation Provider SPI -
|
|
29708
|
+
* Bookings Validation Provider SPI - integrate with Wix Bookings to enforce your own booking rules, by validating bookings before they are created, canceled, or rescheduled.
|
|
29709
|
+
* Learn More: https://dev.wix.com/docs/api-reference/business-solutions/bookings/bookings/bookings-validation-service-plugin/introduction
|
|
29710
29710
|
* @param id - A unique identifier for the extension
|
|
29711
29711
|
* @param data - Configuration for the bookings validation provider.
|
|
29712
29712
|
* @param name - Optional - A human readable name for the extension
|
|
29713
29713
|
* @returns A general form of extensions
|
|
29714
29714
|
*/
|
|
29715
|
-
/** @internal */
|
|
29716
29715
|
declare function bookingsValidationProvider({ id, data, name, }: {
|
|
29717
29716
|
id: string;
|
|
29718
29717
|
data: BookingsValidationProviderConfig;
|