@crossdelta/cloudevents 0.7.2 → 0.7.3
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/README.md +1 -1
- package/bin/cli.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ import * as fs from 'fs';
|
|
|
4
4
|
import { existsSync, readdirSync, statSync } from 'fs';
|
|
5
5
|
import * as path from 'path';
|
|
6
6
|
import { join } from 'path';
|
|
7
|
-
import { createFlow, createGenerationResult, input, initGenerationContext, trackChange, printGenerationSummary,
|
|
7
|
+
import { createFlow, createGenerationResult, input, initGenerationContext, trackChange, printGenerationSummary, change, runFlow } from '@crossdelta/flowcore';
|
|
8
8
|
import 'url';
|
|
9
9
|
import 'glob';
|
|
10
10
|
import 'zod';
|
package/dist/index.cjs
CHANGED
|
@@ -2193,7 +2193,7 @@ function cloudEvents(options = {}) {
|
|
|
2193
2193
|
// package.json
|
|
2194
2194
|
var package_default = {
|
|
2195
2195
|
name: "@crossdelta/cloudevents",
|
|
2196
|
-
version: "0.7.
|
|
2196
|
+
version: "0.7.3",
|
|
2197
2197
|
description: "CloudEvents toolkit for TypeScript - Zod validation, handler discovery, NATS JetStream & Core"};
|
|
2198
2198
|
|
|
2199
2199
|
// src/plugin.ts
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import * as fs from 'fs';
|
|
|
4
4
|
import { existsSync, readdirSync, statSync } from 'fs';
|
|
5
5
|
import * as path from 'path';
|
|
6
6
|
import { join, dirname } from 'path';
|
|
7
|
-
import { createFlow, createGenerationResult, input, initGenerationContext, trackChange, printGenerationSummary,
|
|
7
|
+
import { createFlow, createGenerationResult, input, initGenerationContext, trackChange, printGenerationSummary, change, runFlow } from '@crossdelta/flowcore';
|
|
8
8
|
import { fileURLToPath } from 'url';
|
|
9
9
|
import { glob } from 'glob';
|
|
10
10
|
import { z } from 'zod';
|
|
@@ -2168,7 +2168,7 @@ function cloudEvents(options = {}) {
|
|
|
2168
2168
|
// package.json
|
|
2169
2169
|
var package_default = {
|
|
2170
2170
|
name: "@crossdelta/cloudevents",
|
|
2171
|
-
version: "0.7.
|
|
2171
|
+
version: "0.7.3",
|
|
2172
2172
|
description: "CloudEvents toolkit for TypeScript - Zod validation, handler discovery, NATS JetStream & Core"};
|
|
2173
2173
|
|
|
2174
2174
|
// src/plugin.ts
|
package/package.json
CHANGED