eve 0.12.1 → 0.12.2

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 (47) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/src/compiled/.vendor-stamp.json +1 -1
  3. package/dist/src/compiled/@vercel/sandbox/_async-retry.d.ts +8 -0
  4. package/dist/src/compiled/@vercel/sandbox/_workflow-serde.d.ts +5 -0
  5. package/dist/src/compiled/@vercel/sandbox/api-client/api-client.d.ts +1442 -0
  6. package/dist/src/compiled/@vercel/sandbox/api-client/api-error.d.ts +29 -0
  7. package/dist/src/compiled/@vercel/sandbox/api-client/base-client.d.ts +39 -0
  8. package/dist/src/compiled/@vercel/sandbox/api-client/file-writer.d.ts +66 -0
  9. package/dist/src/compiled/@vercel/sandbox/api-client/index.d.ts +2 -0
  10. package/dist/src/compiled/@vercel/sandbox/api-client/validators.d.ts +878 -0
  11. package/dist/src/compiled/@vercel/sandbox/api-client/with-retry.d.ts +10 -0
  12. package/dist/src/compiled/@vercel/sandbox/auth/error.d.ts +15 -0
  13. package/dist/src/compiled/@vercel/sandbox/auth/file.d.ts +18 -0
  14. package/dist/src/compiled/@vercel/sandbox/auth/index.d.ts +6 -0
  15. package/dist/src/compiled/@vercel/sandbox/auth/oauth.d.ts +111 -0
  16. package/dist/src/compiled/@vercel/sandbox/auth/poll-for-token.d.ts +28 -0
  17. package/dist/src/compiled/@vercel/sandbox/auth/project.d.ts +40 -0
  18. package/dist/src/compiled/@vercel/sandbox/command.d.ts +290 -0
  19. package/dist/src/compiled/@vercel/sandbox/constants.d.ts +5 -0
  20. package/dist/src/compiled/@vercel/sandbox/filesystem.d.ts +258 -0
  21. package/dist/src/compiled/@vercel/sandbox/index.d.ts +10 -129
  22. package/dist/src/compiled/@vercel/sandbox/proxy.d.ts +55 -0
  23. package/dist/src/compiled/@vercel/sandbox/sandbox.d.ts +1058 -0
  24. package/dist/src/compiled/@vercel/sandbox/session.d.ts +432 -0
  25. package/dist/src/compiled/@vercel/sandbox/snapshot.d.ts +229 -0
  26. package/dist/src/compiled/@vercel/sandbox/utils/get-credentials.d.ts +21 -0
  27. package/dist/src/compiled/@vercel/sandbox/utils/paginator.d.ts +16 -0
  28. package/dist/src/compiled/@vercel/sandbox/utils/resolveSignal.d.ts +15 -0
  29. package/dist/src/compiled/@vercel/sandbox/utils/sandbox-snapshot.d.ts +11 -0
  30. package/dist/src/compiled/@vercel/sandbox/utils/types.d.ts +11 -0
  31. package/dist/src/compiled/chat/_workflow-serde.d.ts +3 -0
  32. package/dist/src/compiled/chat/index.d.ts +1 -1
  33. package/dist/src/execution/sandbox/bindings/vercel-base-runtime.d.ts +3 -3
  34. package/dist/src/execution/sandbox/bindings/vercel-create-sdk.d.ts +8 -13
  35. package/dist/src/execution/sandbox/bindings/vercel-credentials.d.ts +3 -3
  36. package/dist/src/execution/sandbox/bindings/vercel-lookup.d.ts +4 -5
  37. package/dist/src/execution/sandbox/bindings/vercel-read-stream.d.ts +5 -0
  38. package/dist/src/execution/sandbox/bindings/vercel-read-stream.js +1 -0
  39. package/dist/src/execution/sandbox/bindings/vercel-sdk-types.d.ts +6 -0
  40. package/dist/src/execution/sandbox/bindings/vercel-sdk-types.js +1 -0
  41. package/dist/src/execution/sandbox/bindings/vercel.d.ts +4 -4
  42. package/dist/src/execution/sandbox/bindings/vercel.js +1 -1
  43. package/dist/src/internal/application/package.js +1 -1
  44. package/dist/src/public/sandbox/vercel-sandbox.d.ts +12 -9
  45. package/dist/src/setup/scaffold/create/project.js +1 -1
  46. package/dist/src/shared/sandbox-network-policy.d.ts +2 -2
  47. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # eve
2
2
 
3
+ ## 0.12.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f7d97b: Keep Vercel Sandbox option types synchronized with the installed SDK by vendoring its upstream declaration files instead of maintaining a hand-written copy. Vercel-backed file reads now convert provider Node streams to Eve's public Web stream contract.
8
+
3
9
  ## 0.12.1
4
10
 
5
11
  ### Patch Changes
@@ -29,5 +29,5 @@
29
29
  "zod": "4.4.3",
30
30
  "zod-validation-error": "5.0.0"
31
31
  },
32
- "scriptHash": "e624c414c349c934767258c7317fe9d85b22446a7315ce559d0a0fae6144f67a"
32
+ "scriptHash": "7b33ce1aff0c4a36596f2f22f6b0b4a0319f5b7d69158677a084e52c2af24713"
33
33
  }
@@ -0,0 +1,8 @@
1
+ // Auto-generated stub for `async-retry` types referenced by a vendored .d.ts.
2
+ // Emitted by createDeclarationCopier > buildOpaqueTypesStub.
3
+ //
4
+ // Names are aliased to `unknown` so consumers don't have to install
5
+ // upstream @types just to typecheck against eve. If real types are
6
+ // needed in user code, install the upstream @types and use them directly.
7
+
8
+ export type Options = unknown;
@@ -0,0 +1,5 @@
1
+ // Auto-generated stub for `@workflow/serde` symbols referenced by a vendored .d.ts.
2
+ // Emitted by createDeclarationCopier > buildUniqueSymbolStub.
3
+
4
+ export declare const WORKFLOW_DESERIALIZE: unique symbol;
5
+ export declare const WORKFLOW_SERIALIZE: unique symbol;