effect-cursor-sdk 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -4
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -927,7 +927,7 @@ declare class CursorRunService extends CursorRunService_base {
927
927
  *
928
928
  * @category layers
929
929
  */
930
- declare const liveLayer: Layer.Layer<CursorAgentService | CursorSdkFactory | CursorArtifactService | CursorInspectionService | CursorRunService, never, never>;
930
+ declare const liveLayer: Layer.Layer<CursorSdkFactory | CursorInspectionService | CursorAgentService | CursorRunService | CursorArtifactService, never, never>;
931
931
  /**
932
932
  * Deterministic mock layer for tests and examples.
933
933
  *
@@ -945,7 +945,7 @@ declare const liveLayer: Layer.Layer<CursorAgentService | CursorSdkFactory | Cur
945
945
  *
946
946
  * @category layers
947
947
  */
948
- declare const mockLayer: (fixtures?: CursorMockFixtures) => Layer.Layer<CursorAgentService | CursorSdkFactory | CursorArtifactService | CursorInspectionService | CursorRunService, never, never>;
948
+ declare const mockLayer: (fixtures?: CursorMockFixtures) => Layer.Layer<CursorSdkFactory | CursorInspectionService | CursorAgentService | CursorRunService | CursorArtifactService, never, never>;
949
949
  /**
950
950
  * Ready-made live runtime.
951
951
  *
@@ -961,7 +961,7 @@ declare const mockLayer: (fixtures?: CursorMockFixtures) => Layer.Layer<CursorAg
961
961
  *
962
962
  * @category runtimes
963
963
  */
964
- declare const liveRuntime: ManagedRuntime.ManagedRuntime<CursorAgentService | CursorSdkFactory | CursorArtifactService | CursorInspectionService | CursorRunService, never>;
964
+ declare const liveRuntime: ManagedRuntime.ManagedRuntime<CursorSdkFactory | CursorInspectionService | CursorAgentService | CursorRunService | CursorArtifactService, never>;
965
965
  /**
966
966
  * Ready-made mock runtime.
967
967
  *
@@ -978,7 +978,7 @@ declare const liveRuntime: ManagedRuntime.ManagedRuntime<CursorAgentService | Cu
978
978
  *
979
979
  * @category runtimes
980
980
  */
981
- declare const makeMockRuntime: (fixtures?: CursorMockFixtures) => ManagedRuntime.ManagedRuntime<CursorAgentService | CursorSdkFactory | CursorArtifactService | CursorInspectionService | CursorRunService, never>;
981
+ declare const makeMockRuntime: (fixtures?: CursorMockFixtures) => ManagedRuntime.ManagedRuntime<CursorSdkFactory | CursorInspectionService | CursorAgentService | CursorRunService | CursorArtifactService, never>;
982
982
  //#endregion
983
983
  //#region src/cursor-telemetry.d.ts
984
984
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "effect-cursor-sdk",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Effect-based wrapper around the Cursor SDK",
5
5
  "keywords": [
6
6
  "cursor",
@@ -64,7 +64,7 @@
64
64
  "verify:publish": "bun run typecheck && bun run sdk-audit && bun run lint && bun run test && bun run build && bun run lint:package"
65
65
  },
66
66
  "dependencies": {
67
- "@cursor/sdk": "^1.0.13",
67
+ "@cursor/sdk": "^1.0.18",
68
68
  "effect-cursor-sdk": "."
69
69
  },
70
70
  "devDependencies": {