@tailor-platform/sdk 1.72.0 → 1.73.0
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/CHANGELOG.md +27 -0
- package/dist/aigateway-B3oZZE6v.mjs +15 -0
- package/dist/aigateway-B3oZZE6v.mjs.map +1 -0
- package/dist/application-BhRnH42h.mjs +3 -0
- package/dist/{application-DmjIKQ-a.mjs → application-Dxhdq_nu.mjs} +21 -19
- package/dist/application-Dxhdq_nu.mjs.map +1 -0
- package/dist/{assert-CKfwrmCV.mjs → assert-DBxo8jPo.mjs} +1 -2
- package/dist/{assert-CKfwrmCV.mjs.map → assert-DBxo8jPo.mjs.map} +1 -1
- package/dist/{authconnection-D7lsvsKY.mjs → authconnection-BGQM8FZI.mjs} +2 -3
- package/dist/{authconnection-D7lsvsKY.mjs.map → authconnection-BGQM8FZI.mjs.map} +1 -1
- package/dist/{brand-DlnJ375c.mjs → brand-Eo4pLXPJ.mjs} +1 -2
- package/dist/{brand-DlnJ375c.mjs.map → brand-Eo4pLXPJ.mjs.map} +1 -1
- package/dist/cli/cache/bundle-cache.d.mts +1 -0
- package/dist/cli/cache/store.d.mts +1 -0
- package/dist/cli/cache/types.d.mts +1 -0
- package/dist/cli/commands/api/api-call.d.mts +19 -0
- package/dist/cli/commands/api/index.d.mts +3 -0
- package/dist/cli/commands/deploy/aigateway.d.mts +1 -0
- package/dist/cli/commands/deploy/application.d.mts +1 -0
- package/dist/cli/commands/deploy/auth.d.mts +1 -0
- package/dist/cli/commands/deploy/deploy.d.mts +24 -0
- package/dist/cli/commands/deploy/executor.d.mts +1 -0
- package/dist/cli/commands/deploy/function-registry-types.d.mts +12 -0
- package/dist/cli/commands/deploy/function-registry.d.mts +2 -0
- package/dist/cli/commands/deploy/idp.d.mts +1 -0
- package/dist/cli/commands/deploy/resolver.d.mts +1 -0
- package/dist/cli/commands/deploy/secret-manager.d.mts +1 -0
- package/dist/cli/commands/deploy/staticwebsite.d.mts +1 -0
- package/dist/cli/commands/deploy/tailordb/index.d.mts +1 -0
- package/dist/cli/commands/deploy/types.d.mts +1 -0
- package/dist/cli/commands/deploy/workflow.d.mts +1 -0
- package/dist/cli/commands/executor/get.d.mts +29 -0
- package/dist/cli/commands/executor/jobs.d.mts +123 -0
- package/dist/cli/commands/executor/list.d.mts +19 -0
- package/dist/cli/commands/executor/transform.d.mts +41 -0
- package/dist/cli/commands/executor/trigger.d.mts +41 -0
- package/dist/cli/commands/executor/webhook.d.mts +22 -0
- package/dist/cli/commands/function/get.d.mts +18 -0
- package/dist/cli/commands/function/list.d.mts +22 -0
- package/dist/cli/commands/function/transform.d.mts +11 -0
- package/dist/cli/commands/generate/options.d.mts +7 -0
- package/dist/cli/commands/generate/seed/bundler.d.mts +26 -0
- package/dist/cli/commands/generate/service.d.mts +12 -0
- package/dist/cli/commands/generate/types.d.mts +126 -0
- package/dist/cli/commands/machineuser/list.d.mts +27 -0
- package/dist/cli/commands/machineuser/token.d.mts +22 -0
- package/dist/cli/commands/oauth2client/get.d.mts +18 -0
- package/dist/cli/commands/oauth2client/list.d.mts +20 -0
- package/dist/cli/commands/oauth2client/transform.d.mts +20 -0
- package/dist/cli/commands/organization/folder/create.d.mts +18 -0
- package/dist/cli/commands/organization/folder/delete.d.mts +16 -0
- package/dist/cli/commands/organization/folder/get.d.mts +17 -0
- package/dist/cli/commands/organization/folder/list.d.mts +22 -0
- package/dist/cli/commands/organization/folder/update.d.mts +18 -0
- package/dist/cli/commands/organization/get.d.mts +16 -0
- package/dist/cli/commands/organization/list.d.mts +15 -0
- package/dist/cli/commands/organization/transform.d.mts +27 -0
- package/dist/cli/commands/organization/tree.d.mts +25 -0
- package/dist/cli/commands/organization/update.d.mts +17 -0
- package/dist/cli/commands/remove.d.mts +16 -0
- package/dist/cli/commands/show.d.mts +34 -0
- package/dist/cli/commands/tailordb/migrate/bundler.d.mts +28 -0
- package/dist/cli/commands/tailordb/migrate/config.d.mts +19 -0
- package/dist/cli/commands/tailordb/migrate/diff-calculator.d.mts +211 -0
- package/dist/cli/commands/tailordb/migrate/generate.d.mts +17 -0
- package/dist/cli/commands/tailordb/migrate/snapshot-types.d.mts +202 -0
- package/dist/cli/commands/tailordb/migrate/snapshot.d.mts +113 -0
- package/dist/cli/commands/tailordb/migrate/types.d.mts +7 -0
- package/dist/cli/commands/tailordb/truncate.d.mts +19 -0
- package/dist/cli/commands/workflow/executions.d.mts +75 -0
- package/dist/cli/commands/workflow/get.d.mts +29 -0
- package/dist/cli/commands/workflow/list.d.mts +19 -0
- package/dist/cli/commands/workflow/resume.d.mts +23 -0
- package/dist/cli/commands/workflow/start.d.mts +63 -0
- package/dist/cli/commands/workflow/status.d.mts +5 -0
- package/dist/cli/commands/workflow/transform.d.mts +33 -0
- package/dist/cli/commands/workflow/wait.d.mts +16 -0
- package/dist/cli/commands/workflow/waiter.d.mts +23 -0
- package/dist/cli/commands/workspace/app/health.d.mts +18 -0
- package/dist/cli/commands/workspace/app/list.d.mts +22 -0
- package/dist/cli/commands/workspace/app/transform.d.mts +18 -0
- package/dist/cli/commands/workspace/create.d.mts +25 -0
- package/dist/cli/commands/workspace/delete.d.mts +15 -0
- package/dist/cli/commands/workspace/get.d.mts +17 -0
- package/dist/cli/commands/workspace/list.d.mts +17 -0
- package/dist/cli/commands/workspace/restore.d.mts +15 -0
- package/dist/cli/commands/workspace/transform.d.mts +16 -0
- package/dist/cli/commands/workspace/user/invite.d.mts +22 -0
- package/dist/cli/commands/workspace/user/list.d.mts +22 -0
- package/dist/cli/commands/workspace/user/remove.d.mts +17 -0
- package/dist/cli/commands/workspace/user/transform.d.mts +8 -0
- package/dist/cli/commands/workspace/user/update.d.mts +22 -0
- package/dist/cli/index.d.mts +1 -2
- package/dist/cli/index.mjs +21 -22
- package/dist/cli/index.mjs.map +1 -1
- package/dist/cli/lib.d.mts +80 -21402
- package/dist/cli/lib.mjs +8 -9
- package/dist/cli/lib.mjs.map +1 -1
- package/dist/cli/query/index.d.mts +35 -0
- package/dist/cli/services/application.d.mts +1 -0
- package/dist/cli/services/auth/service.d.mts +1 -0
- package/dist/cli/services/executor/service.d.mts +1 -0
- package/dist/cli/services/http-adapter/bundler.d.mts +1 -0
- package/dist/cli/services/http-adapter/service.d.mts +1 -0
- package/dist/cli/services/resolver/service.d.mts +1 -0
- package/dist/cli/services/tailordb/service.d.mts +1 -0
- package/dist/cli/services/workflow/bundler.d.mts +1 -0
- package/dist/cli/services/workflow/service.d.mts +1 -0
- package/dist/cli/shared/args.d.mts +13 -0
- package/dist/cli/shared/client.d.mts +1273 -0
- package/dist/cli/shared/config-loader.d.mts +44 -0
- package/dist/cli/shared/context.d.mts +28 -0
- package/dist/cli/shared/script-executor.d.mts +74 -0
- package/dist/cli/shared/seed-chunker.d.mts +46 -0
- package/dist/cli/shared/trigger-context.d.mts +1 -0
- package/dist/cli/shared/type-generator.d.mts +20 -0
- package/dist/cli/skills.mjs +1 -2
- package/dist/cli/skills.mjs.map +1 -1
- package/dist/completion/zsh-worker.zsh +1 -1
- package/dist/configure/config/index.d.mts +29 -0
- package/dist/configure/config/types.d.mts +103 -0
- package/dist/configure/index.d.mts +125 -7
- package/dist/configure/index.mjs +5 -6
- package/dist/configure/index.mjs.map +1 -1
- package/dist/configure/services/aigateway/index.d.mts +17 -0
- package/dist/configure/services/aigateway/types.d.mts +11 -0
- package/dist/configure/services/auth/index.d.mts +43 -0
- package/dist/{types-v_ErzNUF.d.mts → configure/services/auth/types.d.mts} +7 -172
- package/dist/configure/services/executor/executor.d.mts +82 -0
- package/dist/configure/services/executor/index.d.mts +8 -0
- package/dist/configure/services/executor/operation.d.mts +46 -0
- package/dist/configure/services/executor/trigger/event.d.mts +272 -0
- package/dist/configure/services/executor/trigger/index.d.mts +8 -0
- package/dist/configure/services/executor/trigger/schedule.d.mts +25 -0
- package/dist/configure/services/executor/trigger/webhook.d.mts +44 -0
- package/dist/configure/services/executor/types.d.mts +2 -0
- package/dist/configure/services/http-adapter/http-adapter.d.mts +125 -0
- package/dist/configure/services/http-adapter/index.d.mts +2 -0
- package/dist/configure/services/idp/index.d.mts +64 -0
- package/dist/configure/services/idp/permission.d.mts +80 -0
- package/dist/configure/services/idp/types.d.mts +20 -0
- package/dist/configure/services/index.d.mts +33 -0
- package/dist/configure/services/resolver/index.d.mts +5 -0
- package/dist/configure/services/resolver/resolver.d.mts +77 -0
- package/dist/configure/services/resolver/types.d.mts +6 -0
- package/dist/configure/services/secrets/index.d.mts +38 -0
- package/dist/configure/services/secrets/types.d.mts +11 -0
- package/dist/configure/services/staticwebsite/index.d.mts +19 -0
- package/dist/configure/services/staticwebsite/types.d.mts +11 -0
- package/dist/configure/services/tailordb/index.d.mts +4 -0
- package/dist/configure/services/tailordb/permission.d.mts +119 -0
- package/dist/configure/services/tailordb/schema.d.mts +451 -0
- package/dist/configure/services/tailordb/types.d.mts +149 -0
- package/dist/configure/services/workflow/index.d.mts +7 -0
- package/dist/configure/services/workflow/job.d.mts +81 -0
- package/dist/configure/services/workflow/test-env-key.d.mts +9 -0
- package/dist/configure/services/workflow/types.d.mts +2 -0
- package/dist/configure/services/workflow/wait-point.d.mts +73 -0
- package/dist/configure/services/workflow/workflow.d.mts +55 -0
- package/dist/configure/types/aigateway-name.d.mts +12 -0
- package/dist/configure/types/connection-name.d.mts +12 -0
- package/dist/configure/types/field.d.mts +9 -0
- package/dist/configure/types/field.types.d.mts +109 -0
- package/dist/configure/types/idp-name.d.mts +12 -0
- package/dist/configure/types/index.d.mts +4 -0
- package/dist/configure/types/machine-user.d.mts +12 -0
- package/dist/configure/types/type.d.mts +99 -0
- package/dist/configure/user.d.mts +7 -0
- package/dist/{context-CDQqIv4u.mjs → context-Bd266-ru.mjs} +2 -3
- package/dist/{context-CDQqIv4u.mjs.map → context-Bd266-ru.mjs.map} +1 -1
- package/dist/{crashreport-BwF8cHF0.mjs → crashreport-Dy4ZzSkd.mjs} +1 -2
- package/dist/{crashreport-BqyvFk-_.mjs → crashreport-ayWANEZ6.mjs} +4 -5
- package/dist/{crashreport-BqyvFk-_.mjs.map → crashreport-ayWANEZ6.mjs.map} +1 -1
- package/dist/{enum-constants-C7DaWeQo.mjs → enum-constants-j9QBF0cB.mjs} +1 -2
- package/dist/{enum-constants-C7DaWeQo.mjs.map → enum-constants-j9QBF0cB.mjs.map} +1 -1
- package/dist/{errors-EsY4XO6O.mjs → errors-Dtf2WPaW.mjs} +1 -2
- package/dist/{errors-EsY4XO6O.mjs.map → errors-Dtf2WPaW.mjs.map} +1 -1
- package/dist/{field-C4zdJLW5.mjs → field-DOsJCPFa.mjs} +1 -2
- package/dist/{field-C4zdJLW5.mjs.map → field-DOsJCPFa.mjs.map} +1 -1
- package/dist/{file-BkxupbYP.mjs → file-_oUZo76X.mjs} +2 -3
- package/dist/{file-BkxupbYP.mjs.map → file-_oUZo76X.mjs.map} +1 -1
- package/dist/{file-utils-BHPxPXmn.mjs → file-utils-DcyIPFQh.mjs} +2 -3
- package/dist/{file-utils-BHPxPXmn.mjs.map → file-utils-DcyIPFQh.mjs.map} +1 -1
- package/dist/{globals-ByrCoDip.mjs → globals-B8XX5TRB.mjs} +3 -3
- package/dist/globals-B8XX5TRB.mjs.map +1 -0
- package/dist/{iconv-D1zmPjvi.mjs → iconv-D2vi8G36.mjs} +2 -3
- package/dist/{iconv-D1zmPjvi.mjs.map → iconv-D2vi8G36.mjs.map} +1 -1
- package/dist/{idp-ynUfzwpz.mjs → idp-Bx25ZBdN.mjs} +2 -3
- package/dist/{idp-ynUfzwpz.mjs.map → idp-Bx25ZBdN.mjs.map} +1 -1
- package/dist/{interceptor-DOqRkCya.mjs → interceptor-D-q1rvRl.mjs} +1 -2
- package/dist/{interceptor-DOqRkCya.mjs.map → interceptor-D-q1rvRl.mjs.map} +1 -1
- package/dist/{job-BpsFXPbi.mjs → job-CtU73PGa.mjs} +3 -4
- package/dist/{job-BpsFXPbi.mjs.map → job-CtU73PGa.mjs.map} +1 -1
- package/dist/kysely/index.d.mts +2 -3
- package/dist/kysely/index.mjs +0 -1
- package/dist/kysely/index.mjs.map +1 -1
- package/dist/{kysely-type-CSoZxVKN.mjs → kysely-type-D-zflMGf.mjs} +2 -3
- package/dist/{kysely-type-CSoZxVKN.mjs.map → kysely-type-D-zflMGf.mjs.map} +1 -1
- package/dist/{logger-DKF-JsAK.mjs → logger-BEiZZ3qT.mjs} +1 -2
- package/dist/{logger-DKF-JsAK.mjs.map → logger-BEiZZ3qT.mjs.map} +1 -1
- package/dist/{mock-wf5qeZLi.mjs → mock-Ce1GCi4-.mjs} +60 -5
- package/dist/mock-Ce1GCi4-.mjs.map +1 -0
- package/dist/{multiline-Cf9ODpr1.mjs → multiline-sfHpTZZK.mjs} +1 -2
- package/dist/{multiline-Cf9ODpr1.mjs.map → multiline-sfHpTZZK.mjs.map} +1 -1
- package/dist/{package-json-DcQApfPQ.mjs → package-json-8b0O9TlX.mjs} +1 -2
- package/dist/{package-json-DcQApfPQ.mjs.map → package-json-8b0O9TlX.mjs.map} +1 -1
- package/dist/package-json-Cv2Z-TqQ.mjs +3 -0
- package/dist/parser/generator-config/schema.d.mts +1 -0
- package/dist/parser/service/auth/index.d.mts +1 -0
- package/dist/parser/service/auth/schema.d.mts +1 -0
- package/dist/parser/service/http-adapter/index.d.mts +1 -0
- package/dist/parser/service/http-adapter/schema.d.mts +1 -0
- package/dist/parser/service/idp/types.d.mts +4 -0
- package/dist/parser/service/tailordb/types.d.mts +126 -0
- package/dist/plugin/builtin/enum-constants/index.d.mts +16 -1
- package/dist/plugin/builtin/enum-constants/index.mjs +1 -2
- package/dist/plugin/builtin/file-utils/index.d.mts +16 -1
- package/dist/plugin/builtin/file-utils/index.mjs +1 -2
- package/dist/plugin/builtin/kysely-type/index.d.mts +16 -1
- package/dist/plugin/builtin/kysely-type/index.mjs +1 -2
- package/dist/plugin/builtin/seed/index.d.mts +45 -1
- package/dist/plugin/builtin/seed/index.mjs +1 -2
- package/dist/plugin/get-generated-type.d.mts +17 -0
- package/dist/plugin/index.d.mts +3 -118
- package/dist/plugin/index.mjs +0 -1
- package/dist/plugin/index.mjs.map +1 -1
- package/dist/plugin/manager.d.mts +1 -0
- package/dist/plugin/types.d.mts +245 -0
- package/dist/plugin/with-context.d.mts +102 -0
- package/dist/{registry-D0uB0OrK.mjs → registry-BozuxbPp.mjs} +1 -2
- package/dist/{registry-D0uB0OrK.mjs.map → registry-BozuxbPp.mjs.map} +1 -1
- package/dist/{repl-editor-DD5YP5mt.mjs → repl-editor-BmQOyZJd.mjs} +2 -3
- package/dist/{repl-editor-DD5YP5mt.mjs.map → repl-editor-BmQOyZJd.mjs.map} +1 -1
- package/dist/{rolldown-runtime-BkoGK1jX.mjs → rolldown-runtime-DXywRVcq.mjs} +0 -1
- package/dist/runtime/aigateway.d.mts +35 -0
- package/dist/runtime/aigateway.mjs +3 -0
- package/dist/runtime/authconnection.d.mts +31 -2
- package/dist/runtime/authconnection.mjs +1 -2
- package/dist/runtime/context.d.mts +67 -2
- package/dist/runtime/context.mjs +1 -2
- package/dist/runtime/file.d.mts +249 -2
- package/dist/runtime/file.mjs +1 -2
- package/dist/runtime/globals.d.mts +31 -20
- package/dist/runtime/globals.mjs +0 -1
- package/dist/runtime/iconv.d.mts +121 -2
- package/dist/runtime/iconv.mjs +1 -2
- package/dist/runtime/idp.d.mts +186 -2
- package/dist/runtime/idp.mjs +1 -2
- package/dist/runtime/index.d.mts +47 -9
- package/dist/runtime/index.mjs +9 -9
- package/dist/runtime/secretmanager.d.mts +54 -2
- package/dist/runtime/secretmanager.mjs +1 -2
- package/dist/{types-DTcZ2Yax.d.mts → runtime/types.d.mts} +1 -2
- package/dist/runtime/workflow.d.mts +107 -2
- package/dist/runtime/workflow.mjs +2 -3
- package/dist/{runtime-Cd375HD-.mjs → runtime-CEFC05qX.mjs} +81 -130
- package/dist/runtime-CEFC05qX.mjs.map +1 -0
- package/dist/{schema-C4fkpWV_.mjs → schema-DAdZSFOd.mjs} +3 -4
- package/dist/{schema-C4fkpWV_.mjs.map → schema-DAdZSFOd.mjs.map} +1 -1
- package/dist/{secret-file-eB3R3Fil.mjs → secret-file-VSVGy1V0.mjs} +2 -3
- package/dist/{secret-file-eB3R3Fil.mjs.map → secret-file-VSVGy1V0.mjs.map} +1 -1
- package/dist/{secretmanager-h3tBJV8f.mjs → secretmanager-BVxw3ih_.mjs} +2 -3
- package/dist/{secretmanager-h3tBJV8f.mjs.map → secretmanager-BVxw3ih_.mjs.map} +1 -1
- package/dist/seed/index.d.mts +1 -2
- package/dist/seed/index.mjs +0 -1
- package/dist/seed/index.mjs.map +1 -1
- package/dist/{seed-YAbtMy65.mjs → seed-DoMTMLcm.mjs} +3 -4
- package/dist/{seed-YAbtMy65.mjs.map → seed-DoMTMLcm.mjs.map} +1 -1
- package/dist/service-BXmdFwSH.mjs +3 -0
- package/dist/{service-DDWgZL_L2.mjs → service-DBFZQloR.mjs} +3 -4
- package/dist/service-DBFZQloR.mjs.map +1 -0
- package/dist/{service-B2Jd9CxS.mjs → service-DiEtAsvc.mjs} +3 -4
- package/dist/{service-B2Jd9CxS.mjs.map → service-DiEtAsvc.mjs.map} +1 -1
- package/dist/{service_pb-BsBR6yW5.mjs → service_pb-CIrhGwHk.mjs} +1 -2
- package/dist/{service_pb-BsBR6yW5.mjs.map → service_pb-CIrhGwHk.mjs.map} +1 -1
- package/dist/{service_pb-BJ9GsAnW.mjs → service_pb-DjwIn4jO.mjs} +1 -2
- package/dist/tailor-proto/src/tailor/v1/aigateway_pb.d.mts +204 -0
- package/dist/tailor-proto/src/tailor/v1/aigateway_resource_pb.d.mts +58 -0
- package/dist/tailor-proto/src/tailor/v1/application_pb.d.mts +316 -0
- package/dist/tailor-proto/src/tailor/v1/application_resource_pb.d.mts +161 -0
- package/dist/tailor-proto/src/tailor/v1/auth_pb.d.mts +2070 -0
- package/dist/tailor-proto/src/tailor/v1/auth_resource_pb.d.mts +861 -0
- package/dist/tailor-proto/src/tailor/v1/events_pb.d.mts +112 -0
- package/dist/tailor-proto/src/tailor/v1/events_resource_pb.d.mts +69 -0
- package/dist/tailor-proto/src/tailor/v1/executor_pb.d.mts +439 -0
- package/dist/tailor-proto/src/tailor/v1/executor_resource_pb.d.mts +564 -0
- package/dist/tailor-proto/src/tailor/v1/function_pb.d.mts +145 -0
- package/dist/tailor-proto/src/tailor/v1/function_registry_pb.d.mts +451 -0
- package/dist/tailor-proto/src/tailor/v1/function_resource_pb.d.mts +192 -0
- package/dist/tailor-proto/src/tailor/v1/http_adapter_resource_pb.d.mts +50 -0
- package/dist/tailor-proto/src/tailor/v1/idp_pb.d.mts +407 -0
- package/dist/tailor-proto/src/tailor/v1/idp_resource_pb.d.mts +430 -0
- package/dist/tailor-proto/src/tailor/v1/metadata_pb.d.mts +73 -0
- package/dist/tailor-proto/src/tailor/v1/metadata_resource_pb.d.mts +17 -0
- package/dist/tailor-proto/src/tailor/v1/meter_pb.d.mts +309 -0
- package/dist/tailor-proto/src/tailor/v1/pipeline_pb.d.mts +591 -0
- package/dist/tailor-proto/src/tailor/v1/pipeline_resource_pb.d.mts +330 -0
- package/dist/tailor-proto/src/tailor/v1/resource_pb.d.mts +113 -0
- package/dist/tailor-proto/src/tailor/v1/secret_manager_pb.d.mts +346 -0
- package/dist/tailor-proto/src/tailor/v1/secret_manager_resource_pb.d.mts +54 -0
- package/dist/tailor-proto/src/tailor/v1/service_pb.d.mts +3576 -0
- package/dist/tailor-proto/src/tailor/v1/stateflow_pb.d.mts +187 -0
- package/dist/tailor-proto/src/tailor/v1/stateflow_resource_pb.d.mts +29 -0
- package/dist/tailor-proto/src/tailor/v1/staticwebsite_pb.d.mts +429 -0
- package/dist/tailor-proto/src/tailor/v1/staticwebsite_resource_pb.d.mts +90 -0
- package/dist/tailor-proto/src/tailor/v1/tailordb_pb.d.mts +684 -0
- package/dist/tailor-proto/src/tailor/v1/tailordb_resource_pb.d.mts +797 -0
- package/dist/tailor-proto/src/tailor/v1/telemetryrouter_pb.d.mts +330 -0
- package/dist/tailor-proto/src/tailor/v1/telemetryrouter_resource_pb.d.mts +183 -0
- package/dist/tailor-proto/src/tailor/v1/workflow_pb.d.mts +842 -0
- package/dist/tailor-proto/src/tailor/v1/workflow_resource_pb.d.mts +276 -0
- package/dist/tailor-proto/src/tailor/v1/workspace_pb.d.mts +2015 -0
- package/dist/tailor-proto/src/tailor/v1/workspace_resource_pb.d.mts +483 -0
- package/dist/{telemetry-BQbbVo2t.mjs → telemetry-CdqJEzkj.mjs} +2 -3
- package/dist/{telemetry-BQbbVo2t.mjs.map → telemetry-CdqJEzkj.mjs.map} +1 -1
- package/dist/telemetry-ClwW5ohF.mjs +3 -0
- package/dist/types/aigateway.generated.d.mts +9 -0
- package/dist/types/app-config.generated.d.mts +4 -0
- package/dist/types/auth-connection.generated.d.mts +20 -0
- package/dist/types/auth.generated.d.mts +150 -0
- package/dist/types/executor.generated.d.mts +177 -0
- package/dist/types/generator-config.generated.d.mts +28 -0
- package/dist/types/helpers.d.mts +39 -0
- package/dist/types/http-adapter.generated.d.mts +17 -0
- package/dist/types/idp.generated.d.mts +584 -0
- package/dist/types/resolver.generated.d.mts +38 -0
- package/dist/types/secrets.generated.d.mts +14 -0
- package/dist/types/staticwebsite.generated.d.mts +10 -0
- package/dist/{types-rj8YJcEe.d.mts → types/tailordb.generated.d.mts} +2 -290
- package/dist/types/workflow.generated.d.mts +12 -0
- package/dist/types-qhFZ8y9B.mjs +4 -0
- package/dist/{types-D4QMmNWh.mjs → types-ywCGpzDZ.mjs} +2 -3
- package/dist/{types-D4QMmNWh.mjs.map → types-ywCGpzDZ.mjs.map} +1 -1
- package/dist/utils/test/index.d.mts +6 -89
- package/dist/utils/test/index.mjs +1 -2
- package/dist/utils/test/index.mjs.map +1 -1
- package/dist/utils/test/mock.d.mts +87 -0
- package/dist/vitest/environment.d.mts +1 -2
- package/dist/vitest/environment.mjs +1 -2
- package/dist/vitest/environment.mjs.map +1 -1
- package/dist/vitest/index.d.mts +4 -392
- package/dist/vitest/index.mjs +4 -5
- package/dist/vitest/index.mjs.map +1 -1
- package/dist/vitest/mock-kysely.d.mts +62 -0
- package/dist/vitest/mock.d.mts +364 -0
- package/dist/vitest/setup.d.mts +1 -2
- package/dist/vitest/setup.mjs +2 -3
- package/dist/vitest/setup.mjs.map +1 -1
- package/dist/{workflow-C8I7shjM.mjs → workflow-DSwnYPPP.mjs} +10 -4
- package/dist/workflow-DSwnYPPP.mjs.map +1 -0
- package/docs/runtime.md +5 -1
- package/docs/services/aigateway.md +14 -0
- package/docs/testing.md +48 -2
- package/package.json +6 -1
- package/dist/application-DmjIKQ-a.mjs.map +0 -1
- package/dist/application-a_ApFuPh.mjs +0 -4
- package/dist/authconnection-CqfaJfrC.d.mts +0 -32
- package/dist/context-CUBwSBq4.d.mts +0 -68
- package/dist/file-BzK8z3X-.d.mts +0 -250
- package/dist/globals-ByrCoDip.mjs.map +0 -1
- package/dist/iconv-kwrmd1U_.d.mts +0 -122
- package/dist/idp-BmYwCXnJ.d.mts +0 -187
- package/dist/index-BDBU7x-i.d.mts +0 -18
- package/dist/index-BSlv_YrG.d.mts +0 -46
- package/dist/index-BzGqTY5x.d.mts +0 -1315
- package/dist/index-D3_Au3wu.d.mts +0 -47
- package/dist/index-DtFRlrww.d.mts +0 -18
- package/dist/index-jeE3UvF2.d.mts +0 -18
- package/dist/mock-wf5qeZLi.mjs.map +0 -1
- package/dist/package-json-wzO6nV9O.mjs +0 -4
- package/dist/runtime-Cd375HD-.mjs.map +0 -1
- package/dist/secretmanager-CKLB3wAQ.d.mts +0 -55
- package/dist/service-CRaa4Joe.mjs +0 -4
- package/dist/service-DDWgZL_L2.mjs.map +0 -1
- package/dist/telemetry-w92bvGdC.mjs +0 -4
- package/dist/types-32lUMToj.mjs +0 -5
- package/dist/types-aqnqTCfO.d.mts +0 -602
- package/dist/workflow-C8I7shjM.mjs.map +0 -1
- package/dist/workflow-CMamswkK.d.mts +0 -96
- package/dist/workflow.generated-Da1zECDw.d.mts +0 -1348
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { PluginAttachment } from "../../../configure/services/tailordb/types.mjs";
|
|
2
|
+
import { IdProvider, OAuth2Client } from "../../../types/auth.generated.mjs";
|
|
3
|
+
import { PluginGeneratedTypeSource, TailorDBType, TypeSourceInfoEntry, UserDefinedTypeSource } from "../../../parser/service/tailordb/types.mjs";
|
|
4
|
+
import { Executor } from "../../../types/executor.generated.mjs";
|
|
5
|
+
import { Resolver } from "../../../types/resolver.generated.mjs";
|
|
6
|
+
//#region src/cli/commands/generate/types.d.ts
|
|
7
|
+
interface GeneratedFile {
|
|
8
|
+
path: string;
|
|
9
|
+
content: string;
|
|
10
|
+
skipIfExists?: boolean;
|
|
11
|
+
executable?: boolean;
|
|
12
|
+
}
|
|
13
|
+
interface GeneratorResult {
|
|
14
|
+
files: GeneratedFile[];
|
|
15
|
+
errors?: string[];
|
|
16
|
+
}
|
|
17
|
+
interface TailorDBNamespaceResult<T> {
|
|
18
|
+
namespace: string;
|
|
19
|
+
types: T;
|
|
20
|
+
}
|
|
21
|
+
interface ResolverNamespaceResult<R> {
|
|
22
|
+
namespace: string;
|
|
23
|
+
resolvers: R;
|
|
24
|
+
}
|
|
25
|
+
interface GeneratorAuthInput {
|
|
26
|
+
name: string;
|
|
27
|
+
userProfile?: {
|
|
28
|
+
typeName: string;
|
|
29
|
+
namespace: string;
|
|
30
|
+
usernameField: string;
|
|
31
|
+
};
|
|
32
|
+
machineUsers?: Record<string, {
|
|
33
|
+
attributes?: Record<string, unknown>;
|
|
34
|
+
}>;
|
|
35
|
+
oauth2Clients?: Record<string, OAuth2Client>;
|
|
36
|
+
idProvider?: IdProvider;
|
|
37
|
+
}
|
|
38
|
+
type DependencyKind = "tailordb" | "resolver" | "executor";
|
|
39
|
+
type ArrayIncludes<T extends readonly unknown[], U> = T extends readonly [infer First, ...infer Rest] ? First extends U ? true : ArrayIncludes<Rest, U> : false;
|
|
40
|
+
type HasDependency<Deps extends readonly DependencyKind[], D extends DependencyKind> = ArrayIncludes<Deps, D>;
|
|
41
|
+
interface TailorDBProcessMethods<T, Ts> {
|
|
42
|
+
processType(args: {
|
|
43
|
+
type: TailorDBType;
|
|
44
|
+
namespace: string;
|
|
45
|
+
source: TypeSourceInfoEntry; /** Plugin attachments configured on this type via .plugin() method */
|
|
46
|
+
plugins: readonly PluginAttachment[];
|
|
47
|
+
}): T | Promise<T>;
|
|
48
|
+
processTailorDBNamespace?(args: {
|
|
49
|
+
namespace: string;
|
|
50
|
+
types: Record<string, T>;
|
|
51
|
+
}): Ts | Promise<Ts>;
|
|
52
|
+
}
|
|
53
|
+
interface ResolverProcessMethods<R, Rs> {
|
|
54
|
+
processResolver(args: {
|
|
55
|
+
resolver: Resolver;
|
|
56
|
+
namespace: string;
|
|
57
|
+
}): R | Promise<R>;
|
|
58
|
+
processResolverNamespace?(args: {
|
|
59
|
+
namespace: string;
|
|
60
|
+
resolvers: Record<string, R>;
|
|
61
|
+
}): Rs | Promise<Rs>;
|
|
62
|
+
}
|
|
63
|
+
interface ExecutorProcessMethods<E> {
|
|
64
|
+
processExecutor(executor: Executor): E | Promise<E>;
|
|
65
|
+
}
|
|
66
|
+
type SelectMethods<Deps extends readonly DependencyKind[], T, R, E, Ts, Rs> = (HasDependency<Deps, "tailordb"> extends true ? TailorDBProcessMethods<T, Ts> : object) & (HasDependency<Deps, "resolver"> extends true ? ResolverProcessMethods<R, Rs> : object) & (HasDependency<Deps, "executor"> extends true ? ExecutorProcessMethods<E> : object);
|
|
67
|
+
interface TailorDBInputPart<Ts> {
|
|
68
|
+
tailordb: TailorDBNamespaceResult<Ts>[];
|
|
69
|
+
}
|
|
70
|
+
interface ResolverInputPart<Rs> {
|
|
71
|
+
resolver: ResolverNamespaceResult<Rs>[];
|
|
72
|
+
}
|
|
73
|
+
interface ExecutorInputPart<E> {
|
|
74
|
+
executor: E[];
|
|
75
|
+
}
|
|
76
|
+
interface AuthPart {
|
|
77
|
+
auth?: GeneratorAuthInput;
|
|
78
|
+
}
|
|
79
|
+
type SelectInput<Deps extends readonly DependencyKind[], Ts, Rs, E> = (HasDependency<Deps, "tailordb"> extends true ? TailorDBInputPart<Ts> : object) & (HasDependency<Deps, "resolver"> extends true ? ResolverInputPart<Rs> : object) & (HasDependency<Deps, "executor"> extends true ? ExecutorInputPart<E> : object) & AuthPart;
|
|
80
|
+
/** Input type for TailorDB-only generators */
|
|
81
|
+
type TailorDBInput<Ts> = TailorDBInputPart<Ts> & AuthPart;
|
|
82
|
+
/** Input type for Resolver-only generators */
|
|
83
|
+
type ResolverInput<Rs> = ResolverInputPart<Rs> & AuthPart;
|
|
84
|
+
/** Input type for Executor-only generators */
|
|
85
|
+
type ExecutorInput<E> = ExecutorInputPart<E> & AuthPart;
|
|
86
|
+
/** Input type for full generators (TailorDB + Resolver + Executor) */
|
|
87
|
+
type FullInput<Ts, Rs, E> = TailorDBInputPart<Ts> & ResolverInputPart<Rs> & ExecutorInputPart<E> & AuthPart;
|
|
88
|
+
/** Arguments type for aggregate method */
|
|
89
|
+
interface AggregateArgs<Input> {
|
|
90
|
+
input: Input;
|
|
91
|
+
baseDir: string;
|
|
92
|
+
configPath: string;
|
|
93
|
+
}
|
|
94
|
+
interface CodeGeneratorCore {
|
|
95
|
+
readonly id: string;
|
|
96
|
+
readonly description: string;
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Generator interface with dependencies-based conditional methods.
|
|
100
|
+
* @template Deps - Dependencies array (e.g., ['tailordb'], ['tailordb', 'resolver'])
|
|
101
|
+
* @template T - Return type of processType
|
|
102
|
+
* @template R - Return type of processResolver
|
|
103
|
+
* @template E - Return type of processExecutor
|
|
104
|
+
* @template Ts - Return type of processTailorDBNamespace (default: Record<string, T>)
|
|
105
|
+
* @template Rs - Return type of processResolverNamespace (default: Record<string, R>)
|
|
106
|
+
*/
|
|
107
|
+
type CodeGenerator<Deps extends readonly DependencyKind[], T = unknown, R = unknown, E = unknown, Ts = Record<string, T>, Rs = Record<string, R>> = CodeGeneratorCore & SelectMethods<Deps, T, R, E, Ts, Rs> & {
|
|
108
|
+
readonly dependencies: Deps;
|
|
109
|
+
aggregate(args: {
|
|
110
|
+
input: SelectInput<Deps, Ts, Rs, E>;
|
|
111
|
+
baseDir: string;
|
|
112
|
+
configPath: string;
|
|
113
|
+
}): GeneratorResult | Promise<GeneratorResult>;
|
|
114
|
+
};
|
|
115
|
+
/** TailorDB-only generator */
|
|
116
|
+
type TailorDBGenerator<T = unknown, Ts = Record<string, T>> = CodeGenerator<readonly ["tailordb"], T, never, never, Ts, never>;
|
|
117
|
+
/** Resolver-only generator */
|
|
118
|
+
type ResolverGenerator<R = unknown, Rs = Record<string, R>> = CodeGenerator<readonly ["resolver"], never, R, never, never, Rs>;
|
|
119
|
+
/** Executor-only generator */
|
|
120
|
+
type ExecutorGenerator<E = unknown> = CodeGenerator<readonly ["executor"], never, never, E, never, never>;
|
|
121
|
+
/** TailorDB + Resolver generator */
|
|
122
|
+
type TailorDBResolverGenerator<T = unknown, R = unknown, Ts = Record<string, T>, Rs = Record<string, R>> = CodeGenerator<readonly ["tailordb", "resolver"], T, R, never, Ts, Rs>;
|
|
123
|
+
/** Full generator (all dependencies) */
|
|
124
|
+
type FullCodeGenerator<T = unknown, R = unknown, E = unknown, Ts = Record<string, T>, Rs = Record<string, R>> = CodeGenerator<readonly ["tailordb", "resolver", "executor"], T, R, E, Ts, Rs>;
|
|
125
|
+
//#endregion
|
|
126
|
+
export { AggregateArgs, CodeGenerator, DependencyKind, ExecutorGenerator, ExecutorInput, ExecutorProcessMethods, FullCodeGenerator, FullInput, GeneratorAuthInput, GeneratorResult, HasDependency, type PluginAttachment, ResolverGenerator, ResolverInput, ResolverNamespaceResult, ResolverProcessMethods, TailorDBGenerator, TailorDBInput, TailorDBNamespaceResult, TailorDBProcessMethods, TailorDBResolverGenerator, type TypeSourceInfoEntry };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Order } from "../../shared/args.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/machineuser/list.d.ts
|
|
5
|
+
interface ListMachineUsersOptions {
|
|
6
|
+
workspaceId?: string;
|
|
7
|
+
profile?: string;
|
|
8
|
+
configPath?: string;
|
|
9
|
+
order?: Order;
|
|
10
|
+
limit?: number;
|
|
11
|
+
}
|
|
12
|
+
interface MachineUserInfo {
|
|
13
|
+
name: string;
|
|
14
|
+
clientId: string;
|
|
15
|
+
clientSecret: string;
|
|
16
|
+
createdAt: Date | null;
|
|
17
|
+
updatedAt: Date | null;
|
|
18
|
+
attributes: Record<string, unknown>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* List machine users for the current application.
|
|
22
|
+
* @param options - Machine user listing options
|
|
23
|
+
* @returns List of machine users
|
|
24
|
+
*/
|
|
25
|
+
declare function listMachineUsers(options?: ListMachineUsersOptions): Promise<MachineUserInfo[]>;
|
|
26
|
+
//#endregion
|
|
27
|
+
export { ListMachineUsersOptions, MachineUserInfo, listMachineUsers };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/cli/commands/machineuser/token.d.ts
|
|
4
|
+
interface GetMachineUserTokenOptions {
|
|
5
|
+
name?: string;
|
|
6
|
+
workspaceId?: string;
|
|
7
|
+
profile?: string;
|
|
8
|
+
configPath?: string;
|
|
9
|
+
}
|
|
10
|
+
interface MachineUserTokenInfo {
|
|
11
|
+
accessToken: string;
|
|
12
|
+
tokenType: string;
|
|
13
|
+
expiresAt: string;
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Get a machine user access token for the current application.
|
|
17
|
+
* @param options - Token retrieval options
|
|
18
|
+
* @returns Machine user token info
|
|
19
|
+
*/
|
|
20
|
+
declare function getMachineUserToken(options: GetMachineUserTokenOptions): Promise<MachineUserTokenInfo>;
|
|
21
|
+
//#endregion
|
|
22
|
+
export { GetMachineUserTokenOptions, MachineUserTokenInfo, getMachineUserToken };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OAuth2ClientCredentials } from "./transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/oauth2client/get.d.ts
|
|
5
|
+
interface GetOAuth2ClientOptions {
|
|
6
|
+
name: string;
|
|
7
|
+
workspaceId?: string;
|
|
8
|
+
profile?: string;
|
|
9
|
+
configPath?: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Get OAuth2 client credentials for the current application.
|
|
13
|
+
* @param options - OAuth2 client lookup options
|
|
14
|
+
* @returns OAuth2 client credentials
|
|
15
|
+
*/
|
|
16
|
+
declare function getOAuth2Client(options: GetOAuth2ClientOptions): Promise<OAuth2ClientCredentials>;
|
|
17
|
+
//#endregion
|
|
18
|
+
export { GetOAuth2ClientOptions, getOAuth2Client };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Order } from "../../shared/args.mjs";
|
|
2
|
+
import { OAuth2ClientInfo } from "./transform.mjs";
|
|
3
|
+
import { z } from "zod";
|
|
4
|
+
|
|
5
|
+
//#region src/cli/commands/oauth2client/list.d.ts
|
|
6
|
+
interface ListOAuth2ClientsOptions {
|
|
7
|
+
workspaceId?: string;
|
|
8
|
+
profile?: string;
|
|
9
|
+
configPath?: string;
|
|
10
|
+
order?: Order;
|
|
11
|
+
limit?: number;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* List OAuth2 clients for the current application.
|
|
15
|
+
* @param options - OAuth2 client listing options
|
|
16
|
+
* @returns List of OAuth2 clients
|
|
17
|
+
*/
|
|
18
|
+
declare function listOAuth2Clients(options?: ListOAuth2ClientsOptions): Promise<OAuth2ClientInfo[]>;
|
|
19
|
+
//#endregion
|
|
20
|
+
export { ListOAuth2ClientsOptions, listOAuth2Clients };
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
//#region src/cli/commands/oauth2client/transform.d.ts
|
|
2
|
+
interface OAuth2ClientInfo {
|
|
3
|
+
name: string;
|
|
4
|
+
description: string;
|
|
5
|
+
clientId: string;
|
|
6
|
+
grantTypes: string[];
|
|
7
|
+
redirectUris: string[];
|
|
8
|
+
createdAt: Date | null;
|
|
9
|
+
}
|
|
10
|
+
interface OAuth2ClientCredentials {
|
|
11
|
+
name: string;
|
|
12
|
+
description: string;
|
|
13
|
+
clientId: string;
|
|
14
|
+
clientSecret: string;
|
|
15
|
+
grantTypes: string[];
|
|
16
|
+
redirectUris: string[];
|
|
17
|
+
createdAt: Date | null;
|
|
18
|
+
}
|
|
19
|
+
//#endregion
|
|
20
|
+
export { OAuth2ClientCredentials, OAuth2ClientInfo };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FolderInfo } from "../transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/organization/folder/create.d.ts
|
|
5
|
+
declare const createFolderOptionsSchema: z.ZodObject<{
|
|
6
|
+
organizationId: z.ZodUUID;
|
|
7
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
8
|
+
name: z.ZodString;
|
|
9
|
+
}, z.core.$strip>;
|
|
10
|
+
type CreateFolderOptions = z.input<typeof createFolderOptionsSchema>;
|
|
11
|
+
/**
|
|
12
|
+
* Create a new folder in an organization.
|
|
13
|
+
* @param options - Folder creation options
|
|
14
|
+
* @returns Created folder details
|
|
15
|
+
*/
|
|
16
|
+
declare function createFolder(options: CreateFolderOptions): Promise<FolderInfo>;
|
|
17
|
+
//#endregion
|
|
18
|
+
export { CreateFolderOptions, createFolder };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/cli/commands/organization/folder/delete.d.ts
|
|
4
|
+
declare const deleteFolderOptionsSchema: z.ZodObject<{
|
|
5
|
+
organizationId: z.ZodUUID;
|
|
6
|
+
folderId: z.ZodUUID;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
type DeleteFolderOptions = z.input<typeof deleteFolderOptionsSchema>;
|
|
9
|
+
/**
|
|
10
|
+
* Delete a folder from an organization.
|
|
11
|
+
* @param options - Folder deletion options
|
|
12
|
+
* @returns Promise that resolves when deletion completes
|
|
13
|
+
*/
|
|
14
|
+
declare function deleteFolder(options: DeleteFolderOptions): Promise<void>;
|
|
15
|
+
//#endregion
|
|
16
|
+
export { DeleteFolderOptions, deleteFolder };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FolderInfo } from "../transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/organization/folder/get.d.ts
|
|
5
|
+
declare const getFolderOptionsSchema: z.ZodObject<{
|
|
6
|
+
organizationId: z.ZodUUID;
|
|
7
|
+
folderId: z.ZodUUID;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
type GetFolderOptions = z.input<typeof getFolderOptionsSchema>;
|
|
10
|
+
/**
|
|
11
|
+
* Get detailed information about a folder.
|
|
12
|
+
* @param options - Folder get options
|
|
13
|
+
* @returns Folder details
|
|
14
|
+
*/
|
|
15
|
+
declare function getFolder(options: GetFolderOptions): Promise<FolderInfo>;
|
|
16
|
+
//#endregion
|
|
17
|
+
export { GetFolderOptions, getFolder };
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { FolderListInfo } from "../transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/organization/folder/list.d.ts
|
|
5
|
+
declare const listFoldersOptionsSchema: z.ZodObject<{
|
|
6
|
+
organizationId: z.ZodUUID;
|
|
7
|
+
parentFolderId: z.ZodOptional<z.ZodString>;
|
|
8
|
+
order: z.ZodOptional<z.ZodEnum<{
|
|
9
|
+
asc: "asc";
|
|
10
|
+
desc: "desc";
|
|
11
|
+
}>>;
|
|
12
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
13
|
+
}, z.core.$strip>;
|
|
14
|
+
type ListFoldersOptions = z.input<typeof listFoldersOptionsSchema>;
|
|
15
|
+
/**
|
|
16
|
+
* List folders in an organization.
|
|
17
|
+
* @param options - Folder listing options
|
|
18
|
+
* @returns List of folders
|
|
19
|
+
*/
|
|
20
|
+
declare function listFolders(options: ListFoldersOptions): Promise<FolderListInfo[]>;
|
|
21
|
+
//#endregion
|
|
22
|
+
export { ListFoldersOptions, listFolders };
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { FolderInfo } from "../transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/organization/folder/update.d.ts
|
|
5
|
+
declare const updateFolderOptionsSchema: z.ZodObject<{
|
|
6
|
+
organizationId: z.ZodUUID;
|
|
7
|
+
folderId: z.ZodUUID;
|
|
8
|
+
name: z.ZodString;
|
|
9
|
+
}, z.core.$strip>;
|
|
10
|
+
type UpdateFolderOptions = z.input<typeof updateFolderOptionsSchema>;
|
|
11
|
+
/**
|
|
12
|
+
* Update a folder's name.
|
|
13
|
+
* @param options - Folder update options
|
|
14
|
+
* @returns Updated folder details
|
|
15
|
+
*/
|
|
16
|
+
declare function updateFolder(options: UpdateFolderOptions): Promise<FolderInfo>;
|
|
17
|
+
//#endregion
|
|
18
|
+
export { UpdateFolderOptions, updateFolder };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { OrganizationInfo } from "./transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/organization/get.d.ts
|
|
5
|
+
declare const getOrganizationOptionsSchema: z.ZodObject<{
|
|
6
|
+
organizationId: z.ZodUUID;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
type GetOrganizationOptions = z.input<typeof getOrganizationOptionsSchema>;
|
|
9
|
+
/**
|
|
10
|
+
* Get detailed information about an organization.
|
|
11
|
+
* @param options - Organization get options
|
|
12
|
+
* @returns Organization details
|
|
13
|
+
*/
|
|
14
|
+
declare function getOrganization(options: GetOrganizationOptions): Promise<OrganizationInfo>;
|
|
15
|
+
//#endregion
|
|
16
|
+
export { GetOrganizationOptions, getOrganization };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { UserOrganizationInfo } from "./transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/organization/list.d.ts
|
|
5
|
+
interface ListOrganizationsOptions {
|
|
6
|
+
limit?: number;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* List organizations the current user belongs to.
|
|
10
|
+
* @param options - Organization listing options
|
|
11
|
+
* @returns List of user organizations
|
|
12
|
+
*/
|
|
13
|
+
declare function listOrganizations(options?: ListOrganizationsOptions): Promise<UserOrganizationInfo[]>;
|
|
14
|
+
//#endregion
|
|
15
|
+
export { ListOrganizationsOptions, listOrganizations };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
//#region src/cli/commands/organization/transform.d.ts
|
|
2
|
+
interface UserOrganizationInfo {
|
|
3
|
+
organizationId: string;
|
|
4
|
+
organizationName: string;
|
|
5
|
+
rootFolderId: string;
|
|
6
|
+
rootFolderName: string;
|
|
7
|
+
displayName: string;
|
|
8
|
+
}
|
|
9
|
+
interface OrganizationInfo {
|
|
10
|
+
id: string;
|
|
11
|
+
name: string;
|
|
12
|
+
createdAt: Date | null;
|
|
13
|
+
updatedAt: Date | null;
|
|
14
|
+
}
|
|
15
|
+
interface FolderListInfo {
|
|
16
|
+
id: string;
|
|
17
|
+
name: string;
|
|
18
|
+
organizationId: string;
|
|
19
|
+
parentFolderId: string;
|
|
20
|
+
hasChildren: boolean;
|
|
21
|
+
createdAt: Date | null;
|
|
22
|
+
}
|
|
23
|
+
interface FolderInfo extends FolderListInfo {
|
|
24
|
+
updatedAt: Date | null;
|
|
25
|
+
}
|
|
26
|
+
//#endregion
|
|
27
|
+
export { FolderInfo, FolderListInfo, OrganizationInfo, UserOrganizationInfo };
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/cli/commands/organization/tree.d.ts
|
|
4
|
+
interface OrganizationTreeOptions {
|
|
5
|
+
organizationId?: string;
|
|
6
|
+
depth?: number;
|
|
7
|
+
}
|
|
8
|
+
interface OrganizationTreeJson {
|
|
9
|
+
organizationId: string;
|
|
10
|
+
organizationName: string;
|
|
11
|
+
folders: FolderTreeJson[];
|
|
12
|
+
}
|
|
13
|
+
interface FolderTreeJson {
|
|
14
|
+
id: string;
|
|
15
|
+
name: string;
|
|
16
|
+
children: FolderTreeJson[];
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Display a tree view of organizations and their folder hierarchy.
|
|
20
|
+
* @param options - Tree display options
|
|
21
|
+
* @returns Organization tree as structured data
|
|
22
|
+
*/
|
|
23
|
+
declare function organizationTree(options?: OrganizationTreeOptions): Promise<OrganizationTreeJson[]>;
|
|
24
|
+
//#endregion
|
|
25
|
+
export { OrganizationTreeOptions, organizationTree };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { OrganizationInfo } from "./transform.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
|
|
4
|
+
//#region src/cli/commands/organization/update.d.ts
|
|
5
|
+
declare const updateOrganizationOptionsSchema: z.ZodObject<{
|
|
6
|
+
organizationId: z.ZodUUID;
|
|
7
|
+
name: z.ZodString;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
type UpdateOrganizationOptions = z.input<typeof updateOrganizationOptionsSchema>;
|
|
10
|
+
/**
|
|
11
|
+
* Update an organization's name.
|
|
12
|
+
* @param options - Organization update options
|
|
13
|
+
* @returns Updated organization details
|
|
14
|
+
*/
|
|
15
|
+
declare function updateOrganization(options: UpdateOrganizationOptions): Promise<OrganizationInfo>;
|
|
16
|
+
//#endregion
|
|
17
|
+
export { UpdateOrganizationOptions, updateOrganization };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/cli/commands/remove.d.ts
|
|
4
|
+
interface RemoveOptions {
|
|
5
|
+
workspaceId?: string;
|
|
6
|
+
profile?: string;
|
|
7
|
+
configPath?: string;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Remove all resources managed by the current application.
|
|
11
|
+
* @param options - Remove options
|
|
12
|
+
* @returns Promise that resolves when removal completes
|
|
13
|
+
*/
|
|
14
|
+
declare function remove(options?: RemoveOptions): Promise<void>;
|
|
15
|
+
//#endregion
|
|
16
|
+
export { RemoveOptions, remove };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/cli/commands/show.d.ts
|
|
4
|
+
interface ShowOptions {
|
|
5
|
+
workspaceId?: string;
|
|
6
|
+
profile?: string;
|
|
7
|
+
configPath?: string;
|
|
8
|
+
}
|
|
9
|
+
interface WorkspaceInfo {
|
|
10
|
+
workspaceId: string;
|
|
11
|
+
workspaceName: string;
|
|
12
|
+
workspaceFolderName?: string;
|
|
13
|
+
workspaceRegion?: string;
|
|
14
|
+
}
|
|
15
|
+
interface ApplicationInfo {
|
|
16
|
+
name: string;
|
|
17
|
+
domain: string;
|
|
18
|
+
url: string;
|
|
19
|
+
auth: string;
|
|
20
|
+
cors: string[];
|
|
21
|
+
allowedIpAddresses: string[];
|
|
22
|
+
disableIntrospection: boolean;
|
|
23
|
+
createdAt: Date | null;
|
|
24
|
+
updatedAt: Date | null;
|
|
25
|
+
}
|
|
26
|
+
interface ShowInfo extends ApplicationInfo, WorkspaceInfo {}
|
|
27
|
+
/**
|
|
28
|
+
* Show applied application information for the current workspace.
|
|
29
|
+
* @param options - Show options
|
|
30
|
+
* @returns Application information
|
|
31
|
+
*/
|
|
32
|
+
declare function show(options?: ShowOptions): Promise<ShowInfo>;
|
|
33
|
+
//#endregion
|
|
34
|
+
export { ApplicationInfo, ShowInfo, ShowOptions, WorkspaceInfo, show };
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
//#region src/cli/commands/tailordb/migrate/bundler.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* Migration script bundler for TailorDB migrations
|
|
4
|
+
*
|
|
5
|
+
* Bundles migration scripts to be executed via TestExecScript API
|
|
6
|
+
*/
|
|
7
|
+
interface MigrationBundleResult {
|
|
8
|
+
namespace: string;
|
|
9
|
+
migrationNumber: number;
|
|
10
|
+
bundledCode: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Bundle a single migration script
|
|
14
|
+
*
|
|
15
|
+
* Creates an entry that:
|
|
16
|
+
* 1. Imports the migration script's main function
|
|
17
|
+
* 2. Defines getDB() function inline
|
|
18
|
+
* 3. Wraps migration in a transaction using getDB()
|
|
19
|
+
* 4. Exports as main() for TestExecScript
|
|
20
|
+
* @param {string} sourceFile - Path to the migration script file
|
|
21
|
+
* @param {string} namespace - TailorDB namespace
|
|
22
|
+
* @param {number} migrationNumber - Migration number
|
|
23
|
+
* @param {Record<string, string | number | boolean>} env - Environment variables to inject into the migration context
|
|
24
|
+
* @returns {Promise<MigrationBundleResult>} Bundled migration result
|
|
25
|
+
*/
|
|
26
|
+
declare function bundleMigrationScript(sourceFile: string, namespace: string, migrationNumber: number, env?: Record<string, string | number | boolean>): Promise<MigrationBundleResult>;
|
|
27
|
+
//#endregion
|
|
28
|
+
export { MigrationBundleResult, bundleMigrationScript };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AppConfig } from "../../../../configure/config/types.mjs";
|
|
2
|
+
|
|
3
|
+
//#region src/cli/commands/tailordb/migrate/config.d.ts
|
|
4
|
+
/**
|
|
5
|
+
* Namespace with migrations configuration
|
|
6
|
+
*/
|
|
7
|
+
interface NamespaceWithMigrations {
|
|
8
|
+
namespace: string;
|
|
9
|
+
migrationsDir: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Get namespaces that have migrations configured
|
|
13
|
+
* @param {AppConfig} config - Application configuration
|
|
14
|
+
* @param {string} configDir - Configuration directory path
|
|
15
|
+
* @returns {NamespaceWithMigrations[]} Array of namespaces with migrations configured
|
|
16
|
+
*/
|
|
17
|
+
declare function getNamespacesWithMigrations(config: AppConfig, configDir: string): NamespaceWithMigrations[];
|
|
18
|
+
//#endregion
|
|
19
|
+
export { NamespaceWithMigrations, getNamespacesWithMigrations };
|