@pikku/cli 0.9.14 → 0.9.15
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/CHANGELOG.md
CHANGED
|
@@ -155,7 +155,7 @@ type SchedulerWiring = CoreScheduledTask<PikkuFunctionSessionless<void, void>, P
|
|
|
155
155
|
* @template In - Input type for the queue job
|
|
156
156
|
* @template Out - Output type for the queue job
|
|
157
157
|
*/
|
|
158
|
-
type QueueWiring<In, Out> = CoreQueueWorker<
|
|
158
|
+
type QueueWiring<In, Out> = CoreQueueWorker<any>
|
|
159
159
|
|
|
160
160
|
/**
|
|
161
161
|
* Type definition for MCP resources that provide data to AI models.
|
|
@@ -441,7 +441,7 @@ export { addPermission }
|
|
|
441
441
|
export const wireHTTP = <In, Out, Route extends string>(
|
|
442
442
|
httpWiring: HTTPWiring<In, Out, Route> & AssertHTTPWiringParams<In, Route>
|
|
443
443
|
) => {
|
|
444
|
-
wireHTTPCore(httpWiring)
|
|
444
|
+
wireHTTPCore(httpWiring as any) // TODO
|
|
445
445
|
}
|
|
446
446
|
|
|
447
447
|
/**
|
package/package.json
CHANGED
|
@@ -163,7 +163,7 @@ type SchedulerWiring = CoreScheduledTask<PikkuFunctionSessionless<void, void>, P
|
|
|
163
163
|
* @template In - Input type for the queue job
|
|
164
164
|
* @template Out - Output type for the queue job
|
|
165
165
|
*/
|
|
166
|
-
type QueueWiring<In, Out> = CoreQueueWorker<
|
|
166
|
+
type QueueWiring<In, Out> = CoreQueueWorker<any>
|
|
167
167
|
|
|
168
168
|
/**
|
|
169
169
|
* Type definition for MCP resources that provide data to AI models.
|
|
@@ -449,7 +449,7 @@ export { addPermission }
|
|
|
449
449
|
export const wireHTTP = <In, Out, Route extends string>(
|
|
450
450
|
httpWiring: HTTPWiring<In, Out, Route> & AssertHTTPWiringParams<In, Route>
|
|
451
451
|
) => {
|
|
452
|
-
wireHTTPCore(httpWiring)
|
|
452
|
+
wireHTTPCore(httpWiring as any) // TODO
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
/**
|