executor 1.1.8 → 1.1.10-beta.5

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 (34) hide show
  1. package/README.md +42 -12
  2. package/bin/emscripten-module.wasm +0 -0
  3. package/bin/executor.mjs +367241 -157868
  4. package/bin/impl/edit.js +201 -0
  5. package/bin/impl/format.js +275 -0
  6. package/bin/impl/parser.js +682 -0
  7. package/bin/impl/scanner.js +456 -0
  8. package/bin/impl/string-intern.js +42 -0
  9. package/bin/openapi-extractor-wasm/openapi_extractor_bg.wasm +0 -0
  10. package/package.json +1 -1
  11. package/resources/web/assets/__vite-browser-external-BIHI7g3E.js +1 -0
  12. package/resources/web/assets/{highlighted-body-TPN3WLV5-Cy1EFOo2.js → highlighted-body-TPN3WLV5-CNtoUE2O.js} +1 -1
  13. package/resources/web/assets/{index-3N-BEhR_.js → index-Dyhx5qgf.js} +2 -2
  14. package/resources/web/assets/mermaid-O7DHMXV3-CfqEcqYS.js +658 -0
  15. package/resources/web/assets/mermaid-O7DHMXV3-D1toCiZx.css +1 -0
  16. package/resources/web/assets/openapi_extractor_bg-IMRXzuHp.wasm +0 -0
  17. package/resources/web/index.html +2 -2
  18. package/bin/pglite.data +0 -0
  19. package/bin/pglite.wasm +0 -0
  20. package/resources/migrations/20260306091536_abnormal_martin_li/migration.sql +0 -158
  21. package/resources/migrations/20260306091536_abnormal_martin_li/snapshot.json +0 -1937
  22. package/resources/migrations/20260306094249_large_giant_girl/migration.sql +0 -39
  23. package/resources/migrations/20260306094249_large_giant_girl/snapshot.json +0 -2425
  24. package/resources/migrations/20260307090915_blue_bullseye/migration.sql +0 -70
  25. package/resources/migrations/20260307090915_blue_bullseye/snapshot.json +0 -3122
  26. package/resources/migrations/20260307134000_openapi_tool_identity/migration.sql +0 -37
  27. package/resources/migrations/20260307152000_source_document_text/migration.sql +0 -1
  28. package/resources/migrations/20260308041000_credentials_model/migration.sql +0 -41
  29. package/resources/migrations/20260308120000_search_and_indexes/migration.sql +0 -16
  30. package/resources/migrations/20260308140000_secret_materials_name/migration.sql +0 -1
  31. package/resources/migrations/20260309103000_policy_scope_and_interaction_purpose/migration.sql +0 -17
  32. package/resources/web/assets/mermaid-O7DHMXV3-2oBmyuDr.js +0 -393
  33. package/resources/web/assets/mermaid-O7DHMXV3-DgCU8P81.css +0 -1
  34. package/resources/web/assets/openapi_extractor_bg-DZrbVm4x.wasm +0 -0
@@ -1,39 +0,0 @@
1
- CREATE TABLE "secret_materials" (
2
- "id" text PRIMARY KEY,
3
- "purpose" text NOT NULL,
4
- "value" text NOT NULL,
5
- "created_at" bigint NOT NULL,
6
- "updated_at" bigint NOT NULL,
7
- CONSTRAINT "secret_materials_purpose_check" CHECK ("purpose" in ('auth_material', 'oauth_access_token', 'oauth_refresh_token', 'oauth_client_info'))
8
- );
9
- --> statement-breakpoint
10
- CREATE TABLE "source_auth_sessions" (
11
- "id" text PRIMARY KEY,
12
- "workspace_id" text NOT NULL,
13
- "source_id" text NOT NULL,
14
- "execution_id" text,
15
- "interaction_id" text,
16
- "strategy" text NOT NULL,
17
- "status" text NOT NULL,
18
- "endpoint" text NOT NULL,
19
- "state" text NOT NULL,
20
- "redirect_uri" text NOT NULL,
21
- "scope" text,
22
- "resource_metadata_url" text,
23
- "authorization_server_url" text,
24
- "resource_metadata_json" text,
25
- "authorization_server_metadata_json" text,
26
- "client_information_json" text,
27
- "code_verifier" text,
28
- "authorization_url" text,
29
- "error_text" text,
30
- "completed_at" bigint,
31
- "created_at" bigint NOT NULL,
32
- "updated_at" bigint NOT NULL,
33
- CONSTRAINT "source_auth_sessions_strategy_check" CHECK ("strategy" in ('oauth2_authorization_code')),
34
- CONSTRAINT "source_auth_sessions_status_check" CHECK ("status" in ('pending', 'completed', 'failed', 'cancelled'))
35
- );
36
- --> statement-breakpoint
37
- CREATE INDEX "secret_materials_updated_idx" ON "secret_materials" ("updated_at","id");--> statement-breakpoint
38
- CREATE INDEX "source_auth_sessions_workspace_idx" ON "source_auth_sessions" ("workspace_id","updated_at","id");--> statement-breakpoint
39
- CREATE UNIQUE INDEX "source_auth_sessions_state_idx" ON "source_auth_sessions" ("state");