@tailor-platform/sdk 2.0.0-next.1 → 2.0.0-next.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/CHANGELOG.md +869 -2
  2. package/README.md +9 -9
  3. package/agent-skills/{tailor-sdk → tailor}/SKILL.md +3 -1
  4. package/dist/aigateway-DR4Kwuik.mjs +9 -0
  5. package/dist/aigateway-DR4Kwuik.mjs.map +1 -0
  6. package/dist/application-DArFTTJ9.mjs +3 -0
  7. package/dist/{application-DqS1yBg3.mjs → application-miwiXtB4.mjs} +1892 -1968
  8. package/dist/application-miwiXtB4.mjs.map +1 -0
  9. package/dist/authconnection-CZvi9ANm.mjs +9 -0
  10. package/dist/authconnection-CZvi9ANm.mjs.map +1 -0
  11. package/dist/brand-Eo4pLXPJ.mjs.map +1 -1
  12. package/dist/cli/cache/bundle-cache.d.mts +2 -0
  13. package/dist/cli/cache/store.d.mts +1 -0
  14. package/dist/cli/cache/types.d.mts +1 -0
  15. package/dist/cli/commands/api/api-call.d.mts +19 -0
  16. package/dist/cli/commands/api/index.d.mts +4 -0
  17. package/dist/cli/commands/deploy/aigateway.d.mts +5 -0
  18. package/dist/cli/commands/deploy/application.d.mts +7 -0
  19. package/dist/cli/commands/deploy/apply-phases.d.mts +14 -0
  20. package/dist/cli/commands/deploy/auth.d.mts +5 -0
  21. package/dist/cli/commands/deploy/deploy.d.mts +34 -0
  22. package/dist/cli/commands/deploy/executor.d.mts +7 -0
  23. package/dist/cli/commands/deploy/function-registry-types.d.mts +12 -0
  24. package/dist/cli/commands/deploy/function-registry.d.mts +7 -0
  25. package/dist/cli/commands/deploy/idp.d.mts +5 -0
  26. package/dist/cli/commands/deploy/resolver.d.mts +5 -0
  27. package/dist/cli/commands/deploy/secret-manager.d.mts +5 -0
  28. package/dist/cli/commands/deploy/staticwebsite.d.mts +5 -0
  29. package/dist/cli/commands/deploy/tailordb/index.d.mts +9 -0
  30. package/dist/cli/commands/deploy/types.d.mts +3 -0
  31. package/dist/cli/commands/deploy/workflow-execution-policy.d.mts +3 -0
  32. package/dist/cli/commands/deploy/workflow.d.mts +4 -0
  33. package/dist/cli/commands/executor/get.d.mts +28 -0
  34. package/dist/cli/commands/executor/jobs.d.mts +122 -0
  35. package/dist/cli/commands/executor/list.d.mts +18 -0
  36. package/dist/cli/commands/executor/transform.d.mts +42 -0
  37. package/dist/cli/commands/executor/trigger.d.mts +40 -0
  38. package/dist/cli/commands/executor/webhook.d.mts +21 -0
  39. package/dist/cli/commands/function/get.d.mts +17 -0
  40. package/dist/cli/commands/function/list.d.mts +21 -0
  41. package/dist/cli/commands/function/transform.d.mts +12 -0
  42. package/dist/cli/commands/generate/options.d.mts +6 -0
  43. package/dist/cli/commands/generate/seed/bundler.d.mts +26 -0
  44. package/dist/cli/commands/generate/service.d.mts +15 -0
  45. package/dist/cli/commands/machineuser/list.d.mts +26 -0
  46. package/dist/cli/commands/machineuser/token.d.mts +21 -0
  47. package/dist/cli/commands/oauth2client/get.d.mts +17 -0
  48. package/dist/cli/commands/oauth2client/list.d.mts +19 -0
  49. package/dist/cli/commands/oauth2client/transform.d.mts +21 -0
  50. package/dist/cli/commands/organization/folder/create.d.mts +17 -0
  51. package/dist/cli/commands/organization/folder/delete.d.mts +15 -0
  52. package/dist/cli/commands/organization/folder/get.d.mts +16 -0
  53. package/dist/cli/commands/organization/folder/list.d.mts +21 -0
  54. package/dist/cli/commands/organization/folder/update.d.mts +17 -0
  55. package/dist/cli/commands/organization/get.d.mts +15 -0
  56. package/dist/cli/commands/organization/list.d.mts +14 -0
  57. package/dist/cli/commands/organization/transform.d.mts +29 -0
  58. package/dist/cli/commands/organization/tree.d.mts +24 -0
  59. package/dist/cli/commands/organization/update.d.mts +16 -0
  60. package/dist/cli/commands/remove.d.mts +15 -0
  61. package/dist/cli/commands/show.d.mts +39 -0
  62. package/dist/cli/commands/staticwebsite/deploy.d.mts +19 -0
  63. package/dist/cli/commands/tailordb/migrate/bundler.d.mts +29 -0
  64. package/dist/cli/commands/tailordb/migrate/config.d.mts +18 -0
  65. package/dist/cli/commands/tailordb/migrate/diff-calculator.d.mts +246 -0
  66. package/dist/cli/commands/tailordb/migrate/generate.d.mts +16 -0
  67. package/dist/cli/commands/tailordb/migrate/snapshot-types.d.mts +208 -0
  68. package/dist/cli/commands/tailordb/migrate/snapshot.d.mts +98 -0
  69. package/dist/cli/commands/tailordb/migrate/types.d.mts +7 -0
  70. package/dist/cli/commands/tailordb/truncate.d.mts +18 -0
  71. package/dist/cli/commands/workflow/executions.d.mts +74 -0
  72. package/dist/cli/commands/workflow/get.d.mts +30 -0
  73. package/dist/cli/commands/workflow/list.d.mts +18 -0
  74. package/dist/cli/commands/workflow/resume.d.mts +22 -0
  75. package/dist/cli/commands/workflow/start.d.mts +60 -0
  76. package/dist/cli/commands/workflow/status.d.mts +6 -0
  77. package/dist/cli/commands/workflow/transform.d.mts +34 -0
  78. package/dist/cli/commands/workflow/wait.d.mts +15 -0
  79. package/dist/cli/commands/workflow/waiter.d.mts +23 -0
  80. package/dist/cli/commands/workspace/app/health.d.mts +17 -0
  81. package/dist/cli/commands/workspace/app/list.d.mts +21 -0
  82. package/dist/cli/commands/workspace/app/transform.d.mts +20 -0
  83. package/dist/cli/commands/workspace/create.d.mts +27 -0
  84. package/dist/cli/commands/workspace/delete.d.mts +14 -0
  85. package/dist/cli/commands/workspace/get.d.mts +16 -0
  86. package/dist/cli/commands/workspace/list.d.mts +17 -0
  87. package/dist/cli/commands/workspace/restore.d.mts +14 -0
  88. package/dist/cli/commands/workspace/transform.d.mts +20 -0
  89. package/dist/cli/commands/workspace/user/invite.d.mts +21 -0
  90. package/dist/cli/commands/workspace/user/list.d.mts +21 -0
  91. package/dist/cli/commands/workspace/user/remove.d.mts +16 -0
  92. package/dist/cli/commands/workspace/user/transform.d.mts +9 -0
  93. package/dist/cli/commands/workspace/user/update.d.mts +21 -0
  94. package/dist/cli/index.mjs +12 -5481
  95. package/dist/cli/lib.d.mts +90 -21048
  96. package/dist/cli/lib.mjs +154 -12
  97. package/dist/cli/lib.mjs.map +1 -1
  98. package/dist/cli/main.d.mts +23 -0
  99. package/dist/cli/main.mjs +6583 -0
  100. package/dist/cli/main.mjs.map +1 -0
  101. package/dist/cli/query/index.d.mts +38 -0
  102. package/dist/cli/services/application.d.mts +12 -0
  103. package/dist/cli/services/auth/service.d.mts +3 -0
  104. package/dist/cli/services/executor/service.d.mts +1 -0
  105. package/dist/cli/services/http-adapter/bundler.d.mts +3 -0
  106. package/dist/cli/services/http-adapter/service.d.mts +2 -0
  107. package/dist/cli/services/resolver/service.d.mts +1 -0
  108. package/dist/cli/services/tailordb/service.d.mts +3 -0
  109. package/dist/cli/services/workflow/bundler.d.mts +2 -0
  110. package/dist/cli/services/workflow/service.d.mts +1 -0
  111. package/dist/cli/shared/args.d.mts +13 -0
  112. package/dist/cli/shared/client.d.mts +1273 -0
  113. package/dist/cli/shared/config-loader.d.mts +25 -0
  114. package/dist/cli/shared/context.d.mts +29 -0
  115. package/dist/cli/shared/error-json.d.mts +23 -0
  116. package/dist/cli/shared/readonly-guard.d.mts +25 -0
  117. package/dist/cli/shared/script-executor.d.mts +77 -0
  118. package/dist/cli/shared/seed-chunker.d.mts +45 -0
  119. package/dist/cli/shared/seed-context.d.mts +49 -0
  120. package/dist/cli/shared/tailordb-namespaces.d.mts +40 -0
  121. package/dist/cli/shared/type-generator.d.mts +19 -0
  122. package/dist/cli/shared/workspace-name.d.mts +1 -0
  123. package/dist/cli/ts-hook.d.mts +4 -0
  124. package/dist/cli/ts-hook.mjs +333 -0
  125. package/dist/completion/zsh-worker.zsh +1433 -1239
  126. package/dist/configure/config/index.d.mts +20 -0
  127. package/dist/configure/config/types.d.mts +111 -0
  128. package/dist/configure/index.d.mts +135 -8
  129. package/dist/configure/index.mjs +390 -36
  130. package/dist/configure/index.mjs.map +1 -1
  131. package/dist/configure/services/aigateway/index.d.mts +16 -0
  132. package/dist/configure/services/aigateway/types.d.mts +10 -0
  133. package/dist/configure/services/auth/index.d.mts +33 -0
  134. package/dist/configure/services/auth/types.d.mts +168 -0
  135. package/dist/configure/services/executor/executor.d.mts +70 -0
  136. package/dist/configure/services/executor/index.d.mts +9 -0
  137. package/dist/configure/services/executor/operation.d.mts +50 -0
  138. package/dist/configure/services/executor/trigger/event.d.mts +271 -0
  139. package/dist/configure/services/executor/trigger/index.d.mts +7 -0
  140. package/dist/configure/services/executor/trigger/schedule.d.mts +24 -0
  141. package/dist/configure/services/executor/trigger/webhook.d.mts +43 -0
  142. package/dist/configure/services/executor/types.d.mts +2 -0
  143. package/dist/configure/services/http-adapter/http-adapter.d.mts +124 -0
  144. package/dist/configure/services/http-adapter/index.d.mts +2 -0
  145. package/dist/configure/services/idp/index.d.mts +60 -0
  146. package/dist/configure/services/idp/permission.d.mts +64 -0
  147. package/dist/configure/services/idp/types.d.mts +23 -0
  148. package/dist/configure/services/index.d.mts +40 -0
  149. package/dist/configure/services/resolver/index.d.mts +6 -0
  150. package/dist/configure/services/resolver/permission.d.mts +64 -0
  151. package/dist/configure/services/resolver/resolver.d.mts +88 -0
  152. package/dist/configure/services/resolver/types.d.mts +5 -0
  153. package/dist/configure/services/secrets/index.d.mts +37 -0
  154. package/dist/configure/services/secrets/types.d.mts +10 -0
  155. package/dist/configure/services/staticwebsite/index.d.mts +18 -0
  156. package/dist/configure/services/staticwebsite/types.d.mts +10 -0
  157. package/dist/configure/services/tailordb/index.d.mts +4 -0
  158. package/dist/configure/services/tailordb/permission.d.mts +103 -0
  159. package/dist/configure/services/tailordb/schema.d.mts +486 -0
  160. package/dist/configure/services/tailordb/types.d.mts +198 -0
  161. package/dist/configure/services/workflow/execution-policy.d.mts +70 -0
  162. package/dist/configure/services/workflow/execution-policy.types.d.mts +103 -0
  163. package/dist/configure/services/workflow/index.d.mts +9 -0
  164. package/dist/configure/services/workflow/job.d.mts +83 -0
  165. package/dist/configure/services/workflow/types.d.mts +2 -0
  166. package/dist/configure/services/workflow/wait-point.d.mts +72 -0
  167. package/dist/configure/services/workflow/workflow.d.mts +56 -0
  168. package/dist/configure/types/aigateway-name.d.mts +12 -0
  169. package/dist/configure/types/connection-name.d.mts +12 -0
  170. package/dist/configure/types/field.d.mts +8 -0
  171. package/dist/configure/types/field.types.d.mts +70 -0
  172. package/dist/configure/types/idp-name.d.mts +12 -0
  173. package/dist/configure/types/index.d.mts +5 -0
  174. package/dist/configure/types/machine-user.d.mts +2 -0
  175. package/dist/configure/types/permission-operand.types.d.mts +20 -0
  176. package/dist/configure/types/type.d.mts +73 -0
  177. package/dist/{context-Bd266-ru.mjs → context-DYQVYWqZ.mjs} +4 -5
  178. package/dist/context-DYQVYWqZ.mjs.map +1 -0
  179. package/dist/{crashreport-BsjAkFWw.mjs → crashreport-B5LqCTfF.mjs} +10 -11
  180. package/dist/{crashreport-BsjAkFWw.mjs.map → crashreport-B5LqCTfF.mjs.map} +1 -1
  181. package/dist/{crashreport-pr6Rhvza.mjs → crashreport-eI7ty7ok.mjs} +1 -1
  182. package/dist/enum-constants-j9QBF0cB.mjs.map +1 -1
  183. package/dist/{errors-Dtf2WPaW.mjs → errors-D7583Zz7.mjs} +18 -2
  184. package/dist/errors-D7583Zz7.mjs.map +1 -0
  185. package/dist/{file-_oUZo76X.mjs → file-BUcmVIH2.mjs} +12 -22
  186. package/dist/file-BUcmVIH2.mjs.map +1 -0
  187. package/dist/{file-utils-DcyIPFQh.mjs → file-utils-yEiIS4nJ.mjs} +6 -6
  188. package/dist/file-utils-yEiIS4nJ.mjs.map +1 -0
  189. package/dist/{globals-Crz8o65k.mjs → globals-DQotNuwK.mjs} +33 -55
  190. package/dist/globals-DQotNuwK.mjs.map +1 -0
  191. package/dist/iconv-QWaZh0TT.mjs +38 -0
  192. package/dist/iconv-QWaZh0TT.mjs.map +1 -0
  193. package/dist/{idp-BDbK5gjm.mjs → idp-RA_swu-h.mjs} +12 -5
  194. package/dist/idp-RA_swu-h.mjs.map +1 -0
  195. package/dist/{interceptor-D-q1rvRl.mjs → interceptor-e33JtsC-.mjs} +2 -2
  196. package/dist/interceptor-e33JtsC-.mjs.map +1 -0
  197. package/dist/kysely/index.d.mts +5 -7
  198. package/dist/{kysely-type-DR8uzZTA.mjs → kysely-type-DqIRgDYR.mjs} +5 -4
  199. package/dist/kysely-type-DqIRgDYR.mjs.map +1 -0
  200. package/dist/logger-BtX0suGY.mjs +48 -0
  201. package/dist/logger-BtX0suGY.mjs.map +1 -0
  202. package/dist/logger-CXQq9YIp.mjs +317 -0
  203. package/dist/logger-CXQq9YIp.mjs.map +1 -0
  204. package/dist/parser/service/auth/index.d.mts +1 -0
  205. package/dist/parser/service/auth/schema.d.mts +3 -0
  206. package/dist/parser/service/http-adapter/index.d.mts +1 -0
  207. package/dist/parser/service/http-adapter/schema.d.mts +1 -0
  208. package/dist/parser/service/idp/types.d.mts +5 -0
  209. package/dist/parser/service/tailordb/type-source.d.mts +10 -0
  210. package/dist/parser/service/tailordb/types.d.mts +131 -0
  211. package/dist/platform-serialize-RoRtBS0v.mjs +46 -0
  212. package/dist/platform-serialize-RoRtBS0v.mjs.map +1 -0
  213. package/dist/plugin/builtin/enum-constants/index.d.mts +15 -1
  214. package/dist/plugin/builtin/file-utils/index.d.mts +15 -1
  215. package/dist/plugin/builtin/file-utils/index.mjs +1 -1
  216. package/dist/plugin/builtin/kysely-type/index.d.mts +15 -1
  217. package/dist/plugin/builtin/kysely-type/index.mjs +1 -1
  218. package/dist/plugin/builtin/seed/index.d.mts +46 -2
  219. package/dist/plugin/builtin/seed/index.mjs +1 -1
  220. package/dist/plugin/builtin/seed/seed-type-processor.d.mts +19 -0
  221. package/dist/plugin/builtin/seed/types.d.mts +2 -0
  222. package/dist/plugin/get-generated-type.d.mts +16 -0
  223. package/dist/plugin/index.d.mts +3 -117
  224. package/dist/plugin/index.mjs +1 -1
  225. package/dist/plugin/index.mjs.map +1 -1
  226. package/dist/plugin/manager.d.mts +2 -0
  227. package/dist/plugin/types.d.mts +242 -0
  228. package/dist/plugin/with-context.d.mts +101 -0
  229. package/dist/{runtime-n9NCkjee.mjs → register-ts-hook-BAHMwxfG.mjs} +7812 -4094
  230. package/dist/register-ts-hook-BAHMwxfG.mjs.map +1 -0
  231. package/dist/{registry-DdsYlL_P.mjs → registry-BIGVUrMB.mjs} +12 -9
  232. package/dist/registry-BIGVUrMB.mjs.map +1 -0
  233. package/dist/{repl-editor-DmGr9zMw.mjs → repl-editor-BCozyiNq.mjs} +6 -5
  234. package/dist/{repl-editor-DmGr9zMw.mjs.map → repl-editor-BCozyiNq.mjs.map} +1 -1
  235. package/dist/runtime/aigateway.d.mts +25 -0
  236. package/dist/runtime/aigateway.mjs +3 -0
  237. package/dist/runtime/authconnection.d.mts +21 -2
  238. package/dist/runtime/authconnection.mjs +2 -2
  239. package/dist/runtime/context.d.mts +54 -2
  240. package/dist/runtime/context.mjs +2 -2
  241. package/dist/runtime/field-parse.d.mts +10 -0
  242. package/dist/runtime/file.d.mts +170 -2
  243. package/dist/runtime/file.mjs +2 -2
  244. package/dist/runtime/globals.d.mts +38 -20
  245. package/dist/runtime/iconv.d.mts +73 -2
  246. package/dist/runtime/iconv.mjs +2 -2
  247. package/dist/runtime/idp.d.mts +129 -2
  248. package/dist/runtime/idp.mjs +2 -2
  249. package/dist/runtime/index.d.mts +48 -9
  250. package/dist/runtime/index.mjs +10 -8
  251. package/dist/runtime/logger.d.mts +98 -0
  252. package/dist/runtime/logger.mjs +3 -0
  253. package/dist/runtime/secretmanager.d.mts +41 -2
  254. package/dist/runtime/secretmanager.mjs +2 -2
  255. package/dist/runtime/types.d.mts +25 -0
  256. package/dist/runtime/workflow.d.mts +124 -2
  257. package/dist/runtime/workflow.mjs +2 -2
  258. package/dist/{schema-BhkpP5Hw.mjs → schema--xYWRGfe.mjs} +288 -229
  259. package/dist/schema--xYWRGfe.mjs.map +1 -0
  260. package/dist/{secret-file-DBqZhjFQ.mjs → secret-file-C3J4Gy8r.mjs} +2 -2
  261. package/dist/{secret-file-DBqZhjFQ.mjs.map → secret-file-C3J4Gy8r.mjs.map} +1 -1
  262. package/dist/secretmanager-CYlpffsz.mjs +13 -0
  263. package/dist/secretmanager-CYlpffsz.mjs.map +1 -0
  264. package/dist/secretmanager-IY4UvinW.mjs +131 -0
  265. package/dist/secretmanager-IY4UvinW.mjs.map +1 -0
  266. package/dist/seed/index.d.mts +4 -4
  267. package/dist/seed-LUVr7jHL.mjs +444 -0
  268. package/dist/seed-LUVr7jHL.mjs.map +1 -0
  269. package/dist/{service-DU1mVzri.mjs → service-B5WynBHQ.mjs} +3 -3
  270. package/dist/{service-DU1mVzri.mjs.map → service-B5WynBHQ.mjs.map} +1 -1
  271. package/dist/service-BNtPsK9Q.mjs +837 -0
  272. package/dist/service-BNtPsK9Q.mjs.map +1 -0
  273. package/dist/service-D5jn05ZI.mjs +3 -0
  274. package/dist/service_pb-BwZRiNug.mjs +167 -0
  275. package/dist/service_pb-BwZRiNug.mjs.map +1 -0
  276. package/dist/service_pb-wRkxUta6.mjs +3 -0
  277. package/dist/tailor-proto/src/tailor/v1/aigateway_pb.d.mts +203 -0
  278. package/dist/tailor-proto/src/tailor/v1/aigateway_resource_pb.d.mts +57 -0
  279. package/dist/tailor-proto/src/tailor/v1/application_pb.d.mts +315 -0
  280. package/dist/tailor-proto/src/tailor/v1/application_resource_pb.d.mts +160 -0
  281. package/dist/tailor-proto/src/tailor/v1/auth_pb.d.mts +2069 -0
  282. package/dist/tailor-proto/src/tailor/v1/auth_resource_pb.d.mts +865 -0
  283. package/dist/tailor-proto/src/tailor/v1/events_pb.d.mts +111 -0
  284. package/dist/tailor-proto/src/tailor/v1/events_resource_pb.d.mts +68 -0
  285. package/dist/tailor-proto/src/tailor/v1/executor_pb.d.mts +438 -0
  286. package/dist/tailor-proto/src/tailor/v1/executor_resource_pb.d.mts +563 -0
  287. package/dist/tailor-proto/src/tailor/v1/function_pb.d.mts +144 -0
  288. package/dist/tailor-proto/src/tailor/v1/function_registry_pb.d.mts +450 -0
  289. package/dist/tailor-proto/src/tailor/v1/function_resource_pb.d.mts +191 -0
  290. package/dist/tailor-proto/src/tailor/v1/http_adapter_resource_pb.d.mts +49 -0
  291. package/dist/tailor-proto/src/tailor/v1/idp_pb.d.mts +406 -0
  292. package/dist/tailor-proto/src/tailor/v1/idp_resource_pb.d.mts +429 -0
  293. package/dist/tailor-proto/src/tailor/v1/metadata_pb.d.mts +72 -0
  294. package/dist/tailor-proto/src/tailor/v1/metadata_resource_pb.d.mts +16 -0
  295. package/dist/tailor-proto/src/tailor/v1/meter_pb.d.mts +308 -0
  296. package/dist/tailor-proto/src/tailor/v1/pipeline_pb.d.mts +590 -0
  297. package/dist/tailor-proto/src/tailor/v1/pipeline_resource_pb.d.mts +329 -0
  298. package/dist/tailor-proto/src/tailor/v1/resource_pb.d.mts +112 -0
  299. package/dist/tailor-proto/src/tailor/v1/secret_manager_pb.d.mts +345 -0
  300. package/dist/tailor-proto/src/tailor/v1/secret_manager_resource_pb.d.mts +53 -0
  301. package/dist/tailor-proto/src/tailor/v1/service_pb.d.mts +3575 -0
  302. package/dist/tailor-proto/src/tailor/v1/stateflow_pb.d.mts +186 -0
  303. package/dist/tailor-proto/src/tailor/v1/stateflow_resource_pb.d.mts +28 -0
  304. package/dist/tailor-proto/src/tailor/v1/staticwebsite_pb.d.mts +428 -0
  305. package/dist/tailor-proto/src/tailor/v1/staticwebsite_resource_pb.d.mts +89 -0
  306. package/dist/tailor-proto/src/tailor/v1/tailordb_pb.d.mts +683 -0
  307. package/dist/tailor-proto/src/tailor/v1/tailordb_resource_pb.d.mts +796 -0
  308. package/dist/tailor-proto/src/tailor/v1/telemetryrouter_pb.d.mts +329 -0
  309. package/dist/tailor-proto/src/tailor/v1/telemetryrouter_resource_pb.d.mts +182 -0
  310. package/dist/tailor-proto/src/tailor/v1/workflow_pb.d.mts +861 -0
  311. package/dist/tailor-proto/src/tailor/v1/workflow_resource_pb.d.mts +309 -0
  312. package/dist/tailor-proto/src/tailor/v1/workspace_pb.d.mts +2014 -0
  313. package/dist/tailor-proto/src/tailor/v1/workspace_resource_pb.d.mts +482 -0
  314. package/dist/{telemetry-CdqJEzkj.mjs → telemetry-BRVdwh14.mjs} +3 -3
  315. package/dist/telemetry-BRVdwh14.mjs.map +1 -0
  316. package/dist/telemetry-CkbkeJxl.mjs +3 -0
  317. package/dist/test-env-key-D7UkZp99.mjs +75 -0
  318. package/dist/test-env-key-D7UkZp99.mjs.map +1 -0
  319. package/dist/types/aigateway.generated.d.mts +12 -0
  320. package/dist/types/app-config.generated.d.mts +4 -0
  321. package/dist/types/auth-connection.generated.d.mts +33 -0
  322. package/dist/types/auth.generated.d.mts +188 -0
  323. package/dist/types/executor.generated.d.mts +209 -0
  324. package/dist/types/helpers.d.mts +40 -0
  325. package/dist/types/http-adapter.generated.d.mts +28 -0
  326. package/dist/types/idp.generated.d.mts +626 -0
  327. package/dist/types/resolver.generated.d.mts +82 -0
  328. package/dist/types/secrets.generated.d.mts +14 -0
  329. package/dist/types/staticwebsite.generated.d.mts +14 -0
  330. package/dist/types/tailordb.generated.d.mts +468 -0
  331. package/dist/types/workflow.generated.d.mts +17 -0
  332. package/dist/user-agent-Bgsszb5I.mjs +28 -0
  333. package/dist/user-agent-Bgsszb5I.mjs.map +1 -0
  334. package/dist/utils/test/index.d.mts +6 -100
  335. package/dist/utils/test/index.mjs +60 -39
  336. package/dist/utils/test/index.mjs.map +1 -1
  337. package/dist/utils/test/mock.d.mts +86 -0
  338. package/dist/vitest/environment.d.mts +1 -2
  339. package/dist/vitest/environment.mjs +2 -2
  340. package/dist/vitest/environment.mjs.map +1 -1
  341. package/dist/vitest/index.d.mts +15 -429
  342. package/dist/vitest/index.mjs +1240 -31
  343. package/dist/vitest/index.mjs.map +1 -1
  344. package/dist/vitest/mock-kysely.d.mts +61 -0
  345. package/dist/vitest/mock.d.mts +10 -0
  346. package/dist/vitest/mocks/aigateway.d.mts +40 -0
  347. package/dist/vitest/mocks/authconnection.d.mts +38 -0
  348. package/dist/vitest/mocks/file.d.mts +58 -0
  349. package/dist/vitest/mocks/iconv.d.mts +51 -0
  350. package/dist/vitest/mocks/idp.d.mts +60 -0
  351. package/dist/vitest/mocks/logger.d.mts +45 -0
  352. package/dist/vitest/mocks/secretmanager.d.mts +44 -0
  353. package/dist/vitest/mocks/tailordb.d.mts +115 -0
  354. package/dist/vitest/mocks/workflow.d.mts +157 -0
  355. package/dist/vitest/setup.d.mts +1 -2
  356. package/dist/vitest/setup.mjs +2 -2
  357. package/dist/vitest/workflow-local.d.mts +41 -0
  358. package/dist/workflow-CsaQ9qK-.mjs +42 -0
  359. package/dist/workflow-CsaQ9qK-.mjs.map +1 -0
  360. package/dist/{client-z_oHGVNy.mjs → workspace_resource_pb-UGK1SSn_.mjs} +55 -619
  361. package/dist/workspace_resource_pb-UGK1SSn_.mjs.map +1 -0
  362. package/docs/cli/application.md +150 -250
  363. package/docs/cli/auth.md +51 -295
  364. package/docs/cli/completion.md +1 -25
  365. package/docs/cli/crashreport.md +3 -61
  366. package/docs/cli/executor.md +72 -183
  367. package/docs/cli/function.md +16 -132
  368. package/docs/cli/organization.md +11 -221
  369. package/docs/cli/plugin.md +29 -0
  370. package/docs/cli/query.md +2 -22
  371. package/docs/cli/secret.md +71 -251
  372. package/docs/cli/setup.md +138 -40
  373. package/docs/cli/skills.md +50 -39
  374. package/docs/cli/staticwebsite.md +32 -180
  375. package/docs/cli/tailordb.md +71 -427
  376. package/docs/cli/upgrade.md +2 -22
  377. package/docs/cli/user.md +78 -247
  378. package/docs/cli/workflow.md +150 -172
  379. package/docs/cli/workspace.md +167 -538
  380. package/docs/cli-reference.md +213 -96
  381. package/docs/configuration.md +40 -6
  382. package/docs/github-actions.md +72 -24
  383. package/docs/migration/v2.md +1316 -0
  384. package/docs/multi-environment.md +29 -7
  385. package/docs/plugin/custom.md +4 -4
  386. package/docs/plugin/index.md +8 -8
  387. package/docs/quickstart.md +8 -7
  388. package/docs/runtime.md +18 -9
  389. package/docs/services/aigateway.md +20 -2
  390. package/docs/services/auth.md +51 -59
  391. package/docs/services/executor.md +8 -3
  392. package/docs/services/http-adapter.md +16 -1
  393. package/docs/services/idp.md +55 -2
  394. package/docs/services/resolver.md +62 -8
  395. package/docs/services/secret.md +11 -11
  396. package/docs/services/staticwebsite.md +8 -2
  397. package/docs/services/tailordb-migration.md +43 -28
  398. package/docs/services/tailordb.md +200 -99
  399. package/docs/services/workflow.md +133 -55
  400. package/docs/testing.md +244 -143
  401. package/package.json +59 -46
  402. package/postinstall.mjs +4 -6
  403. package/dist/application-DB2r36Et.mjs +0 -3
  404. package/dist/application-DqS1yBg3.mjs.map +0 -1
  405. package/dist/authconnection-D2MhtTN5.mjs +0 -15
  406. package/dist/authconnection-D2MhtTN5.mjs.map +0 -1
  407. package/dist/authconnection-DvUQAjQS.d.mts +0 -39
  408. package/dist/cli/erd-viewer-assets/app.js +0 -1181
  409. package/dist/cli/erd-viewer-assets/index.html +0 -73
  410. package/dist/cli/erd-viewer-assets/serve.json +0 -13
  411. package/dist/cli/erd-viewer-assets/styles.css +0 -789
  412. package/dist/cli/index.d.mts +0 -5
  413. package/dist/cli/index.mjs.map +0 -1
  414. package/dist/client-Dbohmtkv.mjs +0 -3
  415. package/dist/client-z_oHGVNy.mjs.map +0 -1
  416. package/dist/context-Bd266-ru.mjs.map +0 -1
  417. package/dist/context-BuuIb8CC.d.mts +0 -68
  418. package/dist/errors-Dtf2WPaW.mjs.map +0 -1
  419. package/dist/field-DOsJCPFa.mjs +0 -22
  420. package/dist/field-DOsJCPFa.mjs.map +0 -1
  421. package/dist/file-BB8Vs9O_.d.mts +0 -250
  422. package/dist/file-_oUZo76X.mjs.map +0 -1
  423. package/dist/file-utils-DcyIPFQh.mjs.map +0 -1
  424. package/dist/globals-Crz8o65k.mjs.map +0 -1
  425. package/dist/http-adapter.generated-WgMnb7Sb.d.mts +0 -580
  426. package/dist/iconv-Co-TOPuH.d.mts +0 -122
  427. package/dist/iconv-D2vi8G36.mjs +0 -63
  428. package/dist/iconv-D2vi8G36.mjs.map +0 -1
  429. package/dist/idp-BDbK5gjm.mjs.map +0 -1
  430. package/dist/idp-DrhVrLmV.d.mts +0 -160
  431. package/dist/index-5vPyRu1y.d.mts +0 -18
  432. package/dist/index-B7AKc18V.d.mts +0 -47
  433. package/dist/index-BlpzXncY.d.mts +0 -1016
  434. package/dist/index-CK7u9isy.d.mts +0 -46
  435. package/dist/index-CNYe5lnW.d.mts +0 -18
  436. package/dist/index-DjUdWlzf.d.mts +0 -18
  437. package/dist/index-ZePLwxw7.d.mts +0 -208
  438. package/dist/interceptor-D-q1rvRl.mjs.map +0 -1
  439. package/dist/job-fuc3j1Ma.mjs +0 -53
  440. package/dist/job-fuc3j1Ma.mjs.map +0 -1
  441. package/dist/kysely-type-DR8uzZTA.mjs.map +0 -1
  442. package/dist/logger-CxF-Ex5d.mjs +0 -220
  443. package/dist/logger-CxF-Ex5d.mjs.map +0 -1
  444. package/dist/mock-BjFj5o1I.mjs +0 -804
  445. package/dist/mock-BjFj5o1I.mjs.map +0 -1
  446. package/dist/registry-DdsYlL_P.mjs.map +0 -1
  447. package/dist/rolldown-runtime-DXywRVcq.mjs +0 -20
  448. package/dist/runtime-n9NCkjee.mjs.map +0 -1
  449. package/dist/schema-BhkpP5Hw.mjs.map +0 -1
  450. package/dist/secretmanager-B3n4KHfm.d.mts +0 -55
  451. package/dist/secretmanager-BVxw3ih_.mjs +0 -24
  452. package/dist/secretmanager-BVxw3ih_.mjs.map +0 -1
  453. package/dist/seed-jf3008-h.mjs +0 -1160
  454. package/dist/seed-jf3008-h.mjs.map +0 -1
  455. package/dist/service-CCL8ruDf.mjs +0 -459
  456. package/dist/service-CCL8ruDf.mjs.map +0 -1
  457. package/dist/service-D6yonf2I.mjs +0 -3
  458. package/dist/telemetry-CdqJEzkj.mjs.map +0 -1
  459. package/dist/telemetry-ClwW5ohF.mjs +0 -3
  460. package/dist/test-env-key-D9kM6ETE.mjs +0 -49
  461. package/dist/test-env-key-D9kM6ETE.mjs.map +0 -1
  462. package/dist/types-B2RpYyA_.mjs +0 -371
  463. package/dist/types-B2RpYyA_.mjs.map +0 -1
  464. package/dist/types-ClhIrW_C.mjs +0 -4
  465. package/dist/types-DCUhgpyI.d.mts +0 -784
  466. package/dist/types-DhO_VEZd.d.mts +0 -574
  467. package/dist/types-DwDgacni.d.mts +0 -338
  468. package/dist/workflow-BbKvGLQg.d.mts +0 -96
  469. package/dist/workflow-DgemCAz3.mjs +0 -38
  470. package/dist/workflow-DgemCAz3.mjs.map +0 -1
  471. package/dist/workflow.generated-DtQwEo-x.d.mts +0 -671
