@vercel/sdk 1.18.6 → 1.18.7

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 (415) hide show
  1. package/README.md +34 -28
  2. package/bin/mcp-server.js +4851 -3924
  3. package/bin/mcp-server.js.map +73 -63
  4. package/esm/__tests__/accessgroups.test.js +1 -3
  5. package/esm/__tests__/accessgroups.test.js.map +1 -1
  6. package/esm/__tests__/aliases.test.js +20 -1
  7. package/esm/__tests__/aliases.test.js.map +1 -1
  8. package/esm/__tests__/checks.test.js +1 -1
  9. package/esm/__tests__/checks.test.js.map +1 -1
  10. package/esm/__tests__/connect.test.js +104 -0
  11. package/esm/__tests__/connect.test.js.map +1 -1
  12. package/esm/__tests__/deployments.test.js +4 -4
  13. package/esm/__tests__/deployments.test.js.map +1 -1
  14. package/esm/__tests__/dns.test.js +3 -3
  15. package/esm/__tests__/dns.test.js.map +1 -1
  16. package/esm/__tests__/domains.test.js +7 -37
  17. package/esm/__tests__/domains.test.js.map +1 -1
  18. package/esm/__tests__/drains.test.js +6 -6
  19. package/esm/__tests__/drains.test.js.map +1 -1
  20. package/esm/__tests__/edgeconfig.test.js +9 -9
  21. package/esm/__tests__/edgeconfig.test.js.map +1 -1
  22. package/esm/__tests__/integrations.test.js +8 -1
  23. package/esm/__tests__/integrations.test.js.map +1 -1
  24. package/esm/__tests__/logdrains.test.js +5 -3
  25. package/esm/__tests__/logdrains.test.js.map +1 -1
  26. package/esm/__tests__/marketplace.test.js +3 -2
  27. package/esm/__tests__/marketplace.test.js.map +1 -1
  28. package/esm/__tests__/projects.test.js +11 -28
  29. package/esm/__tests__/projects.test.js.map +1 -1
  30. package/esm/__tests__/security.test.js +33 -9
  31. package/esm/__tests__/security.test.js.map +1 -1
  32. package/esm/funcs/aliasesGetAlias.d.ts +1 -1
  33. package/esm/funcs/aliasesGetAlias.d.ts.map +1 -1
  34. package/esm/funcs/aliasesGetAlias.js +1 -2
  35. package/esm/funcs/aliasesGetAlias.js.map +1 -1
  36. package/esm/funcs/connectCreateNetwork.d.ts +18 -0
  37. package/esm/funcs/connectCreateNetwork.d.ts.map +1 -0
  38. package/esm/funcs/connectCreateNetwork.js +84 -0
  39. package/esm/funcs/connectCreateNetwork.js.map +1 -0
  40. package/esm/funcs/connectDeleteNetwork.d.ts +17 -0
  41. package/esm/funcs/connectDeleteNetwork.d.ts.map +1 -0
  42. package/esm/funcs/connectDeleteNetwork.js +89 -0
  43. package/esm/funcs/connectDeleteNetwork.js.map +1 -0
  44. package/esm/funcs/connectListNetworks.d.ts +18 -0
  45. package/esm/funcs/connectListNetworks.d.ts.map +1 -0
  46. package/esm/funcs/{domainsCheckDomainStatus.js → connectListNetworks.js} +16 -11
  47. package/esm/funcs/connectListNetworks.js.map +1 -0
  48. package/esm/funcs/connectReadNetwork.d.ts +18 -0
  49. package/esm/funcs/connectReadNetwork.d.ts.map +1 -0
  50. package/esm/funcs/{domainsCheckDomainPrice.js → connectReadNetwork.js} +18 -13
  51. package/esm/funcs/connectReadNetwork.js.map +1 -0
  52. package/esm/funcs/connectUpdateNetwork.d.ts +18 -0
  53. package/esm/funcs/connectUpdateNetwork.d.ts.map +1 -0
  54. package/esm/funcs/connectUpdateNetwork.js +90 -0
  55. package/esm/funcs/connectUpdateNetwork.js.map +1 -0
  56. package/esm/funcs/connectUpdateStaticIps.js +2 -2
  57. package/esm/funcs/connectUpdateStaticIps.js.map +1 -1
  58. package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.d.ts +1 -1
  59. package/esm/funcs/edgeCacheDangerouslyDeleteBySrcImages.js +1 -1
  60. package/esm/funcs/edgeCacheDangerouslyDeleteByTags.d.ts +1 -1
  61. package/esm/funcs/edgeCacheDangerouslyDeleteByTags.js +1 -1
  62. package/esm/funcs/marketplaceExchangeSsoToken.js +2 -2
  63. package/esm/funcs/marketplaceExchangeSsoToken.js.map +1 -1
  64. package/esm/lib/config.d.ts +3 -3
  65. package/esm/lib/config.js +3 -3
  66. package/esm/lib/sdks.js +2 -2
  67. package/esm/lib/sdks.js.map +1 -1
  68. package/esm/mcp-server/mcp-server.js +1 -1
  69. package/esm/mcp-server/server.d.ts.map +1 -1
  70. package/esm/mcp-server/server.js +18 -12
  71. package/esm/mcp-server/server.js.map +1 -1
  72. package/esm/mcp-server/tools/connectCreateNetwork.d.ts +7 -0
  73. package/esm/mcp-server/tools/connectCreateNetwork.d.ts.map +1 -0
  74. package/esm/mcp-server/tools/connectCreateNetwork.js +28 -0
  75. package/esm/mcp-server/tools/connectCreateNetwork.js.map +1 -0
  76. package/esm/mcp-server/tools/connectDeleteNetwork.d.ts +7 -0
  77. package/esm/mcp-server/tools/connectDeleteNetwork.d.ts.map +1 -0
  78. package/esm/mcp-server/tools/connectDeleteNetwork.js +27 -0
  79. package/esm/mcp-server/tools/connectDeleteNetwork.js.map +1 -0
  80. package/esm/mcp-server/tools/connectListNetworks.d.ts +7 -0
  81. package/esm/mcp-server/tools/connectListNetworks.d.ts.map +1 -0
  82. package/esm/mcp-server/tools/connectListNetworks.js +28 -0
  83. package/esm/mcp-server/tools/connectListNetworks.js.map +1 -0
  84. package/esm/mcp-server/tools/connectReadNetwork.d.ts +7 -0
  85. package/esm/mcp-server/tools/connectReadNetwork.d.ts.map +1 -0
  86. package/esm/mcp-server/tools/connectReadNetwork.js +28 -0
  87. package/esm/mcp-server/tools/connectReadNetwork.js.map +1 -0
  88. package/esm/mcp-server/tools/connectUpdateNetwork.d.ts +7 -0
  89. package/esm/mcp-server/tools/connectUpdateNetwork.d.ts.map +1 -0
  90. package/esm/mcp-server/tools/connectUpdateNetwork.js +28 -0
  91. package/esm/mcp-server/tools/connectUpdateNetwork.js.map +1 -0
  92. package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.js +1 -1
  93. package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.js.map +1 -1
  94. package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteByTags.js +1 -1
  95. package/esm/mcp-server/tools/edgeCacheDangerouslyDeleteByTags.js.map +1 -1
  96. package/esm/models/addbypassipop.d.ts +1 -1
  97. package/esm/models/addbypassipop.js +1 -1
  98. package/esm/models/addbypassipop.js.map +1 -1
  99. package/esm/models/canceldeploymentop.d.ts +86 -81
  100. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  101. package/esm/models/canceldeploymentop.js +66 -64
  102. package/esm/models/canceldeploymentop.js.map +1 -1
  103. package/esm/models/createdeploymentop.d.ts +5 -0
  104. package/esm/models/createdeploymentop.d.ts.map +1 -1
  105. package/esm/models/createdeploymentop.js +2 -0
  106. package/esm/models/createdeploymentop.js.map +1 -1
  107. package/esm/models/createdrainop.d.ts +72 -72
  108. package/esm/models/createdrainop.d.ts.map +1 -1
  109. package/esm/models/createdrainop.js +72 -72
  110. package/esm/models/createdrainop.js.map +1 -1
  111. package/esm/models/createedgeconfigop.d.ts +24 -24
  112. package/esm/models/createedgeconfigop.d.ts.map +1 -1
  113. package/esm/models/createedgeconfigop.js +22 -22
  114. package/esm/models/createedgeconfigop.js.map +1 -1
  115. package/esm/models/createintegrationstoredirectop.d.ts +689 -177
  116. package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
  117. package/esm/models/createintegrationstoredirectop.js +1023 -266
  118. package/esm/models/createintegrationstoredirectop.js.map +1 -1
  119. package/esm/models/createlogdrainop.d.ts +1 -1
  120. package/esm/models/createlogdrainop.js +1 -1
  121. package/esm/models/createlogdrainop.js.map +1 -1
  122. package/esm/models/createnetworkop.d.ts +55 -0
  123. package/esm/models/createnetworkop.d.ts.map +1 -0
  124. package/esm/models/createnetworkop.js +54 -0
  125. package/esm/models/createnetworkop.js.map +1 -0
  126. package/esm/models/createortransferdomainop.d.ts +2 -2
  127. package/esm/models/createortransferdomainop.d.ts.map +1 -1
  128. package/esm/models/createortransferdomainop.js +2 -2
  129. package/esm/models/createortransferdomainop.js.map +1 -1
  130. package/esm/models/deletenetworkop.d.ts +30 -0
  131. package/esm/models/deletenetworkop.d.ts.map +1 -0
  132. package/esm/models/deletenetworkop.js +25 -0
  133. package/esm/models/deletenetworkop.js.map +1 -0
  134. package/esm/models/editprojectenvop.d.ts +161 -169
  135. package/esm/models/editprojectenvop.d.ts.map +1 -1
  136. package/esm/models/editprojectenvop.js +228 -236
  137. package/esm/models/editprojectenvop.js.map +1 -1
  138. package/esm/models/exchangessotokenop.d.ts +79 -22
  139. package/esm/models/exchangessotokenop.d.ts.map +1 -1
  140. package/esm/models/exchangessotokenop.js +117 -18
  141. package/esm/models/exchangessotokenop.js.map +1 -1
  142. package/esm/models/getaliasop.d.ts +9 -6
  143. package/esm/models/getaliasop.d.ts.map +1 -1
  144. package/esm/models/getaliasop.js +6 -6
  145. package/esm/models/getaliasop.js.map +1 -1
  146. package/esm/models/getalllogdrainsop.d.ts +180 -180
  147. package/esm/models/getalllogdrainsop.d.ts.map +1 -1
  148. package/esm/models/getalllogdrainsop.js +188 -188
  149. package/esm/models/getalllogdrainsop.js.map +1 -1
  150. package/esm/models/getbypassipop.d.ts +1 -1
  151. package/esm/models/getbypassipop.js +1 -1
  152. package/esm/models/getbypassipop.js.map +1 -1
  153. package/esm/models/getconfigurationop.d.ts +66 -66
  154. package/esm/models/getconfigurationop.d.ts.map +1 -1
  155. package/esm/models/getconfigurationop.js +46 -46
  156. package/esm/models/getconfigurationop.js.map +1 -1
  157. package/esm/models/getconfigurationproductsop.d.ts +334 -226
  158. package/esm/models/getconfigurationproductsop.d.ts.map +1 -1
  159. package/esm/models/getconfigurationproductsop.js +452 -280
  160. package/esm/models/getconfigurationproductsop.js.map +1 -1
  161. package/esm/models/getconfigurationsop.d.ts +4 -4
  162. package/esm/models/getconfigurationsop.js +4 -4
  163. package/esm/models/getconfigurationsop.js.map +1 -1
  164. package/esm/models/getdeploymentop.d.ts +10 -0
  165. package/esm/models/getdeploymentop.d.ts.map +1 -1
  166. package/esm/models/getdeploymentop.js +4 -0
  167. package/esm/models/getdeploymentop.js.map +1 -1
  168. package/esm/models/getdomainop.d.ts +5 -5
  169. package/esm/models/getdomainop.d.ts.map +1 -1
  170. package/esm/models/getdomainop.js +2 -2
  171. package/esm/models/getdomainop.js.map +1 -1
  172. package/esm/models/getdomainsop.d.ts +9 -9
  173. package/esm/models/getdomainsop.d.ts.map +1 -1
  174. package/esm/models/getdomainsop.js +4 -4
  175. package/esm/models/getdomainsop.js.map +1 -1
  176. package/esm/models/getdrainop.d.ts +72 -72
  177. package/esm/models/getdrainop.d.ts.map +1 -1
  178. package/esm/models/getdrainop.js +74 -74
  179. package/esm/models/getdrainop.js.map +1 -1
  180. package/esm/models/getdrainsop.d.ts +72 -72
  181. package/esm/models/getdrainsop.d.ts.map +1 -1
  182. package/esm/models/getdrainsop.js +72 -72
  183. package/esm/models/getdrainsop.js.map +1 -1
  184. package/esm/models/getedgeconfigbackupop.d.ts +12 -12
  185. package/esm/models/getedgeconfigbackupop.d.ts.map +1 -1
  186. package/esm/models/getedgeconfigbackupop.js +12 -12
  187. package/esm/models/getedgeconfigbackupop.js.map +1 -1
  188. package/esm/models/getedgeconfigop.d.ts +24 -24
  189. package/esm/models/getedgeconfigop.d.ts.map +1 -1
  190. package/esm/models/getedgeconfigop.js +22 -22
  191. package/esm/models/getedgeconfigop.js.map +1 -1
  192. package/esm/models/getfirewallconfigop.d.ts +2 -2
  193. package/esm/models/getfirewallconfigop.js +2 -2
  194. package/esm/models/getfirewallconfigop.js.map +1 -1
  195. package/esm/models/getintegrationlogdrainsop.d.ts +1 -1
  196. package/esm/models/getintegrationlogdrainsop.js +1 -1
  197. package/esm/models/getintegrationlogdrainsop.js.map +1 -1
  198. package/esm/models/getintegrationresourceop.d.ts +3 -3
  199. package/esm/models/getintegrationresourceop.d.ts.map +1 -1
  200. package/esm/models/getintegrationresourceop.js +3 -3
  201. package/esm/models/getintegrationresourceop.js.map +1 -1
  202. package/esm/models/getintegrationresourcesop.d.ts +3 -3
  203. package/esm/models/getintegrationresourcesop.d.ts.map +1 -1
  204. package/esm/models/getintegrationresourcesop.js +3 -3
  205. package/esm/models/getintegrationresourcesop.js.map +1 -1
  206. package/esm/models/getinvoiceop.d.ts +3 -3
  207. package/esm/models/getinvoiceop.js +3 -3
  208. package/esm/models/getinvoiceop.js.map +1 -1
  209. package/esm/models/getprojectenvop.d.ts +61 -418
  210. package/esm/models/getprojectenvop.d.ts.map +1 -1
  211. package/esm/models/getprojectenvop.js +59 -500
  212. package/esm/models/getprojectenvop.js.map +1 -1
  213. package/esm/models/getredirectsop.d.ts +2 -2
  214. package/esm/models/getredirectsop.d.ts.map +1 -1
  215. package/esm/models/getredirectsop.js +2 -2
  216. package/esm/models/getredirectsop.js.map +1 -1
  217. package/esm/models/getteamaccessrequestop.d.ts +1 -1
  218. package/esm/models/getteamaccessrequestop.js +1 -1
  219. package/esm/models/getteamaccessrequestop.js.map +1 -1
  220. package/esm/models/listnetworksop.d.ts +45 -0
  221. package/esm/models/listnetworksop.d.ts.map +1 -0
  222. package/esm/models/listnetworksop.js +31 -0
  223. package/esm/models/listnetworksop.js.map +1 -0
  224. package/esm/models/network.d.ts +161 -0
  225. package/esm/models/network.d.ts.map +1 -0
  226. package/esm/models/network.js +108 -0
  227. package/esm/models/network.js.map +1 -0
  228. package/esm/models/putfirewallconfigop.d.ts +2 -2
  229. package/esm/models/putfirewallconfigop.js +2 -2
  230. package/esm/models/putfirewallconfigop.js.map +1 -1
  231. package/esm/models/readnetworkop.d.ts +30 -0
  232. package/esm/models/readnetworkop.d.ts.map +1 -0
  233. package/esm/models/readnetworkop.js +25 -0
  234. package/esm/models/readnetworkop.js.map +1 -0
  235. package/esm/models/removeprojectenvop.d.ts +96 -102
  236. package/esm/models/removeprojectenvop.d.ts.map +1 -1
  237. package/esm/models/removeprojectenvop.js +95 -101
  238. package/esm/models/removeprojectenvop.js.map +1 -1
  239. package/esm/models/requestaccesstoteamop.d.ts +5 -5
  240. package/esm/models/requestaccesstoteamop.js +5 -5
  241. package/esm/models/requestaccesstoteamop.js.map +1 -1
  242. package/esm/models/teamlimited.d.ts +1 -1
  243. package/esm/models/teamlimited.js +1 -1
  244. package/esm/models/teamlimited.js.map +1 -1
  245. package/esm/models/updateaccessgroupop.d.ts +8 -8
  246. package/esm/models/updateaccessgroupop.d.ts.map +1 -1
  247. package/esm/models/updateaccessgroupop.js +9 -8
  248. package/esm/models/updateaccessgroupop.js.map +1 -1
  249. package/esm/models/updateattackchallengemodeop.d.ts +31 -7
  250. package/esm/models/updateattackchallengemodeop.d.ts.map +1 -1
  251. package/esm/models/updateattackchallengemodeop.js +45 -6
  252. package/esm/models/updateattackchallengemodeop.js.map +1 -1
  253. package/esm/models/updatecheckop.d.ts +10 -10
  254. package/esm/models/updatecheckop.d.ts.map +1 -1
  255. package/esm/models/updatecheckop.js +10 -11
  256. package/esm/models/updatecheckop.js.map +1 -1
  257. package/esm/models/updatedrainop.d.ts +72 -72
  258. package/esm/models/updatedrainop.d.ts.map +1 -1
  259. package/esm/models/updatedrainop.js +75 -75
  260. package/esm/models/updatedrainop.js.map +1 -1
  261. package/esm/models/updateedgeconfigop.d.ts +24 -24
  262. package/esm/models/updateedgeconfigop.d.ts.map +1 -1
  263. package/esm/models/updateedgeconfigop.js +22 -22
  264. package/esm/models/updateedgeconfigop.js.map +1 -1
  265. package/esm/models/updatenetworkop.d.ts +48 -0
  266. package/esm/models/updatenetworkop.d.ts.map +1 -0
  267. package/esm/models/updatenetworkop.js +50 -0
  268. package/esm/models/updatenetworkop.js.map +1 -0
  269. package/esm/models/updateprojectdatacacheop.d.ts +106 -106
  270. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  271. package/esm/models/updateprojectdatacacheop.js +167 -167
  272. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  273. package/esm/models/updaterecordop.d.ts +19 -19
  274. package/esm/models/updaterecordop.d.ts.map +1 -1
  275. package/esm/models/updaterecordop.js +18 -18
  276. package/esm/models/updaterecordop.js.map +1 -1
  277. package/esm/models/userevent.d.ts +822 -781
  278. package/esm/models/userevent.d.ts.map +1 -1
  279. package/esm/models/userevent.js +1094 -1049
  280. package/esm/models/userevent.js.map +1 -1
  281. package/esm/sdk/aliases.d.ts +1 -1
  282. package/esm/sdk/aliases.d.ts.map +1 -1
  283. package/esm/sdk/connect.d.ts +41 -0
  284. package/esm/sdk/connect.d.ts.map +1 -1
  285. package/esm/sdk/connect.js +50 -0
  286. package/esm/sdk/connect.js.map +1 -1
  287. package/esm/sdk/domains.d.ts +0 -16
  288. package/esm/sdk/domains.d.ts.map +1 -1
  289. package/esm/sdk/domains.js +0 -20
  290. package/esm/sdk/domains.js.map +1 -1
  291. package/esm/sdk/edgecache.d.ts +2 -2
  292. package/esm/sdk/edgecache.js +2 -2
  293. package/esm/sdk/sdk.d.ts +4 -4
  294. package/esm/sdk/sdk.d.ts.map +1 -1
  295. package/esm/sdk/sdk.js +6 -6
  296. package/esm/sdk/sdk.js.map +1 -1
  297. package/examples/package-lock.json +1 -1
  298. package/jsr.json +1 -1
  299. package/package.json +1 -1
  300. package/src/__tests__/accessgroups.test.ts +1 -3
  301. package/src/__tests__/aliases.test.ts +20 -1
  302. package/src/__tests__/checks.test.ts +1 -1
  303. package/src/__tests__/connect.test.ts +116 -0
  304. package/src/__tests__/deployments.test.ts +4 -4
  305. package/src/__tests__/dns.test.ts +3 -3
  306. package/src/__tests__/domains.test.ts +11 -41
  307. package/src/__tests__/drains.test.ts +6 -6
  308. package/src/__tests__/edgeconfig.test.ts +9 -9
  309. package/src/__tests__/integrations.test.ts +8 -1
  310. package/src/__tests__/logdrains.test.ts +5 -3
  311. package/src/__tests__/marketplace.test.ts +3 -2
  312. package/src/__tests__/projects.test.ts +11 -28
  313. package/src/__tests__/security.test.ts +33 -9
  314. package/src/funcs/aliasesGetAlias.ts +4 -5
  315. package/src/funcs/connectCreateNetwork.ts +170 -0
  316. package/src/funcs/connectDeleteNetwork.ts +176 -0
  317. package/src/funcs/{domainsCheckDomainStatus.ts → connectListNetworks.ts} +25 -22
  318. package/src/funcs/{domainsCheckDomainPrice.ts → connectReadNetwork.ts} +28 -24
  319. package/src/funcs/connectUpdateNetwork.ts +177 -0
  320. package/src/funcs/connectUpdateStaticIps.ts +2 -2
  321. package/src/funcs/edgeCacheDangerouslyDeleteBySrcImages.ts +1 -1
  322. package/src/funcs/edgeCacheDangerouslyDeleteByTags.ts +1 -1
  323. package/src/funcs/marketplaceExchangeSsoToken.ts +2 -2
  324. package/src/lib/config.ts +3 -3
  325. package/src/lib/sdks.ts +2 -2
  326. package/src/mcp-server/mcp-server.ts +1 -1
  327. package/src/mcp-server/server.ts +18 -12
  328. package/src/mcp-server/tools/connectCreateNetwork.ts +37 -0
  329. package/src/mcp-server/tools/connectDeleteNetwork.ts +35 -0
  330. package/src/mcp-server/tools/connectListNetworks.ts +37 -0
  331. package/src/mcp-server/tools/connectReadNetwork.ts +37 -0
  332. package/src/mcp-server/tools/connectUpdateNetwork.ts +37 -0
  333. package/src/mcp-server/tools/edgeCacheDangerouslyDeleteBySrcImages.ts +1 -1
  334. package/src/mcp-server/tools/edgeCacheDangerouslyDeleteByTags.ts +1 -1
  335. package/src/models/addbypassipop.ts +1 -1
  336. package/src/models/canceldeploymentop.ts +152 -145
  337. package/src/models/createdeploymentop.ts +7 -0
  338. package/src/models/createdrainop.ts +137 -137
  339. package/src/models/createedgeconfigop.ts +64 -64
  340. package/src/models/createintegrationstoredirectop.ts +3104 -763
  341. package/src/models/createlogdrainop.ts +1 -1
  342. package/src/models/createnetworkop.ts +141 -0
  343. package/src/models/createortransferdomainop.ts +4 -4
  344. package/src/models/deletenetworkop.ts +69 -0
  345. package/src/models/editprojectenvop.ts +484 -640
  346. package/src/models/exchangessotokenop.ts +281 -43
  347. package/src/models/getaliasop.ts +15 -12
  348. package/src/models/getalllogdrainsop.ts +363 -363
  349. package/src/models/getbypassipop.ts +1 -1
  350. package/src/models/getconfigurationop.ts +102 -102
  351. package/src/models/getconfigurationproductsop.ts +1486 -1128
  352. package/src/models/getconfigurationsop.ts +4 -4
  353. package/src/models/getdeploymentop.ts +14 -0
  354. package/src/models/getdomainop.ts +7 -7
  355. package/src/models/getdomainsop.ts +13 -13
  356. package/src/models/getdrainop.ts +145 -145
  357. package/src/models/getdrainsop.ts +132 -132
  358. package/src/models/getedgeconfigbackupop.ts +24 -24
  359. package/src/models/getedgeconfigop.ts +62 -62
  360. package/src/models/getfirewallconfigop.ts +2 -2
  361. package/src/models/getintegrationlogdrainsop.ts +1 -1
  362. package/src/models/getintegrationresourceop.ts +5 -5
  363. package/src/models/getintegrationresourcesop.ts +5 -5
  364. package/src/models/getinvoiceop.ts +3 -3
  365. package/src/models/getprojectenvop.ts +183 -1558
  366. package/src/models/getredirectsop.ts +4 -4
  367. package/src/models/getteamaccessrequestop.ts +1 -1
  368. package/src/models/listnetworksop.ts +90 -0
  369. package/src/models/network.ts +308 -0
  370. package/src/models/putfirewallconfigop.ts +2 -2
  371. package/src/models/readnetworkop.ts +69 -0
  372. package/src/models/removeprojectenvop.ts +186 -198
  373. package/src/models/requestaccesstoteamop.ts +5 -5
  374. package/src/models/teamlimited.ts +1 -1
  375. package/src/models/updateaccessgroupop.ts +24 -17
  376. package/src/models/updateattackchallengemodeop.ts +124 -17
  377. package/src/models/updatecheckop.ts +24 -20
  378. package/src/models/updatedrainop.ts +147 -147
  379. package/src/models/updateedgeconfigop.ts +64 -64
  380. package/src/models/updatenetworkop.ts +130 -0
  381. package/src/models/updateprojectdatacacheop.ts +482 -355
  382. package/src/models/updaterecordop.ts +33 -33
  383. package/src/models/userevent.ts +2496 -2372
  384. package/src/sdk/aliases.ts +1 -1
  385. package/src/sdk/connect.ts +96 -0
  386. package/src/sdk/domains.ts +0 -44
  387. package/src/sdk/edgecache.ts +2 -2
  388. package/src/sdk/sdk.ts +10 -10
  389. package/vercel-spec.json +3577 -2954
  390. package/esm/funcs/domainsCheckDomainPrice.d.ts +0 -17
  391. package/esm/funcs/domainsCheckDomainPrice.d.ts.map +0 -1
  392. package/esm/funcs/domainsCheckDomainPrice.js.map +0 -1
  393. package/esm/funcs/domainsCheckDomainStatus.d.ts +0 -17
  394. package/esm/funcs/domainsCheckDomainStatus.d.ts.map +0 -1
  395. package/esm/funcs/domainsCheckDomainStatus.js.map +0 -1
  396. package/esm/mcp-server/tools/domainsCheckDomainPrice.d.ts +0 -7
  397. package/esm/mcp-server/tools/domainsCheckDomainPrice.d.ts.map +0 -1
  398. package/esm/mcp-server/tools/domainsCheckDomainPrice.js +0 -28
  399. package/esm/mcp-server/tools/domainsCheckDomainPrice.js.map +0 -1
  400. package/esm/mcp-server/tools/domainsCheckDomainStatus.d.ts +0 -7
  401. package/esm/mcp-server/tools/domainsCheckDomainStatus.d.ts.map +0 -1
  402. package/esm/mcp-server/tools/domainsCheckDomainStatus.js +0 -28
  403. package/esm/mcp-server/tools/domainsCheckDomainStatus.js.map +0 -1
  404. package/esm/models/checkdomainpriceop.d.ts +0 -77
  405. package/esm/models/checkdomainpriceop.d.ts.map +0 -1
  406. package/esm/models/checkdomainpriceop.js +0 -56
  407. package/esm/models/checkdomainpriceop.js.map +0 -1
  408. package/esm/models/checkdomainstatusop.d.ts +0 -46
  409. package/esm/models/checkdomainstatusop.d.ts.map +0 -1
  410. package/esm/models/checkdomainstatusop.js +0 -39
  411. package/esm/models/checkdomainstatusop.js.map +0 -1
  412. package/src/mcp-server/tools/domainsCheckDomainPrice.ts +0 -37
  413. package/src/mcp-server/tools/domainsCheckDomainStatus.ts +0 -37
  414. package/src/models/checkdomainpriceop.ts +0 -158
  415. package/src/models/checkdomainstatusop.ts +0 -117
