@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
@@ -291,151 +291,235 @@ export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<
291
291
  typeof CreateIntegrationStoreDirectIntegrationsType
292
292
  >;
293
293
 
294
- export const CreateIntegrationStoreDirectDisabled3 = {
295
- Update: "update",
296
- Create: "create",
297
- } as const;
298
- export type CreateIntegrationStoreDirectDisabled3 = ClosedEnum<
299
- typeof CreateIntegrationStoreDirectDisabled3
300
- >;
294
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type =
295
+ {
296
+ String: "string",
297
+ } as const;
298
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type =
299
+ ClosedEnum<
300
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type
301
+ >;
301
302
 
302
- export type CreateIntegrationStoreDirectDisabled2 = {
303
- expr: string;
304
- };
303
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl =
304
+ {
305
+ GitNamespace: "git-namespace",
306
+ } as const;
307
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl =
308
+ ClosedEnum<
309
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl
310
+ >;
305
311
 
306
- export type CreateIntegrationStoreDirectPropertiesDisabled =
307
- | CreateIntegrationStoreDirectDisabled2
312
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 =
313
+ {
314
+ Update: "update",
315
+ Create: "create",
316
+ } as const;
317
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 =
318
+ ClosedEnum<
319
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
320
+ >;
321
+
322
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 =
323
+ {
324
+ expr: string;
325
+ };
326
+
327
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly =
328
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
308
329
  | boolean
309
- | CreateIntegrationStoreDirectDisabled3;
330
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
310
331
 
311
- export const CreateIntegrationStoreDirectHidden3 = {
312
- Update: "update",
313
- Create: "create",
314
- } as const;
315
- export type CreateIntegrationStoreDirectHidden3 = ClosedEnum<
316
- typeof CreateIntegrationStoreDirectHidden3
317
- >;
332
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 =
333
+ {
334
+ Update: "update",
335
+ Create: "create",
336
+ } as const;
337
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 =
338
+ ClosedEnum<
339
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
340
+ >;
318
341
 
319
- export type CreateIntegrationStoreDirectHidden2 = {
320
- expr: string;
321
- };
342
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 =
343
+ {
344
+ expr: string;
345
+ };
322
346
 
323
- export type CreateIntegrationStoreDirectPropertiesHidden =
324
- | CreateIntegrationStoreDirectHidden2
347
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden =
348
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
325
349
  | boolean
326
- | CreateIntegrationStoreDirectHidden3;
350
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
327
351
 
