@wix/table-reservations 1.0.122 → 1.0.124
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.124",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/table-reservations_reservation-locations": "1.0.
|
|
22
|
-
"@wix/table-reservations_reservations": "1.0.
|
|
23
|
-
"@wix/table-reservations_time-slots": "1.0.
|
|
21
|
+
"@wix/table-reservations_reservation-locations": "1.0.45",
|
|
22
|
+
"@wix/table-reservations_reservations": "1.0.40",
|
|
23
|
+
"@wix/table-reservations_time-slots": "1.0.42"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"glob": "^10.4.1",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"fqdn": ""
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
|
-
"falconPackageHash": "
|
|
48
|
+
"falconPackageHash": "af691fa3bb19c1ac02d4d55167146289222b9d7c373a19e63cea63c6"
|
|
49
49
|
}
|
|
@@ -2430,7 +2430,7 @@ interface CursorPaging {
|
|
|
2430
2430
|
cursor?: string | null;
|
|
2431
2431
|
}
|
|
2432
2432
|
interface QueryReservationLocationsResponse {
|
|
2433
|
-
/** List of reservation locations */
|
|
2433
|
+
/** List of reservation locations. */
|
|
2434
2434
|
reservationLocations?: ReservationLocation[];
|
|
2435
2435
|
/** Metadata for the paginated results. */
|
|
2436
2436
|
pagingMetadata?: PagingMetadataV2;
|
|
@@ -2507,44 +2507,71 @@ interface MigrateOldRestaurantSettingsResponse {
|
|
|
2507
2507
|
migrationResults?: MigrationResult[];
|
|
2508
2508
|
}
|
|
2509
2509
|
interface ParsedSettings {
|
|
2510
|
+
/** Delay in minutes. */
|
|
2510
2511
|
futureDelayMins?: number | null;
|
|
2512
|
+
/** Minimum party size. */
|
|
2511
2513
|
partySizeMin?: number | null;
|
|
2514
|
+
/** Maximum party size. */
|
|
2512
2515
|
partySizeMax?: number | null;
|
|
2516
|
+
/** Weekly schedule. */
|
|
2513
2517
|
weeklySchedule?: OldScheduleInterval[];
|
|
2518
|
+
/** Custom fields. */
|
|
2514
2519
|
customFields?: OldCustomField[];
|
|
2520
|
+
/** Privacy policy. */
|
|
2515
2521
|
privacyPolicy?: OldPolicy;
|
|
2522
|
+
/** Terms and conditions. */
|
|
2516
2523
|
termsAndConditions?: OldTerms;
|
|
2524
|
+
/** Schedule exceptions. */
|
|
2517
2525
|
scheduleExceptions?: OldScheduleException[];
|
|
2526
|
+
/** Available. */
|
|
2518
2527
|
available?: boolean | null;
|
|
2528
|
+
/** Locale. */
|
|
2519
2529
|
locale?: string | null;
|
|
2520
2530
|
}
|
|
2521
2531
|
interface OldScheduleInterval {
|
|
2532
|
+
/** Duration in minutes. */
|
|
2522
2533
|
durationMins?: number;
|
|
2534
|
+
/** Minute of week. */
|
|
2523
2535
|
minuteOfWeek?: number;
|
|
2524
2536
|
}
|
|
2525
2537
|
interface OldCustomField {
|
|
2538
|
+
/** Label. */
|
|
2526
2539
|
label?: string;
|
|
2540
|
+
/** Required. */
|
|
2527
2541
|
required?: boolean;
|
|
2528
2542
|
}
|
|
2529
2543
|
interface OldPolicy {
|
|
2544
|
+
/** Value. */
|
|
2530
2545
|
value?: string;
|
|
2546
|
+
/** Is plain text. */
|
|
2531
2547
|
isPlainText?: boolean;
|
|
2532
2548
|
}
|
|
2533
2549
|
interface OldTerms {
|
|
2550
|
+
/** Value. */
|
|
2534
2551
|
value?: string;
|
|
2552
|
+
/** Is plain text. */
|
|
2535
2553
|
isPlainText?: boolean;
|
|
2536
2554
|
}
|
|
2537
2555
|
interface OldScheduleException {
|
|
2556
|
+
/** Available. */
|
|
2538
2557
|
available?: boolean;
|
|
2558
|
+
/** Comment. */
|
|
2539
2559
|
comment?: string | null;
|
|
2560
|
+
/** Start time. */
|
|
2540
2561
|
start?: OldInstant;
|
|
2562
|
+
/** End time. */
|
|
2541
2563
|
end?: OldInstant;
|
|
2542
2564
|
}
|
|
2543
2565
|
interface OldInstant {
|
|
2566
|
+
/** Year. */
|
|
2544
2567
|
year?: number;
|
|
2568
|
+
/** Month. */
|
|
2545
2569
|
month?: number;
|
|
2570
|
+
/** Day. */
|
|
2546
2571
|
day?: number;
|
|
2572
|
+
/** Hour. */
|
|
2547
2573
|
hour?: number;
|
|
2574
|
+
/** Minute. */
|
|
2548
2575
|
minute?: number;
|
|
2549
2576
|
}
|
|
2550
2577
|
interface MigrationParsingError {
|
|
@@ -2430,7 +2430,7 @@ interface CursorPaging {
|
|
|
2430
2430
|
cursor?: string | null;
|
|
2431
2431
|
}
|
|
2432
2432
|
interface QueryReservationLocationsResponse {
|
|
2433
|
-
/** List of reservation locations */
|
|
2433
|
+
/** List of reservation locations. */
|
|
2434
2434
|
reservationLocations?: ReservationLocation[];
|
|
2435
2435
|
/** Metadata for the paginated results. */
|
|
2436
2436
|
pagingMetadata?: PagingMetadataV2;
|
|
@@ -2507,44 +2507,71 @@ interface MigrateOldRestaurantSettingsResponse {
|
|
|
2507
2507
|
migrationResults?: MigrationResult[];
|
|
2508
2508
|
}
|
|
2509
2509
|
interface ParsedSettings {
|
|
2510
|
+
/** Delay in minutes. */
|
|
2510
2511
|
futureDelayMins?: number | null;
|
|
2512
|
+
/** Minimum party size. */
|
|
2511
2513
|
partySizeMin?: number | null;
|
|
2514
|
+
/** Maximum party size. */
|
|
2512
2515
|
partySizeMax?: number | null;
|
|
2516
|
+
/** Weekly schedule. */
|
|
2513
2517
|
weeklySchedule?: OldScheduleInterval[];
|
|
2518
|
+
/** Custom fields. */
|
|
2514
2519
|
customFields?: OldCustomField[];
|
|
2520
|
+
/** Privacy policy. */
|
|
2515
2521
|
privacyPolicy?: OldPolicy;
|
|
2522
|
+
/** Terms and conditions. */
|
|
2516
2523
|
termsAndConditions?: OldTerms;
|
|
2524
|
+
/** Schedule exceptions. */
|
|
2517
2525
|
scheduleExceptions?: OldScheduleException[];
|
|
2526
|
+
/** Available. */
|
|
2518
2527
|
available?: boolean | null;
|
|
2528
|
+
/** Locale. */
|
|
2519
2529
|
locale?: string | null;
|
|
2520
2530
|
}
|
|
2521
2531
|
interface OldScheduleInterval {
|
|
2532
|
+
/** Duration in minutes. */
|
|
2522
2533
|
durationMins?: number;
|
|
2534
|
+
/** Minute of week. */
|
|
2523
2535
|
minuteOfWeek?: number;
|
|
2524
2536
|
}
|
|
2525
2537
|
interface OldCustomField {
|
|
2538
|
+
/** Label. */
|
|
2526
2539
|
label?: string;
|
|
2540
|
+
/** Required. */
|
|
2527
2541
|
required?: boolean;
|
|
2528
2542
|
}
|
|
2529
2543
|
interface OldPolicy {
|
|
2544
|
+
/** Value. */
|
|
2530
2545
|
value?: string;
|
|
2546
|
+
/** Is plain text. */
|
|
2531
2547
|
isPlainText?: boolean;
|
|
2532
2548
|
}
|
|
2533
2549
|
interface OldTerms {
|
|
2550
|
+
/** Value. */
|
|
2534
2551
|
value?: string;
|
|
2552
|
+
/** Is plain text. */
|
|
2535
2553
|
isPlainText?: boolean;
|
|
2536
2554
|
}
|
|
2537
2555
|
interface OldScheduleException {
|
|
2556
|
+
/** Available. */
|
|
2538
2557
|
available?: boolean;
|
|
2558
|
+
/** Comment. */
|
|
2539
2559
|
comment?: string | null;
|
|
2560
|
+
/** Start time. */
|
|
2540
2561
|
start?: OldInstant;
|
|
2562
|
+
/** End time. */
|
|
2541
2563
|
end?: OldInstant;
|
|
2542
2564
|
}
|
|
2543
2565
|
interface OldInstant {
|
|
2566
|
+
/** Year. */
|
|
2544
2567
|
year?: number;
|
|
2568
|
+
/** Month. */
|
|
2545
2569
|
month?: number;
|
|
2570
|
+
/** Day. */
|
|
2546
2571
|
day?: number;
|
|
2572
|
+
/** Hour. */
|
|
2547
2573
|
hour?: number;
|
|
2574
|
+
/** Minute. */
|
|
2548
2575
|
minute?: number;
|
|
2549
2576
|
}
|
|
2550
2577
|
interface MigrationParsingError {
|
|
@@ -2471,7 +2471,7 @@ interface CursorPaging$1 {
|
|
|
2471
2471
|
cursor?: string | null;
|
|
2472
2472
|
}
|
|
2473
2473
|
interface QueryReservationLocationsResponse$1 {
|
|
2474
|
-
/** List of reservation locations */
|
|
2474
|
+
/** List of reservation locations. */
|
|
2475
2475
|
reservationLocations?: ReservationLocation$1[];
|
|
2476
2476
|
/** Metadata for the paginated results. */
|
|
2477
2477
|
pagingMetadata?: PagingMetadataV2$1;
|
|
@@ -3204,7 +3204,7 @@ interface CursorPaging {
|
|
|
3204
3204
|
cursor?: string | null;
|
|
3205
3205
|
}
|
|
3206
3206
|
interface QueryReservationLocationsResponse {
|
|
3207
|
-
/** List of reservation locations */
|
|
3207
|
+
/** List of reservation locations. */
|
|
3208
3208
|
reservationLocations?: ReservationLocation[];
|
|
3209
3209
|
/** Metadata for the paginated results. */
|
|
3210
3210
|
pagingMetadata?: PagingMetadataV2;
|