@@ -232,37 +232,195 @@ export declare const CreateIntegrationStoreDirectIntegrationsType: {
232
232
  readonly Object: "object";
233
233
  };
234
234
  export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
235
- export declare const CreateIntegrationStoreDirectDisabled3: {
235
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type: {
236
+ readonly String: "string";
237
+ };
238
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
239
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl: {
240
+ readonly GitNamespace: "git-namespace";
241
+ };
242
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
243
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
236
244
  readonly Update: "update";
237
245
  readonly Create: "create";
238
246
  };
239
- export type CreateIntegrationStoreDirectDisabled3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabled3>;
240
- export type CreateIntegrationStoreDirectDisabled2 = {
247
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
248
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
241
249
  expr: string;
242
250
  };
243
- export type CreateIntegrationStoreDirectPropertiesDisabled = CreateIntegrationStoreDirectDisabled2 | boolean | CreateIntegrationStoreDirectDisabled3;
244
- export declare const CreateIntegrationStoreDirectHidden3: {
251
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
252
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
245
253
  readonly Update: "update";
246
254
  readonly Create: "create";
247
255
  };
248
- export type CreateIntegrationStoreDirectHidden3 = ClosedEnum<typeof CreateIntegrationStoreDirectHidden3>;
249
- export type CreateIntegrationStoreDirectHidden2 = {
256
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
257
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
258
+ expr: string;
259
+ };
260
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
261
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3: {
262
+ readonly Update: "update";
263
+ readonly Create: "create";
264
+ };
265
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
266
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
267
+ expr: string;
268
+ };
269
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
270
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 = {
271
+ expr: string;
272
+ };
273
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | string;
274
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue = {
275
+ expr: string;
276
+ };
277
+ export declare const PropertiesGitProviders: {
278
+ readonly Github: "github";
279
+ readonly Gitlab: "gitlab";
280
+ readonly Bitbucket: "bitbucket";
281
+ };
282
+ export type PropertiesGitProviders = ClosedEnum<typeof PropertiesGitProviders>;
283
+ export type CreateIntegrationStoreDirectProperties10 = {
284
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type;
285
+ uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl;
286
+ description?: string | undefined;
287
+ uiLabel?: string | undefined;
288
+ uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
289
+ uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
290
+ uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 | undefined;
291
+ uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 | string | undefined;
292
+ uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue | undefined;
293
+ uiPlaceholder?: string | undefined;
294
+ gitProviders?: Array<PropertiesGitProviders> | undefined;
295
+ };
296
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType: {
297
+ readonly String: "string";
298
+ };
299
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
300
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl: {
301
+ readonly Domain: "domain";
302
+ };
303
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
304
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
305
+ readonly Update: "update";
306
+ readonly Create: "create";
307
+ };
308
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
309
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
310
+ expr: string;
311
+ };
312
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
313
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
314
+ readonly Update: "update";
315
+ readonly Create: "create";
316
+ };
317
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
318
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
319
+ expr: string;
320
+ };
321
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
322
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3: {
323
+ readonly Update: "update";
324
+ readonly Create: "create";
325
+ };
326
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = ClosedEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
327
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
328
+ expr: string;
329
+ };
330
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
331
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 = {
332
+ expr: string;
333
+ };
334
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | string;
335
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue = {
250
336
  expr: string;
251
337
  };
