Commit 4a57977
committed
chore: update submodule and add AiChatModal export
- Updated submodule reference for autokitteh.
- Added export for AiChatModal in modals index.
- Replaced ChatbotIframe with AiChatModal in AiLandingPage component.
- Introduced aiChat enum value in modal enum.1 parent 47612ce commit 4a57977
File tree
6 files changed
+74
-48
lines changed- src
- assets
- components
- organisms/modals
- pages
- enums/components
6 files changed
+74
-48
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
139 | 139 | | |
140 | 140 | | |
141 | 141 | | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
142 | 157 | | |
143 | 158 | | |
144 | 159 | | |
| |||
Submodule autokitteh updated 73 files
- cmd/ak/cmd/connections/create.go+10-32
- configs/opa_bundles/default/authz.rego-9
- go.sum-2
- internal/backend/auth/authsessions/store.go-4
- internal/backend/auth/authz/ops.go-107
- internal/backend/builds/builds.go+6-6
- internal/backend/connections/connections.go+9-33
- internal/backend/db/db.go-2
- internal/backend/db/dbgorm/connections.go+27-23
- internal/backend/db/dbgorm/connections_test.go+2-236
- internal/backend/db/dbgorm/gorm_test.go+1-7
- internal/backend/db/dbgorm/owner_org.go+1-21
- internal/backend/db/dbgorm/owner_org_test.go+1-1
- internal/backend/db/dbgorm/scheme/records.go+5-12
- internal/backend/db/dbgorm/store.go+6-29
- internal/backend/deployments/deployments.go+7-7
- internal/backend/dispatcher/dispatcher.go+2-2
- internal/backend/events/events.go+3-3
- internal/backend/integrationsgrpcsvc/svc.go+3-3
- internal/backend/orgs/orgs.go+11-11
- internal/backend/projects/projects.go+12-12
- internal/backend/sessions/sessions.go+8-8
- internal/backend/sessions/sessionworkflows/workflow.go-7
- internal/backend/store/store.go+16-70
- internal/backend/store/store_test.go+2-23
- internal/backend/storegrpcsvc/svc.go-20
- internal/backend/svc/svc.go+1-1
- internal/backend/triggers/triggers.go+5-5
- internal/backend/users/users.go+4-4
- internal/backend/vars/vars.go+6-6
- internal/manifest/exec.go+2-1
- migrations/postgres/20251124123331_org-level-connections.sql-27
- migrations/postgres/atlas.sum+1-2
- migrations/postgres/enterprise/20251124123252_org-level-connections.sql-27
- migrations/postgres/enterprise/atlas.sum+1-2
- migrations/sqlite/20251124090942_connection-unique-index.sql-56
- migrations/sqlite/atlas.sum+1-2
- proto/autokitteh/connections/v1/connection.proto-2
- proto/autokitteh/store/v1/svc.proto-8
- proto/autokitteh/user_code/v1/handler_svc.proto-10
- proto/gen/go/autokitteh/connections/v1/connection.pb.go+34-44
- proto/gen/go/autokitteh/store/v1/storev1connect/svc.connect.go+4-30
- proto/gen/go/autokitteh/store/v1/svc.pb.go+44-177
- proto/gen/go/autokitteh/user_code/v1/handler_svc.pb.go+333-478
- proto/gen/go/autokitteh/user_code/v1/handler_svc_grpc.pb.go-38
- proto/gen/py/autokitteh_pb/connections/v1/connection_pb2.py+6-6
- proto/gen/py/autokitteh_pb/connections/v1/connection_pb2.pyi+2-4
- proto/gen/py/autokitteh_pb/store/v1/__init__.py+2-2
- proto/gen/py/autokitteh_pb/store/v1/svc_pb2.py+3-9
- proto/gen/py/autokitteh_pb/store/v1/svc_pb2.pyi-12
- proto/gen/py/autokitteh_pb/store/v1/svc_pb2_grpc.py-33
- proto/gen/ts/autokitteh/connections/v1/connection_pb.ts-6
- proto/gen/ts/autokitteh/store/v1/svc_connect.ts+1-10
- proto/gen/ts/autokitteh/store/v1/svc_pb.ts-74
- runtimes/pythonrt/py-sdk/autokitteh/__init__.py-4
- runtimes/pythonrt/py-sdk/autokitteh/store.py-20
- runtimes/pythonrt/py-sdk/docs/requirements.txt+1-1
- runtimes/pythonrt/py-sdk/pyproject.toml+2-2
- runtimes/pythonrt/runner/pb/autokitteh/user_code/v1/handler_svc_pb2.py+33-37
- runtimes/pythonrt/runner/pb/autokitteh/user_code/v1/handler_svc_pb2.pyi-14
- runtimes/pythonrt/runner/pb/autokitteh/user_code/v1/handler_svc_pb2_grpc.py-43
- runtimes/pythonrt/runner/syscalls.py-7
- runtimes/pythonrt/worker_grpc_handler.go-18
- sdk/sdkclients/sdkstoreclient/client.go-16
- sdk/sdkservices/runtimes.go+3-4
- sdk/sdkservices/store.go-1
- sdk/sdktypes/connection.go+1-17
- sdk/sdktypes/event.go-7
- tests/system/testdata/connections/create.txtar+6-3
- tests/system/testdata/connections/get.txtar+1-2
- tests/system/testdata/connections/list.txtar+4-6
- tests/system/testdata/manifest/apply.txtar+1-2
- tests/system/testdata/store/store.txtar+2-4
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
1 | 2 | | |
2 | 3 | | |
3 | 4 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
256 | 256 | | |
257 | 257 | | |
258 | 258 | | |
259 | | - | |
260 | | - | |
261 | | - | |
262 | | - | |
263 | | - | |
264 | | - | |
265 | | - | |
266 | | - | |
267 | | - | |
268 | | - | |
269 | | - | |
270 | | - | |
271 | | - | |
272 | | - | |
273 | | - | |
274 | | - | |
275 | | - | |
276 | | - | |
277 | | - | |
278 | | - | |
279 | | - | |
280 | | - | |
281 | | - | |
282 | | - | |
283 | | - | |
284 | | - | |
285 | | - | |
286 | | - | |
287 | | - | |
288 | | - | |
289 | | - | |
290 | | - | |
291 | | - | |
292 | | - | |
293 | | - | |
294 | | - | |
295 | | - | |
296 | | - | |
297 | | - | |
298 | | - | |
299 | | - | |
300 | | - | |
301 | | - | |
302 | | - | |
303 | | - | |
304 | | - | |
| 259 | + | |
305 | 260 | | |
306 | 261 | | |
307 | 262 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
| 2 | + | |
2 | 3 | | |
3 | 4 | | |
4 | 5 | | |
| |||
0 commit comments