@voyantjs/availability 0.1.0
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/LICENSE +109 -0
- package/README.md +35 -0
- package/dist/generate-slots.d.ts +27 -0
- package/dist/generate-slots.d.ts.map +1 -0
- package/dist/generate-slots.js +71 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +13 -0
- package/dist/routes.d.ts +2218 -0
- package/dist/routes.d.ts.map +1 -0
- package/dist/routes.js +541 -0
- package/dist/rrule.d.ts +30 -0
- package/dist/rrule.d.ts.map +1 -0
- package/dist/rrule.js +201 -0
- package/dist/schema.d.ts +2341 -0
- package/dist/schema.d.ts.map +1 -0
- package/dist/schema.js +315 -0
- package/dist/service.d.ts +732 -0
- package/dist/service.d.ts.map +1 -0
- package/dist/service.js +519 -0
- package/dist/validation.d.ts +564 -0
- package/dist/validation.d.ts.map +1 -0
- package/dist/validation.js +215 -0
- package/package.json +56 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# Functional Source License, Version 1.1, Apache 2.0 Future License
|
|
2
|
+
|
|
3
|
+
## Abbreviation
|
|
4
|
+
|
|
5
|
+
FSL-1.1-Apache-2.0
|
|
6
|
+
|
|
7
|
+
## Notice
|
|
8
|
+
|
|
9
|
+
Copyright 2026 PixelMakers Studio SRL
|
|
10
|
+
|
|
11
|
+
## Terms and Conditions
|
|
12
|
+
|
|
13
|
+
### Licensor ("We")
|
|
14
|
+
|
|
15
|
+
The party offering the Software under these Terms and Conditions.
|
|
16
|
+
|
|
17
|
+
### The Software
|
|
18
|
+
|
|
19
|
+
The "Software" is each version of the software that we make available under
|
|
20
|
+
these Terms and Conditions, as indicated by our inclusion of these Terms and
|
|
21
|
+
Conditions with the Software.
|
|
22
|
+
|
|
23
|
+
### License Grant
|
|
24
|
+
|
|
25
|
+
Subject to your compliance with this License Grant and the Patents,
|
|
26
|
+
Redistribution and Trademark clauses below, we hereby grant you the right to
|
|
27
|
+
use, copy, modify, create derivative works, publicly perform, publicly
|
|
28
|
+
display and redistribute the Software for any Permitted Purpose identified
|
|
29
|
+
below.
|
|
30
|
+
|
|
31
|
+
### Permitted Purpose
|
|
32
|
+
|
|
33
|
+
A Permitted Purpose is any purpose other than a Competing Use. A Competing
|
|
34
|
+
Use means making the Software available to others in a commercial product or
|
|
35
|
+
service that:
|
|
36
|
+
|
|
37
|
+
1. substitutes for the Software;
|
|
38
|
+
|
|
39
|
+
2. substitutes for any other product or service we offer using the Software
|
|
40
|
+
that exists as of the date we make the Software available; or
|
|
41
|
+
|
|
42
|
+
3. offers the same or substantially similar functionality as the Software.
|
|
43
|
+
|
|
44
|
+
Permitted Purposes specifically include using the Software:
|
|
45
|
+
|
|
46
|
+
1. for your internal use and access;
|
|
47
|
+
|
|
48
|
+
2. for non-commercial education;
|
|
49
|
+
|
|
50
|
+
3. for non-commercial research; and
|
|
51
|
+
|
|
52
|
+
4. in connection with professional services that you provide to a licensee
|
|
53
|
+
using the Software in accordance with these Terms and Conditions.
|
|
54
|
+
|
|
55
|
+
### Patents
|
|
56
|
+
|
|
57
|
+
To the extent your use for a Permitted Purpose would necessarily infringe
|
|
58
|
+
our patents, the license grant above includes a license under our patents.
|
|
59
|
+
If you make a claim against any party that the Software infringes or
|
|
60
|
+
contributes to the infringement of any patent, then your patent license to
|
|
61
|
+
the Software ends immediately.
|
|
62
|
+
|
|
63
|
+
### Redistribution
|
|
64
|
+
|
|
65
|
+
The Terms and Conditions apply to all copies, modifications and derivatives
|
|
66
|
+
of the Software.
|
|
67
|
+
|
|
68
|
+
If you redistribute any copies, modifications or derivatives of the
|
|
69
|
+
Software, you must include a copy of or a link to these Terms and Conditions
|
|
70
|
+
and not remove any copyright notices provided in or with the Software.
|
|
71
|
+
|
|
72
|
+
### Disclaimer
|
|
73
|
+
|
|
74
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS
|
|
75
|
+
OR IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A
|
|
76
|
+
PARTICULAR PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
|
|
77
|
+
|
|
78
|
+
IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO
|
|
79
|
+
THE SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
|
|
80
|
+
DAMAGES, EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
|
|
81
|
+
|
|
82
|
+
### Trademarks
|
|
83
|
+
|
|
84
|
+
Except for displaying the License Details and identifying us as the origin
|
|
85
|
+
of the Software, you have no right under these Terms and Conditions to use
|
|
86
|
+
our trademarks, trade names, service marks or product names.
|
|
87
|
+
|
|
88
|
+
---
|
|
89
|
+
|
|
90
|
+
## Grant of Future License
|
|
91
|
+
|
|
92
|
+
We hereby irrevocably grant you an additional license to use the Software
|
|
93
|
+
under the Apache License, Version 2.0 that is effective on the second
|
|
94
|
+
anniversary of the date we make the Software available. On or after that
|
|
95
|
+
date, you may use the Software under the Apache License, Version 2.0, in
|
|
96
|
+
which case the following will apply:
|
|
97
|
+
|
|
98
|
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
99
|
+
use this file except in compliance with the License.
|
|
100
|
+
|
|
101
|
+
You may obtain a copy of the License at
|
|
102
|
+
|
|
103
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
104
|
+
|
|
105
|
+
Unless required by applicable law or agreed to in writing, software
|
|
106
|
+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
107
|
+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
108
|
+
License for the specific language governing permissions and limitations
|
|
109
|
+
under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @voyantjs/availability
|
|
2
|
+
|
|
3
|
+
Availability module for Voyant. Dated availability, slots, closeouts, and pickup capacity — the primary signal sellability consumes when resolving candidate offers.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pnpm add @voyantjs/availability
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { availabilityModule } from "@voyantjs/availability"
|
|
15
|
+
import { createApp } from "@voyantjs/hono"
|
|
16
|
+
|
|
17
|
+
const app = createApp({
|
|
18
|
+
modules: [availabilityModule],
|
|
19
|
+
// ...
|
|
20
|
+
})
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Exports
|
|
24
|
+
|
|
25
|
+
| Entry | Description |
|
|
26
|
+
| --- | --- |
|
|
27
|
+
| `.` | Module export |
|
|
28
|
+
| `./schema` | Drizzle tables |
|
|
29
|
+
| `./validation` | Zod schemas |
|
|
30
|
+
| `./routes` | Hono routes |
|
|
31
|
+
| `./rrule` | RFC 5545 recurrence-rule helpers |
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
FSL-1.1-Apache-2.0
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { PostgresJsDatabase } from "drizzle-orm/postgres-js";
|
|
2
|
+
export type GenerateAvailabilitySlotsOptions = {
|
|
3
|
+
/** If provided, only generate slots for this rule. Otherwise, process all active rules. */
|
|
4
|
+
ruleId?: string;
|
|
5
|
+
/** How many days ahead from "now" to generate slots for. Defaults to 90. */
|
|
6
|
+
horizonDays?: number;
|
|
7
|
+
/** Default start time (HH:MM, 24h) used when a rule does not define one. Defaults to "09:00". */
|
|
8
|
+
defaultStartTime?: string;
|
|
9
|
+
/** Cap on slots expanded per rule. Defaults to 1000. */
|
|
10
|
+
perRuleLimit?: number;
|
|
11
|
+
/** Override "now" for deterministic generation. Defaults to new Date(). */
|
|
12
|
+
now?: Date;
|
|
13
|
+
};
|
|
14
|
+
export type GenerateAvailabilitySlotsResult = {
|
|
15
|
+
rulesProcessed: number;
|
|
16
|
+
slotsCreated: number;
|
|
17
|
+
slotsSkipped: number;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Materialize availability slots from active availability rules.
|
|
21
|
+
*
|
|
22
|
+
* Wall-clock convention: `startsAt` is stored as if UTC for the wall-clock
|
|
23
|
+
* time on `dateLocal` in the rule's `timezone`. Callers that need true
|
|
24
|
+
* UTC-instant semantics should post-process with their own timezone library.
|
|
25
|
+
*/
|
|
26
|
+
export declare function generateAvailabilitySlots(db: PostgresJsDatabase, options?: GenerateAvailabilitySlotsOptions): Promise<GenerateAvailabilitySlotsResult>;
|
|
27
|
+
//# sourceMappingURL=generate-slots.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-slots.d.ts","sourceRoot":"","sources":["../src/generate-slots.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAA;AAKjE,MAAM,MAAM,gCAAgC,GAAG;IAC7C,2FAA2F;IAC3F,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,4EAA4E;IAC5E,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,iGAAiG;IACjG,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,wDAAwD;IACxD,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,2EAA2E;IAC3E,GAAG,CAAC,EAAE,IAAI,CAAA;CACX,CAAA;AAED,MAAM,MAAM,+BAA+B,GAAG;IAC5C,cAAc,EAAE,MAAM,CAAA;IACtB,YAAY,EAAE,MAAM,CAAA;IACpB,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED;;;;;;GAMG;AACH,wBAAsB,yBAAyB,CAC7C,EAAE,EAAE,kBAAkB,EACtB,OAAO,GAAE,gCAAqC,GAC7C,OAAO,CAAC,+BAA+B,CAAC,CA6E1C"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { and, eq, inArray } from "drizzle-orm";
|
|
2
|
+
import { expandRRule } from "./rrule.js";
|
|
3
|
+
import { availabilityRules, availabilitySlots } from "./schema.js";
|
|
4
|
+
/**
|
|
5
|
+
* Materialize availability slots from active availability rules.
|
|
6
|
+
*
|
|
7
|
+
* Wall-clock convention: `startsAt` is stored as if UTC for the wall-clock
|
|
8
|
+
* time on `dateLocal` in the rule's `timezone`. Callers that need true
|
|
9
|
+
* UTC-instant semantics should post-process with their own timezone library.
|
|
10
|
+
*/
|
|
11
|
+
export async function generateAvailabilitySlots(db, options = {}) {
|
|
12
|
+
const horizonDays = options.horizonDays ?? 90;
|
|
13
|
+
const defaultStartTime = options.defaultStartTime ?? "09:00";
|
|
14
|
+
const perRuleLimit = options.perRuleLimit ?? 1000;
|
|
15
|
+
const now = options.now ?? new Date();
|
|
16
|
+
const from = new Date(now);
|
|
17
|
+
from.setUTCHours(0, 0, 0, 0);
|
|
18
|
+
const to = new Date(from);
|
|
19
|
+
to.setUTCDate(to.getUTCDate() + horizonDays);
|
|
20
|
+
const ruleFilters = [eq(availabilityRules.active, true)];
|
|
21
|
+
if (options.ruleId)
|
|
22
|
+
ruleFilters.push(eq(availabilityRules.id, options.ruleId));
|
|
23
|
+
const rules = await db
|
|
24
|
+
.select()
|
|
25
|
+
.from(availabilityRules)
|
|
26
|
+
.where(and(...ruleFilters));
|
|
27
|
+
let slotsCreated = 0;
|
|
28
|
+
let slotsSkipped = 0;
|
|
29
|
+
for (const rule of rules) {
|
|
30
|
+
const dates = expandRRule(rule.recurrenceRule, from, to, perRuleLimit);
|
|
31
|
+
if (dates.length === 0)
|
|
32
|
+
continue;
|
|
33
|
+
const existing = await db
|
|
34
|
+
.select({ dateLocal: availabilitySlots.dateLocal })
|
|
35
|
+
.from(availabilitySlots)
|
|
36
|
+
.where(and(eq(availabilitySlots.productId, rule.productId), eq(availabilitySlots.availabilityRuleId, rule.id), inArray(availabilitySlots.dateLocal, dates)));
|
|
37
|
+
const existingSet = new Set(existing.map((row) => row.dateLocal));
|
|
38
|
+
const toInsert = dates.filter((d) => !existingSet.has(d));
|
|
39
|
+
slotsSkipped += dates.length - toInsert.length;
|
|
40
|
+
if (toInsert.length === 0)
|
|
41
|
+
continue;
|
|
42
|
+
const [hh, mm] = defaultStartTime.split(":");
|
|
43
|
+
const hour = Number.parseInt(hh ?? "9", 10) || 0;
|
|
44
|
+
const minute = Number.parseInt(mm ?? "0", 10) || 0;
|
|
45
|
+
const rows = toInsert.map((dateLocal) => {
|
|
46
|
+
const [y, m, d] = dateLocal.split("-").map((s) => Number.parseInt(s, 10));
|
|
47
|
+
// Wall-clock-as-UTC: interpret the local date/time as if it were UTC.
|
|
48
|
+
const startsAt = new Date(Date.UTC(y ?? 1970, (m ?? 1) - 1, d ?? 1, hour, minute, 0, 0));
|
|
49
|
+
return {
|
|
50
|
+
productId: rule.productId,
|
|
51
|
+
optionId: rule.optionId,
|
|
52
|
+
facilityId: rule.facilityId,
|
|
53
|
+
availabilityRuleId: rule.id,
|
|
54
|
+
dateLocal,
|
|
55
|
+
startsAt,
|
|
56
|
+
timezone: rule.timezone,
|
|
57
|
+
status: "open",
|
|
58
|
+
unlimited: false,
|
|
59
|
+
initialPax: rule.maxCapacity,
|
|
60
|
+
remainingPax: rule.maxCapacity,
|
|
61
|
+
};
|
|
62
|
+
});
|
|
63
|
+
await db.insert(availabilitySlots).values(rows);
|
|
64
|
+
slotsCreated += rows.length;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
rulesProcessed: rules.length,
|
|
68
|
+
slotsCreated,
|
|
69
|
+
slotsSkipped,
|
|
70
|
+
};
|
|
71
|
+
}
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { Module } from "@voyantjs/core";
|
|
2
|
+
import type { HonoModule } from "@voyantjs/hono/module";
|
|
3
|
+
import { availabilityService } from "./service.js";
|
|
4
|
+
export type { AvailabilityRoutes } from "./routes.js";
|
|
5
|
+
export declare const availabilityModule: Module;
|
|
6
|
+
export declare const availabilityHonoModule: HonoModule;
|
|
7
|
+
export { type GenerateAvailabilitySlotsOptions, type GenerateAvailabilitySlotsResult, generateAvailabilitySlots, } from "./generate-slots.js";
|
|
8
|
+
export type { AvailabilityCloseout, AvailabilityPickupPoint, AvailabilityRule, AvailabilitySlot, AvailabilitySlotPickup, AvailabilityStartTime, CustomPickupArea, LocationPickupTime, NewAvailabilityCloseout, NewAvailabilityPickupPoint, NewAvailabilityRule, NewAvailabilitySlot, NewAvailabilitySlotPickup, NewAvailabilityStartTime, NewCustomPickupArea, NewLocationPickupTime, NewPickupGroup, NewPickupLocation, NewProductMeetingConfig, PickupGroup, PickupLocation, ProductMeetingConfig, } from "./schema.js";
|
|
9
|
+
export { availabilityCloseouts, availabilityPickupPoints, availabilityRules, availabilitySlotPickups, availabilitySlots, availabilityStartTimes, customPickupAreas, locationPickupTimes, pickupGroups, pickupLocations, productMeetingConfigs, } from "./schema.js";
|
|
10
|
+
export { availabilityCloseoutListQuerySchema, availabilityPickupPointListQuerySchema, availabilityRuleListQuerySchema, availabilitySlotListQuerySchema, availabilitySlotPickupListQuerySchema, availabilityStartTimeListQuerySchema, customPickupAreaListQuerySchema, insertAvailabilityCloseoutSchema, insertAvailabilityPickupPointSchema, insertAvailabilityRuleSchema, insertAvailabilitySlotPickupSchema, insertAvailabilitySlotSchema, insertAvailabilityStartTimeSchema, insertCustomPickupAreaSchema, insertLocationPickupTimeSchema, insertPickupGroupSchema, insertPickupLocationSchema, insertProductMeetingConfigSchema, locationPickupTimeListQuerySchema, pickupGroupListQuerySchema, pickupLocationListQuerySchema, productMeetingConfigListQuerySchema, updateAvailabilityCloseoutSchema, updateAvailabilityPickupPointSchema, updateAvailabilityRuleSchema, updateAvailabilitySlotPickupSchema, updateAvailabilitySlotSchema, updateAvailabilityStartTimeSchema, updateCustomPickupAreaSchema, updateLocationPickupTimeSchema, updatePickupGroupSchema, updatePickupLocationSchema, updateProductMeetingConfigSchema, } from "./validation.js";
|
|
11
|
+
export { availabilityService };
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,uBAAuB,CAAA;AAGvD,OAAO,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAA;AAElD,YAAY,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAA;AAErD,eAAO,MAAM,kBAAkB,EAAE,MAEhC,CAAA;AAED,eAAO,MAAM,sBAAsB,EAAE,UAGpC,CAAA;AAED,OAAO,EACL,KAAK,gCAAgC,EACrC,KAAK,+BAA+B,EACpC,yBAAyB,GAC1B,MAAM,qBAAqB,CAAA;AAC5B,YAAY,EACV,oBAAoB,EACpB,uBAAuB,EACvB,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,kBAAkB,EAClB,uBAAuB,EACvB,0BAA0B,EAC1B,mBAAmB,EACnB,mBAAmB,EACnB,yBAAyB,EACzB,wBAAwB,EACxB,mBAAmB,EACnB,qBAAqB,EACrB,cAAc,EACd,iBAAiB,EACjB,uBAAuB,EACvB,WAAW,EACX,cAAc,EACd,oBAAoB,GACrB,MAAM,aAAa,CAAA;AACpB,OAAO,EACL,qBAAqB,EACrB,wBAAwB,EACxB,iBAAiB,EACjB,uBAAuB,EACvB,iBAAiB,EACjB,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,YAAY,EACZ,eAAe,EACf,qBAAqB,GACtB,MAAM,aAAa,CAAA;AACpB,OAAO,EACL,mCAAmC,EACnC,sCAAsC,EACtC,+BAA+B,EAC/B,+BAA+B,EAC/B,qCAAqC,EACrC,oCAAoC,EACpC,+BAA+B,EAC/B,gCAAgC,EAChC,mCAAmC,EACnC,4BAA4B,EAC5B,kCAAkC,EAClC,4BAA4B,EAC5B,iCAAiC,EACjC,4BAA4B,EAC5B,8BAA8B,EAC9B,uBAAuB,EACvB,0BAA0B,EAC1B,gCAAgC,EAChC,iCAAiC,EACjC,0BAA0B,EAC1B,6BAA6B,EAC7B,mCAAmC,EACnC,gCAAgC,EAChC,mCAAmC,EACnC,4BAA4B,EAC5B,kCAAkC,EAClC,4BAA4B,EAC5B,iCAAiC,EACjC,4BAA4B,EAC5B,8BAA8B,EAC9B,uBAAuB,EACvB,0BAA0B,EAC1B,gCAAgC,GACjC,MAAM,iBAAiB,CAAA;AACxB,OAAO,EAAE,mBAAmB,EAAE,CAAA"}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { availabilityRoutes } from "./routes.js";
|
|
2
|
+
import { availabilityService } from "./service.js";
|
|
3
|
+
export const availabilityModule = {
|
|
4
|
+
name: "availability",
|
|
5
|
+
};
|
|
6
|
+
export const availabilityHonoModule = {
|
|
7
|
+
module: availabilityModule,
|
|
8
|
+
routes: availabilityRoutes,
|
|
9
|
+
};
|
|
10
|
+
export { generateAvailabilitySlots, } from "./generate-slots.js";
|
|
11
|
+
export { availabilityCloseouts, availabilityPickupPoints, availabilityRules, availabilitySlotPickups, availabilitySlots, availabilityStartTimes, customPickupAreas, locationPickupTimes, pickupGroups, pickupLocations, productMeetingConfigs, } from "./schema.js";
|
|
12
|
+
export { availabilityCloseoutListQuerySchema, availabilityPickupPointListQuerySchema, availabilityRuleListQuerySchema, availabilitySlotListQuerySchema, availabilitySlotPickupListQuerySchema, availabilityStartTimeListQuerySchema, customPickupAreaListQuerySchema, insertAvailabilityCloseoutSchema, insertAvailabilityPickupPointSchema, insertAvailabilityRuleSchema, insertAvailabilitySlotPickupSchema, insertAvailabilitySlotSchema, insertAvailabilityStartTimeSchema, insertCustomPickupAreaSchema, insertLocationPickupTimeSchema, insertPickupGroupSchema, insertPickupLocationSchema, insertProductMeetingConfigSchema, locationPickupTimeListQuerySchema, pickupGroupListQuerySchema, pickupLocationListQuerySchema, productMeetingConfigListQuerySchema, updateAvailabilityCloseoutSchema, updateAvailabilityPickupPointSchema, updateAvailabilityRuleSchema, updateAvailabilitySlotPickupSchema, updateAvailabilitySlotSchema, updateAvailabilityStartTimeSchema, updateCustomPickupAreaSchema, updateLocationPickupTimeSchema, updatePickupGroupSchema, updatePickupLocationSchema, updateProductMeetingConfigSchema, } from "./validation.js";
|
|
13
|
+
export { availabilityService };
|