252
- export type CreateIntegrationStoreDirectPropertiesHidden = CreateIntegrationStoreDirectHidden2 | boolean | CreateIntegrationStoreDirectHidden3;
253
338
  export type CreateIntegrationStoreDirectProperties9 = {
254
- value: string;
255
- disabled?: CreateIntegrationStoreDirectDisabled2 | boolean | CreateIntegrationStoreDirectDisabled3 | undefined;
256
- hidden?: CreateIntegrationStoreDirectHidden2 | boolean | CreateIntegrationStoreDirectHidden3 | undefined;
339
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType;
340
+ uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl;
341
+ enum?: Array<string> | undefined;
342
+ maxLength?: number | undefined;
343
+ minLength?: number | undefined;
344
+ pattern?: string | undefined;
345
+ description?: string | undefined;
346
+ default?: string | undefined;
347
+ uiLabel?: string | undefined;
348
+ uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
349
+ uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
350
+ uiDisabled?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | boolean | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 | undefined;
351
+ uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 | string | undefined;
352
+ uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue | undefined;
353
+ uiPlaceholder?: string | undefined;
257
354
  };
258
355
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType: {
259
- readonly String: "string";
356
+ readonly Array: "array";
260
357
  };
261
358
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType>;
359
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type: {
360
+ readonly String: "string";
361
+ };
362
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type>;
363
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems = {
364
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type;
365
+ description?: string | undefined;
366
+ minLength?: number | undefined;
367
+ maxLength?: number | undefined;
368
+ pattern?: string | undefined;
369
+ default?: string | undefined;
370
+ enum?: Array<string> | undefined;
371
+ };
262
372
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl: {
263
- readonly Domain: "domain";
373
+ readonly MultiVercelRegion: "multi-vercel-region";
264
374
  };
