@wix/table-reservations 1.0.165 → 1.0.166
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/table-reservations",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.166",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/table-reservations_reservation-locations": "1.0.
|
|
24
|
+
"@wix/table-reservations_reservation-locations": "1.0.73",
|
|
25
25
|
"@wix/table-reservations_reservations": "1.0.59",
|
|
26
26
|
"@wix/table-reservations_time-slots": "1.0.52"
|
|
27
27
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": ""
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "afd260da1c801849a391994a1de226d715b65e593920485f6bdde621"
|
|
52
52
|
}
|
|
@@ -3065,7 +3065,8 @@ declare enum Type$1 {
|
|
|
3065
3065
|
APPROVAL_ABSENT = "APPROVAL_ABSENT",
|
|
3066
3066
|
MANUAL_APPROVAL_DEPRECATED = "MANUAL_APPROVAL_DEPRECATED",
|
|
3067
3067
|
APPROVAL_THRESHOLD_OUTSIDE_PARTY_SIZE = "APPROVAL_THRESHOLD_OUTSIDE_PARTY_SIZE",
|
|
3068
|
-
APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT = "APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT"
|
|
3068
|
+
APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT = "APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT",
|
|
3069
|
+
MANUAL_APPROVAL_THRESHOLD_OUTSIDE_PARTIES_SIZE = "MANUAL_APPROVAL_THRESHOLD_OUTSIDE_PARTIES_SIZE"
|
|
3069
3070
|
}
|
|
3070
3071
|
interface NotAllReservationFieldsViolation {
|
|
3071
3072
|
/** Field types that are absent. */
|
|
@@ -4666,11 +4667,11 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
4666
4667
|
*/
|
|
4667
4668
|
entityEventSequence?: string | null;
|
|
4668
4669
|
}
|
|
4669
|
-
interface
|
|
4670
|
+
interface ReservationLocationCreatedEnvelope {
|
|
4670
4671
|
entity: ReservationLocation;
|
|
4671
4672
|
metadata: EventMetadata;
|
|
4672
4673
|
}
|
|
4673
|
-
interface
|
|
4674
|
+
interface ReservationLocationUpdatedEnvelope {
|
|
4674
4675
|
entity: ReservationLocation;
|
|
4675
4676
|
metadata: EventMetadata;
|
|
4676
4677
|
}
|
|
@@ -4857,8 +4858,8 @@ interface ListReservationLocationsSignature {
|
|
|
4857
4858
|
*/
|
|
4858
4859
|
(options?: ListReservationLocationsOptions | undefined): Promise<ListReservationLocationsResponse & ListReservationLocationsResponseNonNullableFields>;
|
|
4859
4860
|
}
|
|
4860
|
-
declare const onReservationLocationUpdated$1: EventDefinition<ReservationLocationUpdatedEnvelope, "wix.table_reservations.v1.reservation_location_updated">;
|
|
4861
4861
|
declare const onReservationLocationCreated$1: EventDefinition<ReservationLocationCreatedEnvelope, "wix.table_reservations.v1.reservation_location_created">;
|
|
4862
|
+
declare const onReservationLocationUpdated$1: EventDefinition<ReservationLocationUpdatedEnvelope, "wix.table_reservations.v1.reservation_location_updated">;
|
|
4862
4863
|
|
|
4863
4864
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4864
4865
|
|
|
@@ -4868,17 +4869,17 @@ declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof update
|
|
|
4868
4869
|
declare const queryReservationLocations: MaybeContext<BuildRESTFunction<typeof queryReservationLocations$1> & typeof queryReservationLocations$1>;
|
|
4869
4870
|
declare const listReservationLocations: MaybeContext<BuildRESTFunction<typeof listReservationLocations$1> & typeof listReservationLocations$1>;
|
|
4870
4871
|
|
|
4871
|
-
type
|
|
4872
|
+
type _publicOnReservationLocationCreatedType = typeof onReservationLocationCreated$1;
|
|
4872
4873
|
/**
|
|
4873
4874
|
* Triggered when a reservation location is updated.
|
|
4874
4875
|
*/
|
|
4875
|
-
declare const
|
|
4876
|
+
declare const onReservationLocationCreated: ReturnType<typeof createEventModule<_publicOnReservationLocationCreatedType>>;
|
|
4876
4877
|
|
|
4877
|
-
type
|
|
4878
|
+
type _publicOnReservationLocationUpdatedType = typeof onReservationLocationUpdated$1;
|
|
4878
4879
|
/**
|
|
4879
4880
|
* Triggered when a reservation location is updated.
|
|
4880
4881
|
*/
|
|
4881
|
-
declare const
|
|
4882
|
+
declare const onReservationLocationUpdated: ReturnType<typeof createEventModule<_publicOnReservationLocationUpdatedType>>;
|
|
4882
4883
|
|
|
4883
4884
|
type context$1_ActionEvent = ActionEvent;
|
|
4884
4885
|
type context$1_Address = Address;
|
|
@@ -3065,7 +3065,8 @@ declare enum Type$1 {
|
|
|
3065
3065
|
APPROVAL_ABSENT = "APPROVAL_ABSENT",
|
|
3066
3066
|
MANUAL_APPROVAL_DEPRECATED = "MANUAL_APPROVAL_DEPRECATED",
|
|
3067
3067
|
APPROVAL_THRESHOLD_OUTSIDE_PARTY_SIZE = "APPROVAL_THRESHOLD_OUTSIDE_PARTY_SIZE",
|
|
3068
|
-
APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT = "APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT"
|
|
3068
|
+
APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT = "APPROVAL_AND_MANUAL_APPROVAL_ARE_DIFFERENT",
|
|
3069
|
+
MANUAL_APPROVAL_THRESHOLD_OUTSIDE_PARTIES_SIZE = "MANUAL_APPROVAL_THRESHOLD_OUTSIDE_PARTIES_SIZE"
|
|
3069
3070
|
}
|
|
3070
3071
|
interface NotAllReservationFieldsViolation {
|
|
3071
3072
|
/** Field types that are absent. */
|
|
@@ -4666,11 +4667,11 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
4666
4667
|
*/
|
|
4667
4668
|
entityEventSequence?: string | null;
|
|
4668
4669
|
}
|
|
4669
|
-
interface
|
|
4670
|
+
interface ReservationLocationCreatedEnvelope {
|
|
4670
4671
|
entity: ReservationLocation;
|
|
4671
4672
|
metadata: EventMetadata;
|
|
4672
4673
|
}
|
|
4673
|
-
interface
|
|
4674
|
+
interface ReservationLocationUpdatedEnvelope {
|
|
4674
4675
|
entity: ReservationLocation;
|
|
4675
4676
|
metadata: EventMetadata;
|
|
4676
4677
|
}
|
|
@@ -4857,8 +4858,8 @@ interface ListReservationLocationsSignature {
|
|
|
4857
4858
|
*/
|
|
4858
4859
|
(options?: ListReservationLocationsOptions | undefined): Promise<ListReservationLocationsResponse & ListReservationLocationsResponseNonNullableFields>;
|
|
4859
4860
|
}
|
|
4860
|
-
declare const onReservationLocationUpdated$1: EventDefinition<ReservationLocationUpdatedEnvelope, "wix.table_reservations.v1.reservation_location_updated">;
|
|
4861
4861
|
declare const onReservationLocationCreated$1: EventDefinition<ReservationLocationCreatedEnvelope, "wix.table_reservations.v1.reservation_location_created">;
|
|
4862
|
+
declare const onReservationLocationUpdated$1: EventDefinition<ReservationLocationUpdatedEnvelope, "wix.table_reservations.v1.reservation_location_updated">;
|
|
4862
4863
|
|
|
4863
4864
|
declare function createEventModule<T extends EventDefinition<any, string>>(eventDefinition: T): BuildEventDefinition<T> & T;
|
|
4864
4865
|
|
|
@@ -4868,17 +4869,17 @@ declare const updateExtendedFields: MaybeContext<BuildRESTFunction<typeof update
|
|
|
4868
4869
|
declare const queryReservationLocations: MaybeContext<BuildRESTFunction<typeof queryReservationLocations$1> & typeof queryReservationLocations$1>;
|
|
4869
4870
|
declare const listReservationLocations: MaybeContext<BuildRESTFunction<typeof listReservationLocations$1> & typeof listReservationLocations$1>;
|
|
4870
4871
|
|
|
4871
|
-
type
|
|
4872
|
+
type _publicOnReservationLocationCreatedType = typeof onReservationLocationCreated$1;
|
|
4872
4873
|
/**
|
|
4873
4874
|
* Triggered when a reservation location is updated.
|
|
4874
4875
|
*/
|
|
4875
|
-
declare const
|
|
4876
|
+
declare const onReservationLocationCreated: ReturnType<typeof createEventModule<_publicOnReservationLocationCreatedType>>;
|
|
4876
4877
|
|
|
4877
|
-
type
|
|
4878
|
+
type _publicOnReservationLocationUpdatedType = typeof onReservationLocationUpdated$1;
|
|
4878
4879
|
/**
|
|
4879
4880
|
* Triggered when a reservation location is updated.
|
|
4880
4881
|
*/
|
|
4881
|
-
declare const
|
|
4882
|
+
declare const onReservationLocationUpdated: ReturnType<typeof createEventModule<_publicOnReservationLocationUpdatedType>>;
|
|
4882
4883
|
|
|
4883
4884
|
type index_d$1_ActionEvent = ActionEvent;
|
|
4884
4885
|
type index_d$1_Address = Address;
|