executor 1.1.9 → 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.
- package/README.md +17 -7
- package/bin/emscripten-module.wasm +0 -0
- package/bin/executor.mjs +367034 -157926
- package/bin/impl/edit.js +201 -0
- package/bin/impl/format.js +275 -0
- package/bin/impl/parser.js +682 -0
- package/bin/impl/scanner.js +456 -0
- package/bin/impl/string-intern.js +42 -0
- package/bin/openapi-extractor-wasm/openapi_extractor_bg.wasm +0 -0
- package/package.json +1 -4
- package/resources/web/assets/__vite-browser-external-BIHI7g3E.js +1 -0
- package/resources/web/assets/{highlighted-body-TPN3WLV5-D2YQWXND.js → highlighted-body-TPN3WLV5-CNtoUE2O.js} +1 -1
- package/resources/web/assets/{index-BnjZoxRo.js → index-Dyhx5qgf.js} +2 -2
- package/resources/web/assets/mermaid-O7DHMXV3-CfqEcqYS.js +658 -0
- package/resources/web/assets/mermaid-O7DHMXV3-D1toCiZx.css +1 -0
- package/resources/web/assets/openapi_extractor_bg-IMRXzuHp.wasm +0 -0
- package/resources/web/index.html +1 -1
- package/bin/pglite.data +0 -0
- package/bin/pglite.wasm +0 -0
- package/bin/postinstall.js +0 -38
- package/resources/migrations/20260306091536_abnormal_martin_li/migration.sql +0 -158
- package/resources/migrations/20260306091536_abnormal_martin_li/snapshot.json +0 -1937
- package/resources/migrations/20260306094249_large_giant_girl/migration.sql +0 -39
- package/resources/migrations/20260306094249_large_giant_girl/snapshot.json +0 -2425
- package/resources/migrations/20260307090915_blue_bullseye/migration.sql +0 -70
- package/resources/migrations/20260307090915_blue_bullseye/snapshot.json +0 -3122
- package/resources/migrations/20260307134000_openapi_tool_identity/migration.sql +0 -37
- package/resources/migrations/20260307152000_source_document_text/migration.sql +0 -1
- package/resources/migrations/20260308041000_credentials_model/migration.sql +0 -41
- package/resources/migrations/20260308120000_search_and_indexes/migration.sql +0 -16
- package/resources/migrations/20260308140000_secret_materials_name/migration.sql +0 -1
- package/resources/migrations/20260309103000_policy_scope_and_interaction_purpose/migration.sql +0 -17
- package/resources/web/assets/mermaid-O7DHMXV3-37jaM6li.js +0 -393
- package/resources/web/assets/mermaid-O7DHMXV3-DgCU8P81.css +0 -1
- 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");
|