265
375
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
376
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3: {
377
+ readonly Update: "update";
378
+ readonly Create: "create";
379
+ };
380
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
381
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2 = {
382
+ expr: string;
383
+ };
384
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3;
385
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3: {
386
+ readonly Update: "update";
387
+ readonly Create: "create";
388
+ };
389
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
390
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2 = {
391
+ expr: string;
392
+ };
393
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3;
394
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations3 = {
395
+ value: string;
396
+ disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
397
+ hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
398
+ };
399
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
400
+ readonly Update: "update";
401
+ readonly Create: "create";
402
+ };
403
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
404
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 = {
405
+ expr: string;
406
+ };
407
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3;
408
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3: {
409
+ readonly Update: "update";
410
+ readonly Create: "create";
411
+ };
412
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
413
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 = {
414
+ expr: string;
415
+ };
416
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3;
417
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations1 = {
418
+ value: string;
419
+ label: string;
420
+ disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 | undefined;
421
+ hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
422
+ };
423
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions = CreateIntegrationStoreDirectUiOptionsIntegrations1 | CreateIntegrationStoreDirectUiOptionsIntegrations3 | string;
266
424
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
267
425
  readonly Update: "update";
268
426
  readonly Create: "create";
@@ -299,13 +457,12 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
299
457
  };