@@ -0,0 +1,2069 @@
1
+ import { PageDirection } from "./resource_pb.mjs";
2
+ import { AuthConnection, AuthHook, AuthHookPoint, AuthIDPConfig, AuthOAuth2Client, AuthSCIMConfig, AuthSCIMResource, AuthService, ControlplaneMachineUser, MachineUser, PATScope, PersonalAccessToken, TenantProviderConfig, UserProfileProviderConfig } from "./auth_resource_pb.mjs";
3
+ import { GenMessage } from "@bufbuild/protobuf/codegenv2";
4
+ import { Message } from "@bufbuild/protobuf";
5
+ import { FieldMask, Timestamp, Value } from "@bufbuild/protobuf/wkt";
6
+ //#region ../tailor-proto/src/tailor/v1/auth_pb.d.ts
7
+ /**
8
+ * @generated from message tailor.v1.CreateAuthServiceRequest
9
+ */
10
+ declare type CreateAuthServiceRequest = Message<"tailor.v1.CreateAuthServiceRequest"> & {
11
+ /**
12
+ * @generated from field: string workspace_id = 1;
13
+ */
14
+ workspaceId: string;
15
+ /**
16
+ * @generated from field: string namespace_name = 2;
17
+ */
18
+ namespaceName: string;
19
+ /**
20
+ * Enable publishing session lifecycle events (issued, revoked, refreshed).
21
+ *
22
+ * @generated from field: bool publish_session_events = 3;
23
+ */
24
+ publishSessionEvents: boolean;
25
+ };
26
+ /**
27
+ * Describes the message tailor.v1.CreateAuthServiceRequest.
28
+ * Use `create(CreateAuthServiceRequestSchema)` to create a new message.
29
+ */
30
+ declare const CreateAuthServiceRequestSchema: GenMessage<CreateAuthServiceRequest>;
31
+ /**
32
+ * @generated from message tailor.v1.CreateAuthServiceResponse
33
+ */
34
+ declare type CreateAuthServiceResponse = Message<"tailor.v1.CreateAuthServiceResponse"> & {
35
+ /**
36
+ * @generated from field: tailor.v1.AuthService auth_service = 1;
37
+ */
38
+ authService?: AuthService;
39
+ };
40
+ /**
41
+ * Describes the message tailor.v1.CreateAuthServiceResponse.
42
+ * Use `create(CreateAuthServiceResponseSchema)` to create a new message.
43
+ */
44
+ declare const CreateAuthServiceResponseSchema: GenMessage<CreateAuthServiceResponse>;
45
+ /**
46
+ * @generated from message tailor.v1.UpdateAuthServiceRequest
47
+ */
48
+ declare type UpdateAuthServiceRequest = Message<"tailor.v1.UpdateAuthServiceRequest"> & {
49
+ /**
50
+ * @generated from field: string workspace_id = 1;
51
+ */
52
+ workspaceId: string;
53
+ /**
54
+ * @generated from field: string namespace_name = 2;
55
+ */
56
+ namespaceName: string;
57
+ /**
58
+ * Enable publishing session lifecycle events (issued, revoked, refreshed).
59
+ *
60
+ * @generated from field: bool publish_session_events = 3;
61
+ */
62
+ publishSessionEvents: boolean;
63
+ };
64
+ /**
65
+ * Describes the message tailor.v1.UpdateAuthServiceRequest.
66
+ * Use `create(UpdateAuthServiceRequestSchema)` to create a new message.
67
+ */
68
+ declare const UpdateAuthServiceRequestSchema: GenMessage<UpdateAuthServiceRequest>;
69
+ /**
70
+ * @generated from message tailor.v1.UpdateAuthServiceResponse
71
+ */
72
+ declare type UpdateAuthServiceResponse = Message<"tailor.v1.UpdateAuthServiceResponse"> & {
73
+ /**
74
+ * @generated from field: tailor.v1.AuthService auth_service = 1;
75
+ */
76
+ authService?: AuthService;
77
+ };
78
+ /**
79
+ * Describes the message tailor.v1.UpdateAuthServiceResponse.
80
+ * Use `create(UpdateAuthServiceResponseSchema)` to create a new message.
81
+ */
82
+ declare const UpdateAuthServiceResponseSchema: GenMessage<UpdateAuthServiceResponse>;
83
+ /**
84
+ * @generated from message tailor.v1.DeleteAuthServiceRequest
85
+ */
86
+ declare type DeleteAuthServiceRequest = Message<"tailor.v1.DeleteAuthServiceRequest"> & {
87
+ /**
88
+ * @generated from field: string workspace_id = 1;
89
+ */
90
+ workspaceId: string;
91
+ /**
92
+ * @generated from field: string namespace_name = 2;
93
+ */
94
+ namespaceName: string;
95
+ };
96
+ /**
97
+ * Describes the message tailor.v1.DeleteAuthServiceRequest.
98
+ * Use `create(DeleteAuthServiceRequestSchema)` to create a new message.
99
+ */
100
+ declare const DeleteAuthServiceRequestSchema: GenMessage<DeleteAuthServiceRequest>;
101
+ /**
102
+ * @generated from message tailor.v1.DeleteAuthServiceResponse
103
+ */
104
+ declare type DeleteAuthServiceResponse = Message<"tailor.v1.DeleteAuthServiceResponse"> & {};
105
+ /**
106
+ * Describes the message tailor.v1.DeleteAuthServiceResponse.
107
+ * Use `create(DeleteAuthServiceResponseSchema)` to create a new message.
108
+ */
109
+ declare const DeleteAuthServiceResponseSchema: GenMessage<DeleteAuthServiceResponse>;
110
+ /**
111
+ * @generated from message tailor.v1.GetAuthServiceRequest
112
+ */
113
+ declare type GetAuthServiceRequest = Message<"tailor.v1.GetAuthServiceRequest"> & {
114
+ /**
115
+ * @generated from field: string workspace_id = 1;
116
+ */
117
+ workspaceId: string;
118
+ /**
119
+ * @generated from field: string namespace_name = 2;
120
+ */
121
+ namespaceName: string;
122
+ };
123
+ /**
124
+ * Describes the message tailor.v1.GetAuthServiceRequest.
125
+ * Use `create(GetAuthServiceRequestSchema)` to create a new message.
126
+ */
127
+ declare const GetAuthServiceRequestSchema: GenMessage<GetAuthServiceRequest>;
128
+ /**
129
+ * @generated from message tailor.v1.GetAuthServiceResponse
130
+ */
131
+ declare type GetAuthServiceResponse = Message<"tailor.v1.GetAuthServiceResponse"> & {
132
+ /**
133
+ * @generated from field: tailor.v1.AuthService auth_service = 1;
134
+ */
135
+ authService?: AuthService;
136
+ };
137
+ /**
138
+ * Describes the message tailor.v1.GetAuthServiceResponse.
139
+ * Use `create(GetAuthServiceResponseSchema)` to create a new message.
140
+ */
141
+ declare const GetAuthServiceResponseSchema: GenMessage<GetAuthServiceResponse>;
142
+ /**
143
+ * @generated from message tailor.v1.ListAuthServicesRequest
144
+ */
145
+ declare type ListAuthServicesRequest = Message<"tailor.v1.ListAuthServicesRequest"> & {
146
+ /**
147
+ * @generated from field: string workspace_id = 1;
148
+ */
149
+ workspaceId: string;
150
+ /**
151
+ * @generated from field: string page_token = 2;
152
+ */
153
+ pageToken: string;
154
+ /**
155
+ * @generated from field: uint32 page_size = 3;
156
+ */
157
+ pageSize: number;
158
+ /**
159
+ * @generated from field: tailor.v1.PageDirection page_direction = 4;
160
+ */
161
+ pageDirection: PageDirection;
162
+ };
163
+ /**
164
+ * Describes the message tailor.v1.ListAuthServicesRequest.
165
+ * Use `create(ListAuthServicesRequestSchema)` to create a new message.
166
+ */
167
+ declare const ListAuthServicesRequestSchema: GenMessage<ListAuthServicesRequest>;
168
+ /**
169
+ * @generated from message tailor.v1.ListAuthServicesResponse
170
+ */
171
+ declare type ListAuthServicesResponse = Message<"tailor.v1.ListAuthServicesResponse"> & {
172
+ /**
173
+ * @generated from field: repeated tailor.v1.AuthService auth_services = 1;
174
+ */
175
+ authServices: AuthService[];
176
+ /**
177
+ * @generated from field: string next_page_token = 2;
178
+ */
179
+ nextPageToken: string;
180
+ /**
181
+ * @generated from field: int64 total_count = 3;
182
+ */
183
+ totalCount: bigint;
184
+ };
185
+ /**
186
+ * Describes the message tailor.v1.ListAuthServicesResponse.
187
+ * Use `create(ListAuthServicesResponseSchema)` to create a new message.
188
+ */
189
+ declare const ListAuthServicesResponseSchema: GenMessage<ListAuthServicesResponse>;
190
+ /**
191
+ * @generated from message tailor.v1.CreateAuthIDPConfigRequest
192
+ */
193
+ declare type CreateAuthIDPConfigRequest = Message<"tailor.v1.CreateAuthIDPConfigRequest"> & {
194
+ /**
195
+ * @generated from field: string workspace_id = 1;
196
+ */
197
+ workspaceId: string;
198
+ /**
199
+ * @generated from field: string namespace_name = 2;
200
+ */
201
+ namespaceName: string;
202
+ /**
203
+ * @generated from field: tailor.v1.AuthIDPConfig idp_config = 3;
204
+ */
205
+ idpConfig?: AuthIDPConfig;
206
+ };
207
+ /**
208
+ * Describes the message tailor.v1.CreateAuthIDPConfigRequest.
209
+ * Use `create(CreateAuthIDPConfigRequestSchema)` to create a new message.
210
+ */
211
+ declare const CreateAuthIDPConfigRequestSchema: GenMessage<CreateAuthIDPConfigRequest>;
212
+ /**
213
+ * @generated from message tailor.v1.CreateAuthIDPConfigResponse
214
+ */
215
+ declare type CreateAuthIDPConfigResponse = Message<"tailor.v1.CreateAuthIDPConfigResponse"> & {
216
+ /**
217
+ * @generated from field: tailor.v1.AuthIDPConfig idp_config = 1;
218
+ */
219
+ idpConfig?: AuthIDPConfig;
220
+ };
221
+ /**
222
+ * Describes the message tailor.v1.CreateAuthIDPConfigResponse.
223
+ * Use `create(CreateAuthIDPConfigResponseSchema)` to create a new message.
224
+ */
225
+ declare const CreateAuthIDPConfigResponseSchema: GenMessage<CreateAuthIDPConfigResponse>;
226
+ /**
227
+ * @generated from message tailor.v1.UpdateAuthIDPConfigRequest
228
+ */
229
+ declare type UpdateAuthIDPConfigRequest = Message<"tailor.v1.UpdateAuthIDPConfigRequest"> & {
230
+ /**
231
+ * @generated from field: string workspace_id = 1;
232
+ */
233
+ workspaceId: string;
234
+ /**
235
+ * @generated from field: string namespace_name = 2;
236
+ */
237
+ namespaceName: string;
238
+ /**
239
+ * @generated from field: tailor.v1.AuthIDPConfig idp_config = 3;
240
+ */
241
+ idpConfig?: AuthIDPConfig;
242
+ };
243
+ /**
244
+ * Describes the message tailor.v1.UpdateAuthIDPConfigRequest.
245
+ * Use `create(UpdateAuthIDPConfigRequestSchema)` to create a new message.
246
+ */
247
+ declare const UpdateAuthIDPConfigRequestSchema: GenMessage<UpdateAuthIDPConfigRequest>;
248
+ /**
249
+ * @generated from message tailor.v1.UpdateAuthIDPConfigResponse
250
+ */
251
+ declare type UpdateAuthIDPConfigResponse = Message<"tailor.v1.UpdateAuthIDPConfigResponse"> & {
252
+ /**
253
+ * @generated from field: tailor.v1.AuthIDPConfig idp_config = 1;
254
+ */
255
+ idpConfig?: AuthIDPConfig;
256
+ };
257
+ /**
258
+ * Describes the message tailor.v1.UpdateAuthIDPConfigResponse.
259
+ * Use `create(UpdateAuthIDPConfigResponseSchema)` to create a new message.
260
+ */
261
+ declare const UpdateAuthIDPConfigResponseSchema: GenMessage<UpdateAuthIDPConfigResponse>;
262
+ /**
263
+ * @generated from message tailor.v1.DeleteAuthIDPConfigRequest
264
+ */
265
+ declare type DeleteAuthIDPConfigRequest = Message<"tailor.v1.DeleteAuthIDPConfigRequest"> & {
266
+ /**
267
+ * @generated from field: string workspace_id = 1;
268
+ */
269
+ workspaceId: string;
270
+ /**
271
+ * @generated from field: string namespace_name = 2;
272
+ */
273
+ namespaceName: string;
274
+ /**
275
+ * @generated from field: string name = 3;
276
+ */
277
+ name: string;
278
+ };
279
+ /**
280
+ * Describes the message tailor.v1.DeleteAuthIDPConfigRequest.
281
+ * Use `create(DeleteAuthIDPConfigRequestSchema)` to create a new message.
282
+ */
283
+ declare const DeleteAuthIDPConfigRequestSchema: GenMessage<DeleteAuthIDPConfigRequest>;
284
+ /**
285
+ * @generated from message tailor.v1.DeleteAuthIDPConfigResponse
286
+ */
287
+ declare type DeleteAuthIDPConfigResponse = Message<"tailor.v1.DeleteAuthIDPConfigResponse"> & {};
288
+ /**
289
+ * Describes the message tailor.v1.DeleteAuthIDPConfigResponse.
290
+ * Use `create(DeleteAuthIDPConfigResponseSchema)` to create a new message.
291
+ */
292
+ declare const DeleteAuthIDPConfigResponseSchema: GenMessage<DeleteAuthIDPConfigResponse>;
293
+ /**
294
+ * @generated from message tailor.v1.GetAuthIDPConfigRequest
295
+ */
296
+ declare type GetAuthIDPConfigRequest = Message<"tailor.v1.GetAuthIDPConfigRequest"> & {
297
+ /**
298
+ * @generated from field: string workspace_id = 1;
299
+ */
300
+ workspaceId: string;
301
+ /**
302
+ * @generated from field: string namespace_name = 2;
303
+ */
304
+ namespaceName: string;
305
+ /**
306
+ * @generated from field: string name = 3;
307
+ */
308
+ name: string;
309
+ };
310
+ /**
311
+ * Describes the message tailor.v1.GetAuthIDPConfigRequest.
312
+ * Use `create(GetAuthIDPConfigRequestSchema)` to create a new message.
313
+ */
314
+ declare const GetAuthIDPConfigRequestSchema: GenMessage<GetAuthIDPConfigRequest>;
315
+ /**
316
+ * @generated from message tailor.v1.GetAuthIDPConfigResponse
317
+ */
318
+ declare type GetAuthIDPConfigResponse = Message<"tailor.v1.GetAuthIDPConfigResponse"> & {
319
+ /**
320
+ * @generated from field: tailor.v1.AuthIDPConfig idp_config = 1;
321
+ */
322
+ idpConfig?: AuthIDPConfig;
323
+ };
324
+ /**
325
+ * Describes the message tailor.v1.GetAuthIDPConfigResponse.
326
+ * Use `create(GetAuthIDPConfigResponseSchema)` to create a new message.
327
+ */
328
+ declare const GetAuthIDPConfigResponseSchema: GenMessage<GetAuthIDPConfigResponse>;
329
+ /**
330
+ * @generated from message tailor.v1.ListAuthIDPConfigsRequest
331
+ */
332
+ declare type ListAuthIDPConfigsRequest = Message<"tailor.v1.ListAuthIDPConfigsRequest"> & {
333
+ /**
334
+ * @generated from field: string workspace_id = 1;
335
+ */
336
+ workspaceId: string;
337
+ /**
338
+ * @generated from field: string namespace_name = 2;
339
+ */
340
+ namespaceName: string;
341
+ /**
342
+ * @generated from field: string page_token = 3;
343
+ */
344
+ pageToken: string;
345
+ /**
346
+ * @generated from field: uint32 page_size = 4;
347
+ */
348
+ pageSize: number;
349
+ /**
350
+ * @generated from field: tailor.v1.PageDirection page_direction = 5;
351
+ */
352
+ pageDirection: PageDirection;
353
+ };
354
+ /**
355
+ * Describes the message tailor.v1.ListAuthIDPConfigsRequest.
356
+ * Use `create(ListAuthIDPConfigsRequestSchema)` to create a new message.
357
+ */
358
+ declare const ListAuthIDPConfigsRequestSchema: GenMessage<ListAuthIDPConfigsRequest>;
359
+ /**
360
+ * @generated from message tailor.v1.ListAuthIDPConfigsResponse
361
+ */
362
+ declare type ListAuthIDPConfigsResponse = Message<"tailor.v1.ListAuthIDPConfigsResponse"> & {
363
+ /**
364
+ * @generated from field: repeated tailor.v1.AuthIDPConfig idp_configs = 1;
365
+ */
366
+ idpConfigs: AuthIDPConfig[];
367
+ /**
368
+ * @generated from field: string next_page_token = 2;
369
+ */
370
+ nextPageToken: string;
371
+ /**
372
+ * @generated from field: int64 total_count = 3;
373
+ */
374
+ totalCount: bigint;
375
+ };
376
+ /**
377
+ * Describes the message tailor.v1.ListAuthIDPConfigsResponse.
378
+ * Use `create(ListAuthIDPConfigsResponseSchema)` to create a new message.
379
+ */
380
+ declare const ListAuthIDPConfigsResponseSchema: GenMessage<ListAuthIDPConfigsResponse>;
381
+ /**
382
+ * @generated from message tailor.v1.CreateUserProfileConfigRequest
383
+ */
384
+ declare type CreateUserProfileConfigRequest = Message<"tailor.v1.CreateUserProfileConfigRequest"> & {
385
+ /**
386
+ * @generated from field: string workspace_id = 1;
387
+ */
388
+ workspaceId: string;
389
+ /**
390
+ * @generated from field: string namespace_name = 2;
391
+ */
392
+ namespaceName: string;
393
+ /**
394
+ * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 3;
395
+ */
396
+ userProfileProviderConfig?: UserProfileProviderConfig;
397
+ };
398
+ /**
399
+ * Describes the message tailor.v1.CreateUserProfileConfigRequest.
400
+ * Use `create(CreateUserProfileConfigRequestSchema)` to create a new message.
401
+ */
402
+ declare const CreateUserProfileConfigRequestSchema: GenMessage<CreateUserProfileConfigRequest>;
403
+ /**
404
+ * @generated from message tailor.v1.CreateUserProfileConfigResponse
405
+ */
406
+ declare type CreateUserProfileConfigResponse = Message<"tailor.v1.CreateUserProfileConfigResponse"> & {
407
+ /**
408
+ * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1;
409
+ */
410
+ userProfileProviderConfig?: UserProfileProviderConfig;
411
+ };
412
+ /**
413
+ * Describes the message tailor.v1.CreateUserProfileConfigResponse.
414
+ * Use `create(CreateUserProfileConfigResponseSchema)` to create a new message.
415
+ */
416
+ declare const CreateUserProfileConfigResponseSchema: GenMessage<CreateUserProfileConfigResponse>;
417
+ /**
418
+ * @generated from message tailor.v1.UpdateUserProfileConfigRequest
419
+ */
420
+ declare type UpdateUserProfileConfigRequest = Message<"tailor.v1.UpdateUserProfileConfigRequest"> & {
421
+ /**
422
+ * @generated from field: string workspace_id = 1;
423
+ */
424
+ workspaceId: string;
425
+ /**
426
+ * @generated from field: string namespace_name = 2;
427
+ */
428
+ namespaceName: string;
429
+ /**
430
+ * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 3;
431
+ */
432
+ userProfileProviderConfig?: UserProfileProviderConfig;
433
+ };
434
+ /**
435
+ * Describes the message tailor.v1.UpdateUserProfileConfigRequest.
436
+ * Use `create(UpdateUserProfileConfigRequestSchema)` to create a new message.
437
+ */
438
+ declare const UpdateUserProfileConfigRequestSchema: GenMessage<UpdateUserProfileConfigRequest>;
439
+ /**
440
+ * @generated from message tailor.v1.UpdateUserProfileConfigResponse
441
+ */
442
+ declare type UpdateUserProfileConfigResponse = Message<"tailor.v1.UpdateUserProfileConfigResponse"> & {
443
+ /**
444
+ * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1;
445
+ */
446
+ userProfileProviderConfig?: UserProfileProviderConfig;
447
+ };
448
+ /**
449
+ * Describes the message tailor.v1.UpdateUserProfileConfigResponse.
450
+ * Use `create(UpdateUserProfileConfigResponseSchema)` to create a new message.
451
+ */
452
+ declare const UpdateUserProfileConfigResponseSchema: GenMessage<UpdateUserProfileConfigResponse>;
453
+ /**
454
+ * @generated from message tailor.v1.DeleteUserProfileConfigRequest
455
+ */
456
+ declare type DeleteUserProfileConfigRequest = Message<"tailor.v1.DeleteUserProfileConfigRequest"> & {
457
+ /**
458
+ * @generated from field: string workspace_id = 1;
459
+ */
460
+ workspaceId: string;
461
+ /**
462
+ * @generated from field: string namespace_name = 2;
463
+ */
464
+ namespaceName: string;
465
+ };
466
+ /**
467
+ * Describes the message tailor.v1.DeleteUserProfileConfigRequest.
468
+ * Use `create(DeleteUserProfileConfigRequestSchema)` to create a new message.
469
+ */
470
+ declare const DeleteUserProfileConfigRequestSchema: GenMessage<DeleteUserProfileConfigRequest>;
471
+ /**
472
+ * @generated from message tailor.v1.DeleteUserProfileConfigResponse
473
+ */
474
+ declare type DeleteUserProfileConfigResponse = Message<"tailor.v1.DeleteUserProfileConfigResponse"> & {};
475
+ /**
476
+ * Describes the message tailor.v1.DeleteUserProfileConfigResponse.
477
+ * Use `create(DeleteUserProfileConfigResponseSchema)` to create a new message.
478
+ */
479
+ declare const DeleteUserProfileConfigResponseSchema: GenMessage<DeleteUserProfileConfigResponse>;
480
+ /**
481
+ * @generated from message tailor.v1.GetUserProfileConfigRequest
482
+ */
483
+ declare type GetUserProfileConfigRequest = Message<"tailor.v1.GetUserProfileConfigRequest"> & {
484
+ /**
485
+ * @generated from field: string workspace_id = 1;
486
+ */
487
+ workspaceId: string;
488
+ /**
489
+ * @generated from field: string namespace_name = 2;
490
+ */
491
+ namespaceName: string;
492
+ };
493
+ /**
494
+ * Describes the message tailor.v1.GetUserProfileConfigRequest.
495
+ * Use `create(GetUserProfileConfigRequestSchema)` to create a new message.
496
+ */
497
+ declare const GetUserProfileConfigRequestSchema: GenMessage<GetUserProfileConfigRequest>;
498
+ /**
499
+ * @generated from message tailor.v1.GetUserProfileConfigResponse
500
+ */
501
+ declare type GetUserProfileConfigResponse = Message<"tailor.v1.GetUserProfileConfigResponse"> & {
502
+ /**
503
+ * @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1;
504
+ */
505
+ userProfileProviderConfig?: UserProfileProviderConfig;
506
+ };
507
+ /**
508
+ * Describes the message tailor.v1.GetUserProfileConfigResponse.
509
+ * Use `create(GetUserProfileConfigResponseSchema)` to create a new message.
510
+ */
511
+ declare const GetUserProfileConfigResponseSchema: GenMessage<GetUserProfileConfigResponse>;
512
+ /**
513
+ * @generated from message tailor.v1.CreateTenantConfigRequest
514
+ */
515
+ declare type CreateTenantConfigRequest = Message<"tailor.v1.CreateTenantConfigRequest"> & {
516
+ /**
517
+ * @generated from field: string workspace_id = 1;
518
+ */
519
+ workspaceId: string;
520
+ /**
521
+ * @generated from field: string namespace_name = 2;
522
+ */
523
+ namespaceName: string;
524
+ /**
525
+ * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 3;
526
+ */
527
+ tenantProviderConfig?: TenantProviderConfig;
528
+ };
529
+ /**
530
+ * Describes the message tailor.v1.CreateTenantConfigRequest.
531
+ * Use `create(CreateTenantConfigRequestSchema)` to create a new message.
532
+ */
533
+ declare const CreateTenantConfigRequestSchema: GenMessage<CreateTenantConfigRequest>;
534
+ /**
535
+ * @generated from message tailor.v1.CreateTenantConfigResponse
536
+ */
537
+ declare type CreateTenantConfigResponse = Message<"tailor.v1.CreateTenantConfigResponse"> & {
538
+ /**
539
+ * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1;
540
+ */
541
+ tenantProviderConfig?: TenantProviderConfig;
542
+ };
543
+ /**
544
+ * Describes the message tailor.v1.CreateTenantConfigResponse.
545
+ * Use `create(CreateTenantConfigResponseSchema)` to create a new message.
546
+ */
547
+ declare const CreateTenantConfigResponseSchema: GenMessage<CreateTenantConfigResponse>;
548
+ /**
549
+ * @generated from message tailor.v1.UpdateTenantConfigRequest
550
+ */
551
+ declare type UpdateTenantConfigRequest = Message<"tailor.v1.UpdateTenantConfigRequest"> & {
552
+ /**
553
+ * @generated from field: string workspace_id = 1;
554
+ */
555
+ workspaceId: string;
556
+ /**
557
+ * @generated from field: string namespace_name = 2;
558
+ */
559
+ namespaceName: string;
560
+ /**
561
+ * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 3;
562
+ */
563
+ tenantProviderConfig?: TenantProviderConfig;
564
+ };
565
+ /**
566
+ * Describes the message tailor.v1.UpdateTenantConfigRequest.
567
+ * Use `create(UpdateTenantConfigRequestSchema)` to create a new message.
568
+ */
569
+ declare const UpdateTenantConfigRequestSchema: GenMessage<UpdateTenantConfigRequest>;
570
+ /**
571
+ * @generated from message tailor.v1.UpdateTenantConfigResponse
572
+ */
573
+ declare type UpdateTenantConfigResponse = Message<"tailor.v1.UpdateTenantConfigResponse"> & {
574
+ /**
575
+ * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1;
576
+ */
577
+ tenantProviderConfig?: TenantProviderConfig;
578
+ };
579
+ /**
580
+ * Describes the message tailor.v1.UpdateTenantConfigResponse.
581
+ * Use `create(UpdateTenantConfigResponseSchema)` to create a new message.
582
+ */
583
+ declare const UpdateTenantConfigResponseSchema: GenMessage<UpdateTenantConfigResponse>;
584
+ /**
585
+ * @generated from message tailor.v1.DeleteTenantConfigRequest
586
+ */
587
+ declare type DeleteTenantConfigRequest = Message<"tailor.v1.DeleteTenantConfigRequest"> & {
588
+ /**
589
+ * @generated from field: string workspace_id = 1;
590
+ */
591
+ workspaceId: string;
592
+ /**
593
+ * @generated from field: string namespace_name = 2;
594
+ */
595
+ namespaceName: string;
596
+ };
597
+ /**
598
+ * Describes the message tailor.v1.DeleteTenantConfigRequest.
599
+ * Use `create(DeleteTenantConfigRequestSchema)` to create a new message.
600
+ */
601
+ declare const DeleteTenantConfigRequestSchema: GenMessage<DeleteTenantConfigRequest>;
602
+ /**
603
+ * @generated from message tailor.v1.DeleteTenantConfigResponse
604
+ */
605
+ declare type DeleteTenantConfigResponse = Message<"tailor.v1.DeleteTenantConfigResponse"> & {};
606
+ /**
607
+ * Describes the message tailor.v1.DeleteTenantConfigResponse.
608
+ * Use `create(DeleteTenantConfigResponseSchema)` to create a new message.
609
+ */
610
+ declare const DeleteTenantConfigResponseSchema: GenMessage<DeleteTenantConfigResponse>;
611
+ /**
612
+ * @generated from message tailor.v1.GetTenantConfigRequest
613
+ */
614
+ declare type GetTenantConfigRequest = Message<"tailor.v1.GetTenantConfigRequest"> & {
615
+ /**
616
+ * @generated from field: string workspace_id = 1;
617
+ */
618
+ workspaceId: string;
619
+ /**
620
+ * @generated from field: string namespace_name = 2;
621
+ */
622
+ namespaceName: string;
623
+ };
624
+ /**
625
+ * Describes the message tailor.v1.GetTenantConfigRequest.
626
+ * Use `create(GetTenantConfigRequestSchema)` to create a new message.
627
+ */
628
+ declare const GetTenantConfigRequestSchema: GenMessage<GetTenantConfigRequest>;
629
+ /**
630
+ * @generated from message tailor.v1.GetTenantConfigResponse
631
+ */
632
+ declare type GetTenantConfigResponse = Message<"tailor.v1.GetTenantConfigResponse"> & {
633
+ /**
634
+ * @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1;
635
+ */
636
+ tenantProviderConfig?: TenantProviderConfig;
637
+ };
638
+ /**
639
+ * Describes the message tailor.v1.GetTenantConfigResponse.
640
+ * Use `create(GetTenantConfigResponseSchema)` to create a new message.
641
+ */
642
+ declare const GetTenantConfigResponseSchema: GenMessage<GetTenantConfigResponse>;
643
+ /**
644
+ * @generated from message tailor.v1.CreatePersonalAccessTokenRequest
645
+ */
646
+ declare type CreatePersonalAccessTokenRequest = Message<"tailor.v1.CreatePersonalAccessTokenRequest"> & {
647
+ /**
648
+ * @generated from field: string name = 1;
649
+ */
650
+ name: string;
651
+ /**
652
+ * @generated from field: repeated tailor.v1.PATScope scopes = 2;
653
+ */
654
+ scopes: PATScope[];
655
+ };
656
+ /**
657
+ * Describes the message tailor.v1.CreatePersonalAccessTokenRequest.
658
+ * Use `create(CreatePersonalAccessTokenRequestSchema)` to create a new message.
659
+ */
660
+ declare const CreatePersonalAccessTokenRequestSchema: GenMessage<CreatePersonalAccessTokenRequest>;
661
+ /**
662
+ * @generated from message tailor.v1.CreatePersonalAccessTokenResponse
663
+ */
664
+ declare type CreatePersonalAccessTokenResponse = Message<"tailor.v1.CreatePersonalAccessTokenResponse"> & {
665
+ /**
666
+ * @generated from field: string access_token = 1;
667
+ */
668
+ accessToken: string;
669
+ };
670
+ /**
671
+ * Describes the message tailor.v1.CreatePersonalAccessTokenResponse.
672
+ * Use `create(CreatePersonalAccessTokenResponseSchema)` to create a new message.
673
+ */
674
+ declare const CreatePersonalAccessTokenResponseSchema: GenMessage<CreatePersonalAccessTokenResponse>;
675
+ /**
676
+ * @generated from message tailor.v1.DeletePersonalAccessTokenRequest
677
+ */
678
+ declare type DeletePersonalAccessTokenRequest = Message<"tailor.v1.DeletePersonalAccessTokenRequest"> & {
679
+ /**
680
+ * @generated from field: string name = 1;
681
+ */
682
+ name: string;
683
+ };
684
+ /**
685
+ * Describes the message tailor.v1.DeletePersonalAccessTokenRequest.
686
+ * Use `create(DeletePersonalAccessTokenRequestSchema)` to create a new message.
687
+ */
688
+ declare const DeletePersonalAccessTokenRequestSchema: GenMessage<DeletePersonalAccessTokenRequest>;
689
+ /**
690
+ * @generated from message tailor.v1.DeletePersonalAccessTokenResponse
691
+ */
692
+ declare type DeletePersonalAccessTokenResponse = Message<"tailor.v1.DeletePersonalAccessTokenResponse"> & {};
693
+ /**
694
+ * Describes the message tailor.v1.DeletePersonalAccessTokenResponse.
695
+ * Use `create(DeletePersonalAccessTokenResponseSchema)` to create a new message.
696
+ */
697
+ declare const DeletePersonalAccessTokenResponseSchema: GenMessage<DeletePersonalAccessTokenResponse>;
698
+ /**
699
+ * @generated from message tailor.v1.ListPersonalAccessTokensRequest
700
+ */
701
+ declare type ListPersonalAccessTokensRequest = Message<"tailor.v1.ListPersonalAccessTokensRequest"> & {
702
+ /**
703
+ * @generated from field: string page_token = 1;
704
+ */
705
+ pageToken: string;
706
+ /**
707
+ * @generated from field: uint32 page_size = 2;
708
+ */
709
+ pageSize: number;
710
+ /**
711
+ * @generated from field: tailor.v1.PageDirection page_direction = 3;
712
+ */
713
+ pageDirection: PageDirection;
714
+ };
715
+ /**
716
+ * Describes the message tailor.v1.ListPersonalAccessTokensRequest.
717
+ * Use `create(ListPersonalAccessTokensRequestSchema)` to create a new message.
718
+ */
719
+ declare const ListPersonalAccessTokensRequestSchema: GenMessage<ListPersonalAccessTokensRequest>;
720
+ /**
721
+ * @generated from message tailor.v1.ListPersonalAccessTokensResponse
722
+ */
723
+ declare type ListPersonalAccessTokensResponse = Message<"tailor.v1.ListPersonalAccessTokensResponse"> & {
724
+ /**
725
+ * @generated from field: repeated tailor.v1.PersonalAccessToken personal_access_tokens = 1;
726
+ */
727
+ personalAccessTokens: PersonalAccessToken[];
728
+ /**
729
+ * @generated from field: string next_page_token = 2;
730
+ */
731
+ nextPageToken: string;
732
+ /**
733
+ * @generated from field: int64 total_count = 3;
734
+ */
735
+ totalCount: bigint;
736
+ };
737
+ /**
738
+ * Describes the message tailor.v1.ListPersonalAccessTokensResponse.
739
+ * Use `create(ListPersonalAccessTokensResponseSchema)` to create a new message.
740
+ */
741
+ declare const ListPersonalAccessTokensResponseSchema: GenMessage<ListPersonalAccessTokensResponse>;
742
+ /**
743
+ * @generated from message tailor.v1.CreateAuthMachineUserRequest
744
+ */
745
+ declare type CreateAuthMachineUserRequest = Message<"tailor.v1.CreateAuthMachineUserRequest"> & {
746
+ /**
747
+ * @generated from field: string workspace_id = 1;
748
+ */
749
+ workspaceId: string;
750
+ /**
751
+ * @generated from field: string auth_namespace = 2;
752
+ */
753
+ authNamespace: string;
754
+ /**
755
+ * @generated from field: string name = 3;
756
+ */
757
+ name: string;
758
+ /**
759
+ * @generated from field: repeated string attributes = 4;
760
+ */
761
+ attributes: string[];
762
+ /**
763
+ * @generated from field: map<string, google.protobuf.Value> attribute_map = 5;
764
+ */
765
+ attributeMap: {
766
+ [key: string]: Value;
767
+ };
768
+ };
769
+ /**
770
+ * Describes the message tailor.v1.CreateAuthMachineUserRequest.
771
+ * Use `create(CreateAuthMachineUserRequestSchema)` to create a new message.
772
+ */
773
+ declare const CreateAuthMachineUserRequestSchema: GenMessage<CreateAuthMachineUserRequest>;
774
+ /**
775
+ * @generated from message tailor.v1.CreateAuthMachineUserResponse
776
+ */
777
+ declare type CreateAuthMachineUserResponse = Message<"tailor.v1.CreateAuthMachineUserResponse"> & {
778
+ /**
779
+ * @generated from field: tailor.v1.MachineUser machine_user = 1;
780
+ */
781
+ machineUser?: MachineUser;
782
+ };
783
+ /**
784
+ * Describes the message tailor.v1.CreateAuthMachineUserResponse.
785
+ * Use `create(CreateAuthMachineUserResponseSchema)` to create a new message.
786
+ */
787
+ declare const CreateAuthMachineUserResponseSchema: GenMessage<CreateAuthMachineUserResponse>;
788
+ /**
789
+ * @generated from message tailor.v1.UpdateAuthMachineUserRequest
790
+ */
791
+ declare type UpdateAuthMachineUserRequest = Message<"tailor.v1.UpdateAuthMachineUserRequest"> & {
792
+ /**
793
+ * @generated from field: string workspace_id = 1;
794
+ */
795
+ workspaceId: string;
796
+ /**
797
+ * @generated from field: string auth_namespace = 2;
798
+ */
799
+ authNamespace: string;
800
+ /**
801
+ * @generated from field: string name = 3;
802
+ */
803
+ name: string;
804
+ /**
805
+ * @generated from field: repeated string attributes = 4;
806
+ */
807
+ attributes: string[];
808
+ /**
809
+ * @generated from field: map<string, google.protobuf.Value> attribute_map = 5;
810
+ */
811
+ attributeMap: {
812
+ [key: string]: Value;
813
+ };
814
+ };
815
+ /**
816
+ * Describes the message tailor.v1.UpdateAuthMachineUserRequest.
817
+ * Use `create(UpdateAuthMachineUserRequestSchema)` to create a new message.
818
+ */
819
+ declare const UpdateAuthMachineUserRequestSchema: GenMessage<UpdateAuthMachineUserRequest>;
820
+ /**
821
+ * @generated from message tailor.v1.UpdateAuthMachineUserResponse
822
+ */
823
+ declare type UpdateAuthMachineUserResponse = Message<"tailor.v1.UpdateAuthMachineUserResponse"> & {
824
+ /**
825
+ * @generated from field: tailor.v1.MachineUser machine_user = 1;
826
+ */
827
+ machineUser?: MachineUser;
828
+ };
829
+ /**
830
+ * Describes the message tailor.v1.UpdateAuthMachineUserResponse.
831
+ * Use `create(UpdateAuthMachineUserResponseSchema)` to create a new message.
832
+ */
833
+ declare const UpdateAuthMachineUserResponseSchema: GenMessage<UpdateAuthMachineUserResponse>;
834
+ /**
835
+ * @generated from message tailor.v1.DeleteAuthMachineUserRequest
836
+ */
837
+ declare type DeleteAuthMachineUserRequest = Message<"tailor.v1.DeleteAuthMachineUserRequest"> & {
838
+ /**
839
+ * @generated from field: string workspace_id = 1;
840
+ */
841
+ workspaceId: string;
842
+ /**
843
+ * @generated from field: string auth_namespace = 2;
844
+ */
845
+ authNamespace: string;
846
+ /**
847
+ * @generated from field: string name = 3;
848
+ */
849
+ name: string;
850
+ };
851
+ /**
852
+ * Describes the message tailor.v1.DeleteAuthMachineUserRequest.
853
+ * Use `create(DeleteAuthMachineUserRequestSchema)` to create a new message.
854
+ */
855
+ declare const DeleteAuthMachineUserRequestSchema: GenMessage<DeleteAuthMachineUserRequest>;
856
+ /**
857
+ * @generated from message tailor.v1.DeleteAuthMachineUserResponse
858
+ */
859
+ declare type DeleteAuthMachineUserResponse = Message<"tailor.v1.DeleteAuthMachineUserResponse"> & {};
860
+ /**
861
+ * Describes the message tailor.v1.DeleteAuthMachineUserResponse.
862
+ * Use `create(DeleteAuthMachineUserResponseSchema)` to create a new message.
863
+ */
864
+ declare const DeleteAuthMachineUserResponseSchema: GenMessage<DeleteAuthMachineUserResponse>;
865
+ /**
866
+ * @generated from message tailor.v1.GetAuthMachineUserRequest
867
+ */
868
+ declare type GetAuthMachineUserRequest = Message<"tailor.v1.GetAuthMachineUserRequest"> & {
869
+ /**
870
+ * @generated from field: string workspace_id = 1;
871
+ */
872
+ workspaceId: string;
873
+ /**
874
+ * @generated from field: string auth_namespace = 2;
875
+ */
876
+ authNamespace: string;
877
+ /**
878
+ * @generated from field: string name = 3;
879
+ */
880
+ name: string;
881
+ };
882
+ /**
883
+ * Describes the message tailor.v1.GetAuthMachineUserRequest.
884
+ * Use `create(GetAuthMachineUserRequestSchema)` to create a new message.
885
+ */
886
+ declare const GetAuthMachineUserRequestSchema: GenMessage<GetAuthMachineUserRequest>;
887
+ /**
888
+ * @generated from message tailor.v1.GetAuthMachineUserResponse
889
+ */
890
+ declare type GetAuthMachineUserResponse = Message<"tailor.v1.GetAuthMachineUserResponse"> & {
891
+ /**
892
+ * @generated from field: tailor.v1.MachineUser machine_user = 1;
893
+ */
894
+ machineUser?: MachineUser;
895
+ };
896
+ /**
897
+ * Describes the message tailor.v1.GetAuthMachineUserResponse.
898
+ * Use `create(GetAuthMachineUserResponseSchema)` to create a new message.
899
+ */
900
+ declare const GetAuthMachineUserResponseSchema: GenMessage<GetAuthMachineUserResponse>;
901
+ /**
902
+ * @generated from message tailor.v1.ListAuthMachineUsersRequest
903
+ */
904
+ declare type ListAuthMachineUsersRequest = Message<"tailor.v1.ListAuthMachineUsersRequest"> & {
905
+ /**
906
+ * @generated from field: string workspace_id = 1;
907
+ */
908
+ workspaceId: string;
909
+ /**
910
+ * @generated from field: string auth_namespace = 2;
911
+ */
912
+ authNamespace: string;
913
+ /**
914
+ * @generated from field: string page_token = 3;
915
+ */
916
+ pageToken: string;
917
+ /**
918
+ * @generated from field: uint32 page_size = 4;
919
+ */
920
+ pageSize: number;
921
+ /**
922
+ * @generated from field: tailor.v1.PageDirection page_direction = 5;
923
+ */
924
+ pageDirection: PageDirection;
925
+ };
926
+ /**
927
+ * Describes the message tailor.v1.ListAuthMachineUsersRequest.
928
+ * Use `create(ListAuthMachineUsersRequestSchema)` to create a new message.
929
+ */
930
+ declare const ListAuthMachineUsersRequestSchema: GenMessage<ListAuthMachineUsersRequest>;
931
+ /**
932
+ * @generated from message tailor.v1.ListAuthMachineUsersResponse
933
+ */
934
+ declare type ListAuthMachineUsersResponse = Message<"tailor.v1.ListAuthMachineUsersResponse"> & {
935
+ /**
936
+ * @generated from field: repeated tailor.v1.MachineUser machine_users = 1;
937
+ */
938
+ machineUsers: MachineUser[];
939
+ /**
940
+ * @generated from field: string next_page_token = 2;
941
+ */
942
+ nextPageToken: string;
943
+ /**
944
+ * @generated from field: int64 total_count = 3;
945
+ */
946
+ totalCount: bigint;
947
+ };
948
+ /**
949
+ * Describes the message tailor.v1.ListAuthMachineUsersResponse.
950
+ * Use `create(ListAuthMachineUsersResponseSchema)` to create a new message.
951
+ */
952
+ declare const ListAuthMachineUsersResponseSchema: GenMessage<ListAuthMachineUsersResponse>;
953
+ /**
954
+ * @generated from message tailor.v1.CreateAuthSCIMConfigRequest
955
+ */
956
+ declare type CreateAuthSCIMConfigRequest = Message<"tailor.v1.CreateAuthSCIMConfigRequest"> & {
957
+ /**
958
+ * @generated from field: string workspace_id = 1;
959
+ */
960
+ workspaceId: string;
961
+ /**
962
+ * @generated from field: string namespace_name = 2;
963
+ */
964
+ namespaceName: string;
965
+ /**
966
+ * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 3;
967
+ */
968
+ scimConfig?: AuthSCIMConfig;
969
+ };
970
+ /**
971
+ * Describes the message tailor.v1.CreateAuthSCIMConfigRequest.
972
+ * Use `create(CreateAuthSCIMConfigRequestSchema)` to create a new message.
973
+ */
974
+ declare const CreateAuthSCIMConfigRequestSchema: GenMessage<CreateAuthSCIMConfigRequest>;
975
+ /**
976
+ * @generated from message tailor.v1.CreateAuthSCIMConfigResponse
977
+ */
978
+ declare type CreateAuthSCIMConfigResponse = Message<"tailor.v1.CreateAuthSCIMConfigResponse"> & {
979
+ /**
980
+ * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1;
981
+ */
982
+ scimConfig?: AuthSCIMConfig;
983
+ };
984
+ /**
985
+ * Describes the message tailor.v1.CreateAuthSCIMConfigResponse.
986
+ * Use `create(CreateAuthSCIMConfigResponseSchema)` to create a new message.
987
+ */
988
+ declare const CreateAuthSCIMConfigResponseSchema: GenMessage<CreateAuthSCIMConfigResponse>;
989
+ /**
990
+ * @generated from message tailor.v1.UpdateAuthSCIMConfigRequest
991
+ */
992
+ declare type UpdateAuthSCIMConfigRequest = Message<"tailor.v1.UpdateAuthSCIMConfigRequest"> & {
993
+ /**
994
+ * @generated from field: string workspace_id = 1;
995
+ */
996
+ workspaceId: string;
997
+ /**
998
+ * @generated from field: string namespace_name = 2;
999
+ */
1000
+ namespaceName: string;
1001
+ /**
1002
+ * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 3;
1003
+ */
1004
+ scimConfig?: AuthSCIMConfig;
1005
+ };
1006
+ /**
1007
+ * Describes the message tailor.v1.UpdateAuthSCIMConfigRequest.
1008
+ * Use `create(UpdateAuthSCIMConfigRequestSchema)` to create a new message.
1009
+ */
1010
+ declare const UpdateAuthSCIMConfigRequestSchema: GenMessage<UpdateAuthSCIMConfigRequest>;
1011
+ /**
1012
+ * @generated from message tailor.v1.UpdateAuthSCIMConfigResponse
1013
+ */
1014
+ declare type UpdateAuthSCIMConfigResponse = Message<"tailor.v1.UpdateAuthSCIMConfigResponse"> & {
1015
+ /**
1016
+ * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1;
1017
+ */
1018
+ scimConfig?: AuthSCIMConfig;
1019
+ };
1020
+ /**
1021
+ * Describes the message tailor.v1.UpdateAuthSCIMConfigResponse.
1022
+ * Use `create(UpdateAuthSCIMConfigResponseSchema)` to create a new message.
1023
+ */
1024
+ declare const UpdateAuthSCIMConfigResponseSchema: GenMessage<UpdateAuthSCIMConfigResponse>;
1025
+ /**
1026
+ * @generated from message tailor.v1.GetAuthSCIMConfigRequest
1027
+ */
1028
+ declare type GetAuthSCIMConfigRequest = Message<"tailor.v1.GetAuthSCIMConfigRequest"> & {
1029
+ /**
1030
+ * @generated from field: string workspace_id = 1;
1031
+ */
1032
+ workspaceId: string;
1033
+ /**
1034
+ * @generated from field: string namespace_name = 2;
1035
+ */
1036
+ namespaceName: string;
1037
+ };
1038
+ /**
1039
+ * Describes the message tailor.v1.GetAuthSCIMConfigRequest.
1040
+ * Use `create(GetAuthSCIMConfigRequestSchema)` to create a new message.
1041
+ */
1042
+ declare const GetAuthSCIMConfigRequestSchema: GenMessage<GetAuthSCIMConfigRequest>;
1043
+ /**
1044
+ * @generated from message tailor.v1.GetAuthSCIMConfigResponse
1045
+ */
1046
+ declare type GetAuthSCIMConfigResponse = Message<"tailor.v1.GetAuthSCIMConfigResponse"> & {
1047
+ /**
1048
+ * @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1;
1049
+ */
1050
+ scimConfig?: AuthSCIMConfig;
1051
+ };
1052
+ /**
1053
+ * Describes the message tailor.v1.GetAuthSCIMConfigResponse.
1054
+ * Use `create(GetAuthSCIMConfigResponseSchema)` to create a new message.
1055
+ */
1056
+ declare const GetAuthSCIMConfigResponseSchema: GenMessage<GetAuthSCIMConfigResponse>;
1057
+ /**
1058
+ * @generated from message tailor.v1.DeleteAuthSCIMConfigRequest
1059
+ */
1060
+ declare type DeleteAuthSCIMConfigRequest = Message<"tailor.v1.DeleteAuthSCIMConfigRequest"> & {
1061
+ /**
1062
+ * @generated from field: string workspace_id = 1;
1063
+ */
1064
+ workspaceId: string;
1065
+ /**
1066
+ * @generated from field: string namespace_name = 2;
1067
+ */
1068
+ namespaceName: string;
1069
+ };
1070
+ /**
1071
+ * Describes the message tailor.v1.DeleteAuthSCIMConfigRequest.
1072
+ * Use `create(DeleteAuthSCIMConfigRequestSchema)` to create a new message.
1073
+ */
1074
+ declare const DeleteAuthSCIMConfigRequestSchema: GenMessage<DeleteAuthSCIMConfigRequest>;
1075
+ /**
1076
+ * @generated from message tailor.v1.DeleteAuthSCIMConfigResponse
1077
+ */
1078
+ declare type DeleteAuthSCIMConfigResponse = Message<"tailor.v1.DeleteAuthSCIMConfigResponse"> & {};
1079
+ /**
1080
+ * Describes the message tailor.v1.DeleteAuthSCIMConfigResponse.
1081
+ * Use `create(DeleteAuthSCIMConfigResponseSchema)` to create a new message.
1082
+ */
1083
+ declare const DeleteAuthSCIMConfigResponseSchema: GenMessage<DeleteAuthSCIMConfigResponse>;
1084
+ /**
1085
+ * @generated from message tailor.v1.CreateAuthSCIMResourceRequest
1086
+ */
1087
+ declare type CreateAuthSCIMResourceRequest = Message<"tailor.v1.CreateAuthSCIMResourceRequest"> & {
1088
+ /**
1089
+ * @generated from field: string workspace_id = 1;
1090
+ */
1091
+ workspaceId: string;
1092
+ /**
1093
+ * @generated from field: string namespace_name = 2;
1094
+ */
1095
+ namespaceName: string;
1096
+ /**
1097
+ * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 3;
1098
+ */
1099
+ scimResource?: AuthSCIMResource;
1100
+ };
1101
+ /**
1102
+ * Describes the message tailor.v1.CreateAuthSCIMResourceRequest.
1103
+ * Use `create(CreateAuthSCIMResourceRequestSchema)` to create a new message.
1104
+ */
1105
+ declare const CreateAuthSCIMResourceRequestSchema: GenMessage<CreateAuthSCIMResourceRequest>;
1106
+ /**
1107
+ * @generated from message tailor.v1.CreateAuthSCIMResourceResponse
1108
+ */
1109
+ declare type CreateAuthSCIMResourceResponse = Message<"tailor.v1.CreateAuthSCIMResourceResponse"> & {
1110
+ /**
1111
+ * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1;
1112
+ */
1113
+ scimResource?: AuthSCIMResource;
1114
+ };
1115
+ /**
1116
+ * Describes the message tailor.v1.CreateAuthSCIMResourceResponse.
1117
+ * Use `create(CreateAuthSCIMResourceResponseSchema)` to create a new message.
1118
+ */
1119
+ declare const CreateAuthSCIMResourceResponseSchema: GenMessage<CreateAuthSCIMResourceResponse>;
1120
+ /**
1121
+ * @generated from message tailor.v1.UpdateAuthSCIMResourceRequest
1122
+ */
1123
+ declare type UpdateAuthSCIMResourceRequest = Message<"tailor.v1.UpdateAuthSCIMResourceRequest"> & {
1124
+ /**
1125
+ * @generated from field: string workspace_id = 1;
1126
+ */
1127
+ workspaceId: string;
1128
+ /**
1129
+ * @generated from field: string namespace_name = 2;
1130
+ */
1131
+ namespaceName: string;
1132
+ /**
1133
+ * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 3;
1134
+ */
1135
+ scimResource?: AuthSCIMResource;
1136
+ };
1137
+ /**
1138
+ * Describes the message tailor.v1.UpdateAuthSCIMResourceRequest.
1139
+ * Use `create(UpdateAuthSCIMResourceRequestSchema)` to create a new message.
1140
+ */
1141
+ declare const UpdateAuthSCIMResourceRequestSchema: GenMessage<UpdateAuthSCIMResourceRequest>;
1142
+ /**
1143
+ * @generated from message tailor.v1.UpdateAuthSCIMResourceResponse
1144
+ */
1145
+ declare type UpdateAuthSCIMResourceResponse = Message<"tailor.v1.UpdateAuthSCIMResourceResponse"> & {
1146
+ /**
1147
+ * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1;
1148
+ */
1149
+ scimResource?: AuthSCIMResource;
1150
+ };
1151
+ /**
1152
+ * Describes the message tailor.v1.UpdateAuthSCIMResourceResponse.
1153
+ * Use `create(UpdateAuthSCIMResourceResponseSchema)` to create a new message.
1154
+ */
1155
+ declare const UpdateAuthSCIMResourceResponseSchema: GenMessage<UpdateAuthSCIMResourceResponse>;
1156
+ /**
1157
+ * @generated from message tailor.v1.DeleteAuthSCIMResourceRequest
1158
+ */
1159
+ declare type DeleteAuthSCIMResourceRequest = Message<"tailor.v1.DeleteAuthSCIMResourceRequest"> & {
1160
+ /**
1161
+ * @generated from field: string workspace_id = 1;
1162
+ */
1163
+ workspaceId: string;
1164
+ /**
1165
+ * @generated from field: string namespace_name = 2;
1166
+ */
1167
+ namespaceName: string;
1168
+ /**
1169
+ * @generated from field: string name = 3;
1170
+ */
1171
+ name: string;
1172
+ };
1173
+ /**
1174
+ * Describes the message tailor.v1.DeleteAuthSCIMResourceRequest.
1175
+ * Use `create(DeleteAuthSCIMResourceRequestSchema)` to create a new message.
1176
+ */
1177
+ declare const DeleteAuthSCIMResourceRequestSchema: GenMessage<DeleteAuthSCIMResourceRequest>;
1178
+ /**
1179
+ * @generated from message tailor.v1.DeleteAuthSCIMResourceResponse
1180
+ */
1181
+ declare type DeleteAuthSCIMResourceResponse = Message<"tailor.v1.DeleteAuthSCIMResourceResponse"> & {};
1182
+ /**
1183
+ * Describes the message tailor.v1.DeleteAuthSCIMResourceResponse.
1184
+ * Use `create(DeleteAuthSCIMResourceResponseSchema)` to create a new message.
1185
+ */
1186
+ declare const DeleteAuthSCIMResourceResponseSchema: GenMessage<DeleteAuthSCIMResourceResponse>;
1187
+ /**
1188
+ * @generated from message tailor.v1.GetAuthSCIMResourceRequest
1189
+ */
1190
+ declare type GetAuthSCIMResourceRequest = Message<"tailor.v1.GetAuthSCIMResourceRequest"> & {
1191
+ /**
1192
+ * @generated from field: string workspace_id = 1;
1193
+ */
1194
+ workspaceId: string;
1195
+ /**
1196
+ * @generated from field: string namespace_name = 2;
1197
+ */
1198
+ namespaceName: string;
1199
+ /**
1200
+ * @generated from field: string name = 3;
1201
+ */
1202
+ name: string;
1203
+ };
1204
+ /**
1205
+ * Describes the message tailor.v1.GetAuthSCIMResourceRequest.
1206
+ * Use `create(GetAuthSCIMResourceRequestSchema)` to create a new message.
1207
+ */
1208
+ declare const GetAuthSCIMResourceRequestSchema: GenMessage<GetAuthSCIMResourceRequest>;
1209
+ /**
1210
+ * @generated from message tailor.v1.GetAuthSCIMResourceResponse
1211
+ */
1212
+ declare type GetAuthSCIMResourceResponse = Message<"tailor.v1.GetAuthSCIMResourceResponse"> & {
1213
+ /**
1214
+ * @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1;
1215
+ */
1216
+ scimResource?: AuthSCIMResource;
1217
+ };
1218
+ /**
1219
+ * Describes the message tailor.v1.GetAuthSCIMResourceResponse.
1220
+ * Use `create(GetAuthSCIMResourceResponseSchema)` to create a new message.
1221
+ */
1222
+ declare const GetAuthSCIMResourceResponseSchema: GenMessage<GetAuthSCIMResourceResponse>;
1223
+ /**
1224
+ * @generated from message tailor.v1.GetAuthSCIMResourcesRequest
1225
+ */
1226
+ declare type GetAuthSCIMResourcesRequest = Message<"tailor.v1.GetAuthSCIMResourcesRequest"> & {
1227
+ /**
1228
+ * @generated from field: string workspace_id = 1;
1229
+ */
1230
+ workspaceId: string;
1231
+ /**
1232
+ * @generated from field: string namespace_name = 2;
1233
+ */
1234
+ namespaceName: string;
1235
+ };
1236
+ /**
1237
+ * Describes the message tailor.v1.GetAuthSCIMResourcesRequest.
1238
+ * Use `create(GetAuthSCIMResourcesRequestSchema)` to create a new message.
1239
+ */
1240
+ declare const GetAuthSCIMResourcesRequestSchema: GenMessage<GetAuthSCIMResourcesRequest>;
1241
+ /**
1242
+ * @generated from message tailor.v1.GetAuthSCIMResourcesResponse
1243
+ */
1244
+ declare type GetAuthSCIMResourcesResponse = Message<"tailor.v1.GetAuthSCIMResourcesResponse"> & {
1245
+ /**
1246
+ * @generated from field: repeated tailor.v1.AuthSCIMResource scim_resources = 1;
1247
+ */
1248
+ scimResources: AuthSCIMResource[];
1249
+ };
1250
+ /**
1251
+ * Describes the message tailor.v1.GetAuthSCIMResourcesResponse.
1252
+ * Use `create(GetAuthSCIMResourcesResponseSchema)` to create a new message.
1253
+ */
1254
+ declare const GetAuthSCIMResourcesResponseSchema: GenMessage<GetAuthSCIMResourcesResponse>;
1255
+ /**
1256
+ * Auth Hook --------------------------------------------------------
1257
+ *
1258
+ * @generated from message tailor.v1.CreateAuthHookRequest
1259
+ */
1260
+ declare type CreateAuthHookRequest = Message<"tailor.v1.CreateAuthHookRequest"> & {
1261
+ /**
1262
+ * @generated from field: string workspace_id = 1;
1263
+ */
1264
+ workspaceId: string;
1265
+ /**
1266
+ * @generated from field: string namespace_name = 2;
1267
+ */
1268
+ namespaceName: string;
1269
+ /**
1270
+ * @generated from field: tailor.v1.AuthHook hook = 3;
1271
+ */
1272
+ hook?: AuthHook;
1273
+ };
1274
+ /**
1275
+ * Describes the message tailor.v1.CreateAuthHookRequest.
1276
+ * Use `create(CreateAuthHookRequestSchema)` to create a new message.
1277
+ */
1278
+ declare const CreateAuthHookRequestSchema: GenMessage<CreateAuthHookRequest>;
1279
+ /**
1280
+ * @generated from message tailor.v1.CreateAuthHookResponse
1281
+ */
1282
+ declare type CreateAuthHookResponse = Message<"tailor.v1.CreateAuthHookResponse"> & {
1283
+ /**
1284
+ * @generated from field: tailor.v1.AuthHook hook = 1;
1285
+ */
1286
+ hook?: AuthHook;
1287
+ };
1288
+ /**
1289
+ * Describes the message tailor.v1.CreateAuthHookResponse.
1290
+ * Use `create(CreateAuthHookResponseSchema)` to create a new message.
1291
+ */
1292
+ declare const CreateAuthHookResponseSchema: GenMessage<CreateAuthHookResponse>;
1293
+ /**
1294
+ * @generated from message tailor.v1.UpdateAuthHookRequest
1295
+ */
1296
+ declare type UpdateAuthHookRequest = Message<"tailor.v1.UpdateAuthHookRequest"> & {
1297
+ /**
1298
+ * @generated from field: string workspace_id = 1;
1299
+ */
1300
+ workspaceId: string;
1301
+ /**
1302
+ * @generated from field: string namespace_name = 2;
1303
+ */
1304
+ namespaceName: string;
1305
+ /**
1306
+ * @generated from field: tailor.v1.AuthHook hook = 3;
1307
+ */
1308
+ hook?: AuthHook;
1309
+ };
1310
+ /**
1311
+ * Describes the message tailor.v1.UpdateAuthHookRequest.
1312
+ * Use `create(UpdateAuthHookRequestSchema)` to create a new message.
1313
+ */
1314
+ declare const UpdateAuthHookRequestSchema: GenMessage<UpdateAuthHookRequest>;
1315
+ /**
1316
+ * @generated from message tailor.v1.UpdateAuthHookResponse
1317
+ */
1318
+ declare type UpdateAuthHookResponse = Message<"tailor.v1.UpdateAuthHookResponse"> & {
1319
+ /**
1320
+ * @generated from field: tailor.v1.AuthHook hook = 1;
1321
+ */
1322
+ hook?: AuthHook;
1323
+ };
1324
+ /**
1325
+ * Describes the message tailor.v1.UpdateAuthHookResponse.
1326
+ * Use `create(UpdateAuthHookResponseSchema)` to create a new message.
1327
+ */
1328
+ declare const UpdateAuthHookResponseSchema: GenMessage<UpdateAuthHookResponse>;
1329
+ /**
1330
+ * @generated from message tailor.v1.DeleteAuthHookRequest
1331
+ */
1332
+ declare type DeleteAuthHookRequest = Message<"tailor.v1.DeleteAuthHookRequest"> & {
1333
+ /**
1334
+ * @generated from field: string workspace_id = 1;
1335
+ */
1336
+ workspaceId: string;
1337
+ /**
1338
+ * @generated from field: string namespace_name = 2;
1339
+ */
1340
+ namespaceName: string;
1341
+ /**
1342
+ * @generated from field: tailor.v1.AuthHookPoint hook_point = 3;
1343
+ */
1344
+ hookPoint: AuthHookPoint;
1345
+ };
1346
+ /**
1347
+ * Describes the message tailor.v1.DeleteAuthHookRequest.
1348
+ * Use `create(DeleteAuthHookRequestSchema)` to create a new message.
1349
+ */
1350
+ declare const DeleteAuthHookRequestSchema: GenMessage<DeleteAuthHookRequest>;
1351
+ /**
1352
+ * @generated from message tailor.v1.DeleteAuthHookResponse
1353
+ */
1354
+ declare type DeleteAuthHookResponse = Message<"tailor.v1.DeleteAuthHookResponse"> & {};
1355
+ /**
1356
+ * Describes the message tailor.v1.DeleteAuthHookResponse.
1357
+ * Use `create(DeleteAuthHookResponseSchema)` to create a new message.
1358
+ */
1359
+ declare const DeleteAuthHookResponseSchema: GenMessage<DeleteAuthHookResponse>;
1360
+ /**
1361
+ * @generated from message tailor.v1.GetAuthHookRequest
1362
+ */
1363
+ declare type GetAuthHookRequest = Message<"tailor.v1.GetAuthHookRequest"> & {
1364
+ /**
1365
+ * @generated from field: string workspace_id = 1;
1366
+ */
1367
+ workspaceId: string;
1368
+ /**
1369
+ * @generated from field: string namespace_name = 2;
1370
+ */
1371
+ namespaceName: string;
1372
+ /**
1373
+ * @generated from field: tailor.v1.AuthHookPoint hook_point = 3;
1374
+ */
1375
+ hookPoint: AuthHookPoint;
1376
+ };
1377
+ /**
1378
+ * Describes the message tailor.v1.GetAuthHookRequest.
1379
+ * Use `create(GetAuthHookRequestSchema)` to create a new message.
1380
+ */
1381
+ declare const GetAuthHookRequestSchema: GenMessage<GetAuthHookRequest>;
1382
+ /**
1383
+ * @generated from message tailor.v1.GetAuthHookResponse
1384
+ */
1385
+ declare type GetAuthHookResponse = Message<"tailor.v1.GetAuthHookResponse"> & {
1386
+ /**
1387
+ * @generated from field: tailor.v1.AuthHook hook = 1;
1388
+ */
1389
+ hook?: AuthHook;
1390
+ };
1391
+ /**
1392
+ * Describes the message tailor.v1.GetAuthHookResponse.
1393
+ * Use `create(GetAuthHookResponseSchema)` to create a new message.
1394
+ */
1395
+ declare const GetAuthHookResponseSchema: GenMessage<GetAuthHookResponse>;
1396
+ /**
1397
+ * @generated from message tailor.v1.CreateAuthConnectionRequest
1398
+ */
1399
+ declare type CreateAuthConnectionRequest = Message<"tailor.v1.CreateAuthConnectionRequest"> & {
1400
+ /**
1401
+ * @generated from field: string workspace_id = 1;
1402
+ */
1403
+ workspaceId: string;
1404
+ /**
1405
+ * @generated from field: tailor.v1.AuthConnection connection = 2;
1406
+ */
1407
+ connection?: AuthConnection;
1408
+ };
1409
+ /**
1410
+ * Describes the message tailor.v1.CreateAuthConnectionRequest.
1411
+ * Use `create(CreateAuthConnectionRequestSchema)` to create a new message.
1412
+ */
1413
+ declare const CreateAuthConnectionRequestSchema: GenMessage<CreateAuthConnectionRequest>;
1414
+ /**
1415
+ * @generated from message tailor.v1.CreateAuthConnectionResponse
1416
+ */
1417
+ declare type CreateAuthConnectionResponse = Message<"tailor.v1.CreateAuthConnectionResponse"> & {};
1418
+ /**
1419
+ * Describes the message tailor.v1.CreateAuthConnectionResponse.
1420
+ * Use `create(CreateAuthConnectionResponseSchema)` to create a new message.
1421
+ */
1422
+ declare const CreateAuthConnectionResponseSchema: GenMessage<CreateAuthConnectionResponse>;
1423
+ /**
1424
+ * @generated from message tailor.v1.UpdateAuthConnectionRequest
1425
+ */
1426
+ declare type UpdateAuthConnectionRequest = Message<"tailor.v1.UpdateAuthConnectionRequest"> & {
1427
+ /**
1428
+ * @generated from field: string workspace_id = 1;
1429
+ */
1430
+ workspaceId: string;
1431
+ /**
1432
+ * @generated from field: tailor.v1.AuthConnection connection = 2;
1433
+ */
1434
+ connection?: AuthConnection;
1435
+ /**
1436
+ * @generated from field: google.protobuf.FieldMask update_mask = 100;
1437
+ */
1438
+ updateMask?: FieldMask;
1439
+ };
1440
+ /**
1441
+ * Describes the message tailor.v1.UpdateAuthConnectionRequest.
1442
+ * Use `create(UpdateAuthConnectionRequestSchema)` to create a new message.
1443
+ */
1444
+ declare const UpdateAuthConnectionRequestSchema: GenMessage<UpdateAuthConnectionRequest>;
1445
+ /**
1446
+ * @generated from message tailor.v1.UpdateAuthConnectionResponse
1447
+ */
1448
+ declare type UpdateAuthConnectionResponse = Message<"tailor.v1.UpdateAuthConnectionResponse"> & {
1449
+ /**
1450
+ * The updated connection. Its status reflects whether the change revoked the
1451
+ * session (STATUS_UNAUTHORIZED) or left it intact (STATUS_AUTHORIZED).
1452
+ *
1453
+ * @generated from field: tailor.v1.AuthConnection connection = 1;
1454
+ */
1455
+ connection?: AuthConnection;
1456
+ };
1457
+ /**
1458
+ * Describes the message tailor.v1.UpdateAuthConnectionResponse.
1459
+ * Use `create(UpdateAuthConnectionResponseSchema)` to create a new message.
1460
+ */
1461
+ declare const UpdateAuthConnectionResponseSchema: GenMessage<UpdateAuthConnectionResponse>;
1462
+ /**
1463
+ * @generated from message tailor.v1.ListAuthConnectionsRequest
1464
+ */
1465
+ declare type ListAuthConnectionsRequest = Message<"tailor.v1.ListAuthConnectionsRequest"> & {
1466
+ /**
1467
+ * @generated from field: string workspace_id = 1;
1468
+ */
1469
+ workspaceId: string;
1470
+ /**
1471
+ * @generated from field: string page_token = 2;
1472
+ */
1473
+ pageToken: string;
1474
+ /**
1475
+ * @generated from field: uint32 page_size = 3;
1476
+ */
1477
+ pageSize: number;
1478
+ /**
1479
+ * @generated from field: tailor.v1.PageDirection page_direction = 4;
1480
+ */
1481
+ pageDirection: PageDirection;
1482
+ };
1483
+ /**
1484
+ * Describes the message tailor.v1.ListAuthConnectionsRequest.
1485
+ * Use `create(ListAuthConnectionsRequestSchema)` to create a new message.
1486
+ */
1487
+ declare const ListAuthConnectionsRequestSchema: GenMessage<ListAuthConnectionsRequest>;
1488
+ /**
1489
+ * @generated from message tailor.v1.ListAuthConnectionsResponse
1490
+ */
1491
+ declare type ListAuthConnectionsResponse = Message<"tailor.v1.ListAuthConnectionsResponse"> & {
1492
+ /**
1493
+ * @generated from field: repeated tailor.v1.AuthConnection connections = 1;
1494
+ */
1495
+ connections: AuthConnection[];
1496
+ /**
1497
+ * @generated from field: string next_page_token = 2;
1498
+ */
1499
+ nextPageToken: string;
1500
+ /**
1501
+ * @generated from field: int64 total_count = 3;
1502
+ */
1503
+ totalCount: bigint;
1504
+ };
1505
+ /**
1506
+ * Describes the message tailor.v1.ListAuthConnectionsResponse.
1507
+ * Use `create(ListAuthConnectionsResponseSchema)` to create a new message.
1508
+ */
1509
+ declare const ListAuthConnectionsResponseSchema: GenMessage<ListAuthConnectionsResponse>;
1510
+ /**
1511
+ * @generated from message tailor.v1.RevokeAuthConnectionRequest
1512
+ */
1513
+ declare type RevokeAuthConnectionRequest = Message<"tailor.v1.RevokeAuthConnectionRequest"> & {
1514
+ /**
1515
+ * @generated from field: string workspace_id = 1;
1516
+ */
1517
+ workspaceId: string;
1518
+ /**
1519
+ * @generated from field: string connection_name = 2;
1520
+ */
1521
+ connectionName: string;
1522
+ };
1523
+ /**
1524
+ * Describes the message tailor.v1.RevokeAuthConnectionRequest.
1525
+ * Use `create(RevokeAuthConnectionRequestSchema)` to create a new message.
1526
+ */
1527
+ declare const RevokeAuthConnectionRequestSchema: GenMessage<RevokeAuthConnectionRequest>;
1528
+ /**
1529
+ * @generated from message tailor.v1.RevokeAuthConnectionResponse
1530
+ */
1531
+ declare type RevokeAuthConnectionResponse = Message<"tailor.v1.RevokeAuthConnectionResponse"> & {};
1532
+ /**
1533
+ * Describes the message tailor.v1.RevokeAuthConnectionResponse.
1534
+ * Use `create(RevokeAuthConnectionResponseSchema)` to create a new message.
1535
+ */
1536
+ declare const RevokeAuthConnectionResponseSchema: GenMessage<RevokeAuthConnectionResponse>;
1537
+ /**
1538
+ * @generated from message tailor.v1.DeleteAuthConnectionRequest
1539
+ */
1540
+ declare type DeleteAuthConnectionRequest = Message<"tailor.v1.DeleteAuthConnectionRequest"> & {
1541
+ /**
1542
+ * @generated from field: string workspace_id = 1;
1543
+ */
1544
+ workspaceId: string;
1545
+ /**
1546
+ * @generated from field: string connection_name = 2;
1547
+ */
1548
+ connectionName: string;
1549
+ };
1550
+ /**
1551
+ * Describes the message tailor.v1.DeleteAuthConnectionRequest.
1552
+ * Use `create(DeleteAuthConnectionRequestSchema)` to create a new message.
1553
+ */
1554
+ declare const DeleteAuthConnectionRequestSchema: GenMessage<DeleteAuthConnectionRequest>;
1555
+ /**
1556
+ * @generated from message tailor.v1.DeleteAuthConnectionResponse
1557
+ */
1558
+ declare type DeleteAuthConnectionResponse = Message<"tailor.v1.DeleteAuthConnectionResponse"> & {};
1559
+ /**
1560
+ * Describes the message tailor.v1.DeleteAuthConnectionResponse.
1561
+ * Use `create(DeleteAuthConnectionResponseSchema)` to create a new message.
1562
+ */
1563
+ declare const DeleteAuthConnectionResponseSchema: GenMessage<DeleteAuthConnectionResponse>;
1564
+ /**
1565
+ * @generated from message tailor.v1.RegisterAuthConnectionSessionRequest
1566
+ */
1567
+ declare type RegisterAuthConnectionSessionRequest = Message<"tailor.v1.RegisterAuthConnectionSessionRequest"> & {
1568
+ /**
1569
+ * @generated from field: string workspace_id = 1;
1570
+ */
1571
+ workspaceId: string;
1572
+ /**
1573
+ * @generated from field: string connection_name = 2;
1574
+ */
1575
+ connectionName: string;
1576
+ /**
1577
+ * @generated from field: string access_token = 3;
1578
+ */
1579
+ accessToken: string;
1580
+ /**
1581
+ * @generated from field: string refresh_token = 4;
1582
+ */
1583
+ refreshToken: string;
1584
+ /**
1585
+ * @generated from field: google.protobuf.Timestamp expires_at = 5;
1586
+ */
1587
+ expiresAt?: Timestamp;
1588
+ };
1589
+ /**
1590
+ * Describes the message tailor.v1.RegisterAuthConnectionSessionRequest.
1591
+ * Use `create(RegisterAuthConnectionSessionRequestSchema)` to create a new message.
1592
+ */
1593
+ declare const RegisterAuthConnectionSessionRequestSchema: GenMessage<RegisterAuthConnectionSessionRequest>;
1594
+ /**
1595
+ * @generated from message tailor.v1.RegisterAuthConnectionSessionResponse
1596
+ */
1597
+ declare type RegisterAuthConnectionSessionResponse = Message<"tailor.v1.RegisterAuthConnectionSessionResponse"> & {};
1598
+ /**
1599
+ * Describes the message tailor.v1.RegisterAuthConnectionSessionResponse.
1600
+ * Use `create(RegisterAuthConnectionSessionResponseSchema)` to create a new message.
1601
+ */
1602
+ declare const RegisterAuthConnectionSessionResponseSchema: GenMessage<RegisterAuthConnectionSessionResponse>;
1603
+ /**
1604
+ * @generated from message tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest
1605
+ */
1606
+ declare type ExchangeAuthConnectionAuthorizationCodeRequest = Message<"tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest"> & {
1607
+ /**
1608
+ * @generated from field: string workspace_id = 1;
1609
+ */
1610
+ workspaceId: string;
1611
+ /**
1612
+ * @generated from field: string connection_name = 2;
1613
+ */
1614
+ connectionName: string;
1615
+ /**
1616
+ * @generated from field: string authorization_code = 3;
1617
+ */
1618
+ authorizationCode: string;
1619
+ /**
1620
+ * @generated from field: string redirect_uri = 4;
1621
+ */
1622
+ redirectUri: string;
1623
+ };
1624
+ /**
1625
+ * Describes the message tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest.
1626
+ * Use `create(ExchangeAuthConnectionAuthorizationCodeRequestSchema)` to create a new message.
1627
+ */
1628
+ declare const ExchangeAuthConnectionAuthorizationCodeRequestSchema: GenMessage<ExchangeAuthConnectionAuthorizationCodeRequest>;
1629
+ /**
1630
+ * @generated from message tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse
1631
+ */
1632
+ declare type ExchangeAuthConnectionAuthorizationCodeResponse = Message<"tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse"> & {};
1633
+ /**
1634
+ * Describes the message tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse.
1635
+ * Use `create(ExchangeAuthConnectionAuthorizationCodeResponseSchema)` to create a new message.
1636
+ */
1637
+ declare const ExchangeAuthConnectionAuthorizationCodeResponseSchema: GenMessage<ExchangeAuthConnectionAuthorizationCodeResponse>;
1638
+ /**
1639
+ * @generated from message tailor.v1.CreateAuthOAuth2ClientRequest
1640
+ */
1641
+ declare type CreateAuthOAuth2ClientRequest = Message<"tailor.v1.CreateAuthOAuth2ClientRequest"> & {
1642
+ /**
1643
+ * @generated from field: string workspace_id = 1;
1644
+ */
1645
+ workspaceId: string;
1646
+ /**
1647
+ * @generated from field: string namespace_name = 2;
1648
+ */
1649
+ namespaceName: string;
1650
+ /**
1651
+ * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 3;
1652
+ */
1653
+ oauth2Client?: AuthOAuth2Client;
1654
+ };
1655
+ /**
1656
+ * Describes the message tailor.v1.CreateAuthOAuth2ClientRequest.
1657
+ * Use `create(CreateAuthOAuth2ClientRequestSchema)` to create a new message.
1658
+ */
1659
+ declare const CreateAuthOAuth2ClientRequestSchema: GenMessage<CreateAuthOAuth2ClientRequest>;
1660
+ /**
1661
+ * @generated from message tailor.v1.CreateAuthOAuth2ClientResponse
1662
+ */
1663
+ declare type CreateAuthOAuth2ClientResponse = Message<"tailor.v1.CreateAuthOAuth2ClientResponse"> & {
1664
+ /**
1665
+ * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1;
1666
+ */
1667
+ oauth2Client?: AuthOAuth2Client;
1668
+ };
1669
+ /**
1670
+ * Describes the message tailor.v1.CreateAuthOAuth2ClientResponse.
1671
+ * Use `create(CreateAuthOAuth2ClientResponseSchema)` to create a new message.
1672
+ */
1673
+ declare const CreateAuthOAuth2ClientResponseSchema: GenMessage<CreateAuthOAuth2ClientResponse>;
1674
+ /**
1675
+ * @generated from message tailor.v1.UpdateAuthOAuth2ClientRequest
1676
+ */
1677
+ declare type UpdateAuthOAuth2ClientRequest = Message<"tailor.v1.UpdateAuthOAuth2ClientRequest"> & {
1678
+ /**
1679
+ * @generated from field: string workspace_id = 1;
1680
+ */
1681
+ workspaceId: string;
1682
+ /**
1683
+ * @generated from field: string namespace_name = 2;
1684
+ */
1685
+ namespaceName: string;
1686
+ /**
1687
+ * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 3;
1688
+ */
1689
+ oauth2Client?: AuthOAuth2Client;
1690
+ };
1691
+ /**
1692
+ * Describes the message tailor.v1.UpdateAuthOAuth2ClientRequest.
1693
+ * Use `create(UpdateAuthOAuth2ClientRequestSchema)` to create a new message.
1694
+ */
1695
+ declare const UpdateAuthOAuth2ClientRequestSchema: GenMessage<UpdateAuthOAuth2ClientRequest>;
1696
+ /**
1697
+ * @generated from message tailor.v1.UpdateAuthOAuth2ClientResponse
1698
+ */
1699
+ declare type UpdateAuthOAuth2ClientResponse = Message<"tailor.v1.UpdateAuthOAuth2ClientResponse"> & {
1700
+ /**
1701
+ * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1;
1702
+ */
1703
+ oauth2Client?: AuthOAuth2Client;
1704
+ };
1705
+ /**
1706
+ * Describes the message tailor.v1.UpdateAuthOAuth2ClientResponse.
1707
+ * Use `create(UpdateAuthOAuth2ClientResponseSchema)` to create a new message.
1708
+ */
1709
+ declare const UpdateAuthOAuth2ClientResponseSchema: GenMessage<UpdateAuthOAuth2ClientResponse>;
1710
+ /**
1711
+ * @generated from message tailor.v1.DeleteAuthOAuth2ClientRequest
1712
+ */
1713
+ declare type DeleteAuthOAuth2ClientRequest = Message<"tailor.v1.DeleteAuthOAuth2ClientRequest"> & {
1714
+ /**
1715
+ * @generated from field: string workspace_id = 1;
1716
+ */
1717
+ workspaceId: string;
1718
+ /**
1719
+ * @generated from field: string namespace_name = 2;
1720
+ */
1721
+ namespaceName: string;
1722
+ /**
1723
+ * @generated from field: string name = 3;
1724
+ */
1725
+ name: string;
1726
+ };
1727
+ /**
1728
+ * Describes the message tailor.v1.DeleteAuthOAuth2ClientRequest.
1729
+ * Use `create(DeleteAuthOAuth2ClientRequestSchema)` to create a new message.
1730
+ */
1731
+ declare const DeleteAuthOAuth2ClientRequestSchema: GenMessage<DeleteAuthOAuth2ClientRequest>;
1732
+ /**
1733
+ * @generated from message tailor.v1.DeleteAuthOAuth2ClientResponse
1734
+ */
1735
+ declare type DeleteAuthOAuth2ClientResponse = Message<"tailor.v1.DeleteAuthOAuth2ClientResponse"> & {};
1736
+ /**
1737
+ * Describes the message tailor.v1.DeleteAuthOAuth2ClientResponse.
1738
+ * Use `create(DeleteAuthOAuth2ClientResponseSchema)` to create a new message.
1739
+ */
1740
+ declare const DeleteAuthOAuth2ClientResponseSchema: GenMessage<DeleteAuthOAuth2ClientResponse>;
1741
+ /**
1742
+ * @generated from message tailor.v1.GetAuthOAuth2ClientRequest
1743
+ */
1744
+ declare type GetAuthOAuth2ClientRequest = Message<"tailor.v1.GetAuthOAuth2ClientRequest"> & {
1745
+ /**
1746
+ * @generated from field: string workspace_id = 1;
1747
+ */
1748
+ workspaceId: string;
1749
+ /**
1750
+ * @generated from field: string namespace_name = 2;
1751
+ */
1752
+ namespaceName: string;
1753
+ /**
1754
+ * @generated from field: string name = 3;
1755
+ */
1756
+ name: string;
1757
+ };
1758
+ /**
1759
+ * Describes the message tailor.v1.GetAuthOAuth2ClientRequest.
1760
+ * Use `create(GetAuthOAuth2ClientRequestSchema)` to create a new message.
1761
+ */
1762
+ declare const GetAuthOAuth2ClientRequestSchema: GenMessage<GetAuthOAuth2ClientRequest>;
1763
+ /**
1764
+ * @generated from message tailor.v1.GetAuthOAuth2ClientResponse
1765
+ */
1766
+ declare type GetAuthOAuth2ClientResponse = Message<"tailor.v1.GetAuthOAuth2ClientResponse"> & {
1767
+ /**
1768
+ * @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1;
1769
+ */
1770
+ oauth2Client?: AuthOAuth2Client;
1771
+ };
1772
+ /**
1773
+ * Describes the message tailor.v1.GetAuthOAuth2ClientResponse.
1774
+ * Use `create(GetAuthOAuth2ClientResponseSchema)` to create a new message.
1775
+ */
1776
+ declare const GetAuthOAuth2ClientResponseSchema: GenMessage<GetAuthOAuth2ClientResponse>;
1777
+ /**
1778
+ * @generated from message tailor.v1.ListAuthOAuth2ClientsRequest
1779
+ */
1780
+ declare type ListAuthOAuth2ClientsRequest = Message<"tailor.v1.ListAuthOAuth2ClientsRequest"> & {
1781
+ /**
1782
+ * @generated from field: string workspace_id = 1;
1783
+ */
1784
+ workspaceId: string;
1785
+ /**
1786
+ * @generated from field: string namespace_name = 2;
1787
+ */
1788
+ namespaceName: string;
1789
+ /**
1790
+ * @generated from field: string page_token = 3;
1791
+ */
1792
+ pageToken: string;
1793
+ /**
1794
+ * @generated from field: uint32 page_size = 4;
1795
+ */
1796
+ pageSize: number;
1797
+ /**
1798
+ * @generated from field: tailor.v1.PageDirection page_direction = 5;
1799
+ */
1800
+ pageDirection: PageDirection;
1801
+ };
1802
+ /**
1803
+ * Describes the message tailor.v1.ListAuthOAuth2ClientsRequest.
1804
+ * Use `create(ListAuthOAuth2ClientsRequestSchema)` to create a new message.
1805
+ */
1806
+ declare const ListAuthOAuth2ClientsRequestSchema: GenMessage<ListAuthOAuth2ClientsRequest>;
1807
+ /**
1808
+ * @generated from message tailor.v1.ListAuthOAuth2ClientsResponse
1809
+ */
1810
+ declare type ListAuthOAuth2ClientsResponse = Message<"tailor.v1.ListAuthOAuth2ClientsResponse"> & {
1811
+ /**
1812
+ * @generated from field: repeated tailor.v1.AuthOAuth2Client oauth2_clients = 1;
1813
+ */
1814
+ oauth2Clients: AuthOAuth2Client[];
1815
+ /**
1816
+ * @generated from field: string next_page_token = 2;
1817
+ */
1818
+ nextPageToken: string;
1819
+ /**
1820
+ * @generated from field: int64 total_count = 3;
1821
+ */
1822
+ totalCount: bigint;
1823
+ };
1824
+ /**
1825
+ * Describes the message tailor.v1.ListAuthOAuth2ClientsResponse.
1826
+ * Use `create(ListAuthOAuth2ClientsResponseSchema)` to create a new message.
1827
+ */
1828
+ declare const ListAuthOAuth2ClientsResponseSchema: GenMessage<ListAuthOAuth2ClientsResponse>;
1829
+ /**
1830
+ * @generated from message tailor.v1.CreateControlplaneMachineUserRequest
1831
+ */
1832
+ declare type CreateControlplaneMachineUserRequest = Message<"tailor.v1.CreateControlplaneMachineUserRequest"> & {
1833
+ /**
1834
+ * @generated from field: string organization_id = 1;
1835
+ */
1836
+ organizationId: string;
1837
+ /**
1838
+ * @generated from field: string folder_id = 2;
1839
+ */
1840
+ folderId: string;
1841
+ /**
1842
+ * @generated from field: string name = 3;
1843
+ */
1844
+ name: string;
1845
+ /**
1846
+ * @generated from field: string description = 4;
1847
+ */
1848
+ description: string;
1849
+ };
1850
+ /**
1851
+ * Describes the message tailor.v1.CreateControlplaneMachineUserRequest.
1852
+ * Use `create(CreateControlplaneMachineUserRequestSchema)` to create a new message.
1853
+ */
1854
+ declare const CreateControlplaneMachineUserRequestSchema: GenMessage<CreateControlplaneMachineUserRequest>;
1855
+ /**
1856
+ * @generated from message tailor.v1.CreateControlplaneMachineUserResponse
1857
+ */
1858
+ declare type CreateControlplaneMachineUserResponse = Message<"tailor.v1.CreateControlplaneMachineUserResponse"> & {
1859
+ /**
1860
+ * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
1861
+ */
1862
+ machineUser?: ControlplaneMachineUser;
1863
+ };
1864
+ /**
1865
+ * Describes the message tailor.v1.CreateControlplaneMachineUserResponse.
1866
+ * Use `create(CreateControlplaneMachineUserResponseSchema)` to create a new message.
1867
+ */
1868
+ declare const CreateControlplaneMachineUserResponseSchema: GenMessage<CreateControlplaneMachineUserResponse>;
1869
+ /**
1870
+ * @generated from message tailor.v1.UpdateControlplaneMachineUserRequest
1871
+ */
1872
+ declare type UpdateControlplaneMachineUserRequest = Message<"tailor.v1.UpdateControlplaneMachineUserRequest"> & {
1873
+ /**
1874
+ * @generated from field: string organization_id = 1;
1875
+ */
1876
+ organizationId: string;
1877
+ /**
1878
+ * @generated from field: string folder_id = 2;
1879
+ */
1880
+ folderId: string;
1881
+ /**
1882
+ * @generated from field: string machine_user_id = 3;
1883
+ */
1884
+ machineUserId: string;
1885
+ /**
1886
+ * @generated from field: optional string name = 4;
1887
+ */
1888
+ name?: string;
1889
+ /**
1890
+ * @generated from field: optional string description = 5;
1891
+ */
1892
+ description?: string;
1893
+ };
1894
+ /**
1895
+ * Describes the message tailor.v1.UpdateControlplaneMachineUserRequest.
1896
+ * Use `create(UpdateControlplaneMachineUserRequestSchema)` to create a new message.
1897
+ */
1898
+ declare const UpdateControlplaneMachineUserRequestSchema: GenMessage<UpdateControlplaneMachineUserRequest>;
1899
+ /**
1900
+ * @generated from message tailor.v1.UpdateControlplaneMachineUserResponse
1901
+ */
1902
+ declare type UpdateControlplaneMachineUserResponse = Message<"tailor.v1.UpdateControlplaneMachineUserResponse"> & {
1903
+ /**
1904
+ * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
1905
+ */
1906
+ machineUser?: ControlplaneMachineUser;
1907
+ };
1908
+ /**
1909
+ * Describes the message tailor.v1.UpdateControlplaneMachineUserResponse.
1910
+ * Use `create(UpdateControlplaneMachineUserResponseSchema)` to create a new message.
1911
+ */
1912
+ declare const UpdateControlplaneMachineUserResponseSchema: GenMessage<UpdateControlplaneMachineUserResponse>;
1913
+ /**
1914
+ * @generated from message tailor.v1.GetControlplaneMachineUserRequest
1915
+ */
1916
+ declare type GetControlplaneMachineUserRequest = Message<"tailor.v1.GetControlplaneMachineUserRequest"> & {
1917
+ /**
1918
+ * @generated from field: string organization_id = 1;
1919
+ */
1920
+ organizationId: string;
1921
+ /**
1922
+ * @generated from field: string folder_id = 2;
1923
+ */
1924
+ folderId: string;
1925
+ /**
1926
+ * @generated from field: string machine_user_id = 3;
1927
+ */
1928
+ machineUserId: string;
1929
+ };
1930
+ /**
1931
+ * Describes the message tailor.v1.GetControlplaneMachineUserRequest.
1932
+ * Use `create(GetControlplaneMachineUserRequestSchema)` to create a new message.
1933
+ */
1934
+ declare const GetControlplaneMachineUserRequestSchema: GenMessage<GetControlplaneMachineUserRequest>;
1935
+ /**
1936
+ * @generated from message tailor.v1.GetControlplaneMachineUserResponse
1937
+ */
1938
+ declare type GetControlplaneMachineUserResponse = Message<"tailor.v1.GetControlplaneMachineUserResponse"> & {
1939
+ /**
1940
+ * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
1941
+ */
1942
+ machineUser?: ControlplaneMachineUser;
1943
+ };
1944
+ /**
1945
+ * Describes the message tailor.v1.GetControlplaneMachineUserResponse.
1946
+ * Use `create(GetControlplaneMachineUserResponseSchema)` to create a new message.
1947
+ */
1948
+ declare const GetControlplaneMachineUserResponseSchema: GenMessage<GetControlplaneMachineUserResponse>;
1949
+ /**
1950
+ * @generated from message tailor.v1.GetControlplaneMachineUserByNameRequest
1951
+ */
1952
+ declare type GetControlplaneMachineUserByNameRequest = Message<"tailor.v1.GetControlplaneMachineUserByNameRequest"> & {
1953
+ /**
1954
+ * @generated from field: string organization_id = 1;
1955
+ */
1956
+ organizationId: string;
1957
+ /**
1958
+ * @generated from field: string folder_id = 2;
1959
+ */
1960
+ folderId: string;
1961
+ /**
1962
+ * @generated from field: string name = 3;
1963
+ */
1964
+ name: string;
1965
+ };
1966
+ /**
1967
+ * Describes the message tailor.v1.GetControlplaneMachineUserByNameRequest.
1968
+ * Use `create(GetControlplaneMachineUserByNameRequestSchema)` to create a new message.
1969
+ */
1970
+ declare const GetControlplaneMachineUserByNameRequestSchema: GenMessage<GetControlplaneMachineUserByNameRequest>;
1971
+ /**
1972
+ * @generated from message tailor.v1.GetControlplaneMachineUserByNameResponse
1973
+ */
1974
+ declare type GetControlplaneMachineUserByNameResponse = Message<"tailor.v1.GetControlplaneMachineUserByNameResponse"> & {
1975
+ /**
1976
+ * @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
1977
+ */
1978
+ machineUser?: ControlplaneMachineUser;
1979
+ };
1980
+ /**
1981
+ * Describes the message tailor.v1.GetControlplaneMachineUserByNameResponse.
1982
+ * Use `create(GetControlplaneMachineUserByNameResponseSchema)` to create a new message.
1983
+ */
1984
+ declare const GetControlplaneMachineUserByNameResponseSchema: GenMessage<GetControlplaneMachineUserByNameResponse>;
1985
+ /**
1986
+ * @generated from message tailor.v1.ListControlplaneMachineUsersRequest
1987
+ */
1988
+ declare type ListControlplaneMachineUsersRequest = Message<"tailor.v1.ListControlplaneMachineUsersRequest"> & {
1989
+ /**
1990
+ * @generated from field: string organization_id = 1;
1991
+ */
1992
+ organizationId: string;
1993
+ /**
1994
+ * @generated from field: string folder_id = 2;
1995
+ */
1996
+ folderId: string;
1997
+ /**
1998
+ * @generated from field: string page_token = 3;
1999
+ */
2000
+ pageToken: string;
2001
+ /**
2002
+ * @generated from field: uint32 page_size = 4;
2003
+ */
2004
+ pageSize: number;
2005
+ /**
2006
+ * @generated from field: tailor.v1.PageDirection page_direction = 5;
2007
+ */
2008
+ pageDirection: PageDirection;
2009
+ };
2010
+ /**
2011
+ * Describes the message tailor.v1.ListControlplaneMachineUsersRequest.
2012
+ * Use `create(ListControlplaneMachineUsersRequestSchema)` to create a new message.
2013
+ */
2014
+ declare const ListControlplaneMachineUsersRequestSchema: GenMessage<ListControlplaneMachineUsersRequest>;
2015
+ /**
2016
+ * @generated from message tailor.v1.ListControlplaneMachineUsersResponse
2017
+ */
2018
+ declare type ListControlplaneMachineUsersResponse = Message<"tailor.v1.ListControlplaneMachineUsersResponse"> & {
2019
+ /**
2020
+ * @generated from field: repeated tailor.v1.ControlplaneMachineUser machine_users = 1;
2021
+ */
2022
+ machineUsers: ControlplaneMachineUser[];
2023
+ /**
2024
+ * @generated from field: string next_page_token = 2;
2025
+ */
2026
+ nextPageToken: string;
2027
+ /**
2028
+ * @generated from field: int64 total_count = 3;
2029
+ */
2030
+ totalCount: bigint;
2031
+ };
2032
+ /**
2033
+ * Describes the message tailor.v1.ListControlplaneMachineUsersResponse.
2034
+ * Use `create(ListControlplaneMachineUsersResponseSchema)` to create a new message.
2035
+ */
2036
+ declare const ListControlplaneMachineUsersResponseSchema: GenMessage<ListControlplaneMachineUsersResponse>;
2037
+ /**
2038
+ * @generated from message tailor.v1.DeleteControlplaneMachineUserRequest
2039
+ */
2040
+ declare type DeleteControlplaneMachineUserRequest = Message<"tailor.v1.DeleteControlplaneMachineUserRequest"> & {
2041
+ /**
2042
+ * @generated from field: string organization_id = 1;
2043
+ */
2044
+ organizationId: string;
2045
+ /**
2046
+ * @generated from field: string folder_id = 2;
2047
+ */
2048
+ folderId: string;
2049
+ /**
2050
+ * @generated from field: string machine_user_id = 3;
2051
+ */
2052
+ machineUserId: string;
2053
+ };
2054
+ /**
2055
+ * Describes the message tailor.v1.DeleteControlplaneMachineUserRequest.
2056
+ * Use `create(DeleteControlplaneMachineUserRequestSchema)` to create a new message.
2057
+ */
2058
+ declare const DeleteControlplaneMachineUserRequestSchema: GenMessage<DeleteControlplaneMachineUserRequest>;
2059
+ /**
2060
+ * @generated from message tailor.v1.DeleteControlplaneMachineUserResponse
2061
+ */
2062
+ declare type DeleteControlplaneMachineUserResponse = Message<"tailor.v1.DeleteControlplaneMachineUserResponse"> & {};
2063
+ /**
2064
+ * Describes the message tailor.v1.DeleteControlplaneMachineUserResponse.
2065
+ * Use `create(DeleteControlplaneMachineUserResponseSchema)` to create a new message.
2066
+ */
2067
+ declare const DeleteControlplaneMachineUserResponseSchema: GenMessage<DeleteControlplaneMachineUserResponse>;
2068
+ //#endregion
2069
+ export { CreateAuthConnectionRequest, CreateAuthConnectionRequestSchema, CreateAuthConnectionResponse, CreateAuthConnectionResponseSchema, CreateAuthHookRequest, CreateAuthHookRequestSchema, CreateAuthHookResponse, CreateAuthHookResponseSchema, CreateAuthIDPConfigRequest, CreateAuthIDPConfigRequestSchema, CreateAuthIDPConfigResponse, CreateAuthIDPConfigResponseSchema, CreateAuthMachineUserRequest, CreateAuthMachineUserRequestSchema, CreateAuthMachineUserResponse, CreateAuthMachineUserResponseSchema, CreateAuthOAuth2ClientRequest, CreateAuthOAuth2ClientRequestSchema, CreateAuthOAuth2ClientResponse, CreateAuthOAuth2ClientResponseSchema, CreateAuthSCIMConfigRequest, CreateAuthSCIMConfigRequestSchema, CreateAuthSCIMConfigResponse, CreateAuthSCIMConfigResponseSchema, CreateAuthSCIMResourceRequest, CreateAuthSCIMResourceRequestSchema, CreateAuthSCIMResourceResponse, CreateAuthSCIMResourceResponseSchema, CreateAuthServiceRequest, CreateAuthServiceRequestSchema, CreateAuthServiceResponse, CreateAuthServiceResponseSchema, CreateControlplaneMachineUserRequest, CreateControlplaneMachineUserRequestSchema, CreateControlplaneMachineUserResponse, CreateControlplaneMachineUserResponseSchema, CreatePersonalAccessTokenRequest, CreatePersonalAccessTokenRequestSchema, CreatePersonalAccessTokenResponse, CreatePersonalAccessTokenResponseSchema, CreateTenantConfigRequest, CreateTenantConfigRequestSchema, CreateTenantConfigResponse, CreateTenantConfigResponseSchema, CreateUserProfileConfigRequest, CreateUserProfileConfigRequestSchema, CreateUserProfileConfigResponse, CreateUserProfileConfigResponseSchema, DeleteAuthConnectionRequest, DeleteAuthConnectionRequestSchema, DeleteAuthConnectionResponse, DeleteAuthConnectionResponseSchema, DeleteAuthHookRequest, DeleteAuthHookRequestSchema, DeleteAuthHookResponse, DeleteAuthHookResponseSchema, DeleteAuthIDPConfigRequest, DeleteAuthIDPConfigRequestSchema, DeleteAuthIDPConfigResponse, DeleteAuthIDPConfigResponseSchema, DeleteAuthMachineUserRequest, DeleteAuthMachineUserRequestSchema, DeleteAuthMachineUserResponse, DeleteAuthMachineUserResponseSchema, DeleteAuthOAuth2ClientRequest, DeleteAuthOAuth2ClientRequestSchema, DeleteAuthOAuth2ClientResponse, DeleteAuthOAuth2ClientResponseSchema, DeleteAuthSCIMConfigRequest, DeleteAuthSCIMConfigRequestSchema, DeleteAuthSCIMConfigResponse, DeleteAuthSCIMConfigResponseSchema, DeleteAuthSCIMResourceRequest, DeleteAuthSCIMResourceRequestSchema, DeleteAuthSCIMResourceResponse, DeleteAuthSCIMResourceResponseSchema, DeleteAuthServiceRequest, DeleteAuthServiceRequestSchema, DeleteAuthServiceResponse, DeleteAuthServiceResponseSchema, DeleteControlplaneMachineUserRequest, DeleteControlplaneMachineUserRequestSchema, DeleteControlplaneMachineUserResponse, DeleteControlplaneMachineUserResponseSchema, DeletePersonalAccessTokenRequest, DeletePersonalAccessTokenRequestSchema, DeletePersonalAccessTokenResponse, DeletePersonalAccessTokenResponseSchema, DeleteTenantConfigRequest, DeleteTenantConfigRequestSchema, DeleteTenantConfigResponse, DeleteTenantConfigResponseSchema, DeleteUserProfileConfigRequest, DeleteUserProfileConfigRequestSchema, DeleteUserProfileConfigResponse, DeleteUserProfileConfigResponseSchema, ExchangeAuthConnectionAuthorizationCodeRequest, ExchangeAuthConnectionAuthorizationCodeRequestSchema, ExchangeAuthConnectionAuthorizationCodeResponse, ExchangeAuthConnectionAuthorizationCodeResponseSchema, GetAuthHookRequest, GetAuthHookRequestSchema, GetAuthHookResponse, GetAuthHookResponseSchema, GetAuthIDPConfigRequest, GetAuthIDPConfigRequestSchema, GetAuthIDPConfigResponse, GetAuthIDPConfigResponseSchema, GetAuthMachineUserRequest, GetAuthMachineUserRequestSchema, GetAuthMachineUserResponse, GetAuthMachineUserResponseSchema, GetAuthOAuth2ClientRequest, GetAuthOAuth2ClientRequestSchema, GetAuthOAuth2ClientResponse, GetAuthOAuth2ClientResponseSchema, GetAuthSCIMConfigRequest, GetAuthSCIMConfigRequestSchema, GetAuthSCIMConfigResponse, GetAuthSCIMConfigResponseSchema, GetAuthSCIMResourceRequest, GetAuthSCIMResourceRequestSchema, GetAuthSCIMResourceResponse, GetAuthSCIMResourceResponseSchema, GetAuthSCIMResourcesRequest, GetAuthSCIMResourcesRequestSchema, GetAuthSCIMResourcesResponse, GetAuthSCIMResourcesResponseSchema, GetAuthServiceRequest, GetAuthServiceRequestSchema, GetAuthServiceResponse, GetAuthServiceResponseSchema, GetControlplaneMachineUserByNameRequest, GetControlplaneMachineUserByNameRequestSchema, GetControlplaneMachineUserByNameResponse, GetControlplaneMachineUserByNameResponseSchema, GetControlplaneMachineUserRequest, GetControlplaneMachineUserRequestSchema, GetControlplaneMachineUserResponse, GetControlplaneMachineUserResponseSchema, GetTenantConfigRequest, GetTenantConfigRequestSchema, GetTenantConfigResponse, GetTenantConfigResponseSchema, GetUserProfileConfigRequest, GetUserProfileConfigRequestSchema, GetUserProfileConfigResponse, GetUserProfileConfigResponseSchema, ListAuthConnectionsRequest, ListAuthConnectionsRequestSchema, ListAuthConnectionsResponse, ListAuthConnectionsResponseSchema, ListAuthIDPConfigsRequest, ListAuthIDPConfigsRequestSchema, ListAuthIDPConfigsResponse, ListAuthIDPConfigsResponseSchema, ListAuthMachineUsersRequest, ListAuthMachineUsersRequestSchema, ListAuthMachineUsersResponse, ListAuthMachineUsersResponseSchema, ListAuthOAuth2ClientsRequest, ListAuthOAuth2ClientsRequestSchema, ListAuthOAuth2ClientsResponse, ListAuthOAuth2ClientsResponseSchema, ListAuthServicesRequest, ListAuthServicesRequestSchema, ListAuthServicesResponse, ListAuthServicesResponseSchema, ListControlplaneMachineUsersRequest, ListControlplaneMachineUsersRequestSchema, ListControlplaneMachineUsersResponse, ListControlplaneMachineUsersResponseSchema, ListPersonalAccessTokensRequest, ListPersonalAccessTokensRequestSchema, ListPersonalAccessTokensResponse, ListPersonalAccessTokensResponseSchema, RegisterAuthConnectionSessionRequest, RegisterAuthConnectionSessionRequestSchema, RegisterAuthConnectionSessionResponse, RegisterAuthConnectionSessionResponseSchema, RevokeAuthConnectionRequest, RevokeAuthConnectionRequestSchema, RevokeAuthConnectionResponse, RevokeAuthConnectionResponseSchema, UpdateAuthConnectionRequest, UpdateAuthConnectionRequestSchema, UpdateAuthConnectionResponse, UpdateAuthConnectionResponseSchema, UpdateAuthHookRequest, UpdateAuthHookRequestSchema, UpdateAuthHookResponse, UpdateAuthHookResponseSchema, UpdateAuthIDPConfigRequest, UpdateAuthIDPConfigRequestSchema, UpdateAuthIDPConfigResponse, UpdateAuthIDPConfigResponseSchema, UpdateAuthMachineUserRequest, UpdateAuthMachineUserRequestSchema, UpdateAuthMachineUserResponse, UpdateAuthMachineUserResponseSchema, UpdateAuthOAuth2ClientRequest, UpdateAuthOAuth2ClientRequestSchema, UpdateAuthOAuth2ClientResponse, UpdateAuthOAuth2ClientResponseSchema, UpdateAuthSCIMConfigRequest, UpdateAuthSCIMConfigRequestSchema, UpdateAuthSCIMConfigResponse, UpdateAuthSCIMConfigResponseSchema, UpdateAuthSCIMResourceRequest, UpdateAuthSCIMResourceRequestSchema, UpdateAuthSCIMResourceResponse, UpdateAuthSCIMResourceResponseSchema, UpdateAuthServiceRequest, UpdateAuthServiceRequestSchema, UpdateAuthServiceResponse, UpdateAuthServiceResponseSchema, UpdateControlplaneMachineUserRequest, UpdateControlplaneMachineUserRequestSchema, UpdateControlplaneMachineUserResponse, UpdateControlplaneMachineUserResponseSchema, UpdateTenantConfigRequest, UpdateTenantConfigRequestSchema, UpdateTenantConfigResponse, UpdateTenantConfigResponseSchema, UpdateUserProfileConfigRequest, UpdateUserProfileConfigRequestSchema, UpdateUserProfileConfigResponse, UpdateUserProfileConfigResponseSchema };