@voyant-travel/distribution 0.111.0 → 0.112.1
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.
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow-entry-safe channel-push surface.
|
|
3
|
+
*
|
|
4
|
+
* This subpath is intentionally narrower than `@voyant-travel/distribution`
|
|
5
|
+
* and `@voyant-travel/distribution/channel-push`: workflow bundles import it
|
|
6
|
+
* at module evaluation time, so it must not pull in routes, Hono extensions, or
|
|
7
|
+
* app-server wiring.
|
|
8
|
+
*/
|
|
9
|
+
export { type ChannelPushDeps, type ChannelPushLogger, clearChannelPushDeps, defaultLogger, getChannelPushDeps, getChannelPushDepsOrThrow, setChannelPushDeps, } from "./types.js";
|
|
10
|
+
export { channelAvailabilityPushWorkflow, channelBookingPushWorkflow, channelContentPushWorkflow, } from "./workflows.js";
|
|
11
|
+
//# sourceMappingURL=workflow-entry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workflow-entry.d.ts","sourceRoot":"","sources":["../../src/channel-push/workflow-entry.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,EACL,KAAK,eAAe,EACpB,KAAK,iBAAiB,EACtB,oBAAoB,EACpB,aAAa,EACb,kBAAkB,EAClB,yBAAyB,EACzB,kBAAkB,GACnB,MAAM,YAAY,CAAA;AACnB,OAAO,EACL,+BAA+B,EAC/B,0BAA0B,EAC1B,0BAA0B,GAC3B,MAAM,gBAAgB,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Workflow-entry-safe channel-push surface.
|
|
3
|
+
*
|
|
4
|
+
* This subpath is intentionally narrower than `@voyant-travel/distribution`
|
|
5
|
+
* and `@voyant-travel/distribution/channel-push`: workflow bundles import it
|
|
6
|
+
* at module evaluation time, so it must not pull in routes, Hono extensions, or
|
|
7
|
+
* app-server wiring.
|
|
8
|
+
*/
|
|
9
|
+
export { clearChannelPushDeps, defaultLogger, getChannelPushDeps, getChannelPushDepsOrThrow, setChannelPushDeps, } from "./types.js";
|
|
10
|
+
export { channelAvailabilityPushWorkflow, channelBookingPushWorkflow, channelContentPushWorkflow, } from "./workflows.js";
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
* them up automatically.
|
|
10
10
|
*
|
|
11
11
|
* The workflow bodies look up `ChannelPushDeps` from the process-local
|
|
12
|
-
* holder set via `setChannelPushDeps`.
|
|
13
|
-
*
|
|
14
|
-
*
|
|
12
|
+
* holder set via `setChannelPushDeps`. Detached bundles wire deps from
|
|
13
|
+
* their `bootstrapWorkflowBundle` export before the runner executes a
|
|
14
|
+
* workflow step.
|
|
15
15
|
*
|
|
16
16
|
* Dev / single-process deployments (e.g. the operator starter's
|
|
17
17
|
* inline drain) don't need to register these — the subscriber calls the
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
* them up automatically.
|
|
10
10
|
*
|
|
11
11
|
* The workflow bodies look up `ChannelPushDeps` from the process-local
|
|
12
|
-
* holder set via `setChannelPushDeps`.
|
|
13
|
-
*
|
|
14
|
-
*
|
|
12
|
+
* holder set via `setChannelPushDeps`. Detached bundles wire deps from
|
|
13
|
+
* their `bootstrapWorkflowBundle` export before the runner executes a
|
|
14
|
+
* workflow step.
|
|
15
15
|
*
|
|
16
16
|
* Dev / single-process deployments (e.g. the operator starter's
|
|
17
17
|
* inline drain) don't need to register these — the subscriber calls the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voyant-travel/distribution",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.112.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -9,6 +9,11 @@
|
|
|
9
9
|
"import": "./dist/index.js",
|
|
10
10
|
"default": "./dist/index.js"
|
|
11
11
|
},
|
|
12
|
+
"./channel-push-workflows": {
|
|
13
|
+
"types": "./dist/channel-push/workflow-entry.d.ts",
|
|
14
|
+
"import": "./dist/channel-push/workflow-entry.js",
|
|
15
|
+
"default": "./dist/channel-push/workflow-entry.js"
|
|
16
|
+
},
|
|
12
17
|
"./schema": {
|
|
13
18
|
"types": "./dist/schema.d.ts",
|
|
14
19
|
"import": "./dist/schema.js",
|
|
@@ -29,13 +34,13 @@
|
|
|
29
34
|
"drizzle-orm": "^0.45.2",
|
|
30
35
|
"hono": "^4.12.10",
|
|
31
36
|
"zod": "^4.3.6",
|
|
32
|
-
"@voyant-travel/
|
|
33
|
-
"@voyant-travel/catalog": "^0.119.0",
|
|
37
|
+
"@voyant-travel/catalog": "^0.120.2",
|
|
34
38
|
"@voyant-travel/core": "^0.109.0",
|
|
35
39
|
"@voyant-travel/db": "^0.108.1",
|
|
36
40
|
"@voyant-travel/hono": "^0.111.0",
|
|
37
|
-
"@voyant-travel/
|
|
38
|
-
"@voyant-travel/
|
|
41
|
+
"@voyant-travel/bookings": "^0.122.1",
|
|
42
|
+
"@voyant-travel/identity": "^0.122.0",
|
|
43
|
+
"@voyant-travel/workflows": "^0.109.3",
|
|
39
44
|
"@voyant-travel/suppliers-contracts": "^0.104.3"
|
|
40
45
|
},
|
|
41
46
|
"devDependencies": {
|