@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
@@ -1,5 +1,11 @@
1
1
  # @pikku/cli
2
2
 
3
+ ## 0.9.15
4
+
5
+ ### Patch Changes
6
+
7
+ - 749d921: chore: intermin combat with new cli changes
8
+
3
9
  ## 0.9.14
4
10
 
5
11
  ### Patch Changes
@@ -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<PikkuFunctionSessionless<In, Out>>
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/cli",
3
- "version": "0.9.14",
3
+ "version": "0.9.15",
4
4
  "author": "yasser.fadl@gmail.com",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -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<PikkuFunctionSessionless<In, Out>>
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
  /**