300
458
  export type CreateIntegrationStoreDirectProperties8 = {
301
459
  type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType;
460
+ items: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems;
302
461
  uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl;
303
- enum?: Array<string> | undefined;
304
- maxLength?: number | undefined;
305
- minLength?: number | undefined;
306
- pattern?: string | undefined;
462
+ uiOptions: Array<CreateIntegrationStoreDirectUiOptionsIntegrations1 | CreateIntegrationStoreDirectUiOptionsIntegrations3 | string>;
463
+ maxItems?: number | undefined;
464
+ minItems?: number | undefined;
307
465
  description?: string | undefined;
308
- default?: string | undefined;
309
466
  uiLabel?: string | undefined;
310
467
  uiReadOnly?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | boolean | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
311
468
  uiHidden?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | boolean | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 | undefined;
@@ -313,6 +470,8 @@ export type CreateIntegrationStoreDirectProperties8 = {
313
470
  uiDescription?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 | string | undefined;
314
471
  uiFormattedValue?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue | undefined;
315
472
  uiPlaceholder?: string | undefined;
473
+ default?: Array<string> | undefined;
474
+ example?: Array<string> | undefined;
316
475
  };
317
476
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType: {
318
477
  readonly String: "string";
@@ -345,29 +504,29 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
345
504
  disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 | undefined;
346
505
  hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 | undefined;
347
506
  };
348
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
507
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3: {
349
508
  readonly Update: "update";
350
509
  readonly Create: "create";
351
510
  };
352
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
353
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 = {
511
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
512
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2 = {
354
513
  expr: string;
355
514
  };
356
- export type CreateIntegrationStoreDirectUiOptionsDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3;
357
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3: {
515
+ export type CreateIntegrationStoreDirectUiOptionsDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3;
516
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3: {
358
517
  readonly Update: "update";
359
518
  readonly Create: "create";
360
519
  };
361
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
362
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 = {
520
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
521
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2 = {
363
522
  expr: string;
364
523
  };
365
- export type CreateIntegrationStoreDirectUiOptionsHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3;
524
+ export type CreateIntegrationStoreDirectUiOptionsHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3;
366
525
  export type CreateIntegrationStoreDirectUiOptions1 = {
367
526
  value: string;
368
527
  label: string;
369
- disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 | undefined;
370
- hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
528
+ disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3 | undefined;
529
+ hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3 | undefined;
371
530
  };
372
531
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions = CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions3 | string;
373
532
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
@@ -527,29 +686,29 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
527
686
  readonly Select: "select";
528
687
  };
529
688
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
530
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3: {
689
+ export declare const CreateIntegrationStoreDirectDisabled3: {
531
690
  readonly Update: "update";
532
691
  readonly Create: "create";
533
692
  };
534
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
535
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2 = {
693
+ export type CreateIntegrationStoreDirectDisabled3 = ClosedEnum<typeof CreateIntegrationStoreDirectDisabled3>;
694
+ export type CreateIntegrationStoreDirectDisabled2 = {
536
695
  expr: string;
537
696
  };
538
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled = CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3;
539
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3: {
697
+ export type CreateIntegrationStoreDirectPropertiesDisabled = CreateIntegrationStoreDirectDisabled2 | boolean | CreateIntegrationStoreDirectDisabled3;
698
+ export declare const CreateIntegrationStoreDirectHidden3: {
540
699
  readonly Update: "update";
541
700
  readonly Create: "create";
542
701
  };
543
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse3 = ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
544
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2 = {
702
+ export type CreateIntegrationStoreDirectHidden3 = ClosedEnum<typeof CreateIntegrationStoreDirectHidden3>;
703
+ export type CreateIntegrationStoreDirectHidden2 = {
545
704
  expr: string;
546
705
  };
547
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden = CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3;
706
+ export type CreateIntegrationStoreDirectPropertiesHidden = CreateIntegrationStoreDirectHidden2 | boolean | CreateIntegrationStoreDirectHidden3;
548
707
  export type CreateIntegrationStoreDirectPropertiesUiOptions = {
549
708
  value: string;
550
709
  label: string;
551
- disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3 | undefined;
552
- hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3 | undefined;
710
+ disabled?: CreateIntegrationStoreDirectDisabled2 | boolean | CreateIntegrationStoreDirectDisabled3 | undefined;
711
+ hidden?: CreateIntegrationStoreDirectHidden2 | boolean | CreateIntegrationStoreDirectHidden3 | undefined;
553
712
  };
554
713
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3: {
555
714
  readonly Update: "update";
@@ -607,12 +766,12 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
607
766
  readonly Array: "array";
608
767
  };
609
768
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type>;
610
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType: {
769
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type: {
611
770
  readonly Number: "number";
612
771
  };
613
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
772
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type>;
614
773
  export type CreateIntegrationStoreDirectPropertiesItems = {
615
- type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType;
774
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type;
616
775
  description?: string | undefined;
617
776
  minimum?: number | undefined;
618
777
  exclusiveMinimum?: number | undefined;
@@ -846,11 +1005,11 @@ export type CreateIntegrationStoreDirectProperties1 = {
846
1005
  uiFormattedValue?: CreateIntegrationStoreDirectPropertiesUiFormattedValue | undefined;
847
1006
  uiPlaceholder?: string | undefined;
848
1007
  };
849
- export type CreateIntegrationStoreDirectProperties = CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 | CreateIntegrationStoreDirectProperties8 | CreateIntegrationStoreDirectProperties9;
1008
+ export type CreateIntegrationStoreDirectProperties = CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties8 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 | CreateIntegrationStoreDirectProperties9 | CreateIntegrationStoreDirectProperties10;
850
1009
  export type CreateIntegrationStoreDirectMetadataSchema = {
851
1010
  type: CreateIntegrationStoreDirectIntegrationsType;
852
1011
  properties: {
853
- [k: string]: CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 | CreateIntegrationStoreDirectProperties8 | CreateIntegrationStoreDirectProperties9;
1012
+ [k: string]: CreateIntegrationStoreDirectProperties4 | CreateIntegrationStoreDirectProperties6 | CreateIntegrationStoreDirectProperties8 | CreateIntegrationStoreDirectProperties5 | CreateIntegrationStoreDirectProperties7 | CreateIntegrationStoreDirectProperties1 | CreateIntegrationStoreDirectProperties2 | CreateIntegrationStoreDirectProperties3 | CreateIntegrationStoreDirectProperties9 | CreateIntegrationStoreDirectProperties10;
854
1013
  };
855
1014
  required?: Array<string> | undefined;
856
1015
  };
@@ -876,7 +1035,10 @@ export declare const CreateIntegrationStoreDirectTags: {
876
1035
  readonly Messaging: "messaging";
877
1036
  readonly Other: "other";
878
1037
  readonly Mysql: "mysql";
1038
+ readonly Kv: "kv";
879
1039
  readonly Vector: "vector";
1040
+ readonly Libsql: "libsql";
1041
+ readonly Sqlite: "sqlite";
880
1042
  readonly TagAgents: "tag_agents";
881
1043
  readonly TagAi: "tag_ai";
882
1044
  readonly TagAnalytics: "tag_analytics";
@@ -951,24 +1113,49 @@ export type Guides = {
951
1113
  title: string;
952
1114
  steps: Array<Steps>;
953
1115
  };
954
- export declare const Disabled3: {
955
- readonly Update: "update";
956
- readonly Create: "create";
1116
+ export type CreateIntegrationStoreDirectIntegration = {
1117
+ id: string;
1118
+ name: string;
1119
+ slug: string;
1120
+ supportsInstallationBillingPlans?: boolean | undefined;
1121
+ icon: string;
1122
+ flags?: Array<string> | undefined;
957
1123
  };
958
- export type Disabled3 = ClosedEnum<typeof Disabled3>;
959
- export type Disabled2 = {
960
- expr: string;
1124
+ export declare const SupportedProtocols: {
1125
+ readonly Experimentation: "experimentation";
1126
+ readonly Checks: "checks";
1127
+ readonly Storage: "storage";
1128
+ readonly Ai: "ai";
1129
+ readonly Observability: "observability";
1130
+ readonly Video: "video";
1131
+ readonly Authentication: "authentication";
1132
+ readonly Workflow: "workflow";
1133
+ readonly LogDrain: "logDrain";
1134
+ readonly TraceDrain: "traceDrain";
1135
+ readonly Messaging: "messaging";
1136
+ readonly Other: "other";
961
1137
  };
962
- export type Disabled = Disabled2 | boolean | Disabled3;
963
- export declare const Hidden3: {
964
- readonly Update: "update";
965
- readonly Create: "create";
1138
+ export type SupportedProtocols = ClosedEnum<typeof SupportedProtocols>;
1139
+ export declare const CreateIntegrationStoreDirectPrimaryProtocol: {
1140
+ readonly Experimentation: "experimentation";
1141
+ readonly Checks: "checks";
1142
+ readonly Storage: "storage";
1143
+ readonly Ai: "ai";
1144
+ readonly Observability: "observability";
1145
+ readonly Video: "video";
1146
+ readonly Authentication: "authentication";
1147
+ readonly Workflow: "workflow";
1148
+ readonly LogDrain: "logDrain";
1149
+ readonly TraceDrain: "traceDrain";
1150
+ readonly Messaging: "messaging";
1151
+ readonly Other: "other";
966
1152
  };
967
- export type Hidden3 = ClosedEnum<typeof Hidden3>;
968
- export type Hidden2 = {
969
- expr: string;
1153
+ export type CreateIntegrationStoreDirectPrimaryProtocol = ClosedEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol>;
1154
+ export declare const LogDrainStatus: {
1155
+ readonly Disabled: "disabled";
1156
+ readonly Enabled: "enabled";
970
1157
  };
971
- export type Hidden = Hidden2 | boolean | Hidden3;
1158
+ export type LogDrainStatus = ClosedEnum<typeof LogDrainStatus>;
972
1159
  export type Product = {
973
1160
  id?: string | undefined;
974
1161
  name?: string | undefined;
@@ -984,9 +1171,11 @@ export type Product = {
984
1171
  disableResourceRenaming?: boolean | undefined;
985
1172
  repl?: Repl | undefined;
986
1173
  guides?: Array<Guides> | undefined;
987
- value: string;
988
- disabled?: Disabled2 | boolean | Disabled3 | undefined;
989
- hidden?: Hidden2 | boolean | Hidden3 | undefined;
1174
+ integration: CreateIntegrationStoreDirectIntegration;
1175
+ integrationConfigurationId: string;
1176
+ supportedProtocols: Array<SupportedProtocols>;
1177
+ primaryProtocol?: CreateIntegrationStoreDirectPrimaryProtocol | undefined;
1178
+ logDrainStatus?: LogDrainStatus | undefined;
990
1179
  };
991
1180
  export type CreateIntegrationStoreDirectExperimentation = {
992
1181
  edgeConfigSyncingEnabled?: boolean | undefined;
@@ -1322,56 +1511,252 @@ export declare const CreateIntegrationStoreDirectIntegrationsType$inboundSchema:
1322
1511
  /** @internal */
1323
1512
  export declare const CreateIntegrationStoreDirectIntegrationsType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
1324
1513
  /** @internal */
1325
- export declare const CreateIntegrationStoreDirectDisabled3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3>;
1514
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
1326
1515
  /** @internal */
1327
- export declare const CreateIntegrationStoreDirectDisabled3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3>;
1516
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type>;
1328
1517
  /** @internal */
1329
- export declare const CreateIntegrationStoreDirectDisabled2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabled2, z.ZodTypeDef, unknown>;
1518
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
1330
1519
  /** @internal */
1331
- export type CreateIntegrationStoreDirectDisabled2$Outbound = {
1520
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl>;
1521
+ /** @internal */
1522
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
1523
+ /** @internal */
1524
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
1525
+ /** @internal */
1526
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1527
+ /** @internal */
1528
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
1332
1529
  expr: string;
1333
1530
  };
1334
1531
  /** @internal */
1335
- export declare const CreateIntegrationStoreDirectDisabled2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabled2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabled2>;
1336
- export declare function createIntegrationStoreDirectDisabled2ToJSON(createIntegrationStoreDirectDisabled2: CreateIntegrationStoreDirectDisabled2): string;
1337
- export declare function createIntegrationStoreDirectDisabled2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabled2, SDKValidationError>;
1532
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
1533
+ export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
1534
+ export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
1338
1535
  /** @internal */
1339
- export declare const CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesDisabled, z.ZodTypeDef, unknown>;
1536
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly, z.ZodTypeDef, unknown>;
1340
1537
  /** @internal */
1341
- export type CreateIntegrationStoreDirectPropertiesDisabled$Outbound = CreateIntegrationStoreDirectDisabled2$Outbound | boolean | string;
1538
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$Outbound = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string;
1342
1539
  /** @internal */
1343
- export declare const CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesDisabled>;
1344
- export declare function createIntegrationStoreDirectPropertiesDisabledToJSON(createIntegrationStoreDirectPropertiesDisabled: CreateIntegrationStoreDirectPropertiesDisabled): string;
1345
- export declare function createIntegrationStoreDirectPropertiesDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesDisabled, SDKValidationError>;
1540
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly>;
1541
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly): string;
1542
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly, SDKValidationError>;
1346
1543
  /** @internal */
1347
- export declare const CreateIntegrationStoreDirectHidden3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3>;
1544
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
1348
1545
  /** @internal */
1349
- export declare const CreateIntegrationStoreDirectHidden3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3>;
1546
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
1350
1547
  /** @internal */
1351
- export declare const CreateIntegrationStoreDirectHidden2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHidden2, z.ZodTypeDef, unknown>;
1548
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1352
1549
  /** @internal */
1353
- export type CreateIntegrationStoreDirectHidden2$Outbound = {
1550
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
1354
1551
  expr: string;
1355
1552
  };
1356
1553
  /** @internal */
1357
- export declare const CreateIntegrationStoreDirectHidden2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHidden2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHidden2>;
1358
- export declare function createIntegrationStoreDirectHidden2ToJSON(createIntegrationStoreDirectHidden2: CreateIntegrationStoreDirectHidden2): string;
1359
- export declare function createIntegrationStoreDirectHidden2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHidden2, SDKValidationError>;
1554
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
1555
+ export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
1556
+ export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
1360
1557
  /** @internal */
1361
- export declare const CreateIntegrationStoreDirectPropertiesHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesHidden, z.ZodTypeDef, unknown>;
1558
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden, z.ZodTypeDef, unknown>;
1362
1559
  /** @internal */
1363
- export type CreateIntegrationStoreDirectPropertiesHidden$Outbound = CreateIntegrationStoreDirectHidden2$Outbound | boolean | string;
1560
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$Outbound = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string;
1364
1561
  /** @internal */
1365
- export declare const CreateIntegrationStoreDirectPropertiesHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesHidden>;
1366
- export declare function createIntegrationStoreDirectPropertiesHiddenToJSON(createIntegrationStoreDirectPropertiesHidden: CreateIntegrationStoreDirectPropertiesHidden): string;
1367
- export declare function createIntegrationStoreDirectPropertiesHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesHidden, SDKValidationError>;
1562
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden>;
1563
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden): string;
1564
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden, SDKValidationError>;
1565
+ /** @internal */
1566
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
1567
+ /** @internal */
1568
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3>;
1569
+ /** @internal */
1570
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1571
+ /** @internal */
1572
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
1573
+ expr: string;
1574
+ };
1575
+ /** @internal */
1576
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
1577
+ export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
1578
+ export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
1579
+ /** @internal */
1580
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled, z.ZodTypeDef, unknown>;
1581
+ /** @internal */
1582
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$Outbound = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string;
1583
+ /** @internal */
1584
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled>;
1585
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled): string;
1586
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled, SDKValidationError>;
1587
+ /** @internal */
1588
+ export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1589
+ /** @internal */
1590
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound = {
1591
+ expr: string;
1592
+ };
1593
+ /** @internal */
1594
+ export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2>;
1595
+ export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2): string;
1596
+ export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2, SDKValidationError>;
1597
+ /** @internal */
1598
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription, z.ZodTypeDef, unknown>;
1599
+ /** @internal */
1600
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$Outbound = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | string;
1601
+ /** @internal */
1602
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription>;
1603
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription): string;
1604
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription, SDKValidationError>;
1605
+ /** @internal */
1606
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue, z.ZodTypeDef, unknown>;
1607
+ /** @internal */
1608
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound = {
1609
+ expr: string;
1610
+ };
1611
+ /** @internal */
1612
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue>;
1613
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue): string;
1614
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue, SDKValidationError>;
1615
+ /** @internal */
1616
+ export declare const PropertiesGitProviders$inboundSchema: z.ZodNativeEnum<typeof PropertiesGitProviders>;
1617
+ /** @internal */
1618
+ export declare const PropertiesGitProviders$outboundSchema: z.ZodNativeEnum<typeof PropertiesGitProviders>;
1619
+ /** @internal */
1620
+ export declare const CreateIntegrationStoreDirectProperties10$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties10, z.ZodTypeDef, unknown>;
1621
+ /** @internal */
1622
+ export type CreateIntegrationStoreDirectProperties10$Outbound = {
1623
+ type: string;
1624
+ "ui:control": string;
1625
+ description?: string | undefined;
1626
+ "ui:label"?: string | undefined;
1627
+ "ui:read-only"?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string | undefined;
1628
+ "ui:hidden"?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string | undefined;
1629
+ "ui:disabled"?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | boolean | string | undefined;
1630
+ "ui:description"?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound | string | undefined;
1631
+ "ui:formatted-value"?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound | undefined;
1632
+ "ui:placeholder"?: string | undefined;
1633
+ "git:providers"?: Array<string> | undefined;
1634
+ };
1635
+ /** @internal */
1636
+ export declare const CreateIntegrationStoreDirectProperties10$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties10$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties10>;
1637
+ export declare function createIntegrationStoreDirectProperties10ToJSON(createIntegrationStoreDirectProperties10: CreateIntegrationStoreDirectProperties10): string;
1638
+ export declare function createIntegrationStoreDirectProperties10FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectProperties10, SDKValidationError>;
1639
+ /** @internal */
1640
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
1641
+ /** @internal */
1642
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
1643
+ /** @internal */
1644
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
1645
+ /** @internal */
1646
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl>;
1647
+ /** @internal */
1648
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
1649
+ /** @internal */
1650
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
1651
+ /** @internal */
1652
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
1653
+ /** @internal */
1654
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
1655
+ expr: string;
1656
+ };
1657
+ /** @internal */
1658
+ export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
1659
+ export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
1660
+ export declare function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
1661
+ /** @internal */
1662
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly, z.ZodTypeDef, unknown>;
1663
+ /** @internal */
1664
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$Outbound = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string;
1665
+ /** @internal */
1666
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly>;
1667
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly): string;
1668
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly, SDKValidationError>;
1669
+ /** @internal */
1670
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
1671
+ /** @internal */
1672
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
1673
+ /** @internal */
1674
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
1675
+ /** @internal */
1676
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
1677
+ expr: string;
1678
+ };
1679
+ /** @internal */
1680
+ export declare const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
1681
+ export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
1682
+ export declare function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
1683
+ /** @internal */
1684
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden, z.ZodTypeDef, unknown>;
1685
+ /** @internal */
1686
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$Outbound = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string;
1687
+ /** @internal */
1688
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden>;
1689
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden): string;
1690
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden, SDKValidationError>;
1691
+ /** @internal */
1692
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
1693
+ /** @internal */
1694
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3>;
1695
+ /** @internal */
1696
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
1697
+ /** @internal */
1698
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
1699
+ expr: string;
1700
+ };
1701
+ /** @internal */
1702
+ export declare const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
1703
+ export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
1704
+ export declare function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
1705
+ /** @internal */
1706
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled, z.ZodTypeDef, unknown>;
1707
+ /** @internal */
1708
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$Outbound = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string;
1709
+ /** @internal */
1710
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled>;
1711
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled): string;
1712
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled, SDKValidationError>;
1713
+ /** @internal */
1714
+ export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, z.ZodTypeDef, unknown>;
1715
+ /** @internal */
1716
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound = {
1717
+ expr: string;
1718
+ };
1719
+ /** @internal */
1720
+ export declare const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2>;
1721
+ export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2): string;
1722
+ export declare function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2, SDKValidationError>;
1723
+ /** @internal */
1724
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription, z.ZodTypeDef, unknown>;
1725
+ /** @internal */
1726
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$Outbound = CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | string;
1727
+ /** @internal */
1728
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription>;
1729
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription): string;
1730
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription, SDKValidationError>;
1731
+ /** @internal */
1732
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue, z.ZodTypeDef, unknown>;
1733
+ /** @internal */
1734
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound = {
1735
+ expr: string;
1736
+ };
1737
+ /** @internal */
1738
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue>;
1739
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue): string;
1740
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue, SDKValidationError>;
1368
1741
  /** @internal */