328
- export type CreateIntegrationStoreDirectProperties9 = {
329
- value: string;
330
- disabled?:
331
- | CreateIntegrationStoreDirectDisabled2
352
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 =
353
+ {
354
+ Update: "update",
355
+ Create: "create",
356
+ } as const;
357
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 =
358
+ ClosedEnum<
359
+ typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
360
+ >;
361
+
362
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 =
363
+ {
364
+ expr: string;
365
+ };
366
+
367
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled =
368
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
369
+ | boolean
370
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3;
371
+
372
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2 =
373
+ {
374
+ expr: string;
375
+ };
376
+
377
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription =
378
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
379
+ | string;
380
+
381
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue =
382
+ {
383
+ expr: string;
384
+ };
385
+
386
+ export const PropertiesGitProviders = {
387
+ Github: "github",
388
+ Gitlab: "gitlab",
389
+ Bitbucket: "bitbucket",
390
+ } as const;
391
+ export type PropertiesGitProviders = ClosedEnum<typeof PropertiesGitProviders>;
392
+
393
+ export type CreateIntegrationStoreDirectProperties10 = {
394
+ type:
395
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type;
396
+ uiControl:
397
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl;
398
+ description?: string | undefined;
399
+ uiLabel?: string | undefined;
400
+ uiReadOnly?:
401
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
332
402
  | boolean
333
- | CreateIntegrationStoreDirectDisabled3
403
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
334
404
  | undefined;
335
- hidden?:
336
- | CreateIntegrationStoreDirectHidden2
405
+ uiHidden?:
406
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
337
407
  | boolean
338
- | CreateIntegrationStoreDirectHidden3
408
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
409
+ | undefined;
410
+ uiDisabled?:
411
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
412
+ | boolean
413
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
414
+ | undefined;
415
+ uiDescription?:
416
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
417
+ | string
418
+ | undefined;
419
+ uiFormattedValue?:
420
+ | CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue
339
421
  | undefined;
422
+ uiPlaceholder?: string | undefined;
423
+ gitProviders?: Array<PropertiesGitProviders> | undefined;
340
424
  };
341
425
 
342
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType =
426
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType =
343
427
  {
344
428
  String: "string",
345
429
  } as const;
346
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType =
430
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType =
347
431
  ClosedEnum<
348
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType
432
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType
349
433
  >;
350
434
 
351
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl =
435
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl =
352
436
  {
353
437
  Domain: "domain",
354
438
  } as const;
355
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl =
439
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl =
356
440
  ClosedEnum<
357
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
441
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl
358
442
  >;
359
443
 
360
- export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
444
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 =
361
445
  {
362
446
  Update: "update",
363
447
  Create: "create",
364
448
  } as const;
365
- export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
449
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 =
366
450
  ClosedEnum<
367
- typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
451
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
368
452
  >;
369
453
 
370
- export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
454
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 =
371
455
  {
372
456
  expr: string;
373
457
  };
374
458
 
375
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly =
376
- | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
459
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly =
460
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
377
461
  | boolean
378
- | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
462
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
379
463
 
380
- export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
464
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 =
381
465
  {
382
466
  Update: "update",
383
467
  Create: "create",
384
468
  } as const;
385
- export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
469
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 =
386
470
  ClosedEnum<
387
- typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
471
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
388
472
  >;
389
473
 
390
- export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
474
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 =
391
475
  {
392
476
  expr: string;
393
477
  };
394
478
 
395
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden =
396
- | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
479
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden =
480
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
397
481
  | boolean
398
- | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
482
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
399
483
 
400
- export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
484
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 =
401
485
  {
402
486
  Update: "update",
403
487
  Create: "create",
404
488
  } as const;
405
- export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
489
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 =
406
490
  ClosedEnum<
407
- typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
491
+ typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
408
492
  >;
409
493
 
410
- export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
494
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 =
411
495
  {
412
496
  expr: string;
413
497
  };
414
498
 
415
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled =
416
- | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
499
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled =
500
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
417
501
  | boolean
418
- | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
502
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3;
419
503
 
420
- export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
504
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2 =
421
505
  {
422
506
  expr: string;
423
507
  };
424
508
 
425
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription =
426
- | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
509
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription =
510
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
427
511
  | string;
428
512
 
429
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue =
513
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue =
430
514
  {
431
515
  expr: string;
432
516
  };
433
517
 
434
- export type CreateIntegrationStoreDirectProperties8 = {
518
+ export type CreateIntegrationStoreDirectProperties9 = {
435
519
  type:
436
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType;
520
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType;
437
521
  uiControl:
438
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl;
522
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl;
439
523
  enum?: Array<string> | undefined;
440
524
  maxLength?: number | undefined;
441
525
  minLength?: number | undefined;
@@ -444,93 +528,119 @@ export type CreateIntegrationStoreDirectProperties8 = {
444
528
  default?: string | undefined;
445
529
  uiLabel?: string | undefined;
446
530
  uiReadOnly?:
447
- | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
531
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
448
532
  | boolean
449
- | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
533
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
450
534
  | undefined;
451
535
  uiHidden?:
452
- | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
536
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
453
537
  | boolean
454
- | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
538
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
455
539
  | undefined;
456
540
  uiDisabled?:
457
- | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
541
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
458
542
  | boolean
459
- | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
543
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
460
544
  | undefined;
461
545
  uiDescription?:
462
- | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
546
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
463
547
  | string
464
548
  | undefined;
465
549
  uiFormattedValue?:
466
- | CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue
550
+ | CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue
467
551
  | undefined;
468
552
  uiPlaceholder?: string | undefined;
469
553
  };
470
554
 
471
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType =
555
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType =
556
+ {
557
+ Array: "array",
558
+ } as const;
559
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType =
560
+ ClosedEnum<
561
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType
562
+ >;
563
+
564
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type =
472
565
  {
473
566
  String: "string",
474
567
  } as const;
475
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType =
568
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type =
476
569
  ClosedEnum<
477
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType
570
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type
478
571
  >;
479
572
 
480
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl =
573
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems = {
574
+ type:
575
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type;
576
+ description?: string | undefined;
577
+ minLength?: number | undefined;
578
+ maxLength?: number | undefined;
579
+ pattern?: string | undefined;
580
+ default?: string | undefined;
581
+ enum?: Array<string> | undefined;
582
+ };
583
+
584
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl =
481
585
  {
482
- VercelRegion: "vercel-region",
586
+ MultiVercelRegion: "multi-vercel-region",
483
587
  } as const;
484
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl =
588
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl =
485
589
  ClosedEnum<
486
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl
590
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
487
591
  >;
488
592
 
489
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 = {
490
- Update: "update",
491
- Create: "create",
492
- } as const;
493
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 =
593
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 =
594
+ {
595
+ Update: "update",
596
+ Create: "create",
597
+ } as const;
598
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 =
494
599
  ClosedEnum<
495
- typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse2003
600
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3
496
601
  >;
497
602
 
498
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 = {
499
- expr: string;
500
- };
603
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2 =
604
+ {
605
+ expr: string;
606
+ };
501
607
 
502
- export type CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled =
503
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2002
608
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled =
609
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2
504
610
  | boolean
505
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003;
611
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3;
506
612
 
507
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 = {
508
- Update: "update",
509
- Create: "create",
510
- } as const;
511
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 =
512
- ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse2003>;
613
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 =
614
+ {
615
+ Update: "update",
616
+ Create: "create",
617
+ } as const;
618
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 =
619
+ ClosedEnum<
620
+ typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3
621
+ >;
513
622
 
514
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 = {
515
- expr: string;
516
- };
623
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2 =
624
+ {
625
+ expr: string;
626
+ };
517
627
 
518
- export type CreateIntegrationStoreDirectUiOptionsIntegrationsHidden =
519
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2002
628
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden =
629
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2
520
630
  | boolean
521
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003;
631
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3;
522
632
 
523
- export type CreateIntegrationStoreDirectUiOptions3 = {
633
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations3 = {
524
634
  value: string;
525
635
  disabled?:
526
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2002
636
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2
527
637
  | boolean
528
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003
638
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3
529
639
  | undefined;
530
640
  hidden?:
531
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2002
641
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2
532
642
  | boolean
533
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003
643
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3
534
644
  | undefined;
535
645
  };
536
646
 
@@ -549,7 +659,7 @@ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200Applicati
549
659
  expr: string;
550
660
  };
551
661
 
552
- export type CreateIntegrationStoreDirectUiOptionsDisabled =
662
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled =
553
663
  | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2
554
664
  | boolean
555
665
  | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3;
@@ -569,12 +679,12 @@ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200Application
569
679
  expr: string;
570
680
  };
571
681
 
572
- export type CreateIntegrationStoreDirectUiOptionsHidden =
682
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden =
573
683
  | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2
574
684
  | boolean
575
685
  | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3;
576
686
 
577
- export type CreateIntegrationStoreDirectUiOptions1 = {
687
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations1 = {
578
688
  value: string;
579
689
  label: string;
580
690
  disabled?:
@@ -589,48 +699,282 @@ export type CreateIntegrationStoreDirectUiOptions1 = {
589
699
  | undefined;
590
700
  };
591
701
 
592
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions =
593
- | CreateIntegrationStoreDirectUiOptions1
594
- | CreateIntegrationStoreDirectUiOptions3
702
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions =
703
+ | CreateIntegrationStoreDirectUiOptionsIntegrations1
704
+ | CreateIntegrationStoreDirectUiOptionsIntegrations3
595
705
  | string;
596
706
 
597
- export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
707
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
598
708
  {
599
709
  Update: "update",
600
710
  Create: "create",
601
711
  } as const;
602
- export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
712
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
603
713
  ClosedEnum<
604
- typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3
714
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
605
715
  >;
606
716
 
607
- export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2 =
717
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
608
718
  {
609
719
  expr: string;
610
720
  };
611
721
 
612
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiReadOnly =
613
- | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2
722
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly =
723
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
614
724
  | boolean
615
- | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3;
725
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
616
726
 
617
- export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
727
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
618
728
  {
619
729
  Update: "update",
620
730
  Create: "create",
621
731
  } as const;
622
- export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
732
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
623
733
  ClosedEnum<
624
- typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3
734
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
625
735
  >;
626
736
 
627
- export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2 =
737
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
628
738
  {
629
739
  expr: string;
630
740
  };
631
741
 
632
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiHidden =
633
- | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2
742
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden =
743
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
744
+ | boolean
745
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
746
+
747
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
748
+ {
749
+ Update: "update",
750
+ Create: "create",
751
+ } as const;
752
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
753
+ ClosedEnum<
754
+ typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
755
+ >;
756
+
757
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
758
+ {
759
+ expr: string;
760
+ };
761
+
762
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled =
763
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
764
+ | boolean
765
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3;
766
+
767
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2 =
768
+ {
769
+ expr: string;
770
+ };
771
+
772
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription =
773
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
774
+ | string;
775
+
776
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue =
777
+ {
778
+ expr: string;
779
+ };
780
+
781
+ export type CreateIntegrationStoreDirectProperties8 = {
782
+ type:
783
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType;
784
+ items: CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems;
785
+ uiControl:
786
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl;
787
+ uiOptions: Array<
788
+ | CreateIntegrationStoreDirectUiOptionsIntegrations1
789
+ | CreateIntegrationStoreDirectUiOptionsIntegrations3
790
+ | string
791
+ >;
792
+ maxItems?: number | undefined;
793
+ minItems?: number | undefined;
794
+ description?: string | undefined;
795
+ uiLabel?: string | undefined;
796
+ uiReadOnly?:
797
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
798
+ | boolean
799
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
800
+ | undefined;
801
+ uiHidden?:
802
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
803
+ | boolean
804
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
805
+ | undefined;
806
+ uiDisabled?:
807
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
808
+ | boolean
809
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3
810
+ | undefined;
811
+ uiDescription?:
812
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2
813
+ | string
814
+ | undefined;
815
+ uiFormattedValue?:
816
+ | CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue
817
+ | undefined;
818
+ uiPlaceholder?: string | undefined;
819
+ default?: Array<string> | undefined;
820
+ example?: Array<string> | undefined;
821
+ };
822
+
823
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType =
824
+ {
825
+ String: "string",
826
+ } as const;
827
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType =
828
+ ClosedEnum<
829
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType
830
+ >;
831
+
832
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl =
833
+ {
834
+ VercelRegion: "vercel-region",
835
+ } as const;
836
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl =
837
+ ClosedEnum<
838
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl
839
+ >;
840
+
841
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 = {
842
+ Update: "update",
843
+ Create: "create",
844
+ } as const;
845
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 =
846
+ ClosedEnum<
847
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse2003
848
+ >;
849
+
850
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 = {
851
+ expr: string;
852
+ };
853
+
854
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled =
855
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2002
856
+ | boolean
857
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003;
858
+
859
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 = {
860
+ Update: "update",
861
+ Create: "create",
862
+ } as const;
863
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 =
864
+ ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse2003>;
865
+
866
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 = {
867
+ expr: string;
868
+ };
869
+
870
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsHidden =
871
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2002
872
+ | boolean
873
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003;
874
+
875
+ export type CreateIntegrationStoreDirectUiOptions3 = {
876
+ value: string;
877
+ disabled?:
878
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2002
879
+ | boolean
880
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003
881
+ | undefined;
882
+ hidden?:
883
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2002
884
+ | boolean
885
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003
886
+ | undefined;
887
+ };
888
+
889
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3 = {
890
+ Update: "update",
891
+ Create: "create",
892
+ } as const;
893
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse3 =
894
+ ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
895
+
896
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2 = {
897
+ expr: string;
898
+ };
899
+
900
+ export type CreateIntegrationStoreDirectUiOptionsDisabled =
901
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2
902
+ | boolean
903
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse3;
904
+
905
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3 = {
906
+ Update: "update",
907
+ Create: "create",
908
+ } as const;
909
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse3 =
910
+ ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
911
+
912
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2 = {
913
+ expr: string;
914
+ };
915
+
916
+ export type CreateIntegrationStoreDirectUiOptionsHidden =
917
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2
918
+ | boolean
919
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse3;
920
+
921
+ export type CreateIntegrationStoreDirectUiOptions1 = {
922
+ value: string;
923
+ label: string;
924
+ disabled?:
925
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2
926
+ | boolean
927
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse3
928
+ | undefined;
929
+ hidden?:
930
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2
931
+ | boolean
932
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse3
933
+ | undefined;
934
+ };
935
+
936
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions =
937
+ | CreateIntegrationStoreDirectUiOptions1
938
+ | CreateIntegrationStoreDirectUiOptions3
939
+ | string;
940
+
941
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
942
+ {
943
+ Update: "update",
944
+ Create: "create",
945
+ } as const;
946
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
947
+ ClosedEnum<
948
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3
949
+ >;
950
+
951
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2 =
952
+ {
953
+ expr: string;
954
+ };
955
+
956
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiReadOnly =
957
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2
958
+ | boolean
959
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3;
960
+
961
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
962
+ {
963
+ Update: "update",
964
+ Create: "create",
965
+ } as const;
966
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
967
+ ClosedEnum<
968
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3
969
+ >;
970
+
971
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2 =
972
+ {
973
+ expr: string;
974
+ };
975
+
976
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiHidden =
977
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2
634
978
  | boolean
635
979
  | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3;
636
980
 
@@ -927,50 +1271,52 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
927
1271
  typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl
928
1272
  >;
929
1273
 
930
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3 = {
1274
+ export const CreateIntegrationStoreDirectDisabled3 = {
931
1275
  Update: "update",
932
1276
  Create: "create",
933
1277
  } as const;
934
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse3 =
935
- ClosedEnum<typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3>;
1278
+ export type CreateIntegrationStoreDirectDisabled3 = ClosedEnum<
1279
+ typeof CreateIntegrationStoreDirectDisabled3
1280
+ >;
936
1281
 
937
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2 = {
1282
+ export type CreateIntegrationStoreDirectDisabled2 = {
938
1283
  expr: string;
939
1284
  };
940
1285
 
941
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled =
942
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2
1286
+ export type CreateIntegrationStoreDirectPropertiesDisabled =
1287
+ | CreateIntegrationStoreDirectDisabled2
943
1288
  | boolean
944
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse3;
1289
+ | CreateIntegrationStoreDirectDisabled3;
945
1290
 
946
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3 = {
1291
+ export const CreateIntegrationStoreDirectHidden3 = {
947
1292
  Update: "update",
948
1293
  Create: "create",
949
1294
  } as const;
950
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse3 =
951
- ClosedEnum<typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3>;
1295
+ export type CreateIntegrationStoreDirectHidden3 = ClosedEnum<
1296
+ typeof CreateIntegrationStoreDirectHidden3
1297
+ >;
952
1298
 
953
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2 = {
1299
+ export type CreateIntegrationStoreDirectHidden2 = {
954
1300
  expr: string;
955
1301
  };
956
1302
 
957
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden =
958
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2
1303
+ export type CreateIntegrationStoreDirectPropertiesHidden =
1304
+ | CreateIntegrationStoreDirectHidden2
959
1305
  | boolean
960
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse3;
1306
+ | CreateIntegrationStoreDirectHidden3;
961
1307
 
962
1308
  export type CreateIntegrationStoreDirectPropertiesUiOptions = {
963
1309
  value: string;
964
1310
  label: string;
965
1311
  disabled?:
966
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2
1312
+ | CreateIntegrationStoreDirectDisabled2
967
1313
  | boolean
968
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse3
1314
+ | CreateIntegrationStoreDirectDisabled3
969
1315
  | undefined;
970
1316
  hidden?:
971
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2
1317
+ | CreateIntegrationStoreDirectHidden2
972
1318
  | boolean
973
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse3
1319
+ | CreateIntegrationStoreDirectHidden3
974
1320
  | undefined;
975
1321
  };
976
1322
 
@@ -1095,18 +1441,18 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type =
1095
1441
  typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type
1096
1442
  >;
1097
1443
 
1098
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType =
1444
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type =
1099
1445
  {
1100
1446
  Number: "number",
1101
1447
  } as const;
1102
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType =
1448
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type =
1103
1449
  ClosedEnum<
1104
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType
1450
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type
1105
1451
  >;
1106
1452
 
1107
1453
  export type CreateIntegrationStoreDirectPropertiesItems = {
1108
1454
  type:
1109
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType;
1455
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type;
1110
1456
  description?: string | undefined;
1111
1457
  minimum?: number | undefined;
1112
1458
  exclusiveMinimum?: number | undefined;
@@ -1569,13 +1915,14 @@ export type CreateIntegrationStoreDirectProperties1 = {
1569
1915
  export type CreateIntegrationStoreDirectProperties =
1570
1916
  | CreateIntegrationStoreDirectProperties4
1571
1917
  | CreateIntegrationStoreDirectProperties6
1918
+ | CreateIntegrationStoreDirectProperties8
1572
1919
  | CreateIntegrationStoreDirectProperties5
1573
1920
  | CreateIntegrationStoreDirectProperties7
1574
1921
  | CreateIntegrationStoreDirectProperties1
1575
1922
  | CreateIntegrationStoreDirectProperties2
1576
1923
  | CreateIntegrationStoreDirectProperties3
1577
- | CreateIntegrationStoreDirectProperties8
1578
- | CreateIntegrationStoreDirectProperties9;
1924
+ | CreateIntegrationStoreDirectProperties9
1925
+ | CreateIntegrationStoreDirectProperties10;
1579
1926
 
1580
1927
  export type CreateIntegrationStoreDirectMetadataSchema = {
1581
1928
  type: CreateIntegrationStoreDirectIntegrationsType;
@@ -1583,13 +1930,14 @@ export type CreateIntegrationStoreDirectMetadataSchema = {
1583
1930
  [k: string]:
1584
1931
  | CreateIntegrationStoreDirectProperties4
1585
1932
  | CreateIntegrationStoreDirectProperties6
1933
+ | CreateIntegrationStoreDirectProperties8
1586
1934
  | CreateIntegrationStoreDirectProperties5
1587
1935
  | CreateIntegrationStoreDirectProperties7
1588
1936
  | CreateIntegrationStoreDirectProperties1
1589
1937
  | CreateIntegrationStoreDirectProperties2
1590
1938
  | CreateIntegrationStoreDirectProperties3
1591
- | CreateIntegrationStoreDirectProperties8
1592
- | CreateIntegrationStoreDirectProperties9;
1939
+ | CreateIntegrationStoreDirectProperties9
1940
+ | CreateIntegrationStoreDirectProperties10;
1593
1941
  };
1594
1942
  required?: Array<string> | undefined;
1595
1943
  };
@@ -1617,7 +1965,10 @@ export const CreateIntegrationStoreDirectTags = {
1617
1965
  Messaging: "messaging",
1618
1966
  Other: "other",
1619
1967
  Mysql: "mysql",
1968
+ Kv: "kv",
1620
1969
  Vector: "vector",
1970
+ Libsql: "libsql",
1971
+ Sqlite: "sqlite",
1621
1972
  TagAgents: "tag_agents",
1622
1973
  TagAi: "tag_ai",
1623
1974
  TagAnalytics: "tag_analytics",
@@ -1706,29 +2057,54 @@ export type Guides = {
1706
2057
  steps: Array<Steps>;
1707
2058
  };
1708
2059
 
1709
- export const Disabled3 = {
1710
- Update: "update",
1711
- Create: "create",
1712
- } as const;
1713
- export type Disabled3 = ClosedEnum<typeof Disabled3>;
1714
-
1715
- export type Disabled2 = {
1716
- expr: string;
2060
+ export type CreateIntegrationStoreDirectIntegration = {
2061
+ id: string;
2062
+ name: string;
2063
+ slug: string;
2064
+ supportsInstallationBillingPlans?: boolean | undefined;
2065
+ icon: string;
2066
+ flags?: Array<string> | undefined;
1717
2067
  };
1718
2068
 
1719
- export type Disabled = Disabled2 | boolean | Disabled3;
1720
-
1721
- export const Hidden3 = {
1722
- Update: "update",
1723
- Create: "create",
2069
+ export const SupportedProtocols = {
2070
+ Experimentation: "experimentation",
2071
+ Checks: "checks",
2072
+ Storage: "storage",
2073
+ Ai: "ai",
2074
+ Observability: "observability",
2075
+ Video: "video",
2076
+ Authentication: "authentication",
2077
+ Workflow: "workflow",
2078
+ LogDrain: "logDrain",
2079
+ TraceDrain: "traceDrain",
2080
+ Messaging: "messaging",
2081
+ Other: "other",
1724
2082
  } as const;
1725
- export type Hidden3 = ClosedEnum<typeof Hidden3>;
2083
+ export type SupportedProtocols = ClosedEnum<typeof SupportedProtocols>;
1726
2084
 
1727
- export type Hidden2 = {
1728
- expr: string;
1729
- };
2085
+ export const CreateIntegrationStoreDirectPrimaryProtocol = {
2086
+ Experimentation: "experimentation",
2087
+ Checks: "checks",
2088
+ Storage: "storage",
2089
+ Ai: "ai",
2090
+ Observability: "observability",
2091
+ Video: "video",
2092
+ Authentication: "authentication",
2093
+ Workflow: "workflow",
2094
+ LogDrain: "logDrain",
2095
+ TraceDrain: "traceDrain",
2096
+ Messaging: "messaging",
2097
+ Other: "other",
2098
+ } as const;
2099
+ export type CreateIntegrationStoreDirectPrimaryProtocol = ClosedEnum<
2100
+ typeof CreateIntegrationStoreDirectPrimaryProtocol
2101
+ >;
1730
2102
 
1731
- export type Hidden = Hidden2 | boolean | Hidden3;
2103
+ export const LogDrainStatus = {
2104
+ Disabled: "disabled",
2105
+ Enabled: "enabled",
2106
+ } as const;
2107
+ export type LogDrainStatus = ClosedEnum<typeof LogDrainStatus>;
1732
2108
 
1733
2109
  export type Product = {
1734
2110
  id?: string | undefined;
@@ -1745,9 +2121,11 @@ export type Product = {
1745
2121
  disableResourceRenaming?: boolean | undefined;
1746
2122
  repl?: Repl | undefined;
1747
2123
  guides?: Array<Guides> | undefined;
1748
- value: string;
1749
- disabled?: Disabled2 | boolean | Disabled3 | undefined;
1750
- hidden?: Hidden2 | boolean | Hidden3 | undefined;
2124
+ integration: CreateIntegrationStoreDirectIntegration;
2125
+ integrationConfigurationId: string;
2126
+ supportedProtocols: Array<SupportedProtocols>;
2127
+ primaryProtocol?: CreateIntegrationStoreDirectPrimaryProtocol | undefined;
2128
+ logDrainStatus?: LogDrainStatus | undefined;
1751
2129
  };
1752
2130
 
1753
2131
  export type CreateIntegrationStoreDirectExperimentation = {
@@ -2814,327 +3192,2360 @@ export const CreateIntegrationStoreDirectIntegrationsType$outboundSchema:
2814
3192
  CreateIntegrationStoreDirectIntegrationsType$inboundSchema;
2815
3193
 
2816
3194
  /** @internal */
2817
- export const CreateIntegrationStoreDirectDisabled3$inboundSchema:
2818
- z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3> = z.nativeEnum(
2819
- CreateIntegrationStoreDirectDisabled3,
3195
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema:
3196
+ z.ZodNativeEnum<
3197
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type
3198
+ > = z.nativeEnum(
3199
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type,
2820
3200
  );
2821
3201
  /** @internal */
2822
- export const CreateIntegrationStoreDirectDisabled3$outboundSchema:
2823
- z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3> =
2824
- CreateIntegrationStoreDirectDisabled3$inboundSchema;
3202
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$outboundSchema:
3203
+ z.ZodNativeEnum<
3204
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type
3205
+ > =
3206
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema;
2825
3207
 
2826
3208
  /** @internal */
2827
- export const CreateIntegrationStoreDirectDisabled2$inboundSchema: z.ZodType<
2828
- CreateIntegrationStoreDirectDisabled2,
2829
- z.ZodTypeDef,
2830
- unknown
2831
- > = z.object({
2832
- expr: types.string(),
2833
- });
3209
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema:
3210
+ z.ZodNativeEnum<
3211
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl
3212
+ > = z.nativeEnum(
3213
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl,
3214
+ );
2834
3215
  /** @internal */
2835
- export type CreateIntegrationStoreDirectDisabled2$Outbound = {
2836
- expr: string;
2837
- };
3216
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$outboundSchema:
3217
+ z.ZodNativeEnum<
3218
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl
3219
+ > =
3220
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema;
2838
3221
 
2839
3222
  /** @internal */
2840
- export const CreateIntegrationStoreDirectDisabled2$outboundSchema: z.ZodType<
2841
- CreateIntegrationStoreDirectDisabled2$Outbound,
2842
- z.ZodTypeDef,
2843
- CreateIntegrationStoreDirectDisabled2
2844
- > = z.object({
2845
- expr: z.string(),
2846
- });
3223
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema:
3224
+ z.ZodNativeEnum<
3225
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
3226
+ > = z.nativeEnum(
3227
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3,
3228
+ );
3229
+ /** @internal */
3230
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema:
3231
+ z.ZodNativeEnum<
3232
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
3233
+ > =
3234
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema;
2847
3235
 
2848
- export function createIntegrationStoreDirectDisabled2ToJSON(
2849
- createIntegrationStoreDirectDisabled2: CreateIntegrationStoreDirectDisabled2,
3236
+ /** @internal */
3237
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema:
3238
+ z.ZodType<
3239
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3240
+ z.ZodTypeDef,
3241
+ unknown
3242
+ > = z.object({
3243
+ expr: types.string(),
3244
+ });
3245
+ /** @internal */
3246
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound =
3247
+ {
3248
+ expr: string;
3249
+ };
3250
+
3251
+ /** @internal */
3252
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema:
3253
+ z.ZodType<
3254
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound,
3255
+ z.ZodTypeDef,
3256
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
3257
+ > = z.object({
3258
+ expr: z.string(),
3259
+ });
3260
+
3261
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(
3262
+ createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2:
3263
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
2850
3264
  ): string {
2851
3265
  return JSON.stringify(
2852
- CreateIntegrationStoreDirectDisabled2$outboundSchema.parse(
2853
- createIntegrationStoreDirectDisabled2,
2854
- ),
3266
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3267
+ .parse(
3268
+ createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3269
+ ),
2855
3270
  );
2856
3271
  }
2857
- export function createIntegrationStoreDirectDisabled2FromJSON(
3272
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(
2858
3273
  jsonString: string,
2859
- ): SafeParseResult<CreateIntegrationStoreDirectDisabled2, SDKValidationError> {
3274
+ ): SafeParseResult<
3275
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3276
+ SDKValidationError
3277
+ > {
2860
3278
  return safeParse(
2861
3279
  jsonString,
2862
3280
  (x) =>
2863
- CreateIntegrationStoreDirectDisabled2$inboundSchema.parse(JSON.parse(x)),
2864
- `Failed to parse 'CreateIntegrationStoreDirectDisabled2' from JSON`,
3281
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3282
+ .parse(JSON.parse(x)),
3283
+ `Failed to parse 'CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`,
2865
3284
  );
2866
3285
  }
2867
3286
 
2868
3287
  /** @internal */
2869
- export const CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema:
3288
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$inboundSchema:
2870
3289
  z.ZodType<
2871
- CreateIntegrationStoreDirectPropertiesDisabled,
3290
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly,
2872
3291
  z.ZodTypeDef,
2873
3292
  unknown
2874
3293
  > = smartUnion([
2875
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
3294
+ z.lazy(() =>
3295
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3296
+ ),
2876
3297
  types.boolean(),
2877
- CreateIntegrationStoreDirectDisabled3$inboundSchema,
3298
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
2878
3299
  ]);
2879
3300
  /** @internal */
2880
- export type CreateIntegrationStoreDirectPropertiesDisabled$Outbound =
2881
- | CreateIntegrationStoreDirectDisabled2$Outbound
3301
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$Outbound =
3302
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
2882
3303
  | boolean
2883
3304
  | string;
2884
3305
 
2885
3306
  /** @internal */
2886
- export const CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema:
3307
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$outboundSchema:
2887
3308
  z.ZodType<
2888
- CreateIntegrationStoreDirectPropertiesDisabled$Outbound,
3309
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$Outbound,
2889
3310
  z.ZodTypeDef,
2890
- CreateIntegrationStoreDirectPropertiesDisabled
3311
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly
2891
3312
  > = smartUnion([
2892
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
3313
+ z.lazy(() =>
3314
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3315
+ ),
2893
3316
  z.boolean(),
2894
- CreateIntegrationStoreDirectDisabled3$outboundSchema,
3317
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
2895
3318
  ]);
2896
3319
 
2897
- export function createIntegrationStoreDirectPropertiesDisabledToJSON(
2898
- createIntegrationStoreDirectPropertiesDisabled:
2899
- CreateIntegrationStoreDirectPropertiesDisabled,
3320
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyToJSON(
3321
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly:
3322
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly,
2900
3323
  ): string {
2901
3324
  return JSON.stringify(
2902
- CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema.parse(
2903
- createIntegrationStoreDirectPropertiesDisabled,
2904
- ),
3325
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$outboundSchema
3326
+ .parse(
3327
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly,
3328
+ ),
2905
3329
  );
2906
3330
  }
2907
- export function createIntegrationStoreDirectPropertiesDisabledFromJSON(
3331
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyFromJSON(
2908
3332
  jsonString: string,
2909
3333
  ): SafeParseResult<
2910
- CreateIntegrationStoreDirectPropertiesDisabled,
3334
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly,
2911
3335
  SDKValidationError
2912
3336
  > {
2913
3337
  return safeParse(
2914
3338
  jsonString,
2915
3339
  (x) =>
2916
- CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema.parse(
2917
- JSON.parse(x),
3340
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$inboundSchema
3341
+ .parse(JSON.parse(x)),
3342
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly' from JSON`,
3343
+ );
3344
+ }
3345
+
3346
+ /** @internal */
3347
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema:
3348
+ z.ZodNativeEnum<
3349
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
3350
+ > = z.nativeEnum(
3351
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3,
3352
+ );
3353
+ /** @internal */
3354
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema:
3355
+ z.ZodNativeEnum<
3356
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
3357
+ > =
3358
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema;
3359
+
3360
+ /** @internal */
3361
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema:
3362
+ z.ZodType<
3363
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3364
+ z.ZodTypeDef,
3365
+ unknown
3366
+ > = z.object({
3367
+ expr: types.string(),
3368
+ });
3369
+ /** @internal */
3370
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound =
3371
+ {
3372
+ expr: string;
3373
+ };
3374
+
3375
+ /** @internal */
3376
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema:
3377
+ z.ZodType<
3378
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound,
3379
+ z.ZodTypeDef,
3380
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
3381
+ > = z.object({
3382
+ expr: z.string(),
3383
+ });
3384
+
3385
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(
3386
+ createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2:
3387
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3388
+ ): string {
3389
+ return JSON.stringify(
3390
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3391
+ .parse(
3392
+ createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
2918
3393
  ),
2919
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesDisabled' from JSON`,
3394
+ );
3395
+ }
3396
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(
3397
+ jsonString: string,
3398
+ ): SafeParseResult<
3399
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3400
+ SDKValidationError
3401
+ > {
3402
+ return safeParse(
3403
+ jsonString,
3404
+ (x) =>
3405
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3406
+ .parse(JSON.parse(x)),
3407
+ `Failed to parse 'CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`,
2920
3408
  );
2921
3409
  }
2922
3410
 
2923
3411
  /** @internal */
2924
- export const CreateIntegrationStoreDirectHidden3$inboundSchema: z.ZodNativeEnum<
2925
- typeof CreateIntegrationStoreDirectHidden3
2926
- > = z.nativeEnum(CreateIntegrationStoreDirectHidden3);
3412
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$inboundSchema:
3413
+ z.ZodType<
3414
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden,
3415
+ z.ZodTypeDef,
3416
+ unknown
3417
+ > = smartUnion([
3418
+ z.lazy(() =>
3419
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3420
+ ),
3421
+ types.boolean(),
3422
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
3423
+ ]);
2927
3424
  /** @internal */
2928
- export const CreateIntegrationStoreDirectHidden3$outboundSchema:
2929
- z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3> =
2930
- CreateIntegrationStoreDirectHidden3$inboundSchema;
3425
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$Outbound =
3426
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
3427
+ | boolean
3428
+ | string;
3429
+
3430
+ /** @internal */
3431
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$outboundSchema:
3432
+ z.ZodType<
3433
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$Outbound,
3434
+ z.ZodTypeDef,
3435
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden
3436
+ > = smartUnion([
3437
+ z.lazy(() =>
3438
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3439
+ ),
3440
+ z.boolean(),
3441
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
3442
+ ]);
3443
+
3444
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenToJSON(
3445
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden:
3446
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden,
3447
+ ): string {
3448
+ return JSON.stringify(
3449
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$outboundSchema
3450
+ .parse(
3451
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden,
3452
+ ),
3453
+ );
3454
+ }
3455
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenFromJSON(
3456
+ jsonString: string,
3457
+ ): SafeParseResult<
3458
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden,
3459
+ SDKValidationError
3460
+ > {
3461
+ return safeParse(
3462
+ jsonString,
3463
+ (x) =>
3464
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$inboundSchema
3465
+ .parse(JSON.parse(x)),
3466
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden' from JSON`,
3467
+ );
3468
+ }
3469
+
3470
+ /** @internal */
3471
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema:
3472
+ z.ZodNativeEnum<
3473
+ typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
3474
+ > = z.nativeEnum(
3475
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3,
3476
+ );
3477
+ /** @internal */
3478
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema:
3479
+ z.ZodNativeEnum<
3480
+ typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3
3481
+ > =
3482
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema;
3483
+
3484
+ /** @internal */
3485
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema:
3486
+ z.ZodType<
3487
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3488
+ z.ZodTypeDef,
3489
+ unknown
3490
+ > = z.object({
3491
+ expr: types.string(),
3492
+ });
3493
+ /** @internal */
3494
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound =
3495
+ {
3496
+ expr: string;
3497
+ };
3498
+
3499
+ /** @internal */
3500
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema:
3501
+ z.ZodType<
3502
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound,
3503
+ z.ZodTypeDef,
3504
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
3505
+ > = z.object({
3506
+ expr: z.string(),
3507
+ });
3508
+
3509
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(
3510
+ createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2:
3511
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3512
+ ): string {
3513
+ return JSON.stringify(
3514
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3515
+ .parse(
3516
+ createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3517
+ ),
3518
+ );
3519
+ }
3520
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(
3521
+ jsonString: string,
3522
+ ): SafeParseResult<
3523
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3524
+ SDKValidationError
3525
+ > {
3526
+ return safeParse(
3527
+ jsonString,
3528
+ (x) =>
3529
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3530
+ .parse(JSON.parse(x)),
3531
+ `Failed to parse 'CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`,
3532
+ );
3533
+ }
3534
+
3535
+ /** @internal */
3536
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$inboundSchema:
3537
+ z.ZodType<
3538
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled,
3539
+ z.ZodTypeDef,
3540
+ unknown
3541
+ > = smartUnion([
3542
+ z.lazy(() =>
3543
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3544
+ ),
3545
+ types.boolean(),
3546
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
3547
+ ]);
3548
+ /** @internal */
3549
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$Outbound =
3550
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
3551
+ | boolean
3552
+ | string;
3553
+
3554
+ /** @internal */
3555
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$outboundSchema:
3556
+ z.ZodType<
3557
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$Outbound,
3558
+ z.ZodTypeDef,
3559
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled
3560
+ > = smartUnion([
3561
+ z.lazy(() =>
3562
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3563
+ ),
3564
+ z.boolean(),
3565
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
3566
+ ]);
3567
+
3568
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledToJSON(
3569
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled:
3570
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled,
3571
+ ): string {
3572
+ return JSON.stringify(
3573
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$outboundSchema
3574
+ .parse(
3575
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled,
3576
+ ),
3577
+ );
3578
+ }
3579
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledFromJSON(
3580
+ jsonString: string,
3581
+ ): SafeParseResult<
3582
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled,
3583
+ SDKValidationError
3584
+ > {
3585
+ return safeParse(
3586
+ jsonString,
3587
+ (x) =>
3588
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$inboundSchema
3589
+ .parse(JSON.parse(x)),
3590
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled' from JSON`,
3591
+ );
3592
+ }
3593
+
3594
+ /** @internal */
3595
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema:
3596
+ z.ZodType<
3597
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3598
+ z.ZodTypeDef,
3599
+ unknown
3600
+ > = z.object({
3601
+ expr: types.string(),
3602
+ });
3603
+ /** @internal */
3604
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound =
3605
+ {
3606
+ expr: string;
3607
+ };
3608
+
3609
+ /** @internal */
3610
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema:
3611
+ z.ZodType<
3612
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound,
3613
+ z.ZodTypeDef,
3614
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2
3615
+ > = z.object({
3616
+ expr: z.string(),
3617
+ });
3618
+
3619
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(
3620
+ createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2:
3621
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3622
+ ): string {
3623
+ return JSON.stringify(
3624
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3625
+ .parse(
3626
+ createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3627
+ ),
3628
+ );
3629
+ }
3630
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(
3631
+ jsonString: string,
3632
+ ): SafeParseResult<
3633
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2,
3634
+ SDKValidationError
3635
+ > {
3636
+ return safeParse(
3637
+ jsonString,
3638
+ (x) =>
3639
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3640
+ .parse(JSON.parse(x)),
3641
+ `Failed to parse 'CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`,
3642
+ );
3643
+ }
3644
+
3645
+ /** @internal */
3646
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$inboundSchema:
3647
+ z.ZodType<
3648
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription,
3649
+ z.ZodTypeDef,
3650
+ unknown
3651
+ > = smartUnion([
3652
+ z.lazy(() =>
3653
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3654
+ ),
3655
+ types.string(),
3656
+ ]);
3657
+ /** @internal */
3658
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$Outbound =
3659
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
3660
+ | string;
3661
+
3662
+ /** @internal */
3663
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$outboundSchema:
3664
+ z.ZodType<
3665
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$Outbound,
3666
+ z.ZodTypeDef,
3667
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription
3668
+ > = smartUnion([
3669
+ z.lazy(() =>
3670
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3671
+ ),
3672
+ z.string(),
3673
+ ]);
3674
+
3675
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionToJSON(
3676
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription:
3677
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription,
3678
+ ): string {
3679
+ return JSON.stringify(
3680
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$outboundSchema
3681
+ .parse(
3682
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription,
3683
+ ),
3684
+ );
3685
+ }
3686
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionFromJSON(
3687
+ jsonString: string,
3688
+ ): SafeParseResult<
3689
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription,
3690
+ SDKValidationError
3691
+ > {
3692
+ return safeParse(
3693
+ jsonString,
3694
+ (x) =>
3695
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$inboundSchema
3696
+ .parse(JSON.parse(x)),
3697
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription' from JSON`,
3698
+ );
3699
+ }
3700
+
3701
+ /** @internal */
3702
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema:
3703
+ z.ZodType<
3704
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue,
3705
+ z.ZodTypeDef,
3706
+ unknown
3707
+ > = z.object({
3708
+ expr: types.string(),
3709
+ });
3710
+ /** @internal */
3711
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound =
3712
+ {
3713
+ expr: string;
3714
+ };
3715
+
3716
+ /** @internal */
3717
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema:
3718
+ z.ZodType<
3719
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound,
3720
+ z.ZodTypeDef,
3721
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue
3722
+ > = z.object({
3723
+ expr: z.string(),
3724
+ });
3725
+
3726
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueToJSON(
3727
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue:
3728
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue,
3729
+ ): string {
3730
+ return JSON.stringify(
3731
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema
3732
+ .parse(
3733
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue,
3734
+ ),
3735
+ );
3736
+ }
3737
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueFromJSON(
3738
+ jsonString: string,
3739
+ ): SafeParseResult<
3740
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue,
3741
+ SDKValidationError
3742
+ > {
3743
+ return safeParse(
3744
+ jsonString,
3745
+ (x) =>
3746
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema
3747
+ .parse(JSON.parse(x)),
3748
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue' from JSON`,
3749
+ );
3750
+ }
3751
+
3752
+ /** @internal */
3753
+ export const PropertiesGitProviders$inboundSchema: z.ZodNativeEnum<
3754
+ typeof PropertiesGitProviders
3755
+ > = z.nativeEnum(PropertiesGitProviders);
3756
+ /** @internal */
3757
+ export const PropertiesGitProviders$outboundSchema: z.ZodNativeEnum<
3758
+ typeof PropertiesGitProviders
3759
+ > = PropertiesGitProviders$inboundSchema;
3760
+
3761
+ /** @internal */
3762
+ export const CreateIntegrationStoreDirectProperties10$inboundSchema: z.ZodType<
3763
+ CreateIntegrationStoreDirectProperties10,
3764
+ z.ZodTypeDef,
3765
+ unknown
3766
+ > = z.object({
3767
+ type:
3768
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema,
3769
+ "ui:control":
3770
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema,
3771
+ description: types.optional(types.string()),
3772
+ "ui:label": types.optional(types.string()),
3773
+ "ui:read-only": types.optional(
3774
+ smartUnion([
3775
+ z.lazy(() =>
3776
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3777
+ ),
3778
+ types.boolean(),
3779
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
3780
+ ]),
3781
+ ),
3782
+ "ui:hidden": types.optional(
3783
+ smartUnion([
3784
+ z.lazy(() =>
3785
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3786
+ ),
3787
+ types.boolean(),
3788
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
3789
+ ]),
3790
+ ),
3791
+ "ui:disabled": types.optional(
3792
+ smartUnion([
3793
+ z.lazy(() =>
3794
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3795
+ ),
3796
+ types.boolean(),
3797
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
3798
+ ]),
3799
+ ),
3800
+ "ui:description": types.optional(
3801
+ smartUnion([
3802
+ z.lazy(() =>
3803
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
3804
+ ),
3805
+ types.string(),
3806
+ ]),
3807
+ ),
3808
+ "ui:formatted-value": types.optional(
3809
+ z.lazy(() =>
3810
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema
3811
+ ),
3812
+ ),
3813
+ "ui:placeholder": types.optional(types.string()),
3814
+ "git:providers": types.optional(
3815
+ z.array(PropertiesGitProviders$inboundSchema),
3816
+ ),
3817
+ }).transform((v) => {
3818
+ return remap$(v, {
3819
+ "ui:control": "uiControl",
3820
+ "ui:label": "uiLabel",
3821
+ "ui:read-only": "uiReadOnly",
3822
+ "ui:hidden": "uiHidden",
3823
+ "ui:disabled": "uiDisabled",
3824
+ "ui:description": "uiDescription",
3825
+ "ui:formatted-value": "uiFormattedValue",
3826
+ "ui:placeholder": "uiPlaceholder",
3827
+ "git:providers": "gitProviders",
3828
+ });
3829
+ });
3830
+ /** @internal */
3831
+ export type CreateIntegrationStoreDirectProperties10$Outbound = {
3832
+ type: string;
3833
+ "ui:control": string;
3834
+ description?: string | undefined;
3835
+ "ui:label"?: string | undefined;
3836
+ "ui:read-only"?:
3837
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
3838
+ | boolean
3839
+ | string
3840
+ | undefined;
3841
+ "ui:hidden"?:
3842
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
3843
+ | boolean
3844
+ | string
3845
+ | undefined;
3846
+ "ui:disabled"?:
3847
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
3848
+ | boolean
3849
+ | string
3850
+ | undefined;
3851
+ "ui:description"?:
3852
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$Outbound
3853
+ | string
3854
+ | undefined;
3855
+ "ui:formatted-value"?:
3856
+ | CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$Outbound
3857
+ | undefined;
3858
+ "ui:placeholder"?: string | undefined;
3859
+ "git:providers"?: Array<string> | undefined;
3860
+ };
3861
+
3862
+ /** @internal */
3863
+ export const CreateIntegrationStoreDirectProperties10$outboundSchema: z.ZodType<
3864
+ CreateIntegrationStoreDirectProperties10$Outbound,
3865
+ z.ZodTypeDef,
3866
+ CreateIntegrationStoreDirectProperties10
3867
+ > = z.object({
3868
+ type:
3869
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$outboundSchema,
3870
+ uiControl:
3871
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$outboundSchema,
3872
+ description: z.string().optional(),
3873
+ uiLabel: z.string().optional(),
3874
+ uiReadOnly: smartUnion([
3875
+ z.lazy(() =>
3876
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3877
+ ),
3878
+ z.boolean(),
3879
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
3880
+ ]).optional(),
3881
+ uiHidden: smartUnion([
3882
+ z.lazy(() =>
3883
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3884
+ ),
3885
+ z.boolean(),
3886
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
3887
+ ]).optional(),
3888
+ uiDisabled: smartUnion([
3889
+ z.lazy(() =>
3890
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3891
+ ),
3892
+ z.boolean(),
3893
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
3894
+ ]).optional(),
3895
+ uiDescription: smartUnion([
3896
+ z.lazy(() =>
3897
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
3898
+ ),
3899
+ z.string(),
3900
+ ]).optional(),
3901
+ uiFormattedValue: z.lazy(() =>
3902
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema
3903
+ ).optional(),
3904
+ uiPlaceholder: z.string().optional(),
3905
+ gitProviders: z.array(PropertiesGitProviders$outboundSchema).optional(),
3906
+ }).transform((v) => {
3907
+ return remap$(v, {
3908
+ uiControl: "ui:control",
3909
+ uiLabel: "ui:label",
3910
+ uiReadOnly: "ui:read-only",
3911
+ uiHidden: "ui:hidden",
3912
+ uiDisabled: "ui:disabled",
3913
+ uiDescription: "ui:description",
3914
+ uiFormattedValue: "ui:formatted-value",
3915
+ uiPlaceholder: "ui:placeholder",
3916
+ gitProviders: "git:providers",
3917
+ });
3918
+ });
3919
+
3920
+ export function createIntegrationStoreDirectProperties10ToJSON(
3921
+ createIntegrationStoreDirectProperties10:
3922
+ CreateIntegrationStoreDirectProperties10,
3923
+ ): string {
3924
+ return JSON.stringify(
3925
+ CreateIntegrationStoreDirectProperties10$outboundSchema.parse(
3926
+ createIntegrationStoreDirectProperties10,
3927
+ ),
3928
+ );
3929
+ }
3930
+ export function createIntegrationStoreDirectProperties10FromJSON(
3931
+ jsonString: string,
3932
+ ): SafeParseResult<
3933
+ CreateIntegrationStoreDirectProperties10,
3934
+ SDKValidationError
3935
+ > {
3936
+ return safeParse(
3937
+ jsonString,
3938
+ (x) =>
3939
+ CreateIntegrationStoreDirectProperties10$inboundSchema.parse(
3940
+ JSON.parse(x),
3941
+ ),
3942
+ `Failed to parse 'CreateIntegrationStoreDirectProperties10' from JSON`,
3943
+ );
3944
+ }
3945
+
3946
+ /** @internal */
3947
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema:
3948
+ z.ZodNativeEnum<
3949
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType
3950
+ > = z.nativeEnum(
3951
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType,
3952
+ );
3953
+ /** @internal */
3954
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema:
3955
+ z.ZodNativeEnum<
3956
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType
3957
+ > =
3958
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema;
3959
+
3960
+ /** @internal */
3961
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema:
3962
+ z.ZodNativeEnum<
3963
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl
3964
+ > = z.nativeEnum(
3965
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl,
3966
+ );
3967
+ /** @internal */
3968
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$outboundSchema:
3969
+ z.ZodNativeEnum<
3970
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl
3971
+ > =
3972
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema;
3973
+
3974
+ /** @internal */
3975
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema:
3976
+ z.ZodNativeEnum<
3977
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
3978
+ > = z.nativeEnum(
3979
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3,
3980
+ );
3981
+ /** @internal */
3982
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema:
3983
+ z.ZodNativeEnum<
3984
+ typeof CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
3985
+ > =
3986
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema;
3987
+
3988
+ /** @internal */
3989
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema:
3990
+ z.ZodType<
3991
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
3992
+ z.ZodTypeDef,
3993
+ unknown
3994
+ > = z.object({
3995
+ expr: types.string(),
3996
+ });
3997
+ /** @internal */
3998
+ export type CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound =
3999
+ {
4000
+ expr: string;
4001
+ };
4002
+
4003
+ /** @internal */
4004
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema:
4005
+ z.ZodType<
4006
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound,
4007
+ z.ZodTypeDef,
4008
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
4009
+ > = z.object({
4010
+ expr: z.string(),
4011
+ });
4012
+
4013
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(
4014
+ createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2:
4015
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4016
+ ): string {
4017
+ return JSON.stringify(
4018
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4019
+ .parse(
4020
+ createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4021
+ ),
4022
+ );
4023
+ }
4024
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(
4025
+ jsonString: string,
4026
+ ): SafeParseResult<
4027
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4028
+ SDKValidationError
4029
+ > {
4030
+ return safeParse(
4031
+ jsonString,
4032
+ (x) =>
4033
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4034
+ .parse(JSON.parse(x)),
4035
+ `Failed to parse 'CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`,
4036
+ );
4037
+ }
4038
+
4039
+ /** @internal */
4040
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$inboundSchema:
4041
+ z.ZodType<
4042
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly,
4043
+ z.ZodTypeDef,
4044
+ unknown
4045
+ > = smartUnion([
4046
+ z.lazy(() =>
4047
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4048
+ ),
4049
+ types.boolean(),
4050
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
4051
+ ]);
4052
+ /** @internal */
4053
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$Outbound =
4054
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4055
+ | boolean
4056
+ | string;
4057
+
4058
+ /** @internal */
4059
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$outboundSchema:
4060
+ z.ZodType<
4061
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$Outbound,
4062
+ z.ZodTypeDef,
4063
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly
4064
+ > = smartUnion([
4065
+ z.lazy(() =>
4066
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4067
+ ),
4068
+ z.boolean(),
4069
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
4070
+ ]);
4071
+
4072
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyToJSON(
4073
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly:
4074
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly,
4075
+ ): string {
4076
+ return JSON.stringify(
4077
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$outboundSchema
4078
+ .parse(
4079
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly,
4080
+ ),
4081
+ );
4082
+ }
4083
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyFromJSON(
4084
+ jsonString: string,
4085
+ ): SafeParseResult<
4086
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly,
4087
+ SDKValidationError
4088
+ > {
4089
+ return safeParse(
4090
+ jsonString,
4091
+ (x) =>
4092
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$inboundSchema
4093
+ .parse(JSON.parse(x)),
4094
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly' from JSON`,
4095
+ );
4096
+ }
4097
+
4098
+ /** @internal */
4099
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema:
4100
+ z.ZodNativeEnum<
4101
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
4102
+ > = z.nativeEnum(
4103
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3,
4104
+ );
4105
+ /** @internal */
4106
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema:
4107
+ z.ZodNativeEnum<
4108
+ typeof CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
4109
+ > =
4110
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema;
4111
+
4112
+ /** @internal */
4113
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema:
4114
+ z.ZodType<
4115
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4116
+ z.ZodTypeDef,
4117
+ unknown
4118
+ > = z.object({
4119
+ expr: types.string(),
4120
+ });
4121
+ /** @internal */
4122
+ export type CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound =
4123
+ {
4124
+ expr: string;
4125
+ };
4126
+
4127
+ /** @internal */
4128
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema:
4129
+ z.ZodType<
4130
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound,
4131
+ z.ZodTypeDef,
4132
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
4133
+ > = z.object({
4134
+ expr: z.string(),
4135
+ });
4136
+
4137
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(
4138
+ createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2:
4139
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4140
+ ): string {
4141
+ return JSON.stringify(
4142
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4143
+ .parse(
4144
+ createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4145
+ ),
4146
+ );
4147
+ }
4148
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(
4149
+ jsonString: string,
4150
+ ): SafeParseResult<
4151
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4152
+ SDKValidationError
4153
+ > {
4154
+ return safeParse(
4155
+ jsonString,
4156
+ (x) =>
4157
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4158
+ .parse(JSON.parse(x)),
4159
+ `Failed to parse 'CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`,
4160
+ );
4161
+ }
4162
+
4163
+ /** @internal */
4164
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$inboundSchema:
4165
+ z.ZodType<
4166
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden,
4167
+ z.ZodTypeDef,
4168
+ unknown
4169
+ > = smartUnion([
4170
+ z.lazy(() =>
4171
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4172
+ ),
4173
+ types.boolean(),
4174
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
4175
+ ]);
4176
+ /** @internal */
4177
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$Outbound =
4178
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4179
+ | boolean
4180
+ | string;
4181
+
4182
+ /** @internal */
4183
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$outboundSchema:
4184
+ z.ZodType<
4185
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$Outbound,
4186
+ z.ZodTypeDef,
4187
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden
4188
+ > = smartUnion([
4189
+ z.lazy(() =>
4190
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4191
+ ),
4192
+ z.boolean(),
4193
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
4194
+ ]);
4195
+
4196
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenToJSON(
4197
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden:
4198
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden,
4199
+ ): string {
4200
+ return JSON.stringify(
4201
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$outboundSchema
4202
+ .parse(
4203
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden,
4204
+ ),
4205
+ );
4206
+ }
4207
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenFromJSON(
4208
+ jsonString: string,
4209
+ ): SafeParseResult<
4210
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden,
4211
+ SDKValidationError
4212
+ > {
4213
+ return safeParse(
4214
+ jsonString,
4215
+ (x) =>
4216
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$inboundSchema
4217
+ .parse(JSON.parse(x)),
4218
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden' from JSON`,
4219
+ );
4220
+ }
4221
+
4222
+ /** @internal */
4223
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema:
4224
+ z.ZodNativeEnum<
4225
+ typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
4226
+ > = z.nativeEnum(
4227
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3,
4228
+ );
4229
+ /** @internal */
4230
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema:
4231
+ z.ZodNativeEnum<
4232
+ typeof CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3
4233
+ > =
4234
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema;
4235
+
4236
+ /** @internal */
4237
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema:
4238
+ z.ZodType<
4239
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4240
+ z.ZodTypeDef,
4241
+ unknown
4242
+ > = z.object({
4243
+ expr: types.string(),
4244
+ });
4245
+ /** @internal */
4246
+ export type CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound =
4247
+ {
4248
+ expr: string;
4249
+ };
4250
+
4251
+ /** @internal */
4252
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema:
4253
+ z.ZodType<
4254
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound,
4255
+ z.ZodTypeDef,
4256
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
4257
+ > = z.object({
4258
+ expr: z.string(),
4259
+ });
4260
+
4261
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(
4262
+ createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2:
4263
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4264
+ ): string {
4265
+ return JSON.stringify(
4266
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4267
+ .parse(
4268
+ createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4269
+ ),
4270
+ );
4271
+ }
4272
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(
4273
+ jsonString: string,
4274
+ ): SafeParseResult<
4275
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4276
+ SDKValidationError
4277
+ > {
4278
+ return safeParse(
4279
+ jsonString,
4280
+ (x) =>
4281
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4282
+ .parse(JSON.parse(x)),
4283
+ `Failed to parse 'CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`,
4284
+ );
4285
+ }
4286
+
4287
+ /** @internal */
4288
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$inboundSchema:
4289
+ z.ZodType<
4290
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled,
4291
+ z.ZodTypeDef,
4292
+ unknown
4293
+ > = smartUnion([
4294
+ z.lazy(() =>
4295
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4296
+ ),
4297
+ types.boolean(),
4298
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
4299
+ ]);
4300
+ /** @internal */
4301
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$Outbound =
4302
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4303
+ | boolean
4304
+ | string;
4305
+
4306
+ /** @internal */
4307
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$outboundSchema:
4308
+ z.ZodType<
4309
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$Outbound,
4310
+ z.ZodTypeDef,
4311
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled
4312
+ > = smartUnion([
4313
+ z.lazy(() =>
4314
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4315
+ ),
4316
+ z.boolean(),
4317
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
4318
+ ]);
4319
+
4320
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledToJSON(
4321
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled:
4322
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled,
4323
+ ): string {
4324
+ return JSON.stringify(
4325
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$outboundSchema
4326
+ .parse(
4327
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled,
4328
+ ),
4329
+ );
4330
+ }
4331
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledFromJSON(
4332
+ jsonString: string,
4333
+ ): SafeParseResult<
4334
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled,
4335
+ SDKValidationError
4336
+ > {
4337
+ return safeParse(
4338
+ jsonString,
4339
+ (x) =>
4340
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$inboundSchema
4341
+ .parse(JSON.parse(x)),
4342
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled' from JSON`,
4343
+ );
4344
+ }
4345
+
4346
+ /** @internal */
4347
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema:
4348
+ z.ZodType<
4349
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4350
+ z.ZodTypeDef,
4351
+ unknown
4352
+ > = z.object({
4353
+ expr: types.string(),
4354
+ });
4355
+ /** @internal */
4356
+ export type CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound =
4357
+ {
4358
+ expr: string;
4359
+ };
4360
+
4361
+ /** @internal */
4362
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema:
4363
+ z.ZodType<
4364
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound,
4365
+ z.ZodTypeDef,
4366
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2
4367
+ > = z.object({
4368
+ expr: z.string(),
4369
+ });
4370
+
4371
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(
4372
+ createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2:
4373
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4374
+ ): string {
4375
+ return JSON.stringify(
4376
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4377
+ .parse(
4378
+ createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4379
+ ),
4380
+ );
4381
+ }
4382
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(
4383
+ jsonString: string,
4384
+ ): SafeParseResult<
4385
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2,
4386
+ SDKValidationError
4387
+ > {
4388
+ return safeParse(
4389
+ jsonString,
4390
+ (x) =>
4391
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4392
+ .parse(JSON.parse(x)),
4393
+ `Failed to parse 'CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`,
4394
+ );
4395
+ }
4396
+
4397
+ /** @internal */
4398
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$inboundSchema:
4399
+ z.ZodType<
4400
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription,
4401
+ z.ZodTypeDef,
4402
+ unknown
4403
+ > = smartUnion([
4404
+ z.lazy(() =>
4405
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4406
+ ),
4407
+ types.string(),
4408
+ ]);
4409
+ /** @internal */
4410
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$Outbound =
4411
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4412
+ | string;
4413
+
4414
+ /** @internal */
4415
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$outboundSchema:
4416
+ z.ZodType<
4417
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$Outbound,
4418
+ z.ZodTypeDef,
4419
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription
4420
+ > = smartUnion([
4421
+ z.lazy(() =>
4422
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4423
+ ),
4424
+ z.string(),
4425
+ ]);
4426
+
4427
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionToJSON(
4428
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription:
4429
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription,
4430
+ ): string {
4431
+ return JSON.stringify(
4432
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$outboundSchema
4433
+ .parse(
4434
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription,
4435
+ ),
4436
+ );
4437
+ }
4438
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionFromJSON(
4439
+ jsonString: string,
4440
+ ): SafeParseResult<
4441
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription,
4442
+ SDKValidationError
4443
+ > {
4444
+ return safeParse(
4445
+ jsonString,
4446
+ (x) =>
4447
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$inboundSchema
4448
+ .parse(JSON.parse(x)),
4449
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription' from JSON`,
4450
+ );
4451
+ }
4452
+
4453
+ /** @internal */
4454
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema:
4455
+ z.ZodType<
4456
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue,
4457
+ z.ZodTypeDef,
4458
+ unknown
4459
+ > = z.object({
4460
+ expr: types.string(),
4461
+ });
4462
+ /** @internal */
4463
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound =
4464
+ {
4465
+ expr: string;
4466
+ };
4467
+
4468
+ /** @internal */
4469
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema:
4470
+ z.ZodType<
4471
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound,
4472
+ z.ZodTypeDef,
4473
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue
4474
+ > = z.object({
4475
+ expr: z.string(),
4476
+ });
4477
+
4478
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueToJSON(
4479
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue:
4480
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue,
4481
+ ): string {
4482
+ return JSON.stringify(
4483
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema
4484
+ .parse(
4485
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue,
4486
+ ),
4487
+ );
4488
+ }
4489
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueFromJSON(
4490
+ jsonString: string,
4491
+ ): SafeParseResult<
4492
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue,
4493
+ SDKValidationError
4494
+ > {
4495
+ return safeParse(
4496
+ jsonString,
4497
+ (x) =>
4498
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema
4499
+ .parse(JSON.parse(x)),
4500
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue' from JSON`,
4501
+ );
4502
+ }
4503
+
4504
+ /** @internal */
4505
+ export const CreateIntegrationStoreDirectProperties9$inboundSchema: z.ZodType<
4506
+ CreateIntegrationStoreDirectProperties9,
4507
+ z.ZodTypeDef,
4508
+ unknown
4509
+ > = z.object({
4510
+ type:
4511
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema,
4512
+ "ui:control":
4513
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema,
4514
+ enum: types.optional(z.array(types.string())),
4515
+ maxLength: types.optional(types.number()),
4516
+ minLength: types.optional(types.number()),
4517
+ pattern: types.optional(types.string()),
4518
+ description: types.optional(types.string()),
4519
+ default: types.optional(types.string()),
4520
+ "ui:label": types.optional(types.string()),
4521
+ "ui:read-only": types.optional(
4522
+ smartUnion([
4523
+ z.lazy(() =>
4524
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4525
+ ),
4526
+ types.boolean(),
4527
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
4528
+ ]),
4529
+ ),
4530
+ "ui:hidden": types.optional(
4531
+ smartUnion([
4532
+ z.lazy(() =>
4533
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4534
+ ),
4535
+ types.boolean(),
4536
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
4537
+ ]),
4538
+ ),
4539
+ "ui:disabled": types.optional(
4540
+ smartUnion([
4541
+ z.lazy(() =>
4542
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4543
+ ),
4544
+ types.boolean(),
4545
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
4546
+ ]),
4547
+ ),
4548
+ "ui:description": types.optional(
4549
+ smartUnion([
4550
+ z.lazy(() =>
4551
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
4552
+ ),
4553
+ types.string(),
4554
+ ]),
4555
+ ),
4556
+ "ui:formatted-value": types.optional(
4557
+ z.lazy(() =>
4558
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema
4559
+ ),
4560
+ ),
4561
+ "ui:placeholder": types.optional(types.string()),
4562
+ }).transform((v) => {
4563
+ return remap$(v, {
4564
+ "ui:control": "uiControl",
4565
+ "ui:label": "uiLabel",
4566
+ "ui:read-only": "uiReadOnly",
4567
+ "ui:hidden": "uiHidden",
4568
+ "ui:disabled": "uiDisabled",
4569
+ "ui:description": "uiDescription",
4570
+ "ui:formatted-value": "uiFormattedValue",
4571
+ "ui:placeholder": "uiPlaceholder",
4572
+ });
4573
+ });
4574
+ /** @internal */
4575
+ export type CreateIntegrationStoreDirectProperties9$Outbound = {
4576
+ type: string;
4577
+ "ui:control": string;
4578
+ enum?: Array<string> | undefined;
4579
+ maxLength?: number | undefined;
4580
+ minLength?: number | undefined;
4581
+ pattern?: string | undefined;
4582
+ description?: string | undefined;
4583
+ default?: string | undefined;
4584
+ "ui:label"?: string | undefined;
4585
+ "ui:read-only"?:
4586
+ | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4587
+ | boolean
4588
+ | string
4589
+ | undefined;
4590
+ "ui:hidden"?:
4591
+ | CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4592
+ | boolean
4593
+ | string
4594
+ | undefined;
4595
+ "ui:disabled"?:
4596
+ | CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4597
+ | boolean
4598
+ | string
4599
+ | undefined;
4600
+ "ui:description"?:
4601
+ | CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$Outbound
4602
+ | string
4603
+ | undefined;
4604
+ "ui:formatted-value"?:
4605
+ | CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$Outbound
4606
+ | undefined;
4607
+ "ui:placeholder"?: string | undefined;
4608
+ };
4609
+
4610
+ /** @internal */
4611
+ export const CreateIntegrationStoreDirectProperties9$outboundSchema: z.ZodType<
4612
+ CreateIntegrationStoreDirectProperties9$Outbound,
4613
+ z.ZodTypeDef,
4614
+ CreateIntegrationStoreDirectProperties9
4615
+ > = z.object({
4616
+ type:
4617
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema,
4618
+ uiControl:
4619
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$outboundSchema,
4620
+ enum: z.array(z.string()).optional(),
4621
+ maxLength: z.number().optional(),
4622
+ minLength: z.number().optional(),
4623
+ pattern: z.string().optional(),
4624
+ description: z.string().optional(),
4625
+ default: z.string().optional(),
4626
+ uiLabel: z.string().optional(),
4627
+ uiReadOnly: smartUnion([
4628
+ z.lazy(() =>
4629
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4630
+ ),
4631
+ z.boolean(),
4632
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
4633
+ ]).optional(),
4634
+ uiHidden: smartUnion([
4635
+ z.lazy(() =>
4636
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4637
+ ),
4638
+ z.boolean(),
4639
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
4640
+ ]).optional(),
4641
+ uiDisabled: smartUnion([
4642
+ z.lazy(() =>
4643
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4644
+ ),
4645
+ z.boolean(),
4646
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
4647
+ ]).optional(),
4648
+ uiDescription: smartUnion([
4649
+ z.lazy(() =>
4650
+ CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
4651
+ ),
4652
+ z.string(),
4653
+ ]).optional(),
4654
+ uiFormattedValue: z.lazy(() =>
4655
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema
4656
+ ).optional(),
4657
+ uiPlaceholder: z.string().optional(),
4658
+ }).transform((v) => {
4659
+ return remap$(v, {
4660
+ uiControl: "ui:control",
4661
+ uiLabel: "ui:label",
4662
+ uiReadOnly: "ui:read-only",
4663
+ uiHidden: "ui:hidden",
4664
+ uiDisabled: "ui:disabled",
4665
+ uiDescription: "ui:description",
4666
+ uiFormattedValue: "ui:formatted-value",
4667
+ uiPlaceholder: "ui:placeholder",
4668
+ });
4669
+ });
4670
+
4671
+ export function createIntegrationStoreDirectProperties9ToJSON(
4672
+ createIntegrationStoreDirectProperties9:
4673
+ CreateIntegrationStoreDirectProperties9,
4674
+ ): string {
4675
+ return JSON.stringify(
4676
+ CreateIntegrationStoreDirectProperties9$outboundSchema.parse(
4677
+ createIntegrationStoreDirectProperties9,
4678
+ ),
4679
+ );
4680
+ }
4681
+ export function createIntegrationStoreDirectProperties9FromJSON(
4682
+ jsonString: string,
4683
+ ): SafeParseResult<
4684
+ CreateIntegrationStoreDirectProperties9,
4685
+ SDKValidationError
4686
+ > {
4687
+ return safeParse(
4688
+ jsonString,
4689
+ (x) =>
4690
+ CreateIntegrationStoreDirectProperties9$inboundSchema.parse(
4691
+ JSON.parse(x),
4692
+ ),
4693
+ `Failed to parse 'CreateIntegrationStoreDirectProperties9' from JSON`,
4694
+ );
4695
+ }
4696
+
4697
+ /** @internal */
4698
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema:
4699
+ z.ZodNativeEnum<
4700
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType
4701
+ > = z.nativeEnum(
4702
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType,
4703
+ );
4704
+ /** @internal */
4705
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema:
4706
+ z.ZodNativeEnum<
4707
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType
4708
+ > =
4709
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema;
4710
+
4711
+ /** @internal */
4712
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema:
4713
+ z.ZodNativeEnum<
4714
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type
4715
+ > = z.nativeEnum(
4716
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type,
4717
+ );
4718
+ /** @internal */
4719
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$outboundSchema:
4720
+ z.ZodNativeEnum<
4721
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type
4722
+ > =
4723
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema;
4724
+
4725
+ /** @internal */
4726
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema:
4727
+ z.ZodType<
4728
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems,
4729
+ z.ZodTypeDef,
4730
+ unknown
4731
+ > = z.object({
4732
+ type:
4733
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema,
4734
+ description: types.optional(types.string()),
4735
+ minLength: types.optional(types.number()),
4736
+ maxLength: types.optional(types.number()),
4737
+ pattern: types.optional(types.string()),
4738
+ default: types.optional(types.string()),
4739
+ enum: types.optional(z.array(types.string())),
4740
+ });
4741
+ /** @internal */
4742
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound =
4743
+ {
4744
+ type: string;
4745
+ description?: string | undefined;
4746
+ minLength?: number | undefined;
4747
+ maxLength?: number | undefined;
4748
+ pattern?: string | undefined;
4749
+ default?: string | undefined;
4750
+ enum?: Array<string> | undefined;
4751
+ };
4752
+
4753
+ /** @internal */
4754
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema:
4755
+ z.ZodType<
4756
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound,
4757
+ z.ZodTypeDef,
4758
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems
4759
+ > = z.object({
4760
+ type:
4761
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$outboundSchema,
4762
+ description: z.string().optional(),
4763
+ minLength: z.number().optional(),
4764
+ maxLength: z.number().optional(),
4765
+ pattern: z.string().optional(),
4766
+ default: z.string().optional(),
4767
+ enum: z.array(z.string()).optional(),
4768
+ });
4769
+
4770
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsToJSON(
4771
+ createIntegrationStoreDirectPropertiesIntegrationsResponseItems:
4772
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems,
4773
+ ): string {
4774
+ return JSON.stringify(
4775
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema
4776
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseItems),
4777
+ );
4778
+ }
4779
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsFromJSON(
4780
+ jsonString: string,
4781
+ ): SafeParseResult<
4782
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems,
4783
+ SDKValidationError
4784
+ > {
4785
+ return safeParse(
4786
+ jsonString,
4787
+ (x) =>
4788
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema
4789
+ .parse(JSON.parse(x)),
4790
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems' from JSON`,
4791
+ );
4792
+ }
4793
+
4794
+ /** @internal */
4795
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema:
4796
+ z.ZodNativeEnum<
4797
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
4798
+ > = z.nativeEnum(
4799
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl,
4800
+ );
4801
+ /** @internal */
4802
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema:
4803
+ z.ZodNativeEnum<
4804
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
4805
+ > =
4806
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
4807
+
4808
+ /** @internal */
4809
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema:
4810
+ z.ZodNativeEnum<
4811
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3
4812
+ > = z.nativeEnum(
4813
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3,
4814
+ );
4815
+ /** @internal */
4816
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema:
4817
+ z.ZodNativeEnum<
4818
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3
4819
+ > =
4820
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema;
4821
+
4822
+ /** @internal */
4823
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema:
4824
+ z.ZodType<
4825
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
4826
+ z.ZodTypeDef,
4827
+ unknown
4828
+ > = z.object({
4829
+ expr: types.string(),
4830
+ });
4831
+ /** @internal */
4832
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound =
4833
+ {
4834
+ expr: string;
4835
+ };
4836
+
4837
+ /** @internal */
4838
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema:
4839
+ z.ZodType<
4840
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound,
4841
+ z.ZodTypeDef,
4842
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2
4843
+ > = z.object({
4844
+ expr: z.string(),
4845
+ });
4846
+
4847
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(
4848
+ createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2:
4849
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
4850
+ ): string {
4851
+ return JSON.stringify(
4852
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
4853
+ .parse(
4854
+ createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
4855
+ ),
4856
+ );
4857
+ }
4858
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(
4859
+ jsonString: string,
4860
+ ): SafeParseResult<
4861
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
4862
+ SDKValidationError
4863
+ > {
4864
+ return safeParse(
4865
+ jsonString,
4866
+ (x) =>
4867
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
4868
+ .parse(JSON.parse(x)),
4869
+ `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2' from JSON`,
4870
+ );
4871
+ }
4872
+
4873
+ /** @internal */
4874
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$inboundSchema:
4875
+ z.ZodType<
4876
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled,
4877
+ z.ZodTypeDef,
4878
+ unknown
4879
+ > = smartUnion([
4880
+ z.lazy(() =>
4881
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
4882
+ ),
4883
+ types.boolean(),
4884
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
4885
+ ]);
4886
+ /** @internal */
4887
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$Outbound =
4888
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
4889
+ | boolean
4890
+ | string;
4891
+
4892
+ /** @internal */
4893
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$outboundSchema:
4894
+ z.ZodType<
4895
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$Outbound,
4896
+ z.ZodTypeDef,
4897
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled
4898
+ > = smartUnion([
4899
+ z.lazy(() =>
4900
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
4901
+ ),
4902
+ z.boolean(),
4903
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
4904
+ ]);
4905
+
4906
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledToJSON(
4907
+ createIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled:
4908
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled,
4909
+ ): string {
4910
+ return JSON.stringify(
4911
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$outboundSchema
4912
+ .parse(
4913
+ createIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled,
4914
+ ),
4915
+ );
4916
+ }
4917
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledFromJSON(
4918
+ jsonString: string,
4919
+ ): SafeParseResult<
4920
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled,
4921
+ SDKValidationError
4922
+ > {
4923
+ return safeParse(
4924
+ jsonString,
4925
+ (x) =>
4926
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$inboundSchema
4927
+ .parse(JSON.parse(x)),
4928
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled' from JSON`,
4929
+ );
4930
+ }
4931
+
4932
+ /** @internal */
4933
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema:
4934
+ z.ZodNativeEnum<
4935
+ typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3
4936
+ > = z.nativeEnum(
4937
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3,
4938
+ );
4939
+ /** @internal */
4940
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema:
4941
+ z.ZodNativeEnum<
4942
+ typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3
4943
+ > =
4944
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema;
4945
+
4946
+ /** @internal */
4947
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema:
4948
+ z.ZodType<
4949
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
4950
+ z.ZodTypeDef,
4951
+ unknown
4952
+ > = z.object({
4953
+ expr: types.string(),
4954
+ });
4955
+ /** @internal */
4956
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound =
4957
+ {
4958
+ expr: string;
4959
+ };
4960
+
4961
+ /** @internal */
4962
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema:
4963
+ z.ZodType<
4964
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound,
4965
+ z.ZodTypeDef,
4966
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2
4967
+ > = z.object({
4968
+ expr: z.string(),
4969
+ });
4970
+
4971
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(
4972
+ createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2:
4973
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
4974
+ ): string {
4975
+ return JSON.stringify(
4976
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
4977
+ .parse(
4978
+ createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
4979
+ ),
4980
+ );
4981
+ }
4982
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(
4983
+ jsonString: string,
4984
+ ): SafeParseResult<
4985
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
4986
+ SDKValidationError
4987
+ > {
4988
+ return safeParse(
4989
+ jsonString,
4990
+ (x) =>
4991
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
4992
+ .parse(JSON.parse(x)),
4993
+ `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2' from JSON`,
4994
+ );
4995
+ }
4996
+
4997
+ /** @internal */
4998
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$inboundSchema:
4999
+ z.ZodType<
5000
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden,
5001
+ z.ZodTypeDef,
5002
+ unknown
5003
+ > = smartUnion([
5004
+ z.lazy(() =>
5005
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5006
+ ),
5007
+ types.boolean(),
5008
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
5009
+ ]);
5010
+ /** @internal */
5011
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$Outbound =
5012
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
5013
+ | boolean
5014
+ | string;
5015
+
5016
+ /** @internal */
5017
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$outboundSchema:
5018
+ z.ZodType<
5019
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$Outbound,
5020
+ z.ZodTypeDef,
5021
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden
5022
+ > = smartUnion([
5023
+ z.lazy(() =>
5024
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5025
+ ),
5026
+ z.boolean(),
5027
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
5028
+ ]);
5029
+
5030
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenToJSON(
5031
+ createIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden:
5032
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden,
5033
+ ): string {
5034
+ return JSON.stringify(
5035
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$outboundSchema
5036
+ .parse(
5037
+ createIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden,
5038
+ ),
5039
+ );
5040
+ }
5041
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenFromJSON(
5042
+ jsonString: string,
5043
+ ): SafeParseResult<
5044
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden,
5045
+ SDKValidationError
5046
+ > {
5047
+ return safeParse(
5048
+ jsonString,
5049
+ (x) =>
5050
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$inboundSchema
5051
+ .parse(JSON.parse(x)),
5052
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden' from JSON`,
5053
+ );
5054
+ }
5055
+
5056
+ /** @internal */
5057
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema:
5058
+ z.ZodType<
5059
+ CreateIntegrationStoreDirectUiOptionsIntegrations3,
5060
+ z.ZodTypeDef,
5061
+ unknown
5062
+ > = z.object({
5063
+ value: types.string(),
5064
+ disabled: types.optional(
5065
+ smartUnion([
5066
+ z.lazy(() =>
5067
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5068
+ ),
5069
+ types.boolean(),
5070
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
5071
+ ]),
5072
+ ),
5073
+ hidden: types.optional(
5074
+ smartUnion([
5075
+ z.lazy(() =>
5076
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5077
+ ),
5078
+ types.boolean(),
5079
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
5080
+ ]),
5081
+ ),
5082
+ });
5083
+ /** @internal */
5084
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound = {
5085
+ value: string;
5086
+ disabled?:
5087
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
5088
+ | boolean
5089
+ | string
5090
+ | undefined;
5091
+ hidden?:
5092
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
5093
+ | boolean
5094
+ | string
5095
+ | undefined;
5096
+ };
5097
+
5098
+ /** @internal */
5099
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema:
5100
+ z.ZodType<
5101
+ CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound,
5102
+ z.ZodTypeDef,
5103
+ CreateIntegrationStoreDirectUiOptionsIntegrations3
5104
+ > = z.object({
5105
+ value: z.string(),
5106
+ disabled: smartUnion([
5107
+ z.lazy(() =>
5108
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5109
+ ),
5110
+ z.boolean(),
5111
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
5112
+ ]).optional(),
5113
+ hidden: smartUnion([
5114
+ z.lazy(() =>
5115
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5116
+ ),
5117
+ z.boolean(),
5118
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
5119
+ ]).optional(),
5120
+ });
5121
+
5122
+ export function createIntegrationStoreDirectUiOptionsIntegrations3ToJSON(
5123
+ createIntegrationStoreDirectUiOptionsIntegrations3:
5124
+ CreateIntegrationStoreDirectUiOptionsIntegrations3,
5125
+ ): string {
5126
+ return JSON.stringify(
5127
+ CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema.parse(
5128
+ createIntegrationStoreDirectUiOptionsIntegrations3,
5129
+ ),
5130
+ );
5131
+ }
5132
+ export function createIntegrationStoreDirectUiOptionsIntegrations3FromJSON(
5133
+ jsonString: string,
5134
+ ): SafeParseResult<
5135
+ CreateIntegrationStoreDirectUiOptionsIntegrations3,
5136
+ SDKValidationError
5137
+ > {
5138
+ return safeParse(
5139
+ jsonString,
5140
+ (x) =>
5141
+ CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema.parse(
5142
+ JSON.parse(x),
5143
+ ),
5144
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrations3' from JSON`,
5145
+ );
5146
+ }
5147
+
5148
+ /** @internal */
5149
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema:
5150
+ z.ZodNativeEnum<
5151
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3
5152
+ > = z.nativeEnum(
5153
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3,
5154
+ );
5155
+ /** @internal */
5156
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema:
5157
+ z.ZodNativeEnum<
5158
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3
5159
+ > =
5160
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema;
5161
+
5162
+ /** @internal */
5163
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema:
5164
+ z.ZodType<
5165
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
5166
+ z.ZodTypeDef,
5167
+ unknown
5168
+ > = z.object({
5169
+ expr: types.string(),
5170
+ });
5171
+ /** @internal */
5172
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound =
5173
+ {
5174
+ expr: string;
5175
+ };
5176
+
5177
+ /** @internal */
5178
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema:
5179
+ z.ZodType<
5180
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound,
5181
+ z.ZodTypeDef,
5182
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2
5183
+ > = z.object({
5184
+ expr: z.string(),
5185
+ });
5186
+
5187
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2ToJSON(
5188
+ createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2:
5189
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
5190
+ ): string {
5191
+ return JSON.stringify(
5192
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
5193
+ .parse(
5194
+ createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
5195
+ ),
5196
+ );
5197
+ }
5198
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2FromJSON(
5199
+ jsonString: string,
5200
+ ): SafeParseResult<
5201
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
5202
+ SDKValidationError
5203
+ > {
5204
+ return safeParse(
5205
+ jsonString,
5206
+ (x) =>
5207
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
5208
+ .parse(JSON.parse(x)),
5209
+ `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2' from JSON`,
5210
+ );
5211
+ }
5212
+
5213
+ /** @internal */
5214
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$inboundSchema:
5215
+ z.ZodType<
5216
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled,
5217
+ z.ZodTypeDef,
5218
+ unknown
5219
+ > = smartUnion([
5220
+ z.lazy(() =>
5221
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
5222
+ ),
5223
+ types.boolean(),
5224
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
5225
+ ]);
5226
+ /** @internal */
5227
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$Outbound =
5228
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound
5229
+ | boolean
5230
+ | string;
5231
+
5232
+ /** @internal */
5233
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$outboundSchema:
5234
+ z.ZodType<
5235
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$Outbound,
5236
+ z.ZodTypeDef,
5237
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled
5238
+ > = smartUnion([
5239
+ z.lazy(() =>
5240
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
5241
+ ),
5242
+ z.boolean(),
5243
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
5244
+ ]);
5245
+
5246
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledToJSON(
5247
+ createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled:
5248
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled,
5249
+ ): string {
5250
+ return JSON.stringify(
5251
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$outboundSchema
5252
+ .parse(createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled),
5253
+ );
5254
+ }
5255
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledFromJSON(
5256
+ jsonString: string,
5257
+ ): SafeParseResult<
5258
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled,
5259
+ SDKValidationError
5260
+ > {
5261
+ return safeParse(
5262
+ jsonString,
5263
+ (x) =>
5264
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$inboundSchema
5265
+ .parse(JSON.parse(x)),
5266
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled' from JSON`,
5267
+ );
5268
+ }
5269
+
5270
+ /** @internal */
5271
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema:
5272
+ z.ZodNativeEnum<
5273
+ typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3
5274
+ > = z.nativeEnum(
5275
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3,
5276
+ );
5277
+ /** @internal */
5278
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema:
5279
+ z.ZodNativeEnum<
5280
+ typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3
5281
+ > =
5282
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema;
2931
5283
 
2932
5284
  /** @internal */
2933
- export const CreateIntegrationStoreDirectHidden2$inboundSchema: z.ZodType<
2934
- CreateIntegrationStoreDirectHidden2,
2935
- z.ZodTypeDef,
2936
- unknown
2937
- > = z.object({
2938
- expr: types.string(),
2939
- });
5285
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema:
5286
+ z.ZodType<
5287
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
5288
+ z.ZodTypeDef,
5289
+ unknown
5290
+ > = z.object({
5291
+ expr: types.string(),
5292
+ });
2940
5293
  /** @internal */
2941
- export type CreateIntegrationStoreDirectHidden2$Outbound = {
2942
- expr: string;
2943
- };
5294
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound =
5295
+ {
5296
+ expr: string;
5297
+ };
2944
5298
 
2945
5299
  /** @internal */
2946
- export const CreateIntegrationStoreDirectHidden2$outboundSchema: z.ZodType<
2947
- CreateIntegrationStoreDirectHidden2$Outbound,
2948
- z.ZodTypeDef,
2949
- CreateIntegrationStoreDirectHidden2
2950
- > = z.object({
2951
- expr: z.string(),
2952
- });
5300
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema:
5301
+ z.ZodType<
5302
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound,
5303
+ z.ZodTypeDef,
5304
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2
5305
+ > = z.object({
5306
+ expr: z.string(),
5307
+ });
2953
5308
 
2954
- export function createIntegrationStoreDirectHidden2ToJSON(
2955
- createIntegrationStoreDirectHidden2: CreateIntegrationStoreDirectHidden2,
5309
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2ToJSON(
5310
+ createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2:
5311
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
2956
5312
  ): string {
2957
5313
  return JSON.stringify(
2958
- CreateIntegrationStoreDirectHidden2$outboundSchema.parse(
2959
- createIntegrationStoreDirectHidden2,
2960
- ),
5314
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
5315
+ .parse(
5316
+ createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
5317
+ ),
2961
5318
  );
2962
5319
  }
2963
- export function createIntegrationStoreDirectHidden2FromJSON(
5320
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2FromJSON(
2964
5321
  jsonString: string,
2965
- ): SafeParseResult<CreateIntegrationStoreDirectHidden2, SDKValidationError> {
5322
+ ): SafeParseResult<
5323
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
5324
+ SDKValidationError
5325
+ > {
2966
5326
  return safeParse(
2967
5327
  jsonString,
2968
5328
  (x) =>
2969
- CreateIntegrationStoreDirectHidden2$inboundSchema.parse(JSON.parse(x)),
2970
- `Failed to parse 'CreateIntegrationStoreDirectHidden2' from JSON`,
5329
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
5330
+ .parse(JSON.parse(x)),
5331
+ `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2' from JSON`,
2971
5332
  );
2972
5333
  }
2973
5334
 
2974
5335
  /** @internal */
2975
- export const CreateIntegrationStoreDirectPropertiesHidden$inboundSchema:
5336
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$inboundSchema:
2976
5337
  z.ZodType<
2977
- CreateIntegrationStoreDirectPropertiesHidden,
5338
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden,
2978
5339
  z.ZodTypeDef,
2979
5340
  unknown
2980
5341
  > = smartUnion([
2981
- z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
5342
+ z.lazy(() =>
5343
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
5344
+ ),
2982
5345
  types.boolean(),
2983
- CreateIntegrationStoreDirectHidden3$inboundSchema,
5346
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
2984
5347
  ]);
2985
5348
  /** @internal */
2986
- export type CreateIntegrationStoreDirectPropertiesHidden$Outbound =
2987
- | CreateIntegrationStoreDirectHidden2$Outbound
5349
+ export type CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$Outbound =
5350
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound
2988
5351
  | boolean
2989
5352
  | string;
2990
5353
 
2991
5354
  /** @internal */
2992
- export const CreateIntegrationStoreDirectPropertiesHidden$outboundSchema:
5355
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$outboundSchema:
2993
5356
  z.ZodType<
2994
- CreateIntegrationStoreDirectPropertiesHidden$Outbound,
5357
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$Outbound,
2995
5358
  z.ZodTypeDef,
2996
- CreateIntegrationStoreDirectPropertiesHidden
5359
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden
2997
5360
  > = smartUnion([
2998
- z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
5361
+ z.lazy(() =>
5362
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
5363
+ ),
2999
5364
  z.boolean(),
3000
- CreateIntegrationStoreDirectHidden3$outboundSchema,
5365
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
3001
5366
  ]);
3002
5367
 
3003
- export function createIntegrationStoreDirectPropertiesHiddenToJSON(
3004
- createIntegrationStoreDirectPropertiesHidden:
3005
- CreateIntegrationStoreDirectPropertiesHidden,
5368
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenToJSON(
5369
+ createIntegrationStoreDirectUiOptionsIntegrationsResponseHidden:
5370
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden,
3006
5371
  ): string {
3007
5372
  return JSON.stringify(
3008
- CreateIntegrationStoreDirectPropertiesHidden$outboundSchema.parse(
3009
- createIntegrationStoreDirectPropertiesHidden,
3010
- ),
5373
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$outboundSchema
5374
+ .parse(createIntegrationStoreDirectUiOptionsIntegrationsResponseHidden),
3011
5375
  );
3012
5376
  }
3013
- export function createIntegrationStoreDirectPropertiesHiddenFromJSON(
5377
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenFromJSON(
3014
5378
  jsonString: string,
3015
5379
  ): SafeParseResult<
3016
- CreateIntegrationStoreDirectPropertiesHidden,
5380
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden,
3017
5381
  SDKValidationError
3018
5382
  > {
3019
5383
  return safeParse(
3020
5384
  jsonString,
3021
5385
  (x) =>
3022
- CreateIntegrationStoreDirectPropertiesHidden$inboundSchema.parse(
3023
- JSON.parse(x),
3024
- ),
3025
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesHidden' from JSON`,
5386
+ CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$inboundSchema
5387
+ .parse(JSON.parse(x)),
5388
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden' from JSON`,
3026
5389
  );
3027
5390
  }
3028
5391
 
3029
5392
  /** @internal */
3030
- export const CreateIntegrationStoreDirectProperties9$inboundSchema: z.ZodType<
3031
- CreateIntegrationStoreDirectProperties9,
3032
- z.ZodTypeDef,
3033
- unknown
3034
- > = z.object({
3035
- value: types.string(),
3036
- disabled: types.optional(
3037
- smartUnion([
3038
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
3039
- types.boolean(),
3040
- CreateIntegrationStoreDirectDisabled3$inboundSchema,
3041
- ]),
3042
- ),
3043
- hidden: types.optional(
3044
- smartUnion([
3045
- z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
3046
- types.boolean(),
3047
- CreateIntegrationStoreDirectHidden3$inboundSchema,
3048
- ]),
3049
- ),
3050
- });
5393
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema:
5394
+ z.ZodType<
5395
+ CreateIntegrationStoreDirectUiOptionsIntegrations1,
5396
+ z.ZodTypeDef,
5397
+ unknown
5398
+ > = z.object({
5399
+ value: types.string(),
5400
+ label: types.string(),
5401
+ disabled: types.optional(
5402
+ smartUnion([
5403
+ z.lazy(() =>
5404
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
5405
+ ),
5406
+ types.boolean(),
5407
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
5408
+ ]),
5409
+ ),
5410
+ hidden: types.optional(
5411
+ smartUnion([
5412
+ z.lazy(() =>
5413
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
5414
+ ),
5415
+ types.boolean(),
5416
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
5417
+ ]),
5418
+ ),
5419
+ });
3051
5420
  /** @internal */
3052
- export type CreateIntegrationStoreDirectProperties9$Outbound = {
5421
+ export type CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound = {
3053
5422
  value: string;
5423
+ label: string;
3054
5424
  disabled?:
3055
- | CreateIntegrationStoreDirectDisabled2$Outbound
5425
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound
3056
5426
  | boolean
3057
5427
  | string
3058
5428
  | undefined;
3059
5429
  hidden?:
3060
- | CreateIntegrationStoreDirectHidden2$Outbound
5430
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound
3061
5431
  | boolean
3062
5432
  | string
3063
5433
  | undefined;
3064
5434
  };
3065
5435
 
3066
5436
  /** @internal */
3067
- export const CreateIntegrationStoreDirectProperties9$outboundSchema: z.ZodType<
3068
- CreateIntegrationStoreDirectProperties9$Outbound,
3069
- z.ZodTypeDef,
3070
- CreateIntegrationStoreDirectProperties9
3071
- > = z.object({
3072
- value: z.string(),
3073
- disabled: smartUnion([
3074
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
3075
- z.boolean(),
3076
- CreateIntegrationStoreDirectDisabled3$outboundSchema,
3077
- ]).optional(),
3078
- hidden: smartUnion([
3079
- z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
3080
- z.boolean(),
3081
- CreateIntegrationStoreDirectHidden3$outboundSchema,
3082
- ]).optional(),
3083
- });
5437
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema:
5438
+ z.ZodType<
5439
+ CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound,
5440
+ z.ZodTypeDef,
5441
+ CreateIntegrationStoreDirectUiOptionsIntegrations1
5442
+ > = z.object({
5443
+ value: z.string(),
5444
+ label: z.string(),
5445
+ disabled: smartUnion([
5446
+ z.lazy(() =>
5447
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
5448
+ ),
5449
+ z.boolean(),
5450
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
5451
+ ]).optional(),
5452
+ hidden: smartUnion([
5453
+ z.lazy(() =>
5454
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
5455
+ ),
5456
+ z.boolean(),
5457
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
5458
+ ]).optional(),
5459
+ });
3084
5460
 
3085
- export function createIntegrationStoreDirectProperties9ToJSON(
3086
- createIntegrationStoreDirectProperties9:
3087
- CreateIntegrationStoreDirectProperties9,
5461
+ export function createIntegrationStoreDirectUiOptionsIntegrations1ToJSON(
5462
+ createIntegrationStoreDirectUiOptionsIntegrations1:
5463
+ CreateIntegrationStoreDirectUiOptionsIntegrations1,
3088
5464
  ): string {
3089
5465
  return JSON.stringify(
3090
- CreateIntegrationStoreDirectProperties9$outboundSchema.parse(
3091
- createIntegrationStoreDirectProperties9,
5466
+ CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema.parse(
5467
+ createIntegrationStoreDirectUiOptionsIntegrations1,
3092
5468
  ),
3093
5469
  );
3094
5470
  }
3095
- export function createIntegrationStoreDirectProperties9FromJSON(
5471
+ export function createIntegrationStoreDirectUiOptionsIntegrations1FromJSON(
3096
5472
  jsonString: string,
3097
5473
  ): SafeParseResult<
3098
- CreateIntegrationStoreDirectProperties9,
5474
+ CreateIntegrationStoreDirectUiOptionsIntegrations1,
3099
5475
  SDKValidationError
3100
5476
  > {
3101
5477
  return safeParse(
3102
5478
  jsonString,
3103
5479
  (x) =>
3104
- CreateIntegrationStoreDirectProperties9$inboundSchema.parse(
5480
+ CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema.parse(
3105
5481
  JSON.parse(x),
3106
5482
  ),
3107
- `Failed to parse 'CreateIntegrationStoreDirectProperties9' from JSON`,
5483
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrations1' from JSON`,
3108
5484
  );
3109
5485
  }
3110
5486
 
3111
5487
  /** @internal */
3112
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema:
3113
- z.ZodNativeEnum<
3114
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType
3115
- > = z.nativeEnum(
3116
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType,
3117
- );
5488
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$inboundSchema:
5489
+ z.ZodType<
5490
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions,
5491
+ z.ZodTypeDef,
5492
+ unknown
5493
+ > = smartUnion([
5494
+ z.lazy(() =>
5495
+ CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema
5496
+ ),
5497
+ z.lazy(() =>
5498
+ CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema
5499
+ ),
5500
+ types.string(),
5501
+ ]);
3118
5502
  /** @internal */
3119
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema:
3120
- z.ZodNativeEnum<
3121
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType
3122
- > =
3123
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema;
5503
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$Outbound =
5504
+ | CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound
5505
+ | CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound
5506
+ | string;
3124
5507
 
3125
5508
  /** @internal */
3126
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema:
3127
- z.ZodNativeEnum<
3128
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
3129
- > = z.nativeEnum(
3130
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl,
5509
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$outboundSchema:
5510
+ z.ZodType<
5511
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$Outbound,
5512
+ z.ZodTypeDef,
5513
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions
5514
+ > = smartUnion([
5515
+ z.lazy(() =>
5516
+ CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema
5517
+ ),
5518
+ z.lazy(() =>
5519
+ CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema
5520
+ ),
5521
+ z.string(),
5522
+ ]);
5523
+
5524
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsToJSON(
5525
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions:
5526
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions,
5527
+ ): string {
5528
+ return JSON.stringify(
5529
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$outboundSchema
5530
+ .parse(
5531
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions,
5532
+ ),
3131
5533
  );
3132
- /** @internal */
3133
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema:
3134
- z.ZodNativeEnum<
3135
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
3136
- > =
3137
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
5534
+ }
5535
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsFromJSON(
5536
+ jsonString: string,
5537
+ ): SafeParseResult<
5538
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions,
5539
+ SDKValidationError
5540
+ > {
5541
+ return safeParse(
5542
+ jsonString,
5543
+ (x) =>
5544
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$inboundSchema
5545
+ .parse(JSON.parse(x)),
5546
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions' from JSON`,
5547
+ );
5548
+ }
3138
5549
 
3139
5550
  /** @internal */
3140
5551
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema:
@@ -3674,14 +6085,25 @@ export const CreateIntegrationStoreDirectProperties8$inboundSchema: z.ZodType<
3674
6085
  > = z.object({
3675
6086
  type:
3676
6087
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema,
6088
+ items: z.lazy(() =>
6089
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema
6090
+ ),
3677
6091
  "ui:control":
3678
6092
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema,
3679
- enum: types.optional(z.array(types.string())),
3680
- maxLength: types.optional(types.number()),
3681
- minLength: types.optional(types.number()),
3682
- pattern: types.optional(types.string()),
6093
+ "ui:options": z.array(
6094
+ smartUnion([
6095
+ z.lazy(() =>
6096
+ CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema
6097
+ ),
6098
+ z.lazy(() =>
6099
+ CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema
6100
+ ),
6101
+ types.string(),
6102
+ ]),
6103
+ ),
6104
+ maxItems: types.optional(types.number()),
6105
+ minItems: types.optional(types.number()),
3683
6106
  description: types.optional(types.string()),
3684
- default: types.optional(types.string()),
3685
6107
  "ui:label": types.optional(types.string()),
3686
6108
  "ui:read-only": types.optional(
3687
6109
  smartUnion([
@@ -3724,9 +6146,12 @@ export const CreateIntegrationStoreDirectProperties8$inboundSchema: z.ZodType<
3724
6146
  ),
3725
6147
  ),
3726
6148
  "ui:placeholder": types.optional(types.string()),
6149
+ default: types.optional(z.array(types.string())),
6150
+ example: types.optional(z.array(types.string())),
3727
6151
  }).transform((v) => {
3728
6152
  return remap$(v, {
3729
6153
  "ui:control": "uiControl",
6154
+ "ui:options": "uiOptions",
3730
6155
  "ui:label": "uiLabel",
3731
6156
  "ui:read-only": "uiReadOnly",
3732
6157
  "ui:hidden": "uiHidden",
@@ -3739,13 +6164,17 @@ export const CreateIntegrationStoreDirectProperties8$inboundSchema: z.ZodType<
3739
6164
  /** @internal */
3740
6165
  export type CreateIntegrationStoreDirectProperties8$Outbound = {
3741
6166
  type: string;
6167
+ items:
6168
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$Outbound;
3742
6169
  "ui:control": string;
3743
- enum?: Array<string> | undefined;
3744
- maxLength?: number | undefined;
3745
- minLength?: number | undefined;
3746
- pattern?: string | undefined;
6170
+ "ui:options": Array<
6171
+ | CreateIntegrationStoreDirectUiOptionsIntegrations1$Outbound
6172
+ | CreateIntegrationStoreDirectUiOptionsIntegrations3$Outbound
6173
+ | string
6174
+ >;
6175
+ maxItems?: number | undefined;
6176
+ minItems?: number | undefined;
3747
6177
  description?: string | undefined;
3748
- default?: string | undefined;
3749
6178
  "ui:label"?: string | undefined;
3750
6179
  "ui:read-only"?:
3751
6180
  | CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$Outbound
@@ -3770,6 +6199,8 @@ export type CreateIntegrationStoreDirectProperties8$Outbound = {
3770
6199
  | CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$Outbound
3771
6200
  | undefined;
3772
6201
  "ui:placeholder"?: string | undefined;
6202
+ default?: Array<string> | undefined;
6203
+ example?: Array<string> | undefined;
3773
6204
  };
3774
6205
 
3775
6206
  /** @internal */
@@ -3780,14 +6211,25 @@ export const CreateIntegrationStoreDirectProperties8$outboundSchema: z.ZodType<
3780
6211
  > = z.object({
3781
6212
  type:
3782
6213
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema,
6214
+ items: z.lazy(() =>
6215
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema
6216
+ ),
3783
6217
  uiControl:
3784
6218
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema,
3785
- enum: z.array(z.string()).optional(),
3786
- maxLength: z.number().optional(),
3787
- minLength: z.number().optional(),
3788
- pattern: z.string().optional(),
6219
+ uiOptions: z.array(
6220
+ smartUnion([
6221
+ z.lazy(() =>
6222
+ CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema
6223
+ ),
6224
+ z.lazy(() =>
6225
+ CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema
6226
+ ),
6227
+ z.string(),
6228
+ ]),
6229
+ ),
6230
+ maxItems: z.number().optional(),
6231
+ minItems: z.number().optional(),
3789
6232
  description: z.string().optional(),
3790
- default: z.string().optional(),
3791
6233
  uiLabel: z.string().optional(),
3792
6234
  uiReadOnly: smartUnion([
3793
6235
  z.lazy(() =>
@@ -3820,9 +6262,12 @@ export const CreateIntegrationStoreDirectProperties8$outboundSchema: z.ZodType<
3820
6262
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$outboundSchema
3821
6263
  ).optional(),
3822
6264
  uiPlaceholder: z.string().optional(),
6265
+ default: z.array(z.string()).optional(),
6266
+ example: z.array(z.string()).optional(),
3823
6267
  }).transform((v) => {
3824
6268
  return remap$(v, {
3825
6269
  uiControl: "ui:control",
6270
+ uiOptions: "ui:options",
3826
6271
  uiLabel: "ui:label",
3827
6272
  uiReadOnly: "ui:read-only",
3828
6273
  uiHidden: "ui:hidden",
@@ -4210,67 +6655,62 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(
4210
6655
  }
4211
6656
 
4212
6657
  /** @internal */
4213
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema:
6658
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema:
4214
6659
  z.ZodNativeEnum<
4215
- typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3
4216
- > = z.nativeEnum(
4217
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3,
4218
- );
6660
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3
6661
+ > = z.nativeEnum(CreateIntegrationStoreDirectDisabledIntegrationsResponse3);
4219
6662
  /** @internal */
4220
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema:
6663
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema:
4221
6664
  z.ZodNativeEnum<
4222
- typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3
4223
- > =
4224
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema;
6665
+ typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3
6666
+ > = CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema;
4225
6667
 
4226
6668
  /** @internal */
4227
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema:
6669
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema:
4228
6670
  z.ZodType<
4229
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
6671
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2,
4230
6672
  z.ZodTypeDef,
4231
6673
  unknown
4232
6674
  > = z.object({
4233
6675
  expr: types.string(),
4234
6676
  });
4235
6677
  /** @internal */
4236
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound =
6678
+ export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound =
4237
6679
  {
4238
6680
  expr: string;
4239
6681
  };
4240
6682
 
4241
6683
  /** @internal */
4242
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema:
6684
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema:
4243
6685
  z.ZodType<
4244
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound,
6686
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound,
4245
6687
  z.ZodTypeDef,
4246
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2
6688
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2
4247
6689
  > = z.object({
4248
6690
  expr: z.string(),
4249
6691
  });
4250
6692
 
4251
- export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2ToJSON(
4252
- createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2:
4253
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
6693
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse2ToJSON(
6694
+ createIntegrationStoreDirectDisabledIntegrationsResponse2:
6695
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2,
4254
6696
  ): string {
4255
6697
  return JSON.stringify(
4256
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
4257
- .parse(
4258
- createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
4259
- ),
6698
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
6699
+ .parse(createIntegrationStoreDirectDisabledIntegrationsResponse2),
4260
6700
  );
4261
6701
  }
4262
- export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2FromJSON(
6702
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse2FromJSON(
4263
6703
  jsonString: string,
4264
6704
  ): SafeParseResult<
4265
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2,
6705
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2,
4266
6706
  SDKValidationError
4267
6707
  > {
4268
6708
  return safeParse(
4269
6709
  jsonString,
4270
6710
  (x) =>
4271
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
6711
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
4272
6712
  .parse(JSON.parse(x)),
4273
- `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2' from JSON`,
6713
+ `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse2' from JSON`,
4274
6714
  );
4275
6715
  }
4276
6716
 
@@ -4282,14 +6722,14 @@ export const CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema:
4282
6722
  unknown
4283
6723
  > = smartUnion([
4284
6724
  z.lazy(() =>
4285
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
6725
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
4286
6726
  ),
4287
6727
  types.boolean(),
4288
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
6728
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
4289
6729
  ]);
4290
6730
  /** @internal */
4291
6731
  export type CreateIntegrationStoreDirectUiOptionsDisabled$Outbound =
4292
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound
6732
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound
4293
6733
  | boolean
4294
6734
  | string;
4295
6735
 
@@ -4301,10 +6741,10 @@ export const CreateIntegrationStoreDirectUiOptionsDisabled$outboundSchema:
4301
6741
  CreateIntegrationStoreDirectUiOptionsDisabled
4302
6742
  > = smartUnion([
4303
6743
  z.lazy(() =>
4304
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
6744
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
4305
6745
  ),
4306
6746
  z.boolean(),
4307
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
6747
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
4308
6748
  ]);
4309
6749
 
4310
6750
  export function createIntegrationStoreDirectUiOptionsDisabledToJSON(
@@ -4334,67 +6774,61 @@ export function createIntegrationStoreDirectUiOptionsDisabledFromJSON(
4334
6774
  }
4335
6775
 
4336
6776
  /** @internal */
4337
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema:
6777
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema:
4338
6778
  z.ZodNativeEnum<
4339
- typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3
4340
- > = z.nativeEnum(
4341
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3,
4342
- );
6779
+ typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3
6780
+ > = z.nativeEnum(CreateIntegrationStoreDirectHiddenIntegrationsResponse3);
4343
6781
  /** @internal */
4344
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema:
6782
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema:
4345
6783
  z.ZodNativeEnum<
4346
- typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3
4347
- > =
4348
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema;
6784
+ typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3
6785
+ > = CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema;
4349
6786
 
4350
6787
  /** @internal */
4351
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema:
6788
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema:
4352
6789
  z.ZodType<
4353
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
6790
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2,
4354
6791
  z.ZodTypeDef,
4355
6792
  unknown
4356
6793
  > = z.object({
4357
6794
  expr: types.string(),
4358
6795
  });
4359
6796
  /** @internal */
4360
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound =
4361
- {
4362
- expr: string;
4363
- };
6797
+ export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound = {
6798
+ expr: string;
6799
+ };
4364
6800
 
4365
6801
  /** @internal */
4366
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema:
6802
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema:
4367
6803
  z.ZodType<
4368
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound,
6804
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound,
4369
6805
  z.ZodTypeDef,
4370
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2
6806
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2
4371
6807
  > = z.object({
4372
6808
  expr: z.string(),
4373
6809
  });
4374
6810
 
4375
- export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2ToJSON(
4376
- createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2:
4377
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
6811
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse2ToJSON(
6812
+ createIntegrationStoreDirectHiddenIntegrationsResponse2:
6813
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2,
4378
6814
  ): string {
4379
6815
  return JSON.stringify(
4380
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
4381
- .parse(
4382
- createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
4383
- ),
6816
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
6817
+ .parse(createIntegrationStoreDirectHiddenIntegrationsResponse2),
4384
6818
  );
4385
6819
  }
4386
- export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2FromJSON(
6820
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse2FromJSON(
4387
6821
  jsonString: string,
4388
6822
  ): SafeParseResult<
4389
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2,
6823
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2,
4390
6824
  SDKValidationError
4391
6825
  > {
4392
6826
  return safeParse(
4393
6827
  jsonString,
4394
6828
  (x) =>
4395
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
6829
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
4396
6830
  .parse(JSON.parse(x)),
4397
- `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2' from JSON`,
6831
+ `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse2' from JSON`,
4398
6832
  );
4399
6833
  }
4400
6834
 
@@ -4406,14 +6840,14 @@ export const CreateIntegrationStoreDirectUiOptionsHidden$inboundSchema:
4406
6840
  unknown
4407
6841
  > = smartUnion([
4408
6842
  z.lazy(() =>
4409
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
6843
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
4410
6844
  ),
4411
6845
  types.boolean(),
4412
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
6846
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
4413
6847
  ]);
4414
6848
  /** @internal */
4415
6849
  export type CreateIntegrationStoreDirectUiOptionsHidden$Outbound =
4416
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound
6850
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound
4417
6851
  | boolean
4418
6852
  | string;
4419
6853
 
@@ -4425,10 +6859,10 @@ export const CreateIntegrationStoreDirectUiOptionsHidden$outboundSchema:
4425
6859
  CreateIntegrationStoreDirectUiOptionsHidden
4426
6860
  > = smartUnion([
4427
6861
  z.lazy(() =>
4428
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
6862
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
4429
6863
  ),
4430
6864
  z.boolean(),
4431
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
6865
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
4432
6866
  ]);
4433
6867
 
4434
6868
  export function createIntegrationStoreDirectUiOptionsHiddenToJSON(
@@ -4468,19 +6902,19 @@ export const CreateIntegrationStoreDirectUiOptions1$inboundSchema: z.ZodType<
4468
6902
  disabled: types.optional(
4469
6903
  smartUnion([
4470
6904
  z.lazy(() =>
4471
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
6905
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
4472
6906
  ),
4473
6907
  types.boolean(),
4474
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
6908
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
4475
6909
  ]),
4476
6910
  ),
4477
6911
  hidden: types.optional(
4478
6912
  smartUnion([
4479
6913
  z.lazy(() =>
4480
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
6914
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
4481
6915
  ),
4482
6916
  types.boolean(),
4483
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
6917
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
4484
6918
  ]),
4485
6919
  ),
4486
6920
  });
@@ -4489,12 +6923,12 @@ export type CreateIntegrationStoreDirectUiOptions1$Outbound = {
4489
6923
  value: string;
4490
6924
  label: string;
4491
6925
  disabled?:
4492
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$Outbound
6926
+ | CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound
4493
6927
  | boolean
4494
6928
  | string
4495
6929
  | undefined;
4496
6930
  hidden?:
4497
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$Outbound
6931
+ | CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound
4498
6932
  | boolean
4499
6933
  | string
4500
6934
  | undefined;
@@ -4510,17 +6944,17 @@ export const CreateIntegrationStoreDirectUiOptions1$outboundSchema: z.ZodType<
4510
6944
  label: z.string(),
4511
6945
  disabled: smartUnion([
4512
6946
  z.lazy(() =>
4513
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
6947
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
4514
6948
  ),
4515
6949
  z.boolean(),
4516
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
6950
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
4517
6951
  ]).optional(),
4518
6952
  hidden: smartUnion([
4519
6953
  z.lazy(() =>
4520
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
6954
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
4521
6955
  ),
4522
6956
  z.boolean(),
4523
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
6957
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
4524
6958
  ]).optional(),
4525
6959
  });
4526
6960
 
@@ -6549,237 +8983,215 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
6549
8983
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema;
6550
8984
 
6551
8985
  /** @internal */
6552
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema:
6553
- z.ZodNativeEnum<
6554
- typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3
6555
- > = z.nativeEnum(CreateIntegrationStoreDirectDisabledIntegrationsResponse3);
8986
+ export const CreateIntegrationStoreDirectDisabled3$inboundSchema:
8987
+ z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3> = z.nativeEnum(
8988
+ CreateIntegrationStoreDirectDisabled3,
8989
+ );
6556
8990
  /** @internal */
6557
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema:
6558
- z.ZodNativeEnum<
6559
- typeof CreateIntegrationStoreDirectDisabledIntegrationsResponse3
6560
- > = CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema;
8991
+ export const CreateIntegrationStoreDirectDisabled3$outboundSchema:
8992
+ z.ZodNativeEnum<typeof CreateIntegrationStoreDirectDisabled3> =
8993
+ CreateIntegrationStoreDirectDisabled3$inboundSchema;
6561
8994
 
6562
8995
  /** @internal */
6563
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema:
6564
- z.ZodType<
6565
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2,
6566
- z.ZodTypeDef,
6567
- unknown
6568
- > = z.object({
6569
- expr: types.string(),
6570
- });
8996
+ export const CreateIntegrationStoreDirectDisabled2$inboundSchema: z.ZodType<
8997
+ CreateIntegrationStoreDirectDisabled2,
8998
+ z.ZodTypeDef,
8999
+ unknown
9000
+ > = z.object({
9001
+ expr: types.string(),
9002
+ });
6571
9003
  /** @internal */
6572
- export type CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound =
6573
- {
6574
- expr: string;
6575
- };
9004
+ export type CreateIntegrationStoreDirectDisabled2$Outbound = {
9005
+ expr: string;
9006
+ };
6576
9007
 
6577
9008
  /** @internal */
6578
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema:
6579
- z.ZodType<
6580
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound,
6581
- z.ZodTypeDef,
6582
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2
6583
- > = z.object({
6584
- expr: z.string(),
6585
- });
9009
+ export const CreateIntegrationStoreDirectDisabled2$outboundSchema: z.ZodType<
9010
+ CreateIntegrationStoreDirectDisabled2$Outbound,
9011
+ z.ZodTypeDef,
9012
+ CreateIntegrationStoreDirectDisabled2
9013
+ > = z.object({
9014
+ expr: z.string(),
9015
+ });
6586
9016
 
6587
- export function createIntegrationStoreDirectDisabledIntegrationsResponse2ToJSON(
6588
- createIntegrationStoreDirectDisabledIntegrationsResponse2:
6589
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2,
9017
+ export function createIntegrationStoreDirectDisabled2ToJSON(
9018
+ createIntegrationStoreDirectDisabled2: CreateIntegrationStoreDirectDisabled2,
6590
9019
  ): string {
6591
9020
  return JSON.stringify(
6592
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
6593
- .parse(createIntegrationStoreDirectDisabledIntegrationsResponse2),
9021
+ CreateIntegrationStoreDirectDisabled2$outboundSchema.parse(
9022
+ createIntegrationStoreDirectDisabled2,
9023
+ ),
6594
9024
  );
6595
9025
  }
6596
- export function createIntegrationStoreDirectDisabledIntegrationsResponse2FromJSON(
9026
+ export function createIntegrationStoreDirectDisabled2FromJSON(
6597
9027
  jsonString: string,
6598
- ): SafeParseResult<
6599
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2,
6600
- SDKValidationError
6601
- > {
9028
+ ): SafeParseResult<CreateIntegrationStoreDirectDisabled2, SDKValidationError> {
6602
9029
  return safeParse(
6603
9030
  jsonString,
6604
9031
  (x) =>
6605
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
6606
- .parse(JSON.parse(x)),
6607
- `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse2' from JSON`,
9032
+ CreateIntegrationStoreDirectDisabled2$inboundSchema.parse(JSON.parse(x)),
9033
+ `Failed to parse 'CreateIntegrationStoreDirectDisabled2' from JSON`,
6608
9034
  );
6609
9035
  }
6610
9036
 
6611
9037
  /** @internal */
6612
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$inboundSchema:
9038
+ export const CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema:
6613
9039
  z.ZodType<
6614
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled,
9040
+ CreateIntegrationStoreDirectPropertiesDisabled,
6615
9041
  z.ZodTypeDef,
6616
9042
  unknown
6617
9043
  > = smartUnion([
6618
- z.lazy(() =>
6619
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
6620
- ),
9044
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
6621
9045
  types.boolean(),
6622
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
9046
+ CreateIntegrationStoreDirectDisabled3$inboundSchema,
6623
9047
  ]);
6624
9048
  /** @internal */
6625
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$Outbound =
6626
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound
9049
+ export type CreateIntegrationStoreDirectPropertiesDisabled$Outbound =
9050
+ | CreateIntegrationStoreDirectDisabled2$Outbound
6627
9051
  | boolean
6628
9052
  | string;
6629
9053
 
6630
9054
  /** @internal */
6631
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$outboundSchema:
9055
+ export const CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema:
6632
9056
  z.ZodType<
6633
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$Outbound,
9057
+ CreateIntegrationStoreDirectPropertiesDisabled$Outbound,
6634
9058
  z.ZodTypeDef,
6635
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled
9059
+ CreateIntegrationStoreDirectPropertiesDisabled
6636
9060
  > = smartUnion([
6637
- z.lazy(() =>
6638
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
6639
- ),
9061
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
6640
9062
  z.boolean(),
6641
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
9063
+ CreateIntegrationStoreDirectDisabled3$outboundSchema,
6642
9064
  ]);
6643
9065
 
6644
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseDisabledToJSON(
6645
- createIntegrationStoreDirectPropertiesIntegrationsResponseDisabled:
6646
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled,
9066
+ export function createIntegrationStoreDirectPropertiesDisabledToJSON(
9067
+ createIntegrationStoreDirectPropertiesDisabled:
9068
+ CreateIntegrationStoreDirectPropertiesDisabled,
6647
9069
  ): string {
6648
9070
  return JSON.stringify(
6649
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$outboundSchema
6650
- .parse(
6651
- createIntegrationStoreDirectPropertiesIntegrationsResponseDisabled,
6652
- ),
9071
+ CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema.parse(
9072
+ createIntegrationStoreDirectPropertiesDisabled,
9073
+ ),
6653
9074
  );
6654
9075
  }
6655
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseDisabledFromJSON(
9076
+ export function createIntegrationStoreDirectPropertiesDisabledFromJSON(
6656
9077
  jsonString: string,
6657
9078
  ): SafeParseResult<
6658
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled,
9079
+ CreateIntegrationStoreDirectPropertiesDisabled,
6659
9080
  SDKValidationError
6660
9081
  > {
6661
9082
  return safeParse(
6662
9083
  jsonString,
6663
9084
  (x) =>
6664
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$inboundSchema
6665
- .parse(JSON.parse(x)),
6666
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled' from JSON`,
9085
+ CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema.parse(
9086
+ JSON.parse(x),
9087
+ ),
9088
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesDisabled' from JSON`,
6667
9089
  );
6668
9090
  }
6669
9091
 
6670
9092
  /** @internal */
6671
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema:
6672
- z.ZodNativeEnum<
6673
- typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3
6674
- > = z.nativeEnum(CreateIntegrationStoreDirectHiddenIntegrationsResponse3);
9093
+ export const CreateIntegrationStoreDirectHidden3$inboundSchema: z.ZodNativeEnum<
9094
+ typeof CreateIntegrationStoreDirectHidden3
9095
+ > = z.nativeEnum(CreateIntegrationStoreDirectHidden3);
6675
9096
  /** @internal */
6676
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema:
6677
- z.ZodNativeEnum<
6678
- typeof CreateIntegrationStoreDirectHiddenIntegrationsResponse3
6679
- > = CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema;
9097
+ export const CreateIntegrationStoreDirectHidden3$outboundSchema:
9098
+ z.ZodNativeEnum<typeof CreateIntegrationStoreDirectHidden3> =
9099
+ CreateIntegrationStoreDirectHidden3$inboundSchema;
6680
9100
 
6681
9101
  /** @internal */
6682
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema:
6683
- z.ZodType<
6684
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2,
6685
- z.ZodTypeDef,
6686
- unknown
6687
- > = z.object({
6688
- expr: types.string(),
6689
- });
9102
+ export const CreateIntegrationStoreDirectHidden2$inboundSchema: z.ZodType<
9103
+ CreateIntegrationStoreDirectHidden2,
9104
+ z.ZodTypeDef,
9105
+ unknown
9106
+ > = z.object({
9107
+ expr: types.string(),
9108
+ });
6690
9109
  /** @internal */
6691
- export type CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound = {
9110
+ export type CreateIntegrationStoreDirectHidden2$Outbound = {
6692
9111
  expr: string;
6693
9112
  };
6694
9113
 
6695
9114
  /** @internal */
6696
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema:
6697
- z.ZodType<
6698
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound,
6699
- z.ZodTypeDef,
6700
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2
6701
- > = z.object({
6702
- expr: z.string(),
6703
- });
9115
+ export const CreateIntegrationStoreDirectHidden2$outboundSchema: z.ZodType<
9116
+ CreateIntegrationStoreDirectHidden2$Outbound,
9117
+ z.ZodTypeDef,
9118
+ CreateIntegrationStoreDirectHidden2
9119
+ > = z.object({
9120
+ expr: z.string(),
9121
+ });
6704
9122
 
6705
- export function createIntegrationStoreDirectHiddenIntegrationsResponse2ToJSON(
6706
- createIntegrationStoreDirectHiddenIntegrationsResponse2:
6707
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2,
9123
+ export function createIntegrationStoreDirectHidden2ToJSON(
9124
+ createIntegrationStoreDirectHidden2: CreateIntegrationStoreDirectHidden2,
6708
9125
  ): string {
6709
9126
  return JSON.stringify(
6710
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
6711
- .parse(createIntegrationStoreDirectHiddenIntegrationsResponse2),
9127
+ CreateIntegrationStoreDirectHidden2$outboundSchema.parse(
9128
+ createIntegrationStoreDirectHidden2,
9129
+ ),
6712
9130
  );
6713
9131
  }
6714
- export function createIntegrationStoreDirectHiddenIntegrationsResponse2FromJSON(
9132
+ export function createIntegrationStoreDirectHidden2FromJSON(
6715
9133
  jsonString: string,
6716
- ): SafeParseResult<
6717
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2,
6718
- SDKValidationError
6719
- > {
9134
+ ): SafeParseResult<CreateIntegrationStoreDirectHidden2, SDKValidationError> {
6720
9135
  return safeParse(
6721
9136
  jsonString,
6722
9137
  (x) =>
6723
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
6724
- .parse(JSON.parse(x)),
6725
- `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse2' from JSON`,
9138
+ CreateIntegrationStoreDirectHidden2$inboundSchema.parse(JSON.parse(x)),
9139
+ `Failed to parse 'CreateIntegrationStoreDirectHidden2' from JSON`,
6726
9140
  );
6727
9141
  }
6728
9142
 
6729
9143
  /** @internal */
6730
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$inboundSchema:
9144
+ export const CreateIntegrationStoreDirectPropertiesHidden$inboundSchema:
6731
9145
  z.ZodType<
6732
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden,
9146
+ CreateIntegrationStoreDirectPropertiesHidden,
6733
9147
  z.ZodTypeDef,
6734
9148
  unknown
6735
9149
  > = smartUnion([
6736
- z.lazy(() =>
6737
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
6738
- ),
9150
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
6739
9151
  types.boolean(),
6740
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
9152
+ CreateIntegrationStoreDirectHidden3$inboundSchema,
6741
9153
  ]);
6742
9154
  /** @internal */
6743
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$Outbound =
6744
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound
9155
+ export type CreateIntegrationStoreDirectPropertiesHidden$Outbound =
9156
+ | CreateIntegrationStoreDirectHidden2$Outbound
6745
9157
  | boolean
6746
9158
  | string;
6747
9159
 
6748
9160
  /** @internal */
6749
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$outboundSchema:
9161
+ export const CreateIntegrationStoreDirectPropertiesHidden$outboundSchema:
6750
9162
  z.ZodType<
6751
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$Outbound,
9163
+ CreateIntegrationStoreDirectPropertiesHidden$Outbound,
6752
9164
  z.ZodTypeDef,
6753
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden
9165
+ CreateIntegrationStoreDirectPropertiesHidden
6754
9166
  > = smartUnion([
6755
- z.lazy(() =>
6756
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
6757
- ),
9167
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
6758
9168
  z.boolean(),
6759
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
9169
+ CreateIntegrationStoreDirectHidden3$outboundSchema,
6760
9170
  ]);
6761
9171
 
6762
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseHiddenToJSON(
6763
- createIntegrationStoreDirectPropertiesIntegrationsResponseHidden:
6764
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden,
9172
+ export function createIntegrationStoreDirectPropertiesHiddenToJSON(
9173
+ createIntegrationStoreDirectPropertiesHidden:
9174
+ CreateIntegrationStoreDirectPropertiesHidden,
6765
9175
  ): string {
6766
9176
  return JSON.stringify(
6767
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$outboundSchema
6768
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseHidden),
9177
+ CreateIntegrationStoreDirectPropertiesHidden$outboundSchema.parse(
9178
+ createIntegrationStoreDirectPropertiesHidden,
9179
+ ),
6769
9180
  );
6770
9181
  }
6771
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseHiddenFromJSON(
9182
+ export function createIntegrationStoreDirectPropertiesHiddenFromJSON(
6772
9183
  jsonString: string,
6773
9184
  ): SafeParseResult<
6774
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden,
9185
+ CreateIntegrationStoreDirectPropertiesHidden,
6775
9186
  SDKValidationError
6776
9187
  > {
6777
9188
  return safeParse(
6778
9189
  jsonString,
6779
9190
  (x) =>
6780
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$inboundSchema
6781
- .parse(JSON.parse(x)),
6782
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden' from JSON`,
9191
+ CreateIntegrationStoreDirectPropertiesHidden$inboundSchema.parse(
9192
+ JSON.parse(x),
9193
+ ),
9194
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesHidden' from JSON`,
6783
9195
  );
6784
9196
  }
6785
9197
 
@@ -6794,20 +9206,16 @@ export const CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema:
6794
9206
  label: types.string(),
6795
9207
  disabled: types.optional(
6796
9208
  smartUnion([
6797
- z.lazy(() =>
6798
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
6799
- ),
9209
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
6800
9210
  types.boolean(),
6801
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
9211
+ CreateIntegrationStoreDirectDisabled3$inboundSchema,
6802
9212
  ]),
6803
9213
  ),
6804
9214
  hidden: types.optional(
6805
9215
  smartUnion([
6806
- z.lazy(() =>
6807
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
6808
- ),
9216
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
6809
9217
  types.boolean(),
6810
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
9218
+ CreateIntegrationStoreDirectHidden3$inboundSchema,
6811
9219
  ]),
6812
9220
  ),
6813
9221
  });
@@ -6816,12 +9224,12 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions$Outbound = {
6816
9224
  value: string;
6817
9225
  label: string;
6818
9226
  disabled?:
6819
- | CreateIntegrationStoreDirectDisabledIntegrationsResponse2$Outbound
9227
+ | CreateIntegrationStoreDirectDisabled2$Outbound
6820
9228
  | boolean
6821
9229
  | string
6822
9230
  | undefined;
6823
9231
  hidden?:
6824
- | CreateIntegrationStoreDirectHiddenIntegrationsResponse2$Outbound
9232
+ | CreateIntegrationStoreDirectHidden2$Outbound
6825
9233
  | boolean
6826
9234
  | string
6827
9235
  | undefined;
@@ -6837,18 +9245,14 @@ export const CreateIntegrationStoreDirectPropertiesUiOptions$outboundSchema:
6837
9245
  value: z.string(),
6838
9246
  label: z.string(),
6839
9247
  disabled: smartUnion([
6840
- z.lazy(() =>
6841
- CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
6842
- ),
9248
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
6843
9249
  z.boolean(),
6844
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
9250
+ CreateIntegrationStoreDirectDisabled3$outboundSchema,
6845
9251
  ]).optional(),
6846
9252
  hidden: smartUnion([
6847
- z.lazy(() =>
6848
- CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
6849
- ),
9253
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
6850
9254
  z.boolean(),
6851
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
9255
+ CreateIntegrationStoreDirectHidden3$outboundSchema,
6852
9256
  ]).optional(),
6853
9257
  });
6854
9258
 
@@ -7627,18 +10031,18 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$o
7627
10031
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$inboundSchema;
7628
10032
 
7629
10033
  /** @internal */
7630
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema:
10034
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema:
7631
10035
  z.ZodNativeEnum<
7632
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType
10036
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type
7633
10037
  > = z.nativeEnum(
7634
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType,
10038
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type,
7635
10039
  );
7636
10040
  /** @internal */
7637
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema:
10041
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$outboundSchema:
7638
10042
  z.ZodNativeEnum<
7639
- typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType
10043
+ typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type
7640
10044
  > =
7641
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema;
10045
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema;
7642
10046
 
7643
10047
  /** @internal */
7644
10048
  export const CreateIntegrationStoreDirectPropertiesItems$inboundSchema:
@@ -7648,7 +10052,7 @@ export const CreateIntegrationStoreDirectPropertiesItems$inboundSchema:
7648
10052
  unknown
7649
10053
  > = z.object({
7650
10054
  type:
7651
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema,
10055
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema,
7652
10056
  description: types.optional(types.string()),
7653
10057
  minimum: types.optional(types.number()),
7654
10058
  exclusiveMinimum: types.optional(types.number()),
@@ -7675,7 +10079,7 @@ export const CreateIntegrationStoreDirectPropertiesItems$outboundSchema:
7675
10079
  CreateIntegrationStoreDirectPropertiesItems
7676
10080
  > = z.object({
7677
10081
  type:
7678
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema,
10082
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$outboundSchema,
7679
10083
  description: z.string().optional(),
7680
10084
  minimum: z.number().optional(),
7681
10085
  exclusiveMinimum: z.number().optional(),
@@ -10550,25 +12954,27 @@ export const CreateIntegrationStoreDirectProperties$inboundSchema: z.ZodType<
10550
12954
  > = smartUnion([
10551
12955
  z.lazy(() => CreateIntegrationStoreDirectProperties4$inboundSchema),
10552
12956
  z.lazy(() => CreateIntegrationStoreDirectProperties6$inboundSchema),
12957
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
10553
12958
  z.lazy(() => CreateIntegrationStoreDirectProperties5$inboundSchema),
10554
12959
  z.lazy(() => CreateIntegrationStoreDirectProperties7$inboundSchema),
10555
12960
  z.lazy(() => CreateIntegrationStoreDirectProperties1$inboundSchema),
10556
12961
  z.lazy(() => CreateIntegrationStoreDirectProperties2$inboundSchema),
10557
12962
  z.lazy(() => CreateIntegrationStoreDirectProperties3$inboundSchema),
10558
- z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
10559
12963
  z.lazy(() => CreateIntegrationStoreDirectProperties9$inboundSchema),
12964
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$inboundSchema),
10560
12965
  ]);
10561
12966
  /** @internal */
10562
12967
  export type CreateIntegrationStoreDirectProperties$Outbound =
10563
12968
  | CreateIntegrationStoreDirectProperties4$Outbound
10564
12969
  | CreateIntegrationStoreDirectProperties6$Outbound
12970
+ | CreateIntegrationStoreDirectProperties8$Outbound
10565
12971
  | CreateIntegrationStoreDirectProperties5$Outbound
10566
12972
  | CreateIntegrationStoreDirectProperties7$Outbound
10567
12973
  | CreateIntegrationStoreDirectProperties1$Outbound
10568
12974
  | CreateIntegrationStoreDirectProperties2$Outbound
10569
12975
  | CreateIntegrationStoreDirectProperties3$Outbound
10570
- | CreateIntegrationStoreDirectProperties8$Outbound
10571
- | CreateIntegrationStoreDirectProperties9$Outbound;
12976
+ | CreateIntegrationStoreDirectProperties9$Outbound
12977
+ | CreateIntegrationStoreDirectProperties10$Outbound;
10572
12978
 
10573
12979
  /** @internal */
10574
12980
  export const CreateIntegrationStoreDirectProperties$outboundSchema: z.ZodType<
@@ -10578,13 +12984,14 @@ export const CreateIntegrationStoreDirectProperties$outboundSchema: z.ZodType<
10578
12984
  > = smartUnion([
10579
12985
  z.lazy(() => CreateIntegrationStoreDirectProperties4$outboundSchema),
10580
12986
  z.lazy(() => CreateIntegrationStoreDirectProperties6$outboundSchema),
12987
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
10581
12988
  z.lazy(() => CreateIntegrationStoreDirectProperties5$outboundSchema),
10582
12989
  z.lazy(() => CreateIntegrationStoreDirectProperties7$outboundSchema),
10583
12990
  z.lazy(() => CreateIntegrationStoreDirectProperties1$outboundSchema),
10584
12991
  z.lazy(() => CreateIntegrationStoreDirectProperties2$outboundSchema),
10585
12992
  z.lazy(() => CreateIntegrationStoreDirectProperties3$outboundSchema),
10586
- z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
10587
12993
  z.lazy(() => CreateIntegrationStoreDirectProperties9$outboundSchema),
12994
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$outboundSchema),
10588
12995
  ]);
10589
12996
 
10590
12997
  export function createIntegrationStoreDirectPropertiesToJSON(
@@ -10617,13 +13024,14 @@ export const CreateIntegrationStoreDirectMetadataSchema$inboundSchema:
10617
13024
  smartUnion([
10618
13025
  z.lazy(() => CreateIntegrationStoreDirectProperties4$inboundSchema),
10619
13026
  z.lazy(() => CreateIntegrationStoreDirectProperties6$inboundSchema),
13027
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
10620
13028
  z.lazy(() => CreateIntegrationStoreDirectProperties5$inboundSchema),
10621
13029
  z.lazy(() => CreateIntegrationStoreDirectProperties7$inboundSchema),
10622
13030
  z.lazy(() => CreateIntegrationStoreDirectProperties1$inboundSchema),
10623
13031
  z.lazy(() => CreateIntegrationStoreDirectProperties2$inboundSchema),
10624
13032
  z.lazy(() => CreateIntegrationStoreDirectProperties3$inboundSchema),
10625
- z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
10626
13033
  z.lazy(() => CreateIntegrationStoreDirectProperties9$inboundSchema),
13034
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$inboundSchema),
10627
13035
  ]),
10628
13036
  ),
10629
13037
  required: types.optional(z.array(types.string())),
@@ -10635,13 +13043,14 @@ export type CreateIntegrationStoreDirectMetadataSchema$Outbound = {
10635
13043
  [k: string]:
10636
13044
  | CreateIntegrationStoreDirectProperties4$Outbound
10637
13045
  | CreateIntegrationStoreDirectProperties6$Outbound
13046
+ | CreateIntegrationStoreDirectProperties8$Outbound
10638
13047
  | CreateIntegrationStoreDirectProperties5$Outbound
10639
13048
  | CreateIntegrationStoreDirectProperties7$Outbound
10640
13049
  | CreateIntegrationStoreDirectProperties1$Outbound
10641
13050
  | CreateIntegrationStoreDirectProperties2$Outbound
10642
13051
  | CreateIntegrationStoreDirectProperties3$Outbound
10643
- | CreateIntegrationStoreDirectProperties8$Outbound
10644
- | CreateIntegrationStoreDirectProperties9$Outbound;
13052
+ | CreateIntegrationStoreDirectProperties9$Outbound
13053
+ | CreateIntegrationStoreDirectProperties10$Outbound;
10645
13054
  };
10646
13055
  required?: Array<string> | undefined;
10647
13056
  };
@@ -10658,13 +13067,14 @@ export const CreateIntegrationStoreDirectMetadataSchema$outboundSchema:
10658
13067
  smartUnion([
10659
13068
  z.lazy(() => CreateIntegrationStoreDirectProperties4$outboundSchema),
10660
13069
  z.lazy(() => CreateIntegrationStoreDirectProperties6$outboundSchema),
13070
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
10661
13071
  z.lazy(() => CreateIntegrationStoreDirectProperties5$outboundSchema),
10662
13072
  z.lazy(() => CreateIntegrationStoreDirectProperties7$outboundSchema),
10663
13073
  z.lazy(() => CreateIntegrationStoreDirectProperties1$outboundSchema),
10664
13074
  z.lazy(() => CreateIntegrationStoreDirectProperties2$outboundSchema),
10665
13075
  z.lazy(() => CreateIntegrationStoreDirectProperties3$outboundSchema),
10666
- z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
10667
13076
  z.lazy(() => CreateIntegrationStoreDirectProperties9$outboundSchema),
13077
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$outboundSchema),
10668
13078
  ]),
10669
13079
  ),
10670
13080
  required: z.array(z.string()).optional(),
@@ -10933,156 +13343,94 @@ export function guidesFromJSON(
10933
13343
  }
10934
13344
 
10935
13345
  /** @internal */
10936
- export const Disabled3$inboundSchema: z.ZodNativeEnum<typeof Disabled3> = z
10937
- .nativeEnum(Disabled3);
10938
- /** @internal */
10939
- export const Disabled3$outboundSchema: z.ZodNativeEnum<typeof Disabled3> =
10940
- Disabled3$inboundSchema;
10941
-
10942
- /** @internal */
10943
- export const Disabled2$inboundSchema: z.ZodType<
10944
- Disabled2,
13346
+ export const CreateIntegrationStoreDirectIntegration$inboundSchema: z.ZodType<
13347
+ CreateIntegrationStoreDirectIntegration,
10945
13348
  z.ZodTypeDef,
10946
13349
  unknown
10947
13350
  > = z.object({
10948
- expr: types.string(),
13351
+ id: types.string(),
13352
+ name: types.string(),
13353
+ slug: types.string(),
13354
+ supportsInstallationBillingPlans: types.optional(types.boolean()),
13355
+ icon: types.string(),
13356
+ flags: types.optional(z.array(types.string())),
10949
13357
  });
10950
13358
  /** @internal */
10951
- export type Disabled2$Outbound = {
10952
- expr: string;
13359
+ export type CreateIntegrationStoreDirectIntegration$Outbound = {
13360
+ id: string;
13361
+ name: string;
13362
+ slug: string;
13363
+ supportsInstallationBillingPlans?: boolean | undefined;
13364
+ icon: string;
13365
+ flags?: Array<string> | undefined;
10953
13366
  };
10954
13367
 
10955
13368
  /** @internal */
10956
- export const Disabled2$outboundSchema: z.ZodType<
10957
- Disabled2$Outbound,
13369
+ export const CreateIntegrationStoreDirectIntegration$outboundSchema: z.ZodType<
13370
+ CreateIntegrationStoreDirectIntegration$Outbound,
10958
13371
  z.ZodTypeDef,
10959
- Disabled2
13372
+ CreateIntegrationStoreDirectIntegration
10960
13373
  > = z.object({
10961
- expr: z.string(),
13374
+ id: z.string(),
13375
+ name: z.string(),
13376
+ slug: z.string(),
13377
+ supportsInstallationBillingPlans: z.boolean().optional(),
13378
+ icon: z.string(),
13379
+ flags: z.array(z.string()).optional(),
10962
13380
  });
10963
13381
 
10964
- export function disabled2ToJSON(disabled2: Disabled2): string {
10965
- return JSON.stringify(Disabled2$outboundSchema.parse(disabled2));
10966
- }
10967
- export function disabled2FromJSON(
10968
- jsonString: string,
10969
- ): SafeParseResult<Disabled2, SDKValidationError> {
10970
- return safeParse(
10971
- jsonString,
10972
- (x) => Disabled2$inboundSchema.parse(JSON.parse(x)),
10973
- `Failed to parse 'Disabled2' from JSON`,
13382
+ export function createIntegrationStoreDirectIntegrationToJSON(
13383
+ createIntegrationStoreDirectIntegration:
13384
+ CreateIntegrationStoreDirectIntegration,
13385
+ ): string {
13386
+ return JSON.stringify(
13387
+ CreateIntegrationStoreDirectIntegration$outboundSchema.parse(
13388
+ createIntegrationStoreDirectIntegration,
13389
+ ),
10974
13390
  );
10975
13391
  }
10976
-
10977
- /** @internal */
10978
- export const Disabled$inboundSchema: z.ZodType<
10979
- Disabled,
10980
- z.ZodTypeDef,
10981
- unknown
10982
- > = smartUnion([
10983
- z.lazy(() => Disabled2$inboundSchema),
10984
- types.boolean(),
10985
- Disabled3$inboundSchema,
10986
- ]);
10987
- /** @internal */
10988
- export type Disabled$Outbound = Disabled2$Outbound | boolean | string;
10989
-
10990
- /** @internal */
10991
- export const Disabled$outboundSchema: z.ZodType<
10992
- Disabled$Outbound,
10993
- z.ZodTypeDef,
10994
- Disabled
10995
- > = smartUnion([
10996
- z.lazy(() => Disabled2$outboundSchema),
10997
- z.boolean(),
10998
- Disabled3$outboundSchema,
10999
- ]);
11000
-
11001
- export function disabledToJSON(disabled: Disabled): string {
11002
- return JSON.stringify(Disabled$outboundSchema.parse(disabled));
11003
- }
11004
- export function disabledFromJSON(
13392
+ export function createIntegrationStoreDirectIntegrationFromJSON(
11005
13393
  jsonString: string,
11006
- ): SafeParseResult<Disabled, SDKValidationError> {
13394
+ ): SafeParseResult<
13395
+ CreateIntegrationStoreDirectIntegration,
13396
+ SDKValidationError
13397
+ > {
11007
13398
  return safeParse(
11008
13399
  jsonString,
11009
- (x) => Disabled$inboundSchema.parse(JSON.parse(x)),
11010
- `Failed to parse 'Disabled' from JSON`,
13400
+ (x) =>
13401
+ CreateIntegrationStoreDirectIntegration$inboundSchema.parse(
13402
+ JSON.parse(x),
13403
+ ),
13404
+ `Failed to parse 'CreateIntegrationStoreDirectIntegration' from JSON`,
11011
13405
  );
11012
13406
  }
11013
13407
 
11014
13408
  /** @internal */
11015
- export const Hidden3$inboundSchema: z.ZodNativeEnum<typeof Hidden3> = z
11016
- .nativeEnum(Hidden3);
13409
+ export const SupportedProtocols$inboundSchema: z.ZodNativeEnum<
13410
+ typeof SupportedProtocols
13411
+ > = z.nativeEnum(SupportedProtocols);
11017
13412
  /** @internal */
11018
- export const Hidden3$outboundSchema: z.ZodNativeEnum<typeof Hidden3> =
11019
- Hidden3$inboundSchema;
13413
+ export const SupportedProtocols$outboundSchema: z.ZodNativeEnum<
13414
+ typeof SupportedProtocols
13415
+ > = SupportedProtocols$inboundSchema;
11020
13416
 
11021
13417
  /** @internal */
11022
- export const Hidden2$inboundSchema: z.ZodType<Hidden2, z.ZodTypeDef, unknown> =
11023
- z.object({
11024
- expr: types.string(),
11025
- });
11026
- /** @internal */
11027
- export type Hidden2$Outbound = {
11028
- expr: string;
11029
- };
11030
-
13418
+ export const CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema:
13419
+ z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol> = z
13420
+ .nativeEnum(CreateIntegrationStoreDirectPrimaryProtocol);
11031
13421
  /** @internal */
11032
- export const Hidden2$outboundSchema: z.ZodType<
11033
- Hidden2$Outbound,
11034
- z.ZodTypeDef,
11035
- Hidden2
11036
- > = z.object({
11037
- expr: z.string(),
11038
- });
11039
-
11040
- export function hidden2ToJSON(hidden2: Hidden2): string {
11041
- return JSON.stringify(Hidden2$outboundSchema.parse(hidden2));
11042
- }
11043
- export function hidden2FromJSON(
11044
- jsonString: string,
11045
- ): SafeParseResult<Hidden2, SDKValidationError> {
11046
- return safeParse(
11047
- jsonString,
11048
- (x) => Hidden2$inboundSchema.parse(JSON.parse(x)),
11049
- `Failed to parse 'Hidden2' from JSON`,
11050
- );
11051
- }
13422
+ export const CreateIntegrationStoreDirectPrimaryProtocol$outboundSchema:
13423
+ z.ZodNativeEnum<typeof CreateIntegrationStoreDirectPrimaryProtocol> =
13424
+ CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema;
11052
13425
 
11053
13426
  /** @internal */
11054
- export const Hidden$inboundSchema: z.ZodType<Hidden, z.ZodTypeDef, unknown> =
11055
- smartUnion([
11056
- z.lazy(() => Hidden2$inboundSchema),
11057
- types.boolean(),
11058
- Hidden3$inboundSchema,
11059
- ]);
11060
- /** @internal */
11061
- export type Hidden$Outbound = Hidden2$Outbound | boolean | string;
11062
-
13427
+ export const LogDrainStatus$inboundSchema: z.ZodNativeEnum<
13428
+ typeof LogDrainStatus
13429
+ > = z.nativeEnum(LogDrainStatus);
11063
13430
  /** @internal */
11064
- export const Hidden$outboundSchema: z.ZodType<
11065
- Hidden$Outbound,
11066
- z.ZodTypeDef,
11067
- Hidden
11068
- > = smartUnion([
11069
- z.lazy(() => Hidden2$outboundSchema),
11070
- z.boolean(),
11071
- Hidden3$outboundSchema,
11072
- ]);
11073
-
11074
- export function hiddenToJSON(hidden: Hidden): string {
11075
- return JSON.stringify(Hidden$outboundSchema.parse(hidden));
11076
- }
11077
- export function hiddenFromJSON(
11078
- jsonString: string,
11079
- ): SafeParseResult<Hidden, SDKValidationError> {
11080
- return safeParse(
11081
- jsonString,
11082
- (x) => Hidden$inboundSchema.parse(JSON.parse(x)),
11083
- `Failed to parse 'Hidden' from JSON`,
11084
- );
11085
- }
13431
+ export const LogDrainStatus$outboundSchema: z.ZodNativeEnum<
13432
+ typeof LogDrainStatus
13433
+ > = LogDrainStatus$inboundSchema;
11086
13434
 
11087
13435
  /** @internal */
11088
13436
  export const Product$inboundSchema: z.ZodType<Product, z.ZodTypeDef, unknown> =
@@ -11111,21 +13459,15 @@ export const Product$inboundSchema: z.ZodType<Product, z.ZodTypeDef, unknown> =
11111
13459
  disableResourceRenaming: types.optional(types.boolean()),
11112
13460
  repl: types.optional(z.lazy(() => Repl$inboundSchema)),
11113
13461
  guides: types.optional(z.array(z.lazy(() => Guides$inboundSchema))),
11114
- value: types.string(),
11115
- disabled: types.optional(
11116
- smartUnion([
11117
- z.lazy(() => Disabled2$inboundSchema),
11118
- types.boolean(),
11119
- Disabled3$inboundSchema,
11120
- ]),
13462
+ integration: z.lazy(() =>
13463
+ CreateIntegrationStoreDirectIntegration$inboundSchema
11121
13464
  ),
11122
- hidden: types.optional(
11123
- smartUnion([
11124
- z.lazy(() => Hidden2$inboundSchema),
11125
- types.boolean(),
11126
- Hidden3$inboundSchema,
11127
- ]),
13465
+ integrationConfigurationId: types.string(),
13466
+ supportedProtocols: z.array(SupportedProtocols$inboundSchema),
13467
+ primaryProtocol: types.optional(
13468
+ CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema,
11128
13469
  ),
13470
+ logDrainStatus: types.optional(LogDrainStatus$inboundSchema),
11129
13471
  });
11130
13472
  /** @internal */
11131
13473
  export type Product$Outbound = {
@@ -11145,9 +13487,11 @@ export type Product$Outbound = {
11145
13487
  disableResourceRenaming?: boolean | undefined;
11146
13488
  repl?: Repl$Outbound | undefined;
11147
13489
  guides?: Array<Guides$Outbound> | undefined;
11148
- value: string;
11149
- disabled?: Disabled2$Outbound | boolean | string | undefined;
11150
- hidden?: Hidden2$Outbound | boolean | string | undefined;
13490
+ integration: CreateIntegrationStoreDirectIntegration$Outbound;
13491
+ integrationConfigurationId: string;
13492
+ supportedProtocols: Array<string>;
13493
+ primaryProtocol?: string | undefined;
13494
+ logDrainStatus?: string | undefined;
11151
13495
  };
11152
13496
 
11153
13497
  /** @internal */
@@ -11175,17 +13519,14 @@ export const Product$outboundSchema: z.ZodType<
11175
13519
  disableResourceRenaming: z.boolean().optional(),
11176
13520
  repl: z.lazy(() => Repl$outboundSchema).optional(),
11177
13521
  guides: z.array(z.lazy(() => Guides$outboundSchema)).optional(),
11178
- value: z.string(),
11179
- disabled: smartUnion([
11180
- z.lazy(() => Disabled2$outboundSchema),
11181
- z.boolean(),
11182
- Disabled3$outboundSchema,
11183
- ]).optional(),
11184
- hidden: smartUnion([
11185
- z.lazy(() => Hidden2$outboundSchema),
11186
- z.boolean(),
11187
- Hidden3$outboundSchema,
11188
- ]).optional(),
13522
+ integration: z.lazy(() =>
13523
+ CreateIntegrationStoreDirectIntegration$outboundSchema
13524
+ ),
13525
+ integrationConfigurationId: z.string(),
13526
+ supportedProtocols: z.array(SupportedProtocols$outboundSchema),
13527
+ primaryProtocol: CreateIntegrationStoreDirectPrimaryProtocol$outboundSchema
13528
+ .optional(),
13529
+ logDrainStatus: LogDrainStatus$outboundSchema.optional(),
11189
13530
  });
11190
13531
 
11191
13532
  export function productToJSON(product: Product): string {