@tailor-platform/sdk 1.71.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 +46 -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 +801 -206
- 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 +124 -25
- 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/cli/setup.md +129 -19
- package/docs/cli-reference.md +9 -4
- 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,1273 @@
|
|
|
1
|
+
import { CreateAIGatewayRequestSchema, CreateAIGatewayResponseSchema, DeleteAIGatewayRequestSchema, DeleteAIGatewayResponseSchema, GetAIGatewayRequestSchema, GetAIGatewayResponseSchema, ListAIGatewaysRequestSchema, ListAIGatewaysResponseSchema, UpdateAIGatewayRequestSchema, UpdateAIGatewayResponseSchema } from "../../tailor-proto/src/tailor/v1/aigateway_pb.mjs";
|
|
2
|
+
import { AddOrganizationTeamMemberRequestSchema, AddOrganizationTeamMemberResponseSchema, CreateOrganizationFolderRequestSchema, CreateOrganizationFolderResponseSchema, CreateOrganizationTeamRequestSchema, CreateOrganizationTeamResponseSchema, CreateWorkspaceRequestSchema, CreateWorkspaceResponseSchema, DeleteOrganizationFolderIPRestrictionRequestSchema, DeleteOrganizationFolderIPRestrictionResponseSchema, DeleteOrganizationFolderRequestSchema, DeleteOrganizationFolderResponseSchema, DeleteOrganizationIPRestrictionRequestSchema, DeleteOrganizationIPRestrictionResponseSchema, DeleteOrganizationTeamRequestSchema, DeleteOrganizationTeamResponseSchema, DeleteWorkspaceRequestSchema, DeleteWorkspaceResponseSchema, GetOrganizationAccessRequestSchema, GetOrganizationAccessResponseSchema, GetOrganizationFolderAccessRequestSchema, GetOrganizationFolderAccessResponseSchema, GetOrganizationFolderIPRestrictionRequestSchema, GetOrganizationFolderIPRestrictionResponseSchema, GetOrganizationFolderRequestSchema, GetOrganizationFolderResponseSchema, GetOrganizationIPRestrictionRequestSchema, GetOrganizationIPRestrictionResponseSchema, GetOrganizationRequestSchema, GetOrganizationResponseSchema, GetOrganizationTeamMemberRequestSchema, GetOrganizationTeamMemberResponseSchema, GetOrganizationTeamRequestSchema, GetOrganizationTeamResponseSchema, GetPlatformAccountPlanRequestSchema, GetPlatformAccountPlanResponseSchema, GetWorkspacePlatformUserRequestSchema, GetWorkspacePlatformUserResponseSchema, GetWorkspaceRequestSchema, GetWorkspaceResponseSchema, GetWorkspaceRoleRequestSchema, GetWorkspaceRoleResponseSchema, GrantOrganizationAccessRequestSchema, GrantOrganizationAccessResponseSchema, GrantOrganizationFolderAccessRequestSchema, GrantOrganizationFolderAccessResponseSchema, InviteWorkspacePlatformUserRequestSchema, InviteWorkspacePlatformUserResponseSchema, ListAvailableWorkspacePlatformUserRolesRequestSchema, ListAvailableWorkspacePlatformUserRolesResponseSchema, ListAvailableWorkspaceRegionsRequestSchema, ListAvailableWorkspaceRegionsResponseSchema, ListOrganizationAccessesRequestSchema, ListOrganizationAccessesResponseSchema, ListOrganizationFolderAccessesRequestSchema, ListOrganizationFolderAccessesResponseSchema, ListOrganizationFoldersRequestSchema, ListOrganizationFoldersResponseSchema, ListOrganizationTeamMembersRequestSchema, ListOrganizationTeamMembersResponseSchema, ListOrganizationTeamsRequestSchema, ListOrganizationTeamsResponseSchema, ListOrganizationWorkspacesRequestSchema, ListOrganizationWorkspacesResponseSchema, ListOrganizationsRequestSchema, ListOrganizationsResponseSchema, ListUserOrganizationsRequestSchema, ListUserOrganizationsResponseSchema, ListWorkspacePlatformUsersRequestSchema, ListWorkspacePlatformUsersResponseSchema, ListWorkspacesRequestSchema, ListWorkspacesResponseSchema, RemoveOrganizationTeamMemberRequestSchema, RemoveOrganizationTeamMemberResponseSchema, RemoveWorkspacePlatformUserRequestSchema, RemoveWorkspacePlatformUserResponseSchema, RestoreWorkspaceRequestSchema, RestoreWorkspaceResponseSchema, RevokeOrganizationAccessRequestSchema, RevokeOrganizationAccessResponseSchema, RevokeOrganizationFolderAccessRequestSchema, RevokeOrganizationFolderAccessResponseSchema, UpdateOrganizationAccessRequestSchema, UpdateOrganizationAccessResponseSchema, UpdateOrganizationFolderAccessRequestSchema, UpdateOrganizationFolderAccessResponseSchema, UpdateOrganizationFolderRequestSchema, UpdateOrganizationFolderResponseSchema, UpdateOrganizationRequestSchema, UpdateOrganizationResponseSchema, UpdateOrganizationTeamMemberRequestSchema, UpdateOrganizationTeamMemberResponseSchema, UpdateOrganizationTeamRequestSchema, UpdateOrganizationTeamResponseSchema, UpdateWorkspacePlatformUserRequestSchema, UpdateWorkspacePlatformUserResponseSchema, UpdateWorkspaceRequestSchema, UpdateWorkspaceResponseSchema, UpsertOrganizationFolderIPRestrictionRequestSchema, UpsertOrganizationFolderIPRestrictionResponseSchema, UpsertOrganizationIPRestrictionRequestSchema, UpsertOrganizationIPRestrictionResponseSchema } from "../../tailor-proto/src/tailor/v1/workspace_pb.mjs";
|
|
3
|
+
import { CreateApplicationRequestSchema, CreateApplicationResponseSchema, DeleteApplicationRequestSchema, DeleteApplicationResponseSchema, GetApplicationRequestSchema, GetApplicationResponseSchema, GetApplicationSchemaHealthRequestSchema, GetApplicationSchemaHealthResponseSchema, ListApplicationsRequestSchema, ListApplicationsResponseSchema, UpdateApplicationRequestSchema, UpdateApplicationResponseSchema } from "../../tailor-proto/src/tailor/v1/application_pb.mjs";
|
|
4
|
+
import { ComposeTailorDBSDLRequestSchema, ComposeTailorDBSDLResponseSchema, CreateTailorDBGQLPermissionRequestSchema, CreateTailorDBGQLPermissionResponseSchema, CreateTailorDBServiceRequestSchema, CreateTailorDBServiceResponseSchema, CreateTailorDBTypeRequestSchema, CreateTailorDBTypeResponseSchema, DeleteTailorDBGQLPermissionRequestSchema, DeleteTailorDBGQLPermissionResponseSchema, DeleteTailorDBServiceRequestSchema, DeleteTailorDBServiceResponseSchema, DeleteTailorDBTypeRequestSchema, DeleteTailorDBTypeResponseSchema, GetTailorDBGQLPermissionRequestSchema, GetTailorDBGQLPermissionResponseSchema, GetTailorDBServiceRequestSchema, GetTailorDBServiceResponseSchema, GetTailorDBTypeRequestSchema, GetTailorDBTypeResponseSchema, ListTailorDBGQLPermissionsRequestSchema, ListTailorDBGQLPermissionsResponseSchema, ListTailorDBServicesRequestSchema, ListTailorDBServicesResponseSchema, ListTailorDBTypesRequestSchema, ListTailorDBTypesResponseSchema, TruncateTailorDBTypeRequestSchema, TruncateTailorDBTypeResponseSchema, TruncateTailorDBTypesRequestSchema, TruncateTailorDBTypesResponseSchema, UpdateTailorDBGQLPermissionRequestSchema, UpdateTailorDBGQLPermissionResponseSchema, UpdateTailorDBServiceRequestSchema, UpdateTailorDBServiceResponseSchema, UpdateTailorDBTypeRequestSchema, UpdateTailorDBTypeResponseSchema } from "../../tailor-proto/src/tailor/v1/tailordb_pb.mjs";
|
|
5
|
+
import { ComposePipelineSDLRequestSchema, ComposePipelineSDLResponseSchema, CreatePipelineResolverRequestSchema, CreatePipelineResolverResponseSchema, CreatePipelineServiceRequestSchema, CreatePipelineServiceResponseSchema, DeletePipelineResolverRequestSchema, DeletePipelineResolverResponseSchema, DeletePipelineServiceRequestSchema, DeletePipelineServiceResponseSchema, GetPipelineResolverExecutionResultRequestSchema, GetPipelineResolverExecutionResultResponseSchema, GetPipelineResolverRequestSchema, GetPipelineResolverResponseSchema, GetPipelineServiceRequestSchema, GetPipelineServiceResponseSchema, ListPipelineResolverExecutionResultsRequestSchema, ListPipelineResolverExecutionResultsResponseSchema, ListPipelineResolversRequestSchema, ListPipelineResolversResponseSchema, ListPipelineServicesRequestSchema, ListPipelineServicesResponseSchema, RestartPipelineResolverRequestSchema, RestartPipelineResolverResponseSchema, UpdatePipelineResolverRequestSchema, UpdatePipelineResolverResponseSchema, UpdatePipelineServiceRequestSchema, UpdatePipelineServiceResponseSchema } from "../../tailor-proto/src/tailor/v1/pipeline_pb.mjs";
|
|
6
|
+
import { CreateStateflowServiceRequestSchema, CreateStateflowServiceResponseSchema, DeleteStateflowServiceRequestSchema, DeleteStateflowServiceResponseSchema, GetStateflowServiceRequestSchema, GetStateflowServiceResponseSchema, ListStateflowServicesRequestSchema, ListStateflowServicesResponseSchema, UpdateStateflowServiceRequestSchema, UpdateStateflowServiceResponseSchema } from "../../tailor-proto/src/tailor/v1/stateflow_pb.mjs";
|
|
7
|
+
import { CreateExecutorExecutorRequestSchema, CreateExecutorExecutorResponseSchema, DeleteExecutorExecutorRequestSchema, DeleteExecutorExecutorResponseSchema, GetExecutorExecutorRequestSchema, GetExecutorExecutorResponseSchema, GetExecutorIncomingWebhookRequestSchema, GetExecutorIncomingWebhookResponseSchema, GetExecutorJobRequestSchema, GetExecutorJobResponseSchema, ListExecutorExecutorsRequestSchema, ListExecutorExecutorsResponseSchema, ListExecutorIncomingWebhooksRequestSchema, ListExecutorIncomingWebhooksResponseSchema, ListExecutorJobAttemptsRequestSchema, ListExecutorJobAttemptsResponseSchema, ListExecutorJobsRequestSchema, ListExecutorJobsResponseSchema, TriggerExecutorRequestSchema, TriggerExecutorResponseSchema, UpdateExecutorExecutorRequestSchema, UpdateExecutorExecutorResponseSchema } from "../../tailor-proto/src/tailor/v1/executor_pb.mjs";
|
|
8
|
+
import { CreateSecretManagerSecretRequestSchema, CreateSecretManagerSecretResponseSchema, CreateSecretManagerVaultRequestSchema, CreateSecretManagerVaultResponseSchema, DeleteSecretManagerSecretRequestSchema, DeleteSecretManagerSecretResponseSchema, DeleteSecretManagerVaultRequestSchema, DeleteSecretManagerVaultResponseSchema, GetSecretManagerSecretRequestSchema, GetSecretManagerSecretResponseSchema, GetSecretManagerVaultRequestSchema, GetSecretManagerVaultResponseSchema, ListSecretManagerSecretsRequestSchema, ListSecretManagerSecretsResponseSchema, ListSecretManagerVaultsRequestSchema, ListSecretManagerVaultsResponseSchema, UpdateSecretManagerSecretRequestSchema, UpdateSecretManagerSecretResponseSchema } from "../../tailor-proto/src/tailor/v1/secret_manager_pb.mjs";
|
|
9
|
+
import { CreateAuthConnectionRequestSchema, CreateAuthConnectionResponseSchema, CreateAuthHookRequestSchema, CreateAuthHookResponseSchema, CreateAuthIDPConfigRequestSchema, CreateAuthIDPConfigResponseSchema, CreateAuthMachineUserRequestSchema, CreateAuthMachineUserResponseSchema, CreateAuthOAuth2ClientRequestSchema, CreateAuthOAuth2ClientResponseSchema, CreateAuthSCIMConfigRequestSchema, CreateAuthSCIMConfigResponseSchema, CreateAuthSCIMResourceRequestSchema, CreateAuthSCIMResourceResponseSchema, CreateAuthServiceRequestSchema, CreateAuthServiceResponseSchema, CreateControlplaneMachineUserRequestSchema, CreateControlplaneMachineUserResponseSchema, CreatePersonalAccessTokenRequestSchema, CreatePersonalAccessTokenResponseSchema, CreateTenantConfigRequestSchema, CreateTenantConfigResponseSchema, CreateUserProfileConfigRequestSchema, CreateUserProfileConfigResponseSchema, DeleteAuthConnectionRequestSchema, DeleteAuthConnectionResponseSchema, DeleteAuthHookRequestSchema, DeleteAuthHookResponseSchema, DeleteAuthIDPConfigRequestSchema, DeleteAuthIDPConfigResponseSchema, DeleteAuthMachineUserRequestSchema, DeleteAuthMachineUserResponseSchema, DeleteAuthOAuth2ClientRequestSchema, DeleteAuthOAuth2ClientResponseSchema, DeleteAuthSCIMConfigRequestSchema, DeleteAuthSCIMConfigResponseSchema, DeleteAuthSCIMResourceRequestSchema, DeleteAuthSCIMResourceResponseSchema, DeleteAuthServiceRequestSchema, DeleteAuthServiceResponseSchema, DeleteControlplaneMachineUserRequestSchema, DeleteControlplaneMachineUserResponseSchema, DeletePersonalAccessTokenRequestSchema, DeletePersonalAccessTokenResponseSchema, DeleteTenantConfigRequestSchema, DeleteTenantConfigResponseSchema, DeleteUserProfileConfigRequestSchema, DeleteUserProfileConfigResponseSchema, ExchangeAuthConnectionAuthorizationCodeRequestSchema, ExchangeAuthConnectionAuthorizationCodeResponseSchema, GetAuthHookRequestSchema, GetAuthHookResponseSchema, GetAuthIDPConfigRequestSchema, GetAuthIDPConfigResponseSchema, GetAuthMachineUserRequestSchema, GetAuthMachineUserResponseSchema, GetAuthOAuth2ClientRequestSchema, GetAuthOAuth2ClientResponseSchema, GetAuthSCIMConfigRequestSchema, GetAuthSCIMConfigResponseSchema, GetAuthSCIMResourceRequestSchema, GetAuthSCIMResourceResponseSchema, GetAuthSCIMResourcesRequestSchema, GetAuthSCIMResourcesResponseSchema, GetAuthServiceRequestSchema, GetAuthServiceResponseSchema, GetControlplaneMachineUserByNameRequestSchema, GetControlplaneMachineUserByNameResponseSchema, GetControlplaneMachineUserRequestSchema, GetControlplaneMachineUserResponseSchema, GetTenantConfigRequestSchema, GetTenantConfigResponseSchema, GetUserProfileConfigRequestSchema, GetUserProfileConfigResponseSchema, ListAuthConnectionsRequestSchema, ListAuthConnectionsResponseSchema, ListAuthIDPConfigsRequestSchema, ListAuthIDPConfigsResponseSchema, ListAuthMachineUsersRequestSchema, ListAuthMachineUsersResponseSchema, ListAuthOAuth2ClientsRequestSchema, ListAuthOAuth2ClientsResponseSchema, ListAuthServicesRequestSchema, ListAuthServicesResponseSchema, ListControlplaneMachineUsersRequestSchema, ListControlplaneMachineUsersResponseSchema, ListPersonalAccessTokensRequestSchema, ListPersonalAccessTokensResponseSchema, RegisterAuthConnectionSessionRequestSchema, RegisterAuthConnectionSessionResponseSchema, RevokeAuthConnectionRequestSchema, RevokeAuthConnectionResponseSchema, UpdateAuthConnectionRequestSchema, UpdateAuthConnectionResponseSchema, UpdateAuthHookRequestSchema, UpdateAuthHookResponseSchema, UpdateAuthIDPConfigRequestSchema, UpdateAuthIDPConfigResponseSchema, UpdateAuthMachineUserRequestSchema, UpdateAuthMachineUserResponseSchema, UpdateAuthOAuth2ClientRequestSchema, UpdateAuthOAuth2ClientResponseSchema, UpdateAuthSCIMConfigRequestSchema, UpdateAuthSCIMConfigResponseSchema, UpdateAuthSCIMResourceRequestSchema, UpdateAuthSCIMResourceResponseSchema, UpdateAuthServiceRequestSchema, UpdateAuthServiceResponseSchema, UpdateControlplaneMachineUserRequestSchema, UpdateControlplaneMachineUserResponseSchema, UpdateTenantConfigRequestSchema, UpdateTenantConfigResponseSchema, UpdateUserProfileConfigRequestSchema, UpdateUserProfileConfigResponseSchema } from "../../tailor-proto/src/tailor/v1/auth_pb.mjs";
|
|
10
|
+
import { ListControlplaneActivityLogsRequestSchema, ListControlplaneActivityLogsResponseSchema, ListDataplaneEventsRequestSchema, ListDataplaneEventsResponseSchema } from "../../tailor-proto/src/tailor/v1/events_pb.mjs";
|
|
11
|
+
import { GetFunctionExecutionRequestSchema, GetFunctionExecutionResponseSchema, ListFunctionExecutionsRequestSchema, ListFunctionExecutionsResponseSchema, TestExecScriptRequestSchema, TestExecScriptResponseSchema } from "../../tailor-proto/src/tailor/v1/function_pb.mjs";
|
|
12
|
+
import { CreateFunctionRegistryRequestSchema, CreateFunctionRegistryResponseSchema, DeleteFunctionRegistryRequestSchema, DeleteFunctionRegistryResponseSchema, DownloadFunctionRegistryScriptRequestSchema, DownloadFunctionRegistryScriptResponseSchema, GetFunctionRegistryRequestSchema, GetFunctionRegistryResponseSchema, ListFunctionRegistriesRequestSchema, ListFunctionRegistriesResponseSchema, UpdateFunctionRegistryRequestSchema, UpdateFunctionRegistryResponseSchema } from "../../tailor-proto/src/tailor/v1/function_registry_pb.mjs";
|
|
13
|
+
import { ListMeterAITokenUsagesRequestSchema, ListMeterAITokenUsagesResponseSchema, ListMeterEventCountsRequestSchema, ListMeterEventCountsResponseSchema, ListMeterExecutionCountsRequestSchema, ListMeterExecutionCountsResponseSchema, ListMeterRequestCountsRequestSchema, ListMeterRequestCountsResponseSchema } from "../../tailor-proto/src/tailor/v1/meter_pb.mjs";
|
|
14
|
+
import { CreateIdPClientRequestSchema, CreateIdPClientResponseSchema, CreateIdPServiceRequestSchema, CreateIdPServiceResponseSchema, DeleteIdPClientRequestSchema, DeleteIdPClientResponseSchema, DeleteIdPServiceRequestSchema, DeleteIdPServiceResponseSchema, GetIdPClientRequestSchema, GetIdPClientResponseSchema, GetIdPServiceRequestSchema, GetIdPServiceResponseSchema, ListIdPClientsRequestSchema, ListIdPClientsResponseSchema, ListIdPServicesRequestSchema, ListIdPServicesResponseSchema, UpdateIdPServiceRequestSchema, UpdateIdPServiceResponseSchema } from "../../tailor-proto/src/tailor/v1/idp_pb.mjs";
|
|
15
|
+
import { AddCustomDomainRequestSchema, AddCustomDomainResponseSchema, CreateDeploymentRequestSchema, CreateDeploymentResponseSchema, CreateStaticWebsiteRequestSchema, CreateStaticWebsiteResponseSchema, DeleteStaticWebsiteRequestSchema, DeleteStaticWebsiteResponseSchema, GetCustomDomainRequestSchema, GetCustomDomainResponseSchema, GetStaticWebsiteRequestSchema, GetStaticWebsiteResponseSchema, ListCustomDomainsRequestSchema, ListCustomDomainsResponseSchema, ListStaticWebsitesRequestSchema, ListStaticWebsitesResponseSchema, PublishDeploymentRequestSchema, PublishDeploymentResponseSchema, RemoveCustomDomainRequestSchema, RemoveCustomDomainResponseSchema, UpdateStaticWebsiteRequestSchema, UpdateStaticWebsiteResponseSchema, UploadFileRequestSchema, UploadFileResponseSchema } from "../../tailor-proto/src/tailor/v1/staticwebsite_pb.mjs";
|
|
16
|
+
import { CreateWorkflowJobFunctionExecutionPolicyRequestSchema, CreateWorkflowJobFunctionExecutionPolicyResponseSchema, CreateWorkflowJobFunctionRequestSchema, CreateWorkflowJobFunctionResponseSchema, CreateWorkflowRequestSchema, CreateWorkflowResponseSchema, DeleteWorkflowJobFunctionExecutionPolicyRequestSchema, DeleteWorkflowJobFunctionExecutionPolicyResponseSchema, DeleteWorkflowJobFunctionRequestSchema, DeleteWorkflowJobFunctionResponseSchema, DeleteWorkflowRequestSchema, DeleteWorkflowResponseSchema, GetWorkflowByNameRequestSchema, GetWorkflowByNameResponseSchema, GetWorkflowExecutionRequestSchema, GetWorkflowExecutionResponseSchema, GetWorkflowJobFunctionByNameRequestSchema, GetWorkflowJobFunctionByNameResponseSchema, GetWorkflowJobFunctionExecutionPolicyByKeyRequestSchema, GetWorkflowJobFunctionExecutionPolicyByKeyResponseSchema, GetWorkflowJobFunctionExecutionPolicyRequestSchema, GetWorkflowJobFunctionExecutionPolicyResponseSchema, GetWorkflowJobFunctionRequestSchema, GetWorkflowJobFunctionResponseSchema, GetWorkflowRequestSchema, GetWorkflowResponseSchema, ListWorkflowExecutionsRequestSchema, ListWorkflowExecutionsResponseSchema, ListWorkflowJobFunctionExecutionPoliciesRequestSchema, ListWorkflowJobFunctionExecutionPoliciesResponseSchema, ListWorkflowJobFunctionsRequestSchema, ListWorkflowJobFunctionsResponseSchema, ListWorkflowsRequestSchema, ListWorkflowsResponseSchema, TestResumeWorkflowRequestSchema, TestResumeWorkflowResponseSchema, TestStartWorkflowRequestSchema, TestStartWorkflowResponseSchema, UpdateWorkflowJobFunctionExecutionPolicyRequestSchema, UpdateWorkflowJobFunctionExecutionPolicyResponseSchema, UpdateWorkflowJobFunctionRequestSchema, UpdateWorkflowJobFunctionResponseSchema, UpdateWorkflowRequestSchema, UpdateWorkflowResponseSchema } from "../../tailor-proto/src/tailor/v1/workflow_pb.mjs";
|
|
17
|
+
import { GetMetadataRequestSchema, GetMetadataResponseSchema, SetMetadataRequestSchema, SetMetadataResponseSchema } from "../../tailor-proto/src/tailor/v1/metadata_pb.mjs";
|
|
18
|
+
import { CreateOTLPExporterRequestSchema, CreateOTLPExporterResponseSchema, CreateResourceAttributesConfigRequestSchema, CreateResourceAttributesConfigResponseSchema, DeleteOTLPExporterRequestSchema, DeleteOTLPExporterResponseSchema, DeleteResourceAttributesConfigRequestSchema, DeleteResourceAttributesConfigResponseSchema, GetOTLPExporterRequestSchema, GetOTLPExporterResponseSchema, GetResourceAttributesConfigRequestSchema, GetResourceAttributesConfigResponseSchema, ListOTLPExportersRequestSchema, ListOTLPExportersResponseSchema, TestOTLPExporterRequestSchema, TestOTLPExporterResponseSchema, UpdateOTLPExporterRequestSchema, UpdateOTLPExporterResponseSchema, UpdateResourceAttributesConfigRequestSchema, UpdateResourceAttributesConfigResponseSchema } from "../../tailor-proto/src/tailor/v1/telemetryrouter_pb.mjs";
|
|
19
|
+
import { OperatorService, PingRequestSchema, PingResponseSchema } from "../../tailor-proto/src/tailor/v1/service_pb.mjs";
|
|
20
|
+
import { Client } from "@connectrpc/connect";
|
|
21
|
+
|
|
22
|
+
//#region src/cli/shared/client.d.ts
|
|
23
|
+
type PlatformClientConfig = {
|
|
24
|
+
platformUrl?: string;
|
|
25
|
+
oauth2ClientId?: string;
|
|
26
|
+
consoleUrl?: string;
|
|
27
|
+
};
|
|
28
|
+
type OperatorClient = Client<typeof OperatorService>;
|
|
29
|
+
/**
|
|
30
|
+
* Initialize an Operator client with the given access token.
|
|
31
|
+
* @param accessToken - Access token for authentication
|
|
32
|
+
* @param config - Optional platform connection settings
|
|
33
|
+
* @returns Configured Operator client
|
|
34
|
+
*/
|
|
35
|
+
declare function initOperatorClient(accessToken: string, config?: PlatformClientConfig): Promise<Client<import("@bufbuild/protobuf/codegenv2").GenService<{
|
|
36
|
+
ping: {
|
|
37
|
+
methodKind: "unary";
|
|
38
|
+
input: typeof PingRequestSchema;
|
|
39
|
+
output: typeof PingResponseSchema;
|
|
40
|
+
};
|
|
41
|
+
listAvailableWorkspaceRegions: {
|
|
42
|
+
methodKind: "unary";
|
|
43
|
+
input: typeof ListAvailableWorkspaceRegionsRequestSchema;
|
|
44
|
+
output: typeof ListAvailableWorkspaceRegionsResponseSchema;
|
|
45
|
+
};
|
|
46
|
+
createWorkspace: {
|
|
47
|
+
methodKind: "unary";
|
|
48
|
+
input: typeof CreateWorkspaceRequestSchema;
|
|
49
|
+
output: typeof CreateWorkspaceResponseSchema;
|
|
50
|
+
};
|
|
51
|
+
updateWorkspace: {
|
|
52
|
+
methodKind: "unary";
|
|
53
|
+
input: typeof UpdateWorkspaceRequestSchema;
|
|
54
|
+
output: typeof UpdateWorkspaceResponseSchema;
|
|
55
|
+
};
|
|
56
|
+
deleteWorkspace: {
|
|
57
|
+
methodKind: "unary";
|
|
58
|
+
input: typeof DeleteWorkspaceRequestSchema;
|
|
59
|
+
output: typeof DeleteWorkspaceResponseSchema;
|
|
60
|
+
};
|
|
61
|
+
listWorkspaces: {
|
|
62
|
+
methodKind: "unary";
|
|
63
|
+
input: typeof ListWorkspacesRequestSchema;
|
|
64
|
+
output: typeof ListWorkspacesResponseSchema;
|
|
65
|
+
};
|
|
66
|
+
listOrganizationWorkspaces: {
|
|
67
|
+
methodKind: "unary";
|
|
68
|
+
input: typeof ListOrganizationWorkspacesRequestSchema;
|
|
69
|
+
output: typeof ListOrganizationWorkspacesResponseSchema;
|
|
70
|
+
};
|
|
71
|
+
restoreWorkspace: {
|
|
72
|
+
methodKind: "unary";
|
|
73
|
+
input: typeof RestoreWorkspaceRequestSchema;
|
|
74
|
+
output: typeof RestoreWorkspaceResponseSchema;
|
|
75
|
+
};
|
|
76
|
+
getWorkspace: {
|
|
77
|
+
methodKind: "unary";
|
|
78
|
+
input: typeof GetWorkspaceRequestSchema;
|
|
79
|
+
output: typeof GetWorkspaceResponseSchema;
|
|
80
|
+
};
|
|
81
|
+
listWorkspacePlatformUsers: {
|
|
82
|
+
methodKind: "unary";
|
|
83
|
+
input: typeof ListWorkspacePlatformUsersRequestSchema;
|
|
84
|
+
output: typeof ListWorkspacePlatformUsersResponseSchema;
|
|
85
|
+
};
|
|
86
|
+
listAvailableWorkspacePlatformUserRoles: {
|
|
87
|
+
methodKind: "unary";
|
|
88
|
+
input: typeof ListAvailableWorkspacePlatformUserRolesRequestSchema;
|
|
89
|
+
output: typeof ListAvailableWorkspacePlatformUserRolesResponseSchema;
|
|
90
|
+
};
|
|
91
|
+
inviteWorkspacePlatformUser: {
|
|
92
|
+
methodKind: "unary";
|
|
93
|
+
input: typeof InviteWorkspacePlatformUserRequestSchema;
|
|
94
|
+
output: typeof InviteWorkspacePlatformUserResponseSchema;
|
|
95
|
+
};
|
|
96
|
+
removeWorkspacePlatformUser: {
|
|
97
|
+
methodKind: "unary";
|
|
98
|
+
input: typeof RemoveWorkspacePlatformUserRequestSchema;
|
|
99
|
+
output: typeof RemoveWorkspacePlatformUserResponseSchema;
|
|
100
|
+
};
|
|
101
|
+
updateWorkspacePlatformUser: {
|
|
102
|
+
methodKind: "unary";
|
|
103
|
+
input: typeof UpdateWorkspacePlatformUserRequestSchema;
|
|
104
|
+
output: typeof UpdateWorkspacePlatformUserResponseSchema;
|
|
105
|
+
};
|
|
106
|
+
getWorkspacePlatformUser: {
|
|
107
|
+
methodKind: "unary";
|
|
108
|
+
input: typeof GetWorkspacePlatformUserRequestSchema;
|
|
109
|
+
output: typeof GetWorkspacePlatformUserResponseSchema;
|
|
110
|
+
};
|
|
111
|
+
getWorkspaceRole: {
|
|
112
|
+
methodKind: "unary";
|
|
113
|
+
input: typeof GetWorkspaceRoleRequestSchema;
|
|
114
|
+
output: typeof GetWorkspaceRoleResponseSchema;
|
|
115
|
+
};
|
|
116
|
+
updateOrganization: {
|
|
117
|
+
methodKind: "unary";
|
|
118
|
+
input: typeof UpdateOrganizationRequestSchema;
|
|
119
|
+
output: typeof UpdateOrganizationResponseSchema;
|
|
120
|
+
};
|
|
121
|
+
getOrganization: {
|
|
122
|
+
methodKind: "unary";
|
|
123
|
+
input: typeof GetOrganizationRequestSchema;
|
|
124
|
+
output: typeof GetOrganizationResponseSchema;
|
|
125
|
+
};
|
|
126
|
+
listOrganizations: {
|
|
127
|
+
methodKind: "unary";
|
|
128
|
+
input: typeof ListOrganizationsRequestSchema;
|
|
129
|
+
output: typeof ListOrganizationsResponseSchema;
|
|
130
|
+
};
|
|
131
|
+
listUserOrganizations: {
|
|
132
|
+
methodKind: "unary";
|
|
133
|
+
input: typeof ListUserOrganizationsRequestSchema;
|
|
134
|
+
output: typeof ListUserOrganizationsResponseSchema;
|
|
135
|
+
};
|
|
136
|
+
grantOrganizationAccess: {
|
|
137
|
+
methodKind: "unary";
|
|
138
|
+
input: typeof GrantOrganizationAccessRequestSchema;
|
|
139
|
+
output: typeof GrantOrganizationAccessResponseSchema;
|
|
140
|
+
};
|
|
141
|
+
updateOrganizationAccess: {
|
|
142
|
+
methodKind: "unary";
|
|
143
|
+
input: typeof UpdateOrganizationAccessRequestSchema;
|
|
144
|
+
output: typeof UpdateOrganizationAccessResponseSchema;
|
|
145
|
+
};
|
|
146
|
+
revokeOrganizationAccess: {
|
|
147
|
+
methodKind: "unary";
|
|
148
|
+
input: typeof RevokeOrganizationAccessRequestSchema;
|
|
149
|
+
output: typeof RevokeOrganizationAccessResponseSchema;
|
|
150
|
+
};
|
|
151
|
+
listOrganizationAccesses: {
|
|
152
|
+
methodKind: "unary";
|
|
153
|
+
input: typeof ListOrganizationAccessesRequestSchema;
|
|
154
|
+
output: typeof ListOrganizationAccessesResponseSchema;
|
|
155
|
+
};
|
|
156
|
+
getOrganizationAccess: {
|
|
157
|
+
methodKind: "unary";
|
|
158
|
+
input: typeof GetOrganizationAccessRequestSchema;
|
|
159
|
+
output: typeof GetOrganizationAccessResponseSchema;
|
|
160
|
+
};
|
|
161
|
+
createOrganizationFolder: {
|
|
162
|
+
methodKind: "unary";
|
|
163
|
+
input: typeof CreateOrganizationFolderRequestSchema;
|
|
164
|
+
output: typeof CreateOrganizationFolderResponseSchema;
|
|
165
|
+
};
|
|
166
|
+
updateOrganizationFolder: {
|
|
167
|
+
methodKind: "unary";
|
|
168
|
+
input: typeof UpdateOrganizationFolderRequestSchema;
|
|
169
|
+
output: typeof UpdateOrganizationFolderResponseSchema;
|
|
170
|
+
};
|
|
171
|
+
deleteOrganizationFolder: {
|
|
172
|
+
methodKind: "unary";
|
|
173
|
+
input: typeof DeleteOrganizationFolderRequestSchema;
|
|
174
|
+
output: typeof DeleteOrganizationFolderResponseSchema;
|
|
175
|
+
};
|
|
176
|
+
getOrganizationFolder: {
|
|
177
|
+
methodKind: "unary";
|
|
178
|
+
input: typeof GetOrganizationFolderRequestSchema;
|
|
179
|
+
output: typeof GetOrganizationFolderResponseSchema;
|
|
180
|
+
};
|
|
181
|
+
listOrganizationFolders: {
|
|
182
|
+
methodKind: "unary";
|
|
183
|
+
input: typeof ListOrganizationFoldersRequestSchema;
|
|
184
|
+
output: typeof ListOrganizationFoldersResponseSchema;
|
|
185
|
+
};
|
|
186
|
+
grantOrganizationFolderAccess: {
|
|
187
|
+
methodKind: "unary";
|
|
188
|
+
input: typeof GrantOrganizationFolderAccessRequestSchema;
|
|
189
|
+
output: typeof GrantOrganizationFolderAccessResponseSchema;
|
|
190
|
+
};
|
|
191
|
+
updateOrganizationFolderAccess: {
|
|
192
|
+
methodKind: "unary";
|
|
193
|
+
input: typeof UpdateOrganizationFolderAccessRequestSchema;
|
|
194
|
+
output: typeof UpdateOrganizationFolderAccessResponseSchema;
|
|
195
|
+
};
|
|
196
|
+
revokeOrganizationFolderAccess: {
|
|
197
|
+
methodKind: "unary";
|
|
198
|
+
input: typeof RevokeOrganizationFolderAccessRequestSchema;
|
|
199
|
+
output: typeof RevokeOrganizationFolderAccessResponseSchema;
|
|
200
|
+
};
|
|
201
|
+
listOrganizationFolderAccesses: {
|
|
202
|
+
methodKind: "unary";
|
|
203
|
+
input: typeof ListOrganizationFolderAccessesRequestSchema;
|
|
204
|
+
output: typeof ListOrganizationFolderAccessesResponseSchema;
|
|
205
|
+
};
|
|
206
|
+
getOrganizationFolderAccess: {
|
|
207
|
+
methodKind: "unary";
|
|
208
|
+
input: typeof GetOrganizationFolderAccessRequestSchema;
|
|
209
|
+
output: typeof GetOrganizationFolderAccessResponseSchema;
|
|
210
|
+
};
|
|
211
|
+
upsertOrganizationIPRestriction: {
|
|
212
|
+
methodKind: "unary";
|
|
213
|
+
input: typeof UpsertOrganizationIPRestrictionRequestSchema;
|
|
214
|
+
output: typeof UpsertOrganizationIPRestrictionResponseSchema;
|
|
215
|
+
};
|
|
216
|
+
getOrganizationIPRestriction: {
|
|
217
|
+
methodKind: "unary";
|
|
218
|
+
input: typeof GetOrganizationIPRestrictionRequestSchema;
|
|
219
|
+
output: typeof GetOrganizationIPRestrictionResponseSchema;
|
|
220
|
+
};
|
|
221
|
+
deleteOrganizationIPRestriction: {
|
|
222
|
+
methodKind: "unary";
|
|
223
|
+
input: typeof DeleteOrganizationIPRestrictionRequestSchema;
|
|
224
|
+
output: typeof DeleteOrganizationIPRestrictionResponseSchema;
|
|
225
|
+
};
|
|
226
|
+
upsertOrganizationFolderIPRestriction: {
|
|
227
|
+
methodKind: "unary";
|
|
228
|
+
input: typeof UpsertOrganizationFolderIPRestrictionRequestSchema;
|
|
229
|
+
output: typeof UpsertOrganizationFolderIPRestrictionResponseSchema;
|
|
230
|
+
};
|
|
231
|
+
getOrganizationFolderIPRestriction: {
|
|
232
|
+
methodKind: "unary";
|
|
233
|
+
input: typeof GetOrganizationFolderIPRestrictionRequestSchema;
|
|
234
|
+
output: typeof GetOrganizationFolderIPRestrictionResponseSchema;
|
|
235
|
+
};
|
|
236
|
+
deleteOrganizationFolderIPRestriction: {
|
|
237
|
+
methodKind: "unary";
|
|
238
|
+
input: typeof DeleteOrganizationFolderIPRestrictionRequestSchema;
|
|
239
|
+
output: typeof DeleteOrganizationFolderIPRestrictionResponseSchema;
|
|
240
|
+
};
|
|
241
|
+
createOrganizationTeam: {
|
|
242
|
+
methodKind: "unary";
|
|
243
|
+
input: typeof CreateOrganizationTeamRequestSchema;
|
|
244
|
+
output: typeof CreateOrganizationTeamResponseSchema;
|
|
245
|
+
};
|
|
246
|
+
updateOrganizationTeam: {
|
|
247
|
+
methodKind: "unary";
|
|
248
|
+
input: typeof UpdateOrganizationTeamRequestSchema;
|
|
249
|
+
output: typeof UpdateOrganizationTeamResponseSchema;
|
|
250
|
+
};
|
|
251
|
+
deleteOrganizationTeam: {
|
|
252
|
+
methodKind: "unary";
|
|
253
|
+
input: typeof DeleteOrganizationTeamRequestSchema;
|
|
254
|
+
output: typeof DeleteOrganizationTeamResponseSchema;
|
|
255
|
+
};
|
|
256
|
+
getOrganizationTeam: {
|
|
257
|
+
methodKind: "unary";
|
|
258
|
+
input: typeof GetOrganizationTeamRequestSchema;
|
|
259
|
+
output: typeof GetOrganizationTeamResponseSchema;
|
|
260
|
+
};
|
|
261
|
+
listOrganizationTeams: {
|
|
262
|
+
methodKind: "unary";
|
|
263
|
+
input: typeof ListOrganizationTeamsRequestSchema;
|
|
264
|
+
output: typeof ListOrganizationTeamsResponseSchema;
|
|
265
|
+
};
|
|
266
|
+
addOrganizationTeamMember: {
|
|
267
|
+
methodKind: "unary";
|
|
268
|
+
input: typeof AddOrganizationTeamMemberRequestSchema;
|
|
269
|
+
output: typeof AddOrganizationTeamMemberResponseSchema;
|
|
270
|
+
};
|
|
271
|
+
updateOrganizationTeamMember: {
|
|
272
|
+
methodKind: "unary";
|
|
273
|
+
input: typeof UpdateOrganizationTeamMemberRequestSchema;
|
|
274
|
+
output: typeof UpdateOrganizationTeamMemberResponseSchema;
|
|
275
|
+
};
|
|
276
|
+
removeOrganizationTeamMember: {
|
|
277
|
+
methodKind: "unary";
|
|
278
|
+
input: typeof RemoveOrganizationTeamMemberRequestSchema;
|
|
279
|
+
output: typeof RemoveOrganizationTeamMemberResponseSchema;
|
|
280
|
+
};
|
|
281
|
+
listOrganizationTeamMembers: {
|
|
282
|
+
methodKind: "unary";
|
|
283
|
+
input: typeof ListOrganizationTeamMembersRequestSchema;
|
|
284
|
+
output: typeof ListOrganizationTeamMembersResponseSchema;
|
|
285
|
+
};
|
|
286
|
+
getOrganizationTeamMember: {
|
|
287
|
+
methodKind: "unary";
|
|
288
|
+
input: typeof GetOrganizationTeamMemberRequestSchema;
|
|
289
|
+
output: typeof GetOrganizationTeamMemberResponseSchema;
|
|
290
|
+
};
|
|
291
|
+
getPlatformAccountPlan: {
|
|
292
|
+
methodKind: "unary";
|
|
293
|
+
input: typeof GetPlatformAccountPlanRequestSchema;
|
|
294
|
+
output: typeof GetPlatformAccountPlanResponseSchema;
|
|
295
|
+
};
|
|
296
|
+
createApplication: {
|
|
297
|
+
methodKind: "unary";
|
|
298
|
+
input: typeof CreateApplicationRequestSchema;
|
|
299
|
+
output: typeof CreateApplicationResponseSchema;
|
|
300
|
+
};
|
|
301
|
+
updateApplication: {
|
|
302
|
+
methodKind: "unary";
|
|
303
|
+
input: typeof UpdateApplicationRequestSchema;
|
|
304
|
+
output: typeof UpdateApplicationResponseSchema;
|
|
305
|
+
};
|
|
306
|
+
deleteApplication: {
|
|
307
|
+
methodKind: "unary";
|
|
308
|
+
input: typeof DeleteApplicationRequestSchema;
|
|
309
|
+
output: typeof DeleteApplicationResponseSchema;
|
|
310
|
+
};
|
|
311
|
+
listApplications: {
|
|
312
|
+
methodKind: "unary";
|
|
313
|
+
input: typeof ListApplicationsRequestSchema;
|
|
314
|
+
output: typeof ListApplicationsResponseSchema;
|
|
315
|
+
};
|
|
316
|
+
getApplication: {
|
|
317
|
+
methodKind: "unary";
|
|
318
|
+
input: typeof GetApplicationRequestSchema;
|
|
319
|
+
output: typeof GetApplicationResponseSchema;
|
|
320
|
+
};
|
|
321
|
+
getApplicationSchemaHealth: {
|
|
322
|
+
methodKind: "unary";
|
|
323
|
+
input: typeof GetApplicationSchemaHealthRequestSchema;
|
|
324
|
+
output: typeof GetApplicationSchemaHealthResponseSchema;
|
|
325
|
+
};
|
|
326
|
+
createAIGateway: {
|
|
327
|
+
methodKind: "unary";
|
|
328
|
+
input: typeof CreateAIGatewayRequestSchema;
|
|
329
|
+
output: typeof CreateAIGatewayResponseSchema;
|
|
330
|
+
};
|
|
331
|
+
updateAIGateway: {
|
|
332
|
+
methodKind: "unary";
|
|
333
|
+
input: typeof UpdateAIGatewayRequestSchema;
|
|
334
|
+
output: typeof UpdateAIGatewayResponseSchema;
|
|
335
|
+
};
|
|
336
|
+
deleteAIGateway: {
|
|
337
|
+
methodKind: "unary";
|
|
338
|
+
input: typeof DeleteAIGatewayRequestSchema;
|
|
339
|
+
output: typeof DeleteAIGatewayResponseSchema;
|
|
340
|
+
};
|
|
341
|
+
getAIGateway: {
|
|
342
|
+
methodKind: "unary";
|
|
343
|
+
input: typeof GetAIGatewayRequestSchema;
|
|
344
|
+
output: typeof GetAIGatewayResponseSchema;
|
|
345
|
+
};
|
|
346
|
+
listAIGateways: {
|
|
347
|
+
methodKind: "unary";
|
|
348
|
+
input: typeof ListAIGatewaysRequestSchema;
|
|
349
|
+
output: typeof ListAIGatewaysResponseSchema;
|
|
350
|
+
};
|
|
351
|
+
composeTailorDBSDL: {
|
|
352
|
+
methodKind: "unary";
|
|
353
|
+
input: typeof ComposeTailorDBSDLRequestSchema;
|
|
354
|
+
output: typeof ComposeTailorDBSDLResponseSchema;
|
|
355
|
+
};
|
|
356
|
+
createTailorDBService: {
|
|
357
|
+
methodKind: "unary";
|
|
358
|
+
input: typeof CreateTailorDBServiceRequestSchema;
|
|
359
|
+
output: typeof CreateTailorDBServiceResponseSchema;
|
|
360
|
+
};
|
|
361
|
+
updateTailorDBService: {
|
|
362
|
+
methodKind: "unary";
|
|
363
|
+
input: typeof UpdateTailorDBServiceRequestSchema;
|
|
364
|
+
output: typeof UpdateTailorDBServiceResponseSchema;
|
|
365
|
+
};
|
|
366
|
+
deleteTailorDBService: {
|
|
367
|
+
methodKind: "unary";
|
|
368
|
+
input: typeof DeleteTailorDBServiceRequestSchema;
|
|
369
|
+
output: typeof DeleteTailorDBServiceResponseSchema;
|
|
370
|
+
};
|
|
371
|
+
getTailorDBService: {
|
|
372
|
+
methodKind: "unary";
|
|
373
|
+
input: typeof GetTailorDBServiceRequestSchema;
|
|
374
|
+
output: typeof GetTailorDBServiceResponseSchema;
|
|
375
|
+
};
|
|
376
|
+
listTailorDBServices: {
|
|
377
|
+
methodKind: "unary";
|
|
378
|
+
input: typeof ListTailorDBServicesRequestSchema;
|
|
379
|
+
output: typeof ListTailorDBServicesResponseSchema;
|
|
380
|
+
};
|
|
381
|
+
createTailorDBType: {
|
|
382
|
+
methodKind: "unary";
|
|
383
|
+
input: typeof CreateTailorDBTypeRequestSchema;
|
|
384
|
+
output: typeof CreateTailorDBTypeResponseSchema;
|
|
385
|
+
};
|
|
386
|
+
updateTailorDBType: {
|
|
387
|
+
methodKind: "unary";
|
|
388
|
+
input: typeof UpdateTailorDBTypeRequestSchema;
|
|
389
|
+
output: typeof UpdateTailorDBTypeResponseSchema;
|
|
390
|
+
};
|
|
391
|
+
deleteTailorDBType: {
|
|
392
|
+
methodKind: "unary";
|
|
393
|
+
input: typeof DeleteTailorDBTypeRequestSchema;
|
|
394
|
+
output: typeof DeleteTailorDBTypeResponseSchema;
|
|
395
|
+
};
|
|
396
|
+
truncateTailorDBTypes: {
|
|
397
|
+
methodKind: "unary";
|
|
398
|
+
input: typeof TruncateTailorDBTypesRequestSchema;
|
|
399
|
+
output: typeof TruncateTailorDBTypesResponseSchema;
|
|
400
|
+
};
|
|
401
|
+
truncateTailorDBType: {
|
|
402
|
+
methodKind: "unary";
|
|
403
|
+
input: typeof TruncateTailorDBTypeRequestSchema;
|
|
404
|
+
output: typeof TruncateTailorDBTypeResponseSchema;
|
|
405
|
+
};
|
|
406
|
+
listTailorDBTypes: {
|
|
407
|
+
methodKind: "unary";
|
|
408
|
+
input: typeof ListTailorDBTypesRequestSchema;
|
|
409
|
+
output: typeof ListTailorDBTypesResponseSchema;
|
|
410
|
+
};
|
|
411
|
+
getTailorDBType: {
|
|
412
|
+
methodKind: "unary";
|
|
413
|
+
input: typeof GetTailorDBTypeRequestSchema;
|
|
414
|
+
output: typeof GetTailorDBTypeResponseSchema;
|
|
415
|
+
};
|
|
416
|
+
createTailorDBGQLPermission: {
|
|
417
|
+
methodKind: "unary";
|
|
418
|
+
input: typeof CreateTailorDBGQLPermissionRequestSchema;
|
|
419
|
+
output: typeof CreateTailorDBGQLPermissionResponseSchema;
|
|
420
|
+
};
|
|
421
|
+
getTailorDBGQLPermission: {
|
|
422
|
+
methodKind: "unary";
|
|
423
|
+
input: typeof GetTailorDBGQLPermissionRequestSchema;
|
|
424
|
+
output: typeof GetTailorDBGQLPermissionResponseSchema;
|
|
425
|
+
};
|
|
426
|
+
listTailorDBGQLPermissions: {
|
|
427
|
+
methodKind: "unary";
|
|
428
|
+
input: typeof ListTailorDBGQLPermissionsRequestSchema;
|
|
429
|
+
output: typeof ListTailorDBGQLPermissionsResponseSchema;
|
|
430
|
+
};
|
|
431
|
+
updateTailorDBGQLPermission: {
|
|
432
|
+
methodKind: "unary";
|
|
433
|
+
input: typeof UpdateTailorDBGQLPermissionRequestSchema;
|
|
434
|
+
output: typeof UpdateTailorDBGQLPermissionResponseSchema;
|
|
435
|
+
};
|
|
436
|
+
deleteTailorDBGQLPermission: {
|
|
437
|
+
methodKind: "unary";
|
|
438
|
+
input: typeof DeleteTailorDBGQLPermissionRequestSchema;
|
|
439
|
+
output: typeof DeleteTailorDBGQLPermissionResponseSchema;
|
|
440
|
+
};
|
|
441
|
+
createPipelineService: {
|
|
442
|
+
methodKind: "unary";
|
|
443
|
+
input: typeof CreatePipelineServiceRequestSchema;
|
|
444
|
+
output: typeof CreatePipelineServiceResponseSchema;
|
|
445
|
+
};
|
|
446
|
+
updatePipelineService: {
|
|
447
|
+
methodKind: "unary";
|
|
448
|
+
input: typeof UpdatePipelineServiceRequestSchema;
|
|
449
|
+
output: typeof UpdatePipelineServiceResponseSchema;
|
|
450
|
+
};
|
|
451
|
+
deletePipelineService: {
|
|
452
|
+
methodKind: "unary";
|
|
453
|
+
input: typeof DeletePipelineServiceRequestSchema;
|
|
454
|
+
output: typeof DeletePipelineServiceResponseSchema;
|
|
455
|
+
};
|
|
456
|
+
getPipelineService: {
|
|
457
|
+
methodKind: "unary";
|
|
458
|
+
input: typeof GetPipelineServiceRequestSchema;
|
|
459
|
+
output: typeof GetPipelineServiceResponseSchema;
|
|
460
|
+
};
|
|
461
|
+
listPipelineServices: {
|
|
462
|
+
methodKind: "unary";
|
|
463
|
+
input: typeof ListPipelineServicesRequestSchema;
|
|
464
|
+
output: typeof ListPipelineServicesResponseSchema;
|
|
465
|
+
};
|
|
466
|
+
getPipelineResolver: {
|
|
467
|
+
methodKind: "unary";
|
|
468
|
+
input: typeof GetPipelineResolverRequestSchema;
|
|
469
|
+
output: typeof GetPipelineResolverResponseSchema;
|
|
470
|
+
};
|
|
471
|
+
listPipelineResolvers: {
|
|
472
|
+
methodKind: "unary";
|
|
473
|
+
input: typeof ListPipelineResolversRequestSchema;
|
|
474
|
+
output: typeof ListPipelineResolversResponseSchema;
|
|
475
|
+
};
|
|
476
|
+
createPipelineResolver: {
|
|
477
|
+
methodKind: "unary";
|
|
478
|
+
input: typeof CreatePipelineResolverRequestSchema;
|
|
479
|
+
output: typeof CreatePipelineResolverResponseSchema;
|
|
480
|
+
};
|
|
481
|
+
updatePipelineResolver: {
|
|
482
|
+
methodKind: "unary";
|
|
483
|
+
input: typeof UpdatePipelineResolverRequestSchema;
|
|
484
|
+
output: typeof UpdatePipelineResolverResponseSchema;
|
|
485
|
+
};
|
|
486
|
+
deletePipelineResolver: {
|
|
487
|
+
methodKind: "unary";
|
|
488
|
+
input: typeof DeletePipelineResolverRequestSchema;
|
|
489
|
+
output: typeof DeletePipelineResolverResponseSchema;
|
|
490
|
+
};
|
|
491
|
+
composePipelineSDL: {
|
|
492
|
+
methodKind: "unary";
|
|
493
|
+
input: typeof ComposePipelineSDLRequestSchema;
|
|
494
|
+
output: typeof ComposePipelineSDLResponseSchema;
|
|
495
|
+
};
|
|
496
|
+
listPipelineResolverExecutionResults: {
|
|
497
|
+
methodKind: "unary";
|
|
498
|
+
input: typeof ListPipelineResolverExecutionResultsRequestSchema;
|
|
499
|
+
output: typeof ListPipelineResolverExecutionResultsResponseSchema;
|
|
500
|
+
};
|
|
501
|
+
getPipelineResolverExecutionResult: {
|
|
502
|
+
methodKind: "unary";
|
|
503
|
+
input: typeof GetPipelineResolverExecutionResultRequestSchema;
|
|
504
|
+
output: typeof GetPipelineResolverExecutionResultResponseSchema;
|
|
505
|
+
};
|
|
506
|
+
restartPipelineResolver: {
|
|
507
|
+
methodKind: "unary";
|
|
508
|
+
input: typeof RestartPipelineResolverRequestSchema;
|
|
509
|
+
output: typeof RestartPipelineResolverResponseSchema;
|
|
510
|
+
};
|
|
511
|
+
createStateflowService: {
|
|
512
|
+
methodKind: "unary";
|
|
513
|
+
input: typeof CreateStateflowServiceRequestSchema;
|
|
514
|
+
output: typeof CreateStateflowServiceResponseSchema;
|
|
515
|
+
};
|
|
516
|
+
updateStateflowService: {
|
|
517
|
+
methodKind: "unary";
|
|
518
|
+
input: typeof UpdateStateflowServiceRequestSchema;
|
|
519
|
+
output: typeof UpdateStateflowServiceResponseSchema;
|
|
520
|
+
};
|
|
521
|
+
deleteStateflowService: {
|
|
522
|
+
methodKind: "unary";
|
|
523
|
+
input: typeof DeleteStateflowServiceRequestSchema;
|
|
524
|
+
output: typeof DeleteStateflowServiceResponseSchema;
|
|
525
|
+
};
|
|
526
|
+
getStateflowService: {
|
|
527
|
+
methodKind: "unary";
|
|
528
|
+
input: typeof GetStateflowServiceRequestSchema;
|
|
529
|
+
output: typeof GetStateflowServiceResponseSchema;
|
|
530
|
+
};
|
|
531
|
+
listStateflowServices: {
|
|
532
|
+
methodKind: "unary";
|
|
533
|
+
input: typeof ListStateflowServicesRequestSchema;
|
|
534
|
+
output: typeof ListStateflowServicesResponseSchema;
|
|
535
|
+
};
|
|
536
|
+
createExecutorExecutor: {
|
|
537
|
+
methodKind: "unary";
|
|
538
|
+
input: typeof CreateExecutorExecutorRequestSchema;
|
|
539
|
+
output: typeof CreateExecutorExecutorResponseSchema;
|
|
540
|
+
};
|
|
541
|
+
updateExecutorExecutor: {
|
|
542
|
+
methodKind: "unary";
|
|
543
|
+
input: typeof UpdateExecutorExecutorRequestSchema;
|
|
544
|
+
output: typeof UpdateExecutorExecutorResponseSchema;
|
|
545
|
+
};
|
|
546
|
+
getExecutorExecutor: {
|
|
547
|
+
methodKind: "unary";
|
|
548
|
+
input: typeof GetExecutorExecutorRequestSchema;
|
|
549
|
+
output: typeof GetExecutorExecutorResponseSchema;
|
|
550
|
+
};
|
|
551
|
+
deleteExecutorExecutor: {
|
|
552
|
+
methodKind: "unary";
|
|
553
|
+
input: typeof DeleteExecutorExecutorRequestSchema;
|
|
554
|
+
output: typeof DeleteExecutorExecutorResponseSchema;
|
|
555
|
+
};
|
|
556
|
+
listExecutorExecutors: {
|
|
557
|
+
methodKind: "unary";
|
|
558
|
+
input: typeof ListExecutorExecutorsRequestSchema;
|
|
559
|
+
output: typeof ListExecutorExecutorsResponseSchema;
|
|
560
|
+
};
|
|
561
|
+
getExecutorJob: {
|
|
562
|
+
methodKind: "unary";
|
|
563
|
+
input: typeof GetExecutorJobRequestSchema;
|
|
564
|
+
output: typeof GetExecutorJobResponseSchema;
|
|
565
|
+
};
|
|
566
|
+
listExecutorJobs: {
|
|
567
|
+
methodKind: "unary";
|
|
568
|
+
input: typeof ListExecutorJobsRequestSchema;
|
|
569
|
+
output: typeof ListExecutorJobsResponseSchema;
|
|
570
|
+
};
|
|
571
|
+
listExecutorJobAttempts: {
|
|
572
|
+
methodKind: "unary";
|
|
573
|
+
input: typeof ListExecutorJobAttemptsRequestSchema;
|
|
574
|
+
output: typeof ListExecutorJobAttemptsResponseSchema;
|
|
575
|
+
};
|
|
576
|
+
listExecutorIncomingWebhooks: {
|
|
577
|
+
methodKind: "unary";
|
|
578
|
+
input: typeof ListExecutorIncomingWebhooksRequestSchema;
|
|
579
|
+
output: typeof ListExecutorIncomingWebhooksResponseSchema;
|
|
580
|
+
};
|
|
581
|
+
getExecutorIncomingWebhook: {
|
|
582
|
+
methodKind: "unary";
|
|
583
|
+
input: typeof GetExecutorIncomingWebhookRequestSchema;
|
|
584
|
+
output: typeof GetExecutorIncomingWebhookResponseSchema;
|
|
585
|
+
};
|
|
586
|
+
triggerExecutor: {
|
|
587
|
+
methodKind: "unary";
|
|
588
|
+
input: typeof TriggerExecutorRequestSchema;
|
|
589
|
+
output: typeof TriggerExecutorResponseSchema;
|
|
590
|
+
};
|
|
591
|
+
createSecretManagerVault: {
|
|
592
|
+
methodKind: "unary";
|
|
593
|
+
input: typeof CreateSecretManagerVaultRequestSchema;
|
|
594
|
+
output: typeof CreateSecretManagerVaultResponseSchema;
|
|
595
|
+
};
|
|
596
|
+
getSecretManagerVault: {
|
|
597
|
+
methodKind: "unary";
|
|
598
|
+
input: typeof GetSecretManagerVaultRequestSchema;
|
|
599
|
+
output: typeof GetSecretManagerVaultResponseSchema;
|
|
600
|
+
};
|
|
601
|
+
deleteSecretManagerVault: {
|
|
602
|
+
methodKind: "unary";
|
|
603
|
+
input: typeof DeleteSecretManagerVaultRequestSchema;
|
|
604
|
+
output: typeof DeleteSecretManagerVaultResponseSchema;
|
|
605
|
+
};
|
|
606
|
+
listSecretManagerVaults: {
|
|
607
|
+
methodKind: "unary";
|
|
608
|
+
input: typeof ListSecretManagerVaultsRequestSchema;
|
|
609
|
+
output: typeof ListSecretManagerVaultsResponseSchema;
|
|
610
|
+
};
|
|
611
|
+
createSecretManagerSecret: {
|
|
612
|
+
methodKind: "unary";
|
|
613
|
+
input: typeof CreateSecretManagerSecretRequestSchema;
|
|
614
|
+
output: typeof CreateSecretManagerSecretResponseSchema;
|
|
615
|
+
};
|
|
616
|
+
updateSecretManagerSecret: {
|
|
617
|
+
methodKind: "unary";
|
|
618
|
+
input: typeof UpdateSecretManagerSecretRequestSchema;
|
|
619
|
+
output: typeof UpdateSecretManagerSecretResponseSchema;
|
|
620
|
+
};
|
|
621
|
+
getSecretManagerSecret: {
|
|
622
|
+
methodKind: "unary";
|
|
623
|
+
input: typeof GetSecretManagerSecretRequestSchema;
|
|
624
|
+
output: typeof GetSecretManagerSecretResponseSchema;
|
|
625
|
+
};
|
|
626
|
+
deleteSecretManagerSecret: {
|
|
627
|
+
methodKind: "unary";
|
|
628
|
+
input: typeof DeleteSecretManagerSecretRequestSchema;
|
|
629
|
+
output: typeof DeleteSecretManagerSecretResponseSchema;
|
|
630
|
+
};
|
|
631
|
+
listSecretManagerSecrets: {
|
|
632
|
+
methodKind: "unary";
|
|
633
|
+
input: typeof ListSecretManagerSecretsRequestSchema;
|
|
634
|
+
output: typeof ListSecretManagerSecretsResponseSchema;
|
|
635
|
+
};
|
|
636
|
+
createAuthService: {
|
|
637
|
+
methodKind: "unary";
|
|
638
|
+
input: typeof CreateAuthServiceRequestSchema;
|
|
639
|
+
output: typeof CreateAuthServiceResponseSchema;
|
|
640
|
+
};
|
|
641
|
+
updateAuthService: {
|
|
642
|
+
methodKind: "unary";
|
|
643
|
+
input: typeof UpdateAuthServiceRequestSchema;
|
|
644
|
+
output: typeof UpdateAuthServiceResponseSchema;
|
|
645
|
+
};
|
|
646
|
+
deleteAuthService: {
|
|
647
|
+
methodKind: "unary";
|
|
648
|
+
input: typeof DeleteAuthServiceRequestSchema;
|
|
649
|
+
output: typeof DeleteAuthServiceResponseSchema;
|
|
650
|
+
};
|
|
651
|
+
getAuthService: {
|
|
652
|
+
methodKind: "unary";
|
|
653
|
+
input: typeof GetAuthServiceRequestSchema;
|
|
654
|
+
output: typeof GetAuthServiceResponseSchema;
|
|
655
|
+
};
|
|
656
|
+
listAuthServices: {
|
|
657
|
+
methodKind: "unary";
|
|
658
|
+
input: typeof ListAuthServicesRequestSchema;
|
|
659
|
+
output: typeof ListAuthServicesResponseSchema;
|
|
660
|
+
};
|
|
661
|
+
createAuthIDPConfig: {
|
|
662
|
+
methodKind: "unary";
|
|
663
|
+
input: typeof CreateAuthIDPConfigRequestSchema;
|
|
664
|
+
output: typeof CreateAuthIDPConfigResponseSchema;
|
|
665
|
+
};
|
|
666
|
+
updateAuthIDPConfig: {
|
|
667
|
+
methodKind: "unary";
|
|
668
|
+
input: typeof UpdateAuthIDPConfigRequestSchema;
|
|
669
|
+
output: typeof UpdateAuthIDPConfigResponseSchema;
|
|
670
|
+
};
|
|
671
|
+
deleteAuthIDPConfig: {
|
|
672
|
+
methodKind: "unary";
|
|
673
|
+
input: typeof DeleteAuthIDPConfigRequestSchema;
|
|
674
|
+
output: typeof DeleteAuthIDPConfigResponseSchema;
|
|
675
|
+
};
|
|
676
|
+
getAuthIDPConfig: {
|
|
677
|
+
methodKind: "unary";
|
|
678
|
+
input: typeof GetAuthIDPConfigRequestSchema;
|
|
679
|
+
output: typeof GetAuthIDPConfigResponseSchema;
|
|
680
|
+
};
|
|
681
|
+
listAuthIDPConfigs: {
|
|
682
|
+
methodKind: "unary";
|
|
683
|
+
input: typeof ListAuthIDPConfigsRequestSchema;
|
|
684
|
+
output: typeof ListAuthIDPConfigsResponseSchema;
|
|
685
|
+
};
|
|
686
|
+
createUserProfileConfig: {
|
|
687
|
+
methodKind: "unary";
|
|
688
|
+
input: typeof CreateUserProfileConfigRequestSchema;
|
|
689
|
+
output: typeof CreateUserProfileConfigResponseSchema;
|
|
690
|
+
};
|
|
691
|
+
updateUserProfileConfig: {
|
|
692
|
+
methodKind: "unary";
|
|
693
|
+
input: typeof UpdateUserProfileConfigRequestSchema;
|
|
694
|
+
output: typeof UpdateUserProfileConfigResponseSchema;
|
|
695
|
+
};
|
|
696
|
+
deleteUserProfileConfig: {
|
|
697
|
+
methodKind: "unary";
|
|
698
|
+
input: typeof DeleteUserProfileConfigRequestSchema;
|
|
699
|
+
output: typeof DeleteUserProfileConfigResponseSchema;
|
|
700
|
+
};
|
|
701
|
+
getUserProfileConfig: {
|
|
702
|
+
methodKind: "unary";
|
|
703
|
+
input: typeof GetUserProfileConfigRequestSchema;
|
|
704
|
+
output: typeof GetUserProfileConfigResponseSchema;
|
|
705
|
+
};
|
|
706
|
+
createTenantConfig: {
|
|
707
|
+
methodKind: "unary";
|
|
708
|
+
input: typeof CreateTenantConfigRequestSchema;
|
|
709
|
+
output: typeof CreateTenantConfigResponseSchema;
|
|
710
|
+
};
|
|
711
|
+
updateTenantConfig: {
|
|
712
|
+
methodKind: "unary";
|
|
713
|
+
input: typeof UpdateTenantConfigRequestSchema;
|
|
714
|
+
output: typeof UpdateTenantConfigResponseSchema;
|
|
715
|
+
};
|
|
716
|
+
deleteTenantConfig: {
|
|
717
|
+
methodKind: "unary";
|
|
718
|
+
input: typeof DeleteTenantConfigRequestSchema;
|
|
719
|
+
output: typeof DeleteTenantConfigResponseSchema;
|
|
720
|
+
};
|
|
721
|
+
getTenantConfig: {
|
|
722
|
+
methodKind: "unary";
|
|
723
|
+
input: typeof GetTenantConfigRequestSchema;
|
|
724
|
+
output: typeof GetTenantConfigResponseSchema;
|
|
725
|
+
};
|
|
726
|
+
createPersonalAccessToken: {
|
|
727
|
+
methodKind: "unary";
|
|
728
|
+
input: typeof CreatePersonalAccessTokenRequestSchema;
|
|
729
|
+
output: typeof CreatePersonalAccessTokenResponseSchema;
|
|
730
|
+
};
|
|
731
|
+
deletePersonalAccessToken: {
|
|
732
|
+
methodKind: "unary";
|
|
733
|
+
input: typeof DeletePersonalAccessTokenRequestSchema;
|
|
734
|
+
output: typeof DeletePersonalAccessTokenResponseSchema;
|
|
735
|
+
};
|
|
736
|
+
listPersonalAccessTokens: {
|
|
737
|
+
methodKind: "unary";
|
|
738
|
+
input: typeof ListPersonalAccessTokensRequestSchema;
|
|
739
|
+
output: typeof ListPersonalAccessTokensResponseSchema;
|
|
740
|
+
};
|
|
741
|
+
createAuthMachineUser: {
|
|
742
|
+
methodKind: "unary";
|
|
743
|
+
input: typeof CreateAuthMachineUserRequestSchema;
|
|
744
|
+
output: typeof CreateAuthMachineUserResponseSchema;
|
|
745
|
+
};
|
|
746
|
+
updateAuthMachineUser: {
|
|
747
|
+
methodKind: "unary";
|
|
748
|
+
input: typeof UpdateAuthMachineUserRequestSchema;
|
|
749
|
+
output: typeof UpdateAuthMachineUserResponseSchema;
|
|
750
|
+
};
|
|
751
|
+
deleteAuthMachineUser: {
|
|
752
|
+
methodKind: "unary";
|
|
753
|
+
input: typeof DeleteAuthMachineUserRequestSchema;
|
|
754
|
+
output: typeof DeleteAuthMachineUserResponseSchema;
|
|
755
|
+
};
|
|
756
|
+
getAuthMachineUser: {
|
|
757
|
+
methodKind: "unary";
|
|
758
|
+
input: typeof GetAuthMachineUserRequestSchema;
|
|
759
|
+
output: typeof GetAuthMachineUserResponseSchema;
|
|
760
|
+
};
|
|
761
|
+
listAuthMachineUsers: {
|
|
762
|
+
methodKind: "unary";
|
|
763
|
+
input: typeof ListAuthMachineUsersRequestSchema;
|
|
764
|
+
output: typeof ListAuthMachineUsersResponseSchema;
|
|
765
|
+
};
|
|
766
|
+
createAuthSCIMConfig: {
|
|
767
|
+
methodKind: "unary";
|
|
768
|
+
input: typeof CreateAuthSCIMConfigRequestSchema;
|
|
769
|
+
output: typeof CreateAuthSCIMConfigResponseSchema;
|
|
770
|
+
};
|
|
771
|
+
updateAuthSCIMConfig: {
|
|
772
|
+
methodKind: "unary";
|
|
773
|
+
input: typeof UpdateAuthSCIMConfigRequestSchema;
|
|
774
|
+
output: typeof UpdateAuthSCIMConfigResponseSchema;
|
|
775
|
+
};
|
|
776
|
+
deleteAuthSCIMConfig: {
|
|
777
|
+
methodKind: "unary";
|
|
778
|
+
input: typeof DeleteAuthSCIMConfigRequestSchema;
|
|
779
|
+
output: typeof DeleteAuthSCIMConfigResponseSchema;
|
|
780
|
+
};
|
|
781
|
+
getAuthSCIMConfig: {
|
|
782
|
+
methodKind: "unary";
|
|
783
|
+
input: typeof GetAuthSCIMConfigRequestSchema;
|
|
784
|
+
output: typeof GetAuthSCIMConfigResponseSchema;
|
|
785
|
+
};
|
|
786
|
+
createAuthSCIMResource: {
|
|
787
|
+
methodKind: "unary";
|
|
788
|
+
input: typeof CreateAuthSCIMResourceRequestSchema;
|
|
789
|
+
output: typeof CreateAuthSCIMResourceResponseSchema;
|
|
790
|
+
};
|
|
791
|
+
updateAuthSCIMResource: {
|
|
792
|
+
methodKind: "unary";
|
|
793
|
+
input: typeof UpdateAuthSCIMResourceRequestSchema;
|
|
794
|
+
output: typeof UpdateAuthSCIMResourceResponseSchema;
|
|
795
|
+
};
|
|
796
|
+
deleteAuthSCIMResource: {
|
|
797
|
+
methodKind: "unary";
|
|
798
|
+
input: typeof DeleteAuthSCIMResourceRequestSchema;
|
|
799
|
+
output: typeof DeleteAuthSCIMResourceResponseSchema;
|
|
800
|
+
};
|
|
801
|
+
getAuthSCIMResource: {
|
|
802
|
+
methodKind: "unary";
|
|
803
|
+
input: typeof GetAuthSCIMResourceRequestSchema;
|
|
804
|
+
output: typeof GetAuthSCIMResourceResponseSchema;
|
|
805
|
+
};
|
|
806
|
+
getAuthSCIMResources: {
|
|
807
|
+
methodKind: "unary";
|
|
808
|
+
input: typeof GetAuthSCIMResourcesRequestSchema;
|
|
809
|
+
output: typeof GetAuthSCIMResourcesResponseSchema;
|
|
810
|
+
};
|
|
811
|
+
createAuthHook: {
|
|
812
|
+
methodKind: "unary";
|
|
813
|
+
input: typeof CreateAuthHookRequestSchema;
|
|
814
|
+
output: typeof CreateAuthHookResponseSchema;
|
|
815
|
+
};
|
|
816
|
+
updateAuthHook: {
|
|
817
|
+
methodKind: "unary";
|
|
818
|
+
input: typeof UpdateAuthHookRequestSchema;
|
|
819
|
+
output: typeof UpdateAuthHookResponseSchema;
|
|
820
|
+
};
|
|
821
|
+
deleteAuthHook: {
|
|
822
|
+
methodKind: "unary";
|
|
823
|
+
input: typeof DeleteAuthHookRequestSchema;
|
|
824
|
+
output: typeof DeleteAuthHookResponseSchema;
|
|
825
|
+
};
|
|
826
|
+
getAuthHook: {
|
|
827
|
+
methodKind: "unary";
|
|
828
|
+
input: typeof GetAuthHookRequestSchema;
|
|
829
|
+
output: typeof GetAuthHookResponseSchema;
|
|
830
|
+
};
|
|
831
|
+
createAuthConnection: {
|
|
832
|
+
methodKind: "unary";
|
|
833
|
+
input: typeof CreateAuthConnectionRequestSchema;
|
|
834
|
+
output: typeof CreateAuthConnectionResponseSchema;
|
|
835
|
+
};
|
|
836
|
+
updateAuthConnection: {
|
|
837
|
+
methodKind: "unary";
|
|
838
|
+
input: typeof UpdateAuthConnectionRequestSchema;
|
|
839
|
+
output: typeof UpdateAuthConnectionResponseSchema;
|
|
840
|
+
};
|
|
841
|
+
listAuthConnections: {
|
|
842
|
+
methodKind: "unary";
|
|
843
|
+
input: typeof ListAuthConnectionsRequestSchema;
|
|
844
|
+
output: typeof ListAuthConnectionsResponseSchema;
|
|
845
|
+
};
|
|
846
|
+
revokeAuthConnection: {
|
|
847
|
+
methodKind: "unary";
|
|
848
|
+
input: typeof RevokeAuthConnectionRequestSchema;
|
|
849
|
+
output: typeof RevokeAuthConnectionResponseSchema;
|
|
850
|
+
};
|
|
851
|
+
deleteAuthConnection: {
|
|
852
|
+
methodKind: "unary";
|
|
853
|
+
input: typeof DeleteAuthConnectionRequestSchema;
|
|
854
|
+
output: typeof DeleteAuthConnectionResponseSchema;
|
|
855
|
+
};
|
|
856
|
+
registerAuthConnectionSession: {
|
|
857
|
+
methodKind: "unary";
|
|
858
|
+
input: typeof RegisterAuthConnectionSessionRequestSchema;
|
|
859
|
+
output: typeof RegisterAuthConnectionSessionResponseSchema;
|
|
860
|
+
};
|
|
861
|
+
exchangeAuthConnectionAuthorizationCode: {
|
|
862
|
+
methodKind: "unary";
|
|
863
|
+
input: typeof ExchangeAuthConnectionAuthorizationCodeRequestSchema;
|
|
864
|
+
output: typeof ExchangeAuthConnectionAuthorizationCodeResponseSchema;
|
|
865
|
+
};
|
|
866
|
+
createAuthOAuth2Client: {
|
|
867
|
+
methodKind: "unary";
|
|
868
|
+
input: typeof CreateAuthOAuth2ClientRequestSchema;
|
|
869
|
+
output: typeof CreateAuthOAuth2ClientResponseSchema;
|
|
870
|
+
};
|
|
871
|
+
updateAuthOAuth2Client: {
|
|
872
|
+
methodKind: "unary";
|
|
873
|
+
input: typeof UpdateAuthOAuth2ClientRequestSchema;
|
|
874
|
+
output: typeof UpdateAuthOAuth2ClientResponseSchema;
|
|
875
|
+
};
|
|
876
|
+
deleteAuthOAuth2Client: {
|
|
877
|
+
methodKind: "unary";
|
|
878
|
+
input: typeof DeleteAuthOAuth2ClientRequestSchema;
|
|
879
|
+
output: typeof DeleteAuthOAuth2ClientResponseSchema;
|
|
880
|
+
};
|
|
881
|
+
getAuthOAuth2Client: {
|
|
882
|
+
methodKind: "unary";
|
|
883
|
+
input: typeof GetAuthOAuth2ClientRequestSchema;
|
|
884
|
+
output: typeof GetAuthOAuth2ClientResponseSchema;
|
|
885
|
+
};
|
|
886
|
+
listAuthOAuth2Clients: {
|
|
887
|
+
methodKind: "unary";
|
|
888
|
+
input: typeof ListAuthOAuth2ClientsRequestSchema;
|
|
889
|
+
output: typeof ListAuthOAuth2ClientsResponseSchema;
|
|
890
|
+
};
|
|
891
|
+
listDataplaneEvents: {
|
|
892
|
+
methodKind: "unary";
|
|
893
|
+
input: typeof ListDataplaneEventsRequestSchema;
|
|
894
|
+
output: typeof ListDataplaneEventsResponseSchema;
|
|
895
|
+
};
|
|
896
|
+
listControlplaneActivityLogs: {
|
|
897
|
+
methodKind: "unary";
|
|
898
|
+
input: typeof ListControlplaneActivityLogsRequestSchema;
|
|
899
|
+
output: typeof ListControlplaneActivityLogsResponseSchema;
|
|
900
|
+
};
|
|
901
|
+
testExecScript: {
|
|
902
|
+
methodKind: "unary";
|
|
903
|
+
input: typeof TestExecScriptRequestSchema;
|
|
904
|
+
output: typeof TestExecScriptResponseSchema;
|
|
905
|
+
};
|
|
906
|
+
getFunctionExecution: {
|
|
907
|
+
methodKind: "unary";
|
|
908
|
+
input: typeof GetFunctionExecutionRequestSchema;
|
|
909
|
+
output: typeof GetFunctionExecutionResponseSchema;
|
|
910
|
+
};
|
|
911
|
+
listFunctionExecutions: {
|
|
912
|
+
methodKind: "unary";
|
|
913
|
+
input: typeof ListFunctionExecutionsRequestSchema;
|
|
914
|
+
output: typeof ListFunctionExecutionsResponseSchema;
|
|
915
|
+
};
|
|
916
|
+
createFunctionRegistry: {
|
|
917
|
+
methodKind: "client_streaming";
|
|
918
|
+
input: typeof CreateFunctionRegistryRequestSchema;
|
|
919
|
+
output: typeof CreateFunctionRegistryResponseSchema;
|
|
920
|
+
};
|
|
921
|
+
updateFunctionRegistry: {
|
|
922
|
+
methodKind: "client_streaming";
|
|
923
|
+
input: typeof UpdateFunctionRegistryRequestSchema;
|
|
924
|
+
output: typeof UpdateFunctionRegistryResponseSchema;
|
|
925
|
+
};
|
|
926
|
+
getFunctionRegistry: {
|
|
927
|
+
methodKind: "unary";
|
|
928
|
+
input: typeof GetFunctionRegistryRequestSchema;
|
|
929
|
+
output: typeof GetFunctionRegistryResponseSchema;
|
|
930
|
+
};
|
|
931
|
+
listFunctionRegistries: {
|
|
932
|
+
methodKind: "unary";
|
|
933
|
+
input: typeof ListFunctionRegistriesRequestSchema;
|
|
934
|
+
output: typeof ListFunctionRegistriesResponseSchema;
|
|
935
|
+
};
|
|
936
|
+
deleteFunctionRegistry: {
|
|
937
|
+
methodKind: "unary";
|
|
938
|
+
input: typeof DeleteFunctionRegistryRequestSchema;
|
|
939
|
+
output: typeof DeleteFunctionRegistryResponseSchema;
|
|
940
|
+
};
|
|
941
|
+
downloadFunctionRegistryScript: {
|
|
942
|
+
methodKind: "server_streaming";
|
|
943
|
+
input: typeof DownloadFunctionRegistryScriptRequestSchema;
|
|
944
|
+
output: typeof DownloadFunctionRegistryScriptResponseSchema;
|
|
945
|
+
};
|
|
946
|
+
listMeterRequestCounts: {
|
|
947
|
+
methodKind: "unary";
|
|
948
|
+
input: typeof ListMeterRequestCountsRequestSchema;
|
|
949
|
+
output: typeof ListMeterRequestCountsResponseSchema;
|
|
950
|
+
};
|
|
951
|
+
listMeterExecutionCounts: {
|
|
952
|
+
methodKind: "unary";
|
|
953
|
+
input: typeof ListMeterExecutionCountsRequestSchema;
|
|
954
|
+
output: typeof ListMeterExecutionCountsResponseSchema;
|
|
955
|
+
};
|
|
956
|
+
listMeterEventCounts: {
|
|
957
|
+
methodKind: "unary";
|
|
958
|
+
input: typeof ListMeterEventCountsRequestSchema;
|
|
959
|
+
output: typeof ListMeterEventCountsResponseSchema;
|
|
960
|
+
};
|
|
961
|
+
listMeterAITokenUsages: {
|
|
962
|
+
methodKind: "unary";
|
|
963
|
+
input: typeof ListMeterAITokenUsagesRequestSchema;
|
|
964
|
+
output: typeof ListMeterAITokenUsagesResponseSchema;
|
|
965
|
+
};
|
|
966
|
+
listIdPServices: {
|
|
967
|
+
methodKind: "unary";
|
|
968
|
+
input: typeof ListIdPServicesRequestSchema;
|
|
969
|
+
output: typeof ListIdPServicesResponseSchema;
|
|
970
|
+
};
|
|
971
|
+
createIdPService: {
|
|
972
|
+
methodKind: "unary";
|
|
973
|
+
input: typeof CreateIdPServiceRequestSchema;
|
|
974
|
+
output: typeof CreateIdPServiceResponseSchema;
|
|
975
|
+
};
|
|
976
|
+
updateIdPService: {
|
|
977
|
+
methodKind: "unary";
|
|
978
|
+
input: typeof UpdateIdPServiceRequestSchema;
|
|
979
|
+
output: typeof UpdateIdPServiceResponseSchema;
|
|
980
|
+
};
|
|
981
|
+
deleteIdPService: {
|
|
982
|
+
methodKind: "unary";
|
|
983
|
+
input: typeof DeleteIdPServiceRequestSchema;
|
|
984
|
+
output: typeof DeleteIdPServiceResponseSchema;
|
|
985
|
+
};
|
|
986
|
+
getIdPService: {
|
|
987
|
+
methodKind: "unary";
|
|
988
|
+
input: typeof GetIdPServiceRequestSchema;
|
|
989
|
+
output: typeof GetIdPServiceResponseSchema;
|
|
990
|
+
};
|
|
991
|
+
listIdPClients: {
|
|
992
|
+
methodKind: "unary";
|
|
993
|
+
input: typeof ListIdPClientsRequestSchema;
|
|
994
|
+
output: typeof ListIdPClientsResponseSchema;
|
|
995
|
+
};
|
|
996
|
+
createIdPClient: {
|
|
997
|
+
methodKind: "unary";
|
|
998
|
+
input: typeof CreateIdPClientRequestSchema;
|
|
999
|
+
output: typeof CreateIdPClientResponseSchema;
|
|
1000
|
+
};
|
|
1001
|
+
deleteIdPClient: {
|
|
1002
|
+
methodKind: "unary";
|
|
1003
|
+
input: typeof DeleteIdPClientRequestSchema;
|
|
1004
|
+
output: typeof DeleteIdPClientResponseSchema;
|
|
1005
|
+
};
|
|
1006
|
+
getIdPClient: {
|
|
1007
|
+
methodKind: "unary";
|
|
1008
|
+
input: typeof GetIdPClientRequestSchema;
|
|
1009
|
+
output: typeof GetIdPClientResponseSchema;
|
|
1010
|
+
};
|
|
1011
|
+
createStaticWebsite: {
|
|
1012
|
+
methodKind: "unary";
|
|
1013
|
+
input: typeof CreateStaticWebsiteRequestSchema;
|
|
1014
|
+
output: typeof CreateStaticWebsiteResponseSchema;
|
|
1015
|
+
};
|
|
1016
|
+
updateStaticWebsite: {
|
|
1017
|
+
methodKind: "unary";
|
|
1018
|
+
input: typeof UpdateStaticWebsiteRequestSchema;
|
|
1019
|
+
output: typeof UpdateStaticWebsiteResponseSchema;
|
|
1020
|
+
};
|
|
1021
|
+
deleteStaticWebsite: {
|
|
1022
|
+
methodKind: "unary";
|
|
1023
|
+
input: typeof DeleteStaticWebsiteRequestSchema;
|
|
1024
|
+
output: typeof DeleteStaticWebsiteResponseSchema;
|
|
1025
|
+
};
|
|
1026
|
+
getStaticWebsite: {
|
|
1027
|
+
methodKind: "unary";
|
|
1028
|
+
input: typeof GetStaticWebsiteRequestSchema;
|
|
1029
|
+
output: typeof GetStaticWebsiteResponseSchema;
|
|
1030
|
+
};
|
|
1031
|
+
listStaticWebsites: {
|
|
1032
|
+
methodKind: "unary";
|
|
1033
|
+
input: typeof ListStaticWebsitesRequestSchema;
|
|
1034
|
+
output: typeof ListStaticWebsitesResponseSchema;
|
|
1035
|
+
};
|
|
1036
|
+
addCustomDomain: {
|
|
1037
|
+
methodKind: "unary";
|
|
1038
|
+
input: typeof AddCustomDomainRequestSchema;
|
|
1039
|
+
output: typeof AddCustomDomainResponseSchema;
|
|
1040
|
+
};
|
|
1041
|
+
getCustomDomain: {
|
|
1042
|
+
methodKind: "unary";
|
|
1043
|
+
input: typeof GetCustomDomainRequestSchema;
|
|
1044
|
+
output: typeof GetCustomDomainResponseSchema;
|
|
1045
|
+
};
|
|
1046
|
+
listCustomDomains: {
|
|
1047
|
+
methodKind: "unary";
|
|
1048
|
+
input: typeof ListCustomDomainsRequestSchema;
|
|
1049
|
+
output: typeof ListCustomDomainsResponseSchema;
|
|
1050
|
+
};
|
|
1051
|
+
removeCustomDomain: {
|
|
1052
|
+
methodKind: "unary";
|
|
1053
|
+
input: typeof RemoveCustomDomainRequestSchema;
|
|
1054
|
+
output: typeof RemoveCustomDomainResponseSchema;
|
|
1055
|
+
};
|
|
1056
|
+
createDeployment: {
|
|
1057
|
+
methodKind: "unary";
|
|
1058
|
+
input: typeof CreateDeploymentRequestSchema;
|
|
1059
|
+
output: typeof CreateDeploymentResponseSchema;
|
|
1060
|
+
};
|
|
1061
|
+
uploadFile: {
|
|
1062
|
+
methodKind: "client_streaming";
|
|
1063
|
+
input: typeof UploadFileRequestSchema;
|
|
1064
|
+
output: typeof UploadFileResponseSchema;
|
|
1065
|
+
};
|
|
1066
|
+
publishDeployment: {
|
|
1067
|
+
methodKind: "unary";
|
|
1068
|
+
input: typeof PublishDeploymentRequestSchema;
|
|
1069
|
+
output: typeof PublishDeploymentResponseSchema;
|
|
1070
|
+
};
|
|
1071
|
+
createWorkflow: {
|
|
1072
|
+
methodKind: "unary";
|
|
1073
|
+
input: typeof CreateWorkflowRequestSchema;
|
|
1074
|
+
output: typeof CreateWorkflowResponseSchema;
|
|
1075
|
+
};
|
|
1076
|
+
updateWorkflow: {
|
|
1077
|
+
methodKind: "unary";
|
|
1078
|
+
input: typeof UpdateWorkflowRequestSchema;
|
|
1079
|
+
output: typeof UpdateWorkflowResponseSchema;
|
|
1080
|
+
};
|
|
1081
|
+
deleteWorkflow: {
|
|
1082
|
+
methodKind: "unary";
|
|
1083
|
+
input: typeof DeleteWorkflowRequestSchema;
|
|
1084
|
+
output: typeof DeleteWorkflowResponseSchema;
|
|
1085
|
+
};
|
|
1086
|
+
getWorkflow: {
|
|
1087
|
+
methodKind: "unary";
|
|
1088
|
+
input: typeof GetWorkflowRequestSchema;
|
|
1089
|
+
output: typeof GetWorkflowResponseSchema;
|
|
1090
|
+
};
|
|
1091
|
+
getWorkflowByName: {
|
|
1092
|
+
methodKind: "unary";
|
|
1093
|
+
input: typeof GetWorkflowByNameRequestSchema;
|
|
1094
|
+
output: typeof GetWorkflowByNameResponseSchema;
|
|
1095
|
+
};
|
|
1096
|
+
listWorkflows: {
|
|
1097
|
+
methodKind: "unary";
|
|
1098
|
+
input: typeof ListWorkflowsRequestSchema;
|
|
1099
|
+
output: typeof ListWorkflowsResponseSchema;
|
|
1100
|
+
};
|
|
1101
|
+
createWorkflowJobFunction: {
|
|
1102
|
+
methodKind: "unary";
|
|
1103
|
+
input: typeof CreateWorkflowJobFunctionRequestSchema;
|
|
1104
|
+
output: typeof CreateWorkflowJobFunctionResponseSchema;
|
|
1105
|
+
};
|
|
1106
|
+
updateWorkflowJobFunction: {
|
|
1107
|
+
methodKind: "unary";
|
|
1108
|
+
input: typeof UpdateWorkflowJobFunctionRequestSchema;
|
|
1109
|
+
output: typeof UpdateWorkflowJobFunctionResponseSchema;
|
|
1110
|
+
};
|
|
1111
|
+
deleteWorkflowJobFunction: {
|
|
1112
|
+
methodKind: "unary";
|
|
1113
|
+
input: typeof DeleteWorkflowJobFunctionRequestSchema;
|
|
1114
|
+
output: typeof DeleteWorkflowJobFunctionResponseSchema;
|
|
1115
|
+
};
|
|
1116
|
+
getWorkflowJobFunction: {
|
|
1117
|
+
methodKind: "unary";
|
|
1118
|
+
input: typeof GetWorkflowJobFunctionRequestSchema;
|
|
1119
|
+
output: typeof GetWorkflowJobFunctionResponseSchema;
|
|
1120
|
+
};
|
|
1121
|
+
getWorkflowJobFunctionByName: {
|
|
1122
|
+
methodKind: "unary";
|
|
1123
|
+
input: typeof GetWorkflowJobFunctionByNameRequestSchema;
|
|
1124
|
+
output: typeof GetWorkflowJobFunctionByNameResponseSchema;
|
|
1125
|
+
};
|
|
1126
|
+
listWorkflowJobFunctions: {
|
|
1127
|
+
methodKind: "unary";
|
|
1128
|
+
input: typeof ListWorkflowJobFunctionsRequestSchema;
|
|
1129
|
+
output: typeof ListWorkflowJobFunctionsResponseSchema;
|
|
1130
|
+
};
|
|
1131
|
+
getWorkflowExecution: {
|
|
1132
|
+
methodKind: "unary";
|
|
1133
|
+
input: typeof GetWorkflowExecutionRequestSchema;
|
|
1134
|
+
output: typeof GetWorkflowExecutionResponseSchema;
|
|
1135
|
+
};
|
|
1136
|
+
listWorkflowExecutions: {
|
|
1137
|
+
methodKind: "unary";
|
|
1138
|
+
input: typeof ListWorkflowExecutionsRequestSchema;
|
|
1139
|
+
output: typeof ListWorkflowExecutionsResponseSchema;
|
|
1140
|
+
};
|
|
1141
|
+
testStartWorkflow: {
|
|
1142
|
+
methodKind: "unary";
|
|
1143
|
+
input: typeof TestStartWorkflowRequestSchema;
|
|
1144
|
+
output: typeof TestStartWorkflowResponseSchema;
|
|
1145
|
+
};
|
|
1146
|
+
testResumeWorkflow: {
|
|
1147
|
+
methodKind: "unary";
|
|
1148
|
+
input: typeof TestResumeWorkflowRequestSchema;
|
|
1149
|
+
output: typeof TestResumeWorkflowResponseSchema;
|
|
1150
|
+
};
|
|
1151
|
+
createWorkflowJobFunctionExecutionPolicy: {
|
|
1152
|
+
methodKind: "unary";
|
|
1153
|
+
input: typeof CreateWorkflowJobFunctionExecutionPolicyRequestSchema;
|
|
1154
|
+
output: typeof CreateWorkflowJobFunctionExecutionPolicyResponseSchema;
|
|
1155
|
+
};
|
|
1156
|
+
updateWorkflowJobFunctionExecutionPolicy: {
|
|
1157
|
+
methodKind: "unary";
|
|
1158
|
+
input: typeof UpdateWorkflowJobFunctionExecutionPolicyRequestSchema;
|
|
1159
|
+
output: typeof UpdateWorkflowJobFunctionExecutionPolicyResponseSchema;
|
|
1160
|
+
};
|
|
1161
|
+
deleteWorkflowJobFunctionExecutionPolicy: {
|
|
1162
|
+
methodKind: "unary";
|
|
1163
|
+
input: typeof DeleteWorkflowJobFunctionExecutionPolicyRequestSchema;
|
|
1164
|
+
output: typeof DeleteWorkflowJobFunctionExecutionPolicyResponseSchema;
|
|
1165
|
+
};
|
|
1166
|
+
getWorkflowJobFunctionExecutionPolicy: {
|
|
1167
|
+
methodKind: "unary";
|
|
1168
|
+
input: typeof GetWorkflowJobFunctionExecutionPolicyRequestSchema;
|
|
1169
|
+
output: typeof GetWorkflowJobFunctionExecutionPolicyResponseSchema;
|
|
1170
|
+
};
|
|
1171
|
+
getWorkflowJobFunctionExecutionPolicyByKey: {
|
|
1172
|
+
methodKind: "unary";
|
|
1173
|
+
input: typeof GetWorkflowJobFunctionExecutionPolicyByKeyRequestSchema;
|
|
1174
|
+
output: typeof GetWorkflowJobFunctionExecutionPolicyByKeyResponseSchema;
|
|
1175
|
+
};
|
|
1176
|
+
listWorkflowJobFunctionExecutionPolicies: {
|
|
1177
|
+
methodKind: "unary";
|
|
1178
|
+
input: typeof ListWorkflowJobFunctionExecutionPoliciesRequestSchema;
|
|
1179
|
+
output: typeof ListWorkflowJobFunctionExecutionPoliciesResponseSchema;
|
|
1180
|
+
};
|
|
1181
|
+
setMetadata: {
|
|
1182
|
+
methodKind: "unary";
|
|
1183
|
+
input: typeof SetMetadataRequestSchema;
|
|
1184
|
+
output: typeof SetMetadataResponseSchema;
|
|
1185
|
+
};
|
|
1186
|
+
getMetadata: {
|
|
1187
|
+
methodKind: "unary";
|
|
1188
|
+
input: typeof GetMetadataRequestSchema;
|
|
1189
|
+
output: typeof GetMetadataResponseSchema;
|
|
1190
|
+
};
|
|
1191
|
+
createControlplaneMachineUser: {
|
|
1192
|
+
methodKind: "unary";
|
|
1193
|
+
input: typeof CreateControlplaneMachineUserRequestSchema;
|
|
1194
|
+
output: typeof CreateControlplaneMachineUserResponseSchema;
|
|
1195
|
+
};
|
|
1196
|
+
updateControlplaneMachineUser: {
|
|
1197
|
+
methodKind: "unary";
|
|
1198
|
+
input: typeof UpdateControlplaneMachineUserRequestSchema;
|
|
1199
|
+
output: typeof UpdateControlplaneMachineUserResponseSchema;
|
|
1200
|
+
};
|
|
1201
|
+
getControlplaneMachineUser: {
|
|
1202
|
+
methodKind: "unary";
|
|
1203
|
+
input: typeof GetControlplaneMachineUserRequestSchema;
|
|
1204
|
+
output: typeof GetControlplaneMachineUserResponseSchema;
|
|
1205
|
+
};
|
|
1206
|
+
getControlplaneMachineUserByName: {
|
|
1207
|
+
methodKind: "unary";
|
|
1208
|
+
input: typeof GetControlplaneMachineUserByNameRequestSchema;
|
|
1209
|
+
output: typeof GetControlplaneMachineUserByNameResponseSchema;
|
|
1210
|
+
};
|
|
1211
|
+
listControlplaneMachineUsers: {
|
|
1212
|
+
methodKind: "unary";
|
|
1213
|
+
input: typeof ListControlplaneMachineUsersRequestSchema;
|
|
1214
|
+
output: typeof ListControlplaneMachineUsersResponseSchema;
|
|
1215
|
+
};
|
|
1216
|
+
deleteControlplaneMachineUser: {
|
|
1217
|
+
methodKind: "unary";
|
|
1218
|
+
input: typeof DeleteControlplaneMachineUserRequestSchema;
|
|
1219
|
+
output: typeof DeleteControlplaneMachineUserResponseSchema;
|
|
1220
|
+
};
|
|
1221
|
+
createOTLPExporter: {
|
|
1222
|
+
methodKind: "unary";
|
|
1223
|
+
input: typeof CreateOTLPExporterRequestSchema;
|
|
1224
|
+
output: typeof CreateOTLPExporterResponseSchema;
|
|
1225
|
+
};
|
|
1226
|
+
updateOTLPExporter: {
|
|
1227
|
+
methodKind: "unary";
|
|
1228
|
+
input: typeof UpdateOTLPExporterRequestSchema;
|
|
1229
|
+
output: typeof UpdateOTLPExporterResponseSchema;
|
|
1230
|
+
};
|
|
1231
|
+
getOTLPExporter: {
|
|
1232
|
+
methodKind: "unary";
|
|
1233
|
+
input: typeof GetOTLPExporterRequestSchema;
|
|
1234
|
+
output: typeof GetOTLPExporterResponseSchema;
|
|
1235
|
+
};
|
|
1236
|
+
listOTLPExporters: {
|
|
1237
|
+
methodKind: "unary";
|
|
1238
|
+
input: typeof ListOTLPExportersRequestSchema;
|
|
1239
|
+
output: typeof ListOTLPExportersResponseSchema;
|
|
1240
|
+
};
|
|
1241
|
+
deleteOTLPExporter: {
|
|
1242
|
+
methodKind: "unary";
|
|
1243
|
+
input: typeof DeleteOTLPExporterRequestSchema;
|
|
1244
|
+
output: typeof DeleteOTLPExporterResponseSchema;
|
|
1245
|
+
};
|
|
1246
|
+
testOTLPExporter: {
|
|
1247
|
+
methodKind: "unary";
|
|
1248
|
+
input: typeof TestOTLPExporterRequestSchema;
|
|
1249
|
+
output: typeof TestOTLPExporterResponseSchema;
|
|
1250
|
+
};
|
|
1251
|
+
createResourceAttributesConfig: {
|
|
1252
|
+
methodKind: "unary";
|
|
1253
|
+
input: typeof CreateResourceAttributesConfigRequestSchema;
|
|
1254
|
+
output: typeof CreateResourceAttributesConfigResponseSchema;
|
|
1255
|
+
};
|
|
1256
|
+
getResourceAttributesConfig: {
|
|
1257
|
+
methodKind: "unary";
|
|
1258
|
+
input: typeof GetResourceAttributesConfigRequestSchema;
|
|
1259
|
+
output: typeof GetResourceAttributesConfigResponseSchema;
|
|
1260
|
+
};
|
|
1261
|
+
updateResourceAttributesConfig: {
|
|
1262
|
+
methodKind: "unary";
|
|
1263
|
+
input: typeof UpdateResourceAttributesConfigRequestSchema;
|
|
1264
|
+
output: typeof UpdateResourceAttributesConfigResponseSchema;
|
|
1265
|
+
};
|
|
1266
|
+
deleteResourceAttributesConfig: {
|
|
1267
|
+
methodKind: "unary";
|
|
1268
|
+
input: typeof DeleteResourceAttributesConfigRequestSchema;
|
|
1269
|
+
output: typeof DeleteResourceAttributesConfigResponseSchema;
|
|
1270
|
+
};
|
|
1271
|
+
}>>>;
|
|
1272
|
+
//#endregion
|
|
1273
|
+
export { OperatorClient, PlatformClientConfig, initOperatorClient };
|