1369
1742
  export declare const CreateIntegrationStoreDirectProperties9$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties9, z.ZodTypeDef, unknown>;
1370
1743
  /** @internal */
1371
1744
  export type CreateIntegrationStoreDirectProperties9$Outbound = {
1372
- value: string;
1373
- disabled?: CreateIntegrationStoreDirectDisabled2$Outbound | boolean | string | undefined;
1374
- hidden?: CreateIntegrationStoreDirectHidden2$Outbound | boolean | string | undefined;
1745
+ type: string;
1746
+ "ui:control": string;
1747
+ enum?: Array<string> | undefined;
1748
+ maxLength?: number | undefined;
1749
+ minLength?: number | undefined;
1750
+ pattern?: string | undefined;
1751
+ description?: string | undefined;
1752
+ default?: string | undefined;
1753
+ "ui:label"?: string | undefined;
1754
+ "ui:read-only"?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string | undefined;
1755
+ "ui:hidden"?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string | undefined;
1756
+ "ui:disabled"?: CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | boolean | string | undefined;
1757
+ "ui:description"?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound | string | undefined;
1758
+ "ui:formatted-value"?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound | undefined;
1759
+ "ui:placeholder"?: string | undefined;
1375
1760
  };
1376
1761
  /** @internal */
1377
1762
  export declare const CreateIntegrationStoreDirectProperties9$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties9$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties9>;
@@ -1382,10 +1767,151 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
1382
1767
  /** @internal */
1383
1768
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType>;
1384
1769
  /** @internal */
1770
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type>;
1771
+ /** @internal */
1772
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type>;
1773
+ /** @internal */
1774
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems, z.ZodTypeDef, unknown>;
1775
+ /** @internal */
1776
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound = {
1777
+ type: string;
1778
+ description?: string | undefined;
1779
+ minLength?: number | undefined;
1780
+ maxLength?: number | undefined;
1781
+ pattern?: string | undefined;
1782
+ default?: string | undefined;
1783
+ enum?: Array<string> | undefined;
1784
+ };
1785
+ /** @internal */
1786
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems>;
1787
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseItems: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems): string;
1788
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems, SDKValidationError>;
1789
+ /** @internal */
1385
1790
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
1386
1791
  /** @internal */
1387
1792
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
1388
1793
  /** @internal */
1794
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
1795
+ /** @internal */
1796
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
1797
+ /** @internal */
1798
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2, z.ZodTypeDef, unknown>;
1799
+ /** @internal */
1800
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound = {
1801
+ expr: string;
1802
+ };
1803
+ /** @internal */
1804
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2>;
1805
+ export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2): string;
1806
+ export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2, SDKValidationError>;
1807
+ /** @internal */
1808
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled, z.ZodTypeDef, unknown>;
1809
+ /** @internal */
1810
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string;
1811
+ /** @internal */
1812
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled>;
1813
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled: CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled): string;
1814
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled, SDKValidationError>;
1815
+ /** @internal */
1816
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
1817
+ /** @internal */
1818
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
1819
+ /** @internal */
1820
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2, z.ZodTypeDef, unknown>;
1821
+ /** @internal */
1822
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound = {
1823
+ expr: string;
1824
+ };
1825
+ /** @internal */
1826
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2>;
1827
+ export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2): string;
1828
+ export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2, SDKValidationError>;
1829
+ /** @internal */
1830
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden, z.ZodTypeDef, unknown>;
1831
+ /** @internal */
1832
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string;
1833
+ /** @internal */
1834
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden>;
1835
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden: CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden): string;
1836
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden, SDKValidationError>;
1837
+ /** @internal */
1838
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations3, z.ZodTypeDef, unknown>;
1839
+ /** @internal */
1840
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound = {
1841
+ value: string;
1842
+ disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
1843
+ hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
1844
+ };
1845
+ /** @internal */
1846
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrations3>;
1847
+ export declare function createIntegrationStoreDirectUiOptionsIntegrations3ToJSON(createIntegrationStoreDirectUiOptionsIntegrations3: CreateIntegrationStoreDirectUiOptionsIntegrations3): string;
1848
+ export declare function createIntegrationStoreDirectUiOptionsIntegrations3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrations3, SDKValidationError>;
1849
+ /** @internal */
1850
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
1851
+ /** @internal */
1852
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
1853
+ /** @internal */
1854
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
1855
+ /** @internal */
1856
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound = {
1857
+ expr: string;
1858
+ };
1859
+ /** @internal */
1860
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2>;
1861
+ export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2): string;
1862
+ export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2, SDKValidationError>;
1863
+ /** @internal */
1864
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled, z.ZodTypeDef, unknown>;
1865
+ /** @internal */
1866
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound | boolean | string;
1867
+ /** @internal */
1868
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled>;
1869
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled: CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled): string;
1870
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled, SDKValidationError>;
1871
+ /** @internal */
1872
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
1873
+ /** @internal */
1874
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
1875
+ /** @internal */
1876
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
1877
+ /** @internal */
1878
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound = {
1879
+ expr: string;
1880
+ };
1881
+ /** @internal */
1882
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2>;
1883
+ export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2): string;
1884
+ export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2, SDKValidationError>;
1885
+ /** @internal */
1886
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden, z.ZodTypeDef, unknown>;
1887
+ /** @internal */
1888
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound | boolean | string;
1889
+ /** @internal */
1890
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden>;
1891
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponseHidden: CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden): string;
1892
+ export declare function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden, SDKValidationError>;
1893
+ /** @internal */
1894
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations1, z.ZodTypeDef, unknown>;
1895
+ /** @internal */
1896
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound = {
1897
+ value: string;
1898
+ label: string;
1899
+ disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
1900
+ hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
1901
+ };
1902
+ /** @internal */
1903
+ export declare const CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsIntegrations1>;
1904
+ export declare function createIntegrationStoreDirectUiOptionsIntegrations1ToJSON(createIntegrationStoreDirectUiOptionsIntegrations1: CreateIntegrationStoreDirectUiOptionsIntegrations1): string;
1905
+ export declare function createIntegrationStoreDirectUiOptionsIntegrations1FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsIntegrations1, SDKValidationError>;
1906
+ /** @internal */
1907
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions, z.ZodTypeDef, unknown>;
1908
+ /** @internal */
1909
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$Outbound = CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound | CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound | string;
1910
+ /** @internal */
1911
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions>;
1912
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions): string;
1913
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions, SDKValidationError>;
1914
+ /** @internal */
1389
1915
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
1390
1916
  /** @internal */
1391
1917
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3>;
@@ -1484,13 +2010,12 @@ export declare const CreateIntegrationStoreDirectProperties8$inboundSchema: z.Zo
1484
2010
  /** @internal */
1485
2011
  export type CreateIntegrationStoreDirectProperties8$Outbound = {
1486
2012
  type: string;
2013
+ items: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound;
1487
2014
  "ui:control": string;
1488
- enum?: Array<string> | undefined;
1489
- maxLength?: number | undefined;
1490
- minLength?: number | undefined;
1491
- pattern?: string | undefined;
2015
+ "ui:options": Array<CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound | CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound | string>;
2016
+ maxItems?: number | undefined;
2017
+ minItems?: number | undefined;
1492
2018
  description?: string | undefined;
1493
- default?: string | undefined;
1494
2019
  "ui:label"?: string | undefined;
1495
2020
  "ui:read-only"?: CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$Outbound | boolean | string | undefined;
1496
2021
  "ui:hidden"?: CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$Outbound | boolean | string | undefined;
@@ -1498,6 +2023,8 @@ export type CreateIntegrationStoreDirectProperties8$Outbound = {
1498
2023
  "ui:description"?: CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$Outbound | string | undefined;
1499
2024
  "ui:formatted-value"?: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$Outbound | undefined;
1500
2025
  "ui:placeholder"?: string | undefined;
2026
+ default?: Array<string> | undefined;
2027
+ example?: Array<string> | undefined;
1501
2028
  };
1502
2029
  /** @internal */
1503
2030
  export declare const CreateIntegrationStoreDirectProperties8$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties8$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties8>;
@@ -1568,45 +2095,45 @@ export declare const CreateIntegrationStoreDirectUiOptions3$outboundSchema: z.Zo
1568
2095
  export declare function createIntegrationStoreDirectUiOptions3ToJSON(createIntegrationStoreDirectUiOptions3: CreateIntegrationStoreDirectUiOptions3): string;
1569
2096
  export declare function createIntegrationStoreDirectUiOptions3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions3, SDKValidationError>;
1570
2097
  /** @internal */
1571
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
2098
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
1572
2099
  /** @internal */
1573
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3>;
2100
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
1574
2101
  /** @internal */
1575
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
2102
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse2, z.ZodTypeDef, unknown>;
1576
2103
  /** @internal */
1577
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound = {
2104
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound = {
1578
2105
  expr: string;
1579
2106
  };
1580
2107
  /** @internal */
1581
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2>;
1582
- export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2): string;
1583
- export declare function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2, SDKValidationError>;
2108
+ export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse2>;
2109
+ export declare function createIntegrationStoreDirectDisabledIntegrationsResponse2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse2: CreateIntegrationStoreDirectDisabledIntegrationsResponse2): string;
2110
+ export declare function createIntegrationStoreDirectDisabledIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse2, SDKValidationError>;
1584
2111
  /** @internal */
1585
2112
  export declare const CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsDisabled, z.ZodTypeDef, unknown>;
1586
2113
  /** @internal */
1587
- export type CreateIntegrationStoreDirectUiOptionsDisabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound | boolean | string;
2114
+ export type CreateIntegrationStoreDirectUiOptionsDisabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound | boolean | string;
1588
2115
  /** @internal */
1589
2116
  export declare const CreateIntegrationStoreDirectUiOptionsDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsDisabled>;
1590
2117
  export declare function createIntegrationStoreDirectUiOptionsDisabledToJSON(createIntegrationStoreDirectUiOptionsDisabled: CreateIntegrationStoreDirectUiOptionsDisabled): string;
1591
2118
  export declare function createIntegrationStoreDirectUiOptionsDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsDisabled, SDKValidationError>;
1592
2119
  /** @internal */
1593
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
2120
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
1594
2121
  /** @internal */
1595
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3>;
2122
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
1596
2123
  /** @internal */
1597
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2, z.ZodTypeDef, unknown>;
2124
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse2, z.ZodTypeDef, unknown>;
1598
2125
  /** @internal */
1599
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound = {
2126
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound = {
1600
2127
  expr: string;
1601
2128
  };
1602
2129
  /** @internal */
1603
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2>;
1604
- export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2): string;
1605
- export declare function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2, SDKValidationError>;
2130
+ export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse2>;
2131
+ export declare function createIntegrationStoreDirectHiddenIntegrationsResponse2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse2: CreateIntegrationStoreDirectHiddenIntegrationsResponse2): string;
2132
+ export declare function createIntegrationStoreDirectHiddenIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse2, SDKValidationError>;
1606
2133
  /** @internal */
1607
2134
  export declare const CreateIntegrationStoreDirectUiOptionsHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsHidden, z.ZodTypeDef, unknown>;
1608
2135
  /** @internal */
1609
- export type CreateIntegrationStoreDirectUiOptionsHidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound | boolean | string;
2136
+ export type CreateIntegrationStoreDirectUiOptionsHidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound | boolean | string;
1610
2137
  /** @internal */
1611
2138
  export declare const CreateIntegrationStoreDirectUiOptionsHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsHidden>;
1612
2139
  export declare function createIntegrationStoreDirectUiOptionsHiddenToJSON(createIntegrationStoreDirectUiOptionsHidden: CreateIntegrationStoreDirectUiOptionsHidden): string;
@@ -1617,8 +2144,8 @@ export declare const CreateIntegrationStoreDirectUiOptions1$inboundSchema: z.Zod
1617
2144
  export type CreateIntegrationStoreDirectUiOptions1$Outbound = {
1618
2145
  value: string;
1619
2146
  label: string;
1620
- disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
1621
- hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
2147
+ disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound | boolean | string | undefined;
2148
+ hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound | boolean | string | undefined;
1622
2149
  };
1623
2150
  /** @internal */
1624
2151
  export declare const CreateIntegrationStoreDirectUiOptions1$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions1$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptions1>;
@@ -1964,57 +2491,57 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
1964
2491
  /** @internal */
1965
2492
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
1966
2493
  /** @internal */
1967
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
2494
+ export declare const CreateIntegrationStoreDirectDisabled3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3>;
1968
2495
  /** @internal */
1969
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
2496
+ export declare const CreateIntegrationStoreDirectDisabled3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3>;
1970
2497
  /** @internal */
1971
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse2, z.ZodTypeDef, unknown>;
2498
+ export declare const CreateIntegrationStoreDirectDisabled2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabled2, z.ZodTypeDef, unknown>;
1972
2499
  /** @internal */
1973
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound = {
2500
+ export type CreateIntegrationStoreDirectDisabled2$Outbound = {
1974
2501
  expr: string;
1975
2502
  };
1976
2503
  /** @internal */
1977
- export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabledIntegrationsResponse2>;
1978
- export declare function createIntegrationStoreDirectDisabledIntegrationsResponse2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse2: CreateIntegrationStoreDirectDisabledIntegrationsResponse2): string;
1979
- export declare function createIntegrationStoreDirectDisabledIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabledIntegrationsResponse2, SDKValidationError>;
2504
+ export declare const CreateIntegrationStoreDirectDisabled2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectDisabled2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectDisabled2>;
2505
+ export declare function createIntegrationStoreDirectDisabled2ToJSON(createIntegrationStoreDirectDisabled2: CreateIntegrationStoreDirectDisabled2): string;
2506
+ export declare function createIntegrationStoreDirectDisabled2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectDisabled2, SDKValidationError>;
1980
2507
  /** @internal */
1981
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled, z.ZodTypeDef, unknown>;
2508
+ export declare const CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesDisabled, z.ZodTypeDef, unknown>;
1982
2509
  /** @internal */
1983
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$Outbound = CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound | boolean | string;
2510
+ export type CreateIntegrationStoreDirectPropertiesDisabled$Outbound = CreateIntegrationStoreDirectDisabled2$Outbound | boolean | string;
1984
2511
  /** @internal */
1985
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled>;
1986
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseDisabled: CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled): string;
1987
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled, SDKValidationError>;
2512
+ export declare const CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesDisabled$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesDisabled>;
2513
+ export declare function createIntegrationStoreDirectPropertiesDisabledToJSON(createIntegrationStoreDirectPropertiesDisabled: CreateIntegrationStoreDirectPropertiesDisabled): string;
2514
+ export declare function createIntegrationStoreDirectPropertiesDisabledFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesDisabled, SDKValidationError>;
1988
2515
  /** @internal */
1989
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
2516
+ export declare const CreateIntegrationStoreDirectHidden3$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3>;
1990
2517
  /** @internal */
1991
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
2518
+ export declare const CreateIntegrationStoreDirectHidden3$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3>;
1992
2519
  /** @internal */
1993
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse2, z.ZodTypeDef, unknown>;
2520
+ export declare const CreateIntegrationStoreDirectHidden2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectHidden2, z.ZodTypeDef, unknown>;
1994
2521
  /** @internal */
1995
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound = {
2522
+ export type CreateIntegrationStoreDirectHidden2$Outbound = {
1996
2523
  expr: string;
1997
2524
  };
1998
2525
  /** @internal */
1999
- export declare const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHiddenIntegrationsResponse2>;
2000
- export declare function createIntegrationStoreDirectHiddenIntegrationsResponse2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse2: CreateIntegrationStoreDirectHiddenIntegrationsResponse2): string;
2001
- export declare function createIntegrationStoreDirectHiddenIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHiddenIntegrationsResponse2, SDKValidationError>;
2526
+ export declare const CreateIntegrationStoreDirectHidden2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectHidden2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectHidden2>;
2527
+ export declare function createIntegrationStoreDirectHidden2ToJSON(createIntegrationStoreDirectHidden2: CreateIntegrationStoreDirectHidden2): string;
2528
+ export declare function createIntegrationStoreDirectHidden2FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectHidden2, SDKValidationError>;
2002
2529
  /** @internal */
2003
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden, z.ZodTypeDef, unknown>;
2530
+ export declare const CreateIntegrationStoreDirectPropertiesHidden$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesHidden, z.ZodTypeDef, unknown>;
2004
2531
  /** @internal */
2005
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$Outbound = CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound | boolean | string;
2532
+ export type CreateIntegrationStoreDirectPropertiesHidden$Outbound = CreateIntegrationStoreDirectHidden2$Outbound | boolean | string;
2006
2533
  /** @internal */
2007
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden>;
2008
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseHidden: CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden): string;
2009
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden, SDKValidationError>;
2534
+ export declare const CreateIntegrationStoreDirectPropertiesHidden$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesHidden$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesHidden>;
2535
+ export declare function createIntegrationStoreDirectPropertiesHiddenToJSON(createIntegrationStoreDirectPropertiesHidden: CreateIntegrationStoreDirectPropertiesHidden): string;
2536
+ export declare function createIntegrationStoreDirectPropertiesHiddenFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesHidden, SDKValidationError>;
2010
2537
  /** @internal */
2011
2538
  export declare const CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesUiOptions, z.ZodTypeDef, unknown>;
2012
2539
  /** @internal */
2013
2540
  export type CreateIntegrationStoreDirectPropertiesUiOptions$Outbound = {
2014
2541
  value: string;
2015
2542
  label: string;
2016
- disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound | boolean | string | undefined;
2017
- hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound | boolean | string | undefined;
2543
+ disabled?: CreateIntegrationStoreDirectDisabled2$Outbound | boolean | string | undefined;
2544
+ hidden?: CreateIntegrationStoreDirectHidden2$Outbound | boolean | string | undefined;
2018
2545
  };
2019
2546
  /** @internal */
2020
2547
  export declare const CreateIntegrationStoreDirectPropertiesUiOptions$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesUiOptions$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesUiOptions>;
@@ -2144,9 +2671,9 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
2144
2671
  /** @internal */
2145
2672
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type>;
2146
2673
  /** @internal */
2147
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
2674
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type>;
2148
2675
  /** @internal */
2149
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType>;
2676
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type>;
2150
2677
  /** @internal */
2151
2678
  export declare const CreateIntegrationStoreDirectPropertiesItems$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesItems, z.ZodTypeDef, unknown>;
2152
2679
  /** @internal */
@@ -2660,7 +3187,7 @@ export declare function createIntegrationStoreDirectProperties1FromJSON(jsonStri
2660
3187
  /** @internal */
2661
3188
  export declare const CreateIntegrationStoreDirectProperties$inboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties, z.ZodTypeDef, unknown>;
2662
3189
  /** @internal */
2663
- export type CreateIntegrationStoreDirectProperties$Outbound = CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound | CreateIntegrationStoreDirectProperties8$Outbound | CreateIntegrationStoreDirectProperties9$Outbound;
3190
+ export type CreateIntegrationStoreDirectProperties$Outbound = CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties8$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound | CreateIntegrationStoreDirectProperties9$Outbound | CreateIntegrationStoreDirectProperties10$Outbound;
2664
3191
  /** @internal */
2665
3192
  export declare const CreateIntegrationStoreDirectProperties$outboundSchema: z.ZodType<CreateIntegrationStoreDirectProperties$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectProperties>;
2666
3193
  export declare function createIntegrationStoreDirectPropertiesToJSON(createIntegrationStoreDirectProperties: CreateIntegrationStoreDirectProperties): string;
@@ -2671,7 +3198,7 @@ export declare const CreateIntegrationStoreDirectMetadataSchema$inboundSchema: z
2671
3198
  export type CreateIntegrationStoreDirectMetadataSchema$Outbound = {
2672
3199
  type: string;
2673
3200
  properties: {
2674
- [k: string]: CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound | CreateIntegrationStoreDirectProperties8$Outbound | CreateIntegrationStoreDirectProperties9$Outbound;
3201
+ [k: string]: CreateIntegrationStoreDirectProperties4$Outbound | CreateIntegrationStoreDirectProperties6$Outbound | CreateIntegrationStoreDirectProperties8$Outbound | CreateIntegrationStoreDirectProperties5$Outbound | CreateIntegrationStoreDirectProperties7$Outbound | CreateIntegrationStoreDirectProperties1$Outbound | CreateIntegrationStoreDirectProperties2$Outbound | CreateIntegrationStoreDirectProperties3$Outbound | CreateIntegrationStoreDirectProperties9$Outbound | CreateIntegrationStoreDirectProperties10$Outbound;
2675
3202
  };
2676
3203
  required?: Array<string> | undefined;
2677
3204
  };
@@ -2749,49 +3276,32 @@ export declare const Guides$outboundSchema: z.ZodType<Guides$Outbound, z.ZodType
2749
3276
  export declare function guidesToJSON(guides: Guides): string;
2750
3277
  export declare function guidesFromJSON(jsonString: string): SafeParseResult<Guides, SDKValidationError>;
2751
3278
  /** @internal */
2752
- export declare const Disabled3$inboundSchema: z.ZodNativeEnum<typeof Disabled3>;
3279
+ export declare const CreateIntegrationStoreDirectIntegration$inboundSchema: z.ZodType<CreateIntegrationStoreDirectIntegration, z.ZodTypeDef, unknown>;
2753
3280
  /** @internal */
2754
- export declare const Disabled3$outboundSchema: z.ZodNativeEnum<typeof Disabled3>;
2755
- /** @internal */
2756
- export declare const Disabled2$inboundSchema: z.ZodType<Disabled2, z.ZodTypeDef, unknown>;
2757
- /** @internal */
2758
- export type Disabled2$Outbound = {
2759
- expr: string;
3281
+ export type CreateIntegrationStoreDirectIntegration$Outbound = {
3282
+ id: string;
3283
+ name: string;
3284
+ slug: string;
3285
+ supportsInstallationBillingPlans?: boolean | undefined;
3286
+ icon: string;
3287
+ flags?: Array<string> | undefined;
2760
3288
  };
2761
3289
  /** @internal */
2762
- export declare const Disabled2$outboundSchema: z.ZodType<Disabled2$Outbound, z.ZodTypeDef, Disabled2>;
2763
- export declare function disabled2ToJSON(disabled2: Disabled2): string;
2764
- export declare function disabled2FromJSON(jsonString: string): SafeParseResult<Disabled2, SDKValidationError>;
3290
+ export declare const CreateIntegrationStoreDirectIntegration$outboundSchema: z.ZodType<CreateIntegrationStoreDirectIntegration$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectIntegration>;
3291
+ export declare function createIntegrationStoreDirectIntegrationToJSON(createIntegrationStoreDirectIntegration: CreateIntegrationStoreDirectIntegration): string;
3292
+ export declare function createIntegrationStoreDirectIntegrationFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectIntegration, SDKValidationError>;
2765
3293
  /** @internal */
2766
- export declare const Disabled$inboundSchema: z.ZodType<Disabled, z.ZodTypeDef, unknown>;
3294
+ export declare const SupportedProtocols$inboundSchema: z.ZodNativeEnum<typeof SupportedProtocols>;
2767
3295
  /** @internal */
2768
- export type Disabled$Outbound = Disabled2$Outbound | boolean | string;
3296
+ export declare const SupportedProtocols$outboundSchema: z.ZodNativeEnum<typeof SupportedProtocols>;
2769
3297
  /** @internal */
2770
- export declare const Disabled$outboundSchema: z.ZodType<Disabled$Outbound, z.ZodTypeDef, Disabled>;
2771
- export declare function disabledToJSON(disabled: Disabled): string;
2772
- export declare function disabledFromJSON(jsonString: string): SafeParseResult<Disabled, SDKValidationError>;
3298
+ export declare const CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol>;
2773
3299
  /** @internal */
2774
- export declare const Hidden3$inboundSchema: z.ZodNativeEnum<typeof Hidden3>;
3300
+ export declare const CreateIntegrationStoreDirectPrimaryProtocol$outboundSchema: z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol>;
2775
3301
  /** @internal */
2776
- export declare const Hidden3$outboundSchema: z.ZodNativeEnum<typeof Hidden3>;
3302
+ export declare const LogDrainStatus$inboundSchema: z.ZodNativeEnum<typeof LogDrainStatus>;
2777
3303
  /** @internal */
2778
- export declare const Hidden2$inboundSchema: z.ZodType<Hidden2, z.ZodTypeDef, unknown>;
2779
- /** @internal */
2780
- export type Hidden2$Outbound = {
2781
- expr: string;
2782
- };
2783
- /** @internal */
2784
- export declare const Hidden2$outboundSchema: z.ZodType<Hidden2$Outbound, z.ZodTypeDef, Hidden2>;
2785
- export declare function hidden2ToJSON(hidden2: Hidden2): string;
2786
- export declare function hidden2FromJSON(jsonString: string): SafeParseResult<Hidden2, SDKValidationError>;
2787
- /** @internal */
2788
- export declare const Hidden$inboundSchema: z.ZodType<Hidden, z.ZodTypeDef, unknown>;
2789
- /** @internal */
2790
- export type Hidden$Outbound = Hidden2$Outbound | boolean | string;
2791
- /** @internal */
2792
- export declare const Hidden$outboundSchema: z.ZodType<Hidden$Outbound, z.ZodTypeDef, Hidden>;
2793
- export declare function hiddenToJSON(hidden: Hidden): string;
2794
- export declare function hiddenFromJSON(jsonString: string): SafeParseResult<Hidden, SDKValidationError>;
3304
+ export declare const LogDrainStatus$outboundSchema: z.ZodNativeEnum<typeof LogDrainStatus>;
2795
3305
  /** @internal */
2796
3306
  export declare const Product$inboundSchema: z.ZodType<Product, z.ZodTypeDef, unknown>;
2797
3307
  /** @internal */
@@ -2810,9 +3320,11 @@ export type Product$Outbound = {
2810
3320
  disableResourceRenaming?: boolean | undefined;
2811
3321
  repl?: Repl$Outbound | undefined;
2812
3322
  guides?: Array<Guides$Outbound> | undefined;
2813
- value: string;
2814
- disabled?: Disabled2$Outbound | boolean | string | undefined;
2815
- hidden?: Hidden2$Outbound | boolean | string | undefined;
3323
+ integration: CreateIntegrationStoreDirectIntegration$Outbound;
3324
+ integrationConfigurationId: string;
3325
+ supportedProtocols: Array<string>;
3326
+ primaryProtocol?: string | undefined;
3327
+ logDrainStatus?: string | undefined;
2816
3328
  };
2817
3329
  /** @internal */
2818
3330
  export declare const Product$outboundSchema: z.ZodType<Product$Outbound, z.ZodTypeDef, Product>;