@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
@@ -110,19 +110,71 @@ export const ExternalResourceStatus = {
110
110
  export const CreateIntegrationStoreDirectIntegrationsType = {
111
111
  Object: "object",
112
112
  };
113
- export const CreateIntegrationStoreDirectDisabled3 = {
113
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type = {
114
+ String: "string",
115
+ };
116
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl = {
117
+ GitNamespace: "git-namespace",
118
+ };
119
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = {
114
120
  Update: "update",
115
121
  Create: "create",
116
122
  };
117
- export const CreateIntegrationStoreDirectHidden3 = {
123
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = {
124
+ Update: "update",
125
+ Create: "create",
126
+ };
127
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3 = {
128
+ Update: "update",
129
+ Create: "create",
130
+ };
131
+ export const PropertiesGitProviders = {
132
+ Github: "github",
133
+ Gitlab: "gitlab",
134
+ Bitbucket: "bitbucket",
135
+ };
136
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType = {
137
+ String: "string",
138
+ };
139
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl = {
140
+ Domain: "domain",
141
+ };
142
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = {
143
+ Update: "update",
144
+ Create: "create",
145
+ };
146
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = {
147
+ Update: "update",
148
+ Create: "create",
149
+ };
150
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3 = {
118
151
  Update: "update",
119
152
  Create: "create",
120
153
  };
121
154
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType = {
155
+ Array: "array",
156
+ };
157
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type = {
122
158
  String: "string",
123
159
  };
124
160
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl = {
125
- Domain: "domain",
161
+ MultiVercelRegion: "multi-vercel-region",
162
+ };
163
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3 = {
164
+ Update: "update",
165
+ Create: "create",
166
+ };
167
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3 = {
168
+ Update: "update",
169
+ Create: "create",
170
+ };
171
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 = {
172
+ Update: "update",
173
+ Create: "create",
174
+ };
175
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 = {
176
+ Update: "update",
177
+ Create: "create",
126
178
  };
127
179
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 = {
128
180
  Update: "update",
@@ -150,11 +202,11 @@ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 = {
150
202
  Update: "update",
151
203
  Create: "create",
152
204
  };
153
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 = {
205
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3 = {
154
206
  Update: "update",
155
207
  Create: "create",
156
208
  };
157
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 = {
209
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3 = {
158
210
  Update: "update",
159
211
  Create: "create",
160
212
  };
@@ -205,11 +257,11 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
205
257
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl = {
206
258
  Select: "select",
207
259
  };
208
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3 = {
260
+ export const CreateIntegrationStoreDirectDisabled3 = {
209
261
  Update: "update",
210
262
  Create: "create",
211
263
  };
212
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3 = {
264
+ export const CreateIntegrationStoreDirectHidden3 = {
213
265
  Update: "update",
214
266
  Create: "create",
215
267
  };
@@ -228,7 +280,7 @@ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200Applic
228
280
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type = {
229
281
  Array: "array",
230
282
  };
231
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType = {
283
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type = {
232
284
  Number: "number",
233
285
  };
234
286
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiControl = {
@@ -318,7 +370,10 @@ export const CreateIntegrationStoreDirectTags = {
318
370
  Messaging: "messaging",
319
371
  Other: "other",
320
372
  Mysql: "mysql",
373
+ Kv: "kv",
321
374
  Vector: "vector",
375
+ Libsql: "libsql",
376
+ Sqlite: "sqlite",
322
377
  TagAgents: "tag_agents",
323
378
  TagAi: "tag_ai",
324
379
  TagAnalytics: "tag_analytics",
@@ -372,13 +427,37 @@ export const CreateIntegrationStoreDirectIntegrationsResponseType = {
372
427
  ConfigureProjectConnections: "configure_project_connections",
373
428
  AddDrain: "add_drain",
374
429
  };
375
- export const Disabled3 = {
376
- Update: "update",
377
- Create: "create",
430
+ export const SupportedProtocols = {
431
+ Experimentation: "experimentation",
432
+ Checks: "checks",
433
+ Storage: "storage",
434
+ Ai: "ai",
435
+ Observability: "observability",
436
+ Video: "video",
437
+ Authentication: "authentication",
438
+ Workflow: "workflow",
439
+ LogDrain: "logDrain",
440
+ TraceDrain: "traceDrain",
441
+ Messaging: "messaging",
442
+ Other: "other",
378
443
  };
379
- export const Hidden3 = {
380
- Update: "update",
381
- Create: "create",
444
+ export const CreateIntegrationStoreDirectPrimaryProtocol = {
445
+ Experimentation: "experimentation",
446
+ Checks: "checks",
447
+ Storage: "storage",
448
+ Ai: "ai",
449
+ Observability: "observability",
450
+ Video: "video",
451
+ Authentication: "authentication",
452
+ Workflow: "workflow",
453
+ LogDrain: "logDrain",
454
+ TraceDrain: "traceDrain",
455
+ Messaging: "messaging",
456
+ Other: "other",
457
+ };
458
+ export const LogDrainStatus = {
459
+ Disabled: "disabled",
460
+ Enabled: "enabled",
382
461
  };
383
462
  export const CreateIntegrationStoreDirectLevel = {
384
463
  Error: "error",
@@ -785,119 +864,837 @@ export const CreateIntegrationStoreDirectIntegrationsType$inboundSchema = z
785
864
  /** @internal */
786
865
  export const CreateIntegrationStoreDirectIntegrationsType$outboundSchema = CreateIntegrationStoreDirectIntegrationsType$inboundSchema;
787
866
  /** @internal */
788
- export const CreateIntegrationStoreDirectDisabled3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectDisabled3);
867
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type);
789
868
  /** @internal */
790
- export const CreateIntegrationStoreDirectDisabled3$outboundSchema = CreateIntegrationStoreDirectDisabled3$inboundSchema;
869
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema;
791
870
  /** @internal */
792
- export const CreateIntegrationStoreDirectDisabled2$inboundSchema = z.object({
871
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl);
872
+ /** @internal */
873
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema;
874
+ /** @internal */
875
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3);
876
+ /** @internal */
877
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema;
878
+ /** @internal */
879
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema = z.object({
793
880
  expr: types.string(),
794
881
  });
795
882
  /** @internal */
796
- export const CreateIntegrationStoreDirectDisabled2$outboundSchema = z.object({
883
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema = z.object({
797
884
  expr: z.string(),
798
885
  });
799
- export function createIntegrationStoreDirectDisabled2ToJSON(createIntegrationStoreDirectDisabled2) {
800
- return JSON.stringify(CreateIntegrationStoreDirectDisabled2$outboundSchema.parse(createIntegrationStoreDirectDisabled2));
886
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2) {
887
+ return JSON.stringify(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
888
+ .parse(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2));
801
889
  }
802
- export function createIntegrationStoreDirectDisabled2FromJSON(jsonString) {
803
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectDisabled2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectDisabled2' from JSON`);
890
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString) {
891
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
892
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`);
804
893
  }
805
894
  /** @internal */
806
- export const CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema = smartUnion([
807
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
895
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$inboundSchema = smartUnion([
896
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
808
897
  types.boolean(),
809
- CreateIntegrationStoreDirectDisabled3$inboundSchema,
898
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
810
899
  ]);
811
900
  /** @internal */
812
- export const CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema = smartUnion([
813
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
901
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$outboundSchema = smartUnion([
902
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
814
903
  z.boolean(),
815
- CreateIntegrationStoreDirectDisabled3$outboundSchema,
904
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
816
905
  ]);
817
- export function createIntegrationStoreDirectPropertiesDisabledToJSON(createIntegrationStoreDirectPropertiesDisabled) {
818
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema.parse(createIntegrationStoreDirectPropertiesDisabled));
906
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly) {
907
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$outboundSchema
908
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly));
819
909
  }
820
- export function createIntegrationStoreDirectPropertiesDisabledFromJSON(jsonString) {
821
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesDisabled' from JSON`);
910
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnlyFromJSON(jsonString) {
911
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly$inboundSchema
912
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiReadOnly' from JSON`);
822
913
  }
823
914
  /** @internal */
824
- export const CreateIntegrationStoreDirectHidden3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectHidden3);
915
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3);
825
916
  /** @internal */
826
- export const CreateIntegrationStoreDirectHidden3$outboundSchema = CreateIntegrationStoreDirectHidden3$inboundSchema;
917
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema;
827
918
  /** @internal */
828
- export const CreateIntegrationStoreDirectHidden2$inboundSchema = z.object({
919
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema = z.object({
829
920
  expr: types.string(),
830
921
  });
831
922
  /** @internal */
832
- export const CreateIntegrationStoreDirectHidden2$outboundSchema = z.object({
923
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema = z.object({
833
924
  expr: z.string(),
834
925
  });
835
- export function createIntegrationStoreDirectHidden2ToJSON(createIntegrationStoreDirectHidden2) {
836
- return JSON.stringify(CreateIntegrationStoreDirectHidden2$outboundSchema.parse(createIntegrationStoreDirectHidden2));
926
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2) {
927
+ return JSON.stringify(CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
928
+ .parse(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2));
837
929
  }
838
- export function createIntegrationStoreDirectHidden2FromJSON(jsonString) {
839
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectHidden2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectHidden2' from JSON`);
930
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString) {
931
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
932
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`);
840
933
  }
841
934
  /** @internal */
842
- export const CreateIntegrationStoreDirectPropertiesHidden$inboundSchema = smartUnion([
843
- z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
935
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$inboundSchema = smartUnion([
936
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
844
937
  types.boolean(),
845
- CreateIntegrationStoreDirectHidden3$inboundSchema,
938
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
846
939
  ]);
847
940
  /** @internal */
848
- export const CreateIntegrationStoreDirectPropertiesHidden$outboundSchema = smartUnion([
849
- z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
941
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$outboundSchema = smartUnion([
942
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
850
943
  z.boolean(),
851
- CreateIntegrationStoreDirectHidden3$outboundSchema,
944
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
852
945
  ]);
853
- export function createIntegrationStoreDirectPropertiesHiddenToJSON(createIntegrationStoreDirectPropertiesHidden) {
854
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesHidden$outboundSchema.parse(createIntegrationStoreDirectPropertiesHidden));
946
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden) {
947
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$outboundSchema
948
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden));
855
949
  }
856
- export function createIntegrationStoreDirectPropertiesHiddenFromJSON(jsonString) {
857
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesHidden$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesHidden' from JSON`);
950
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHiddenFromJSON(jsonString) {
951
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden$inboundSchema
952
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiHidden' from JSON`);
858
953
  }
859
954
  /** @internal */
860
- export const CreateIntegrationStoreDirectProperties9$inboundSchema = z.object({
861
- value: types.string(),
862
- disabled: types.optional(smartUnion([
863
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
955
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3);
956
+ /** @internal */
957
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema;
958
+ /** @internal */
959
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema = z.object({
960
+ expr: types.string(),
961
+ });
962
+ /** @internal */
963
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema = z.object({
964
+ expr: z.string(),
965
+ });
966
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2) {
967
+ return JSON.stringify(CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
968
+ .parse(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2));
969
+ }
970
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString) {
971
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
972
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`);
973
+ }
974
+ /** @internal */
975
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$inboundSchema = smartUnion([
976
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
977
+ types.boolean(),
978
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
979
+ ]);
980
+ /** @internal */
981
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$outboundSchema = smartUnion([
982
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
983
+ z.boolean(),
984
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
985
+ ]);
986
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled) {
987
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$outboundSchema
988
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled));
989
+ }
990
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabledFromJSON(jsonString) {
991
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled$inboundSchema
992
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDisabled' from JSON`);
993
+ }
994
+ /** @internal */
995
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema = z.object({
996
+ expr: types.string(),
997
+ });
998
+ /** @internal */
999
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema = z.object({
1000
+ expr: z.string(),
1001
+ });
1002
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2ToJSON(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2) {
1003
+ return JSON.stringify(CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema
1004
+ .parse(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2));
1005
+ }
1006
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2FromJSON(jsonString) {
1007
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema
1008
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2' from JSON`);
1009
+ }
1010
+ /** @internal */
1011
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$inboundSchema = smartUnion([
1012
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
1013
+ types.string(),
1014
+ ]);
1015
+ /** @internal */
1016
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$outboundSchema = smartUnion([
1017
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
1018
+ z.string(),
1019
+ ]);
1020
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription) {
1021
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$outboundSchema
1022
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription));
1023
+ }
1024
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescriptionFromJSON(jsonString) {
1025
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription$inboundSchema
1026
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiDescription' from JSON`);
1027
+ }
1028
+ /** @internal */
1029
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema = z.object({
1030
+ expr: types.string(),
1031
+ });
1032
+ /** @internal */
1033
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema = z.object({
1034
+ expr: z.string(),
1035
+ });
1036
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue) {
1037
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema
1038
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue));
1039
+ }
1040
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValueFromJSON(jsonString) {
1041
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema
1042
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue' from JSON`);
1043
+ }
1044
+ /** @internal */
1045
+ export const PropertiesGitProviders$inboundSchema = z.nativeEnum(PropertiesGitProviders);
1046
+ /** @internal */
1047
+ export const PropertiesGitProviders$outboundSchema = PropertiesGitProviders$inboundSchema;
1048
+ /** @internal */
1049
+ export const CreateIntegrationStoreDirectProperties10$inboundSchema = z.object({
1050
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$inboundSchema,
1051
+ "ui:control": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$inboundSchema,
1052
+ description: types.optional(types.string()),
1053
+ "ui:label": types.optional(types.string()),
1054
+ "ui:read-only": types.optional(smartUnion([
1055
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
864
1056
  types.boolean(),
865
- CreateIntegrationStoreDirectDisabled3$inboundSchema,
1057
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
866
1058
  ])),
867
- hidden: types.optional(smartUnion([
868
- z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
1059
+ "ui:hidden": types.optional(smartUnion([
1060
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
869
1061
  types.boolean(),
870
- CreateIntegrationStoreDirectHidden3$inboundSchema,
1062
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
1063
+ ])),
1064
+ "ui:disabled": types.optional(smartUnion([
1065
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
1066
+ types.boolean(),
1067
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$inboundSchema,
871
1068
  ])),
1069
+ "ui:description": types.optional(smartUnion([
1070
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$inboundSchema),
1071
+ types.string(),
1072
+ ])),
1073
+ "ui:formatted-value": types.optional(z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$inboundSchema)),
1074
+ "ui:placeholder": types.optional(types.string()),
1075
+ "git:providers": types.optional(z.array(PropertiesGitProviders$inboundSchema)),
1076
+ }).transform((v) => {
1077
+ return remap$(v, {
1078
+ "ui:control": "uiControl",
1079
+ "ui:label": "uiLabel",
1080
+ "ui:read-only": "uiReadOnly",
1081
+ "ui:hidden": "uiHidden",
1082
+ "ui:disabled": "uiDisabled",
1083
+ "ui:description": "uiDescription",
1084
+ "ui:formatted-value": "uiFormattedValue",
1085
+ "ui:placeholder": "uiPlaceholder",
1086
+ "git:providers": "gitProviders",
1087
+ });
872
1088
  });
873
1089
  /** @internal */
874
- export const CreateIntegrationStoreDirectProperties9$outboundSchema = z.object({
875
- value: z.string(),
876
- disabled: smartUnion([
877
- z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
1090
+ export const CreateIntegrationStoreDirectProperties10$outboundSchema = z.object({
1091
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10Type$outboundSchema,
1092
+ uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiControl$outboundSchema,
1093
+ description: z.string().optional(),
1094
+ uiLabel: z.string().optional(),
1095
+ uiReadOnly: smartUnion([
1096
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
878
1097
  z.boolean(),
879
- CreateIntegrationStoreDirectDisabled3$outboundSchema,
1098
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
880
1099
  ]).optional(),
881
- hidden: smartUnion([
882
- z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
1100
+ uiHidden: smartUnion([
1101
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
1102
+ z.boolean(),
1103
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
1104
+ ]).optional(),
1105
+ uiDisabled: smartUnion([
1106
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
1107
+ z.boolean(),
1108
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties3$outboundSchema,
1109
+ ]).optional(),
1110
+ uiDescription: smartUnion([
1111
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaProperties2$outboundSchema),
1112
+ z.string(),
1113
+ ]).optional(),
1114
+ uiFormattedValue: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema10UiFormattedValue$outboundSchema).optional(),
1115
+ uiPlaceholder: z.string().optional(),
1116
+ gitProviders: z.array(PropertiesGitProviders$outboundSchema).optional(),
1117
+ }).transform((v) => {
1118
+ return remap$(v, {
1119
+ uiControl: "ui:control",
1120
+ uiLabel: "ui:label",
1121
+ uiReadOnly: "ui:read-only",
1122
+ uiHidden: "ui:hidden",
1123
+ uiDisabled: "ui:disabled",
1124
+ uiDescription: "ui:description",
1125
+ uiFormattedValue: "ui:formatted-value",
1126
+ uiPlaceholder: "ui:placeholder",
1127
+ gitProviders: "git:providers",
1128
+ });
1129
+ });
1130
+ export function createIntegrationStoreDirectProperties10ToJSON(createIntegrationStoreDirectProperties10) {
1131
+ return JSON.stringify(CreateIntegrationStoreDirectProperties10$outboundSchema.parse(createIntegrationStoreDirectProperties10));
1132
+ }
1133
+ export function createIntegrationStoreDirectProperties10FromJSON(jsonString) {
1134
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectProperties10$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectProperties10' from JSON`);
1135
+ }
1136
+ /** @internal */
1137
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType);
1138
+ /** @internal */
1139
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema;
1140
+ /** @internal */
1141
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl);
1142
+ /** @internal */
1143
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema;
1144
+ /** @internal */
1145
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3);
1146
+ /** @internal */
1147
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema = CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema;
1148
+ /** @internal */
1149
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema = z.object({
1150
+ expr: types.string(),
1151
+ });
1152
+ /** @internal */
1153
+ export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema = z.object({
1154
+ expr: z.string(),
1155
+ });
1156
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2) {
1157
+ return JSON.stringify(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
1158
+ .parse(createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2));
1159
+ }
1160
+ export function createIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString) {
1161
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
1162
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`);
1163
+ }
1164
+ /** @internal */
1165
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$inboundSchema = smartUnion([
1166
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1167
+ types.boolean(),
1168
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
1169
+ ]);
1170
+ /** @internal */
1171
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$outboundSchema = smartUnion([
1172
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1173
+ z.boolean(),
1174
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
1175
+ ]);
1176
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly) {
1177
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$outboundSchema
1178
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly));
1179
+ }
1180
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnlyFromJSON(jsonString) {
1181
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly$inboundSchema
1182
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiReadOnly' from JSON`);
1183
+ }
1184
+ /** @internal */
1185
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3);
1186
+ /** @internal */
1187
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema = CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema;
1188
+ /** @internal */
1189
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema = z.object({
1190
+ expr: types.string(),
1191
+ });
1192
+ /** @internal */
1193
+ export const CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema = z.object({
1194
+ expr: z.string(),
1195
+ });
1196
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2) {
1197
+ return JSON.stringify(CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
1198
+ .parse(createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2));
1199
+ }
1200
+ export function createIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString) {
1201
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
1202
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`);
1203
+ }
1204
+ /** @internal */
1205
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$inboundSchema = smartUnion([
1206
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1207
+ types.boolean(),
1208
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
1209
+ ]);
1210
+ /** @internal */
1211
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$outboundSchema = smartUnion([
1212
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1213
+ z.boolean(),
1214
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
1215
+ ]);
1216
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden) {
1217
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$outboundSchema
1218
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden));
1219
+ }
1220
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHiddenFromJSON(jsonString) {
1221
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden$inboundSchema
1222
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiHidden' from JSON`);
1223
+ }
1224
+ /** @internal */
1225
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3);
1226
+ /** @internal */
1227
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema = CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema;
1228
+ /** @internal */
1229
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema = z.object({
1230
+ expr: types.string(),
1231
+ });
1232
+ /** @internal */
1233
+ export const CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema = z.object({
1234
+ expr: z.string(),
1235
+ });
1236
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2) {
1237
+ return JSON.stringify(CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
1238
+ .parse(createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2));
1239
+ }
1240
+ export function createIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString) {
1241
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
1242
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`);
1243
+ }
1244
+ /** @internal */
1245
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$inboundSchema = smartUnion([
1246
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1247
+ types.boolean(),
1248
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
1249
+ ]);
1250
+ /** @internal */
1251
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$outboundSchema = smartUnion([
1252
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1253
+ z.boolean(),
1254
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
1255
+ ]);
1256
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled) {
1257
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$outboundSchema
1258
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled));
1259
+ }
1260
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabledFromJSON(jsonString) {
1261
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled$inboundSchema
1262
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDisabled' from JSON`);
1263
+ }
1264
+ /** @internal */
1265
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema = z.object({
1266
+ expr: types.string(),
1267
+ });
1268
+ /** @internal */
1269
+ export const CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema = z.object({
1270
+ expr: z.string(),
1271
+ });
1272
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2ToJSON(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2) {
1273
+ return JSON.stringify(CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema
1274
+ .parse(createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2));
1275
+ }
1276
+ export function createIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2FromJSON(jsonString) {
1277
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema
1278
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2' from JSON`);
1279
+ }
1280
+ /** @internal */
1281
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$inboundSchema = smartUnion([
1282
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1283
+ types.string(),
1284
+ ]);
1285
+ /** @internal */
1286
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$outboundSchema = smartUnion([
1287
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1288
+ z.string(),
1289
+ ]);
1290
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription) {
1291
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$outboundSchema
1292
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription));
1293
+ }
1294
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescriptionFromJSON(jsonString) {
1295
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription$inboundSchema
1296
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiDescription' from JSON`);
1297
+ }
1298
+ /** @internal */
1299
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema = z.object({
1300
+ expr: types.string(),
1301
+ });
1302
+ /** @internal */
1303
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema = z.object({
1304
+ expr: z.string(),
1305
+ });
1306
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue) {
1307
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema
1308
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue));
1309
+ }
1310
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValueFromJSON(jsonString) {
1311
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema
1312
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue' from JSON`);
1313
+ }
1314
+ /** @internal */
1315
+ export const CreateIntegrationStoreDirectProperties9$inboundSchema = z.object({
1316
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema,
1317
+ "ui:control": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$inboundSchema,
1318
+ enum: types.optional(z.array(types.string())),
1319
+ maxLength: types.optional(types.number()),
1320
+ minLength: types.optional(types.number()),
1321
+ pattern: types.optional(types.string()),
1322
+ description: types.optional(types.string()),
1323
+ default: types.optional(types.string()),
1324
+ "ui:label": types.optional(types.string()),
1325
+ "ui:read-only": types.optional(smartUnion([
1326
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1327
+ types.boolean(),
1328
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
1329
+ ])),
1330
+ "ui:hidden": types.optional(smartUnion([
1331
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1332
+ types.boolean(),
1333
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
1334
+ ])),
1335
+ "ui:disabled": types.optional(smartUnion([
1336
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1337
+ types.boolean(),
1338
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$inboundSchema,
1339
+ ])),
1340
+ "ui:description": types.optional(smartUnion([
1341
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$inboundSchema),
1342
+ types.string(),
1343
+ ])),
1344
+ "ui:formatted-value": types.optional(z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$inboundSchema)),
1345
+ "ui:placeholder": types.optional(types.string()),
1346
+ }).transform((v) => {
1347
+ return remap$(v, {
1348
+ "ui:control": "uiControl",
1349
+ "ui:label": "uiLabel",
1350
+ "ui:read-only": "uiReadOnly",
1351
+ "ui:hidden": "uiHidden",
1352
+ "ui:disabled": "uiDisabled",
1353
+ "ui:description": "uiDescription",
1354
+ "ui:formatted-value": "uiFormattedValue",
1355
+ "ui:placeholder": "uiPlaceholder",
1356
+ });
1357
+ });
1358
+ /** @internal */
1359
+ export const CreateIntegrationStoreDirectProperties9$outboundSchema = z.object({
1360
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema,
1361
+ uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiControl$outboundSchema,
1362
+ enum: z.array(z.string()).optional(),
1363
+ maxLength: z.number().optional(),
1364
+ minLength: z.number().optional(),
1365
+ pattern: z.string().optional(),
1366
+ description: z.string().optional(),
1367
+ default: z.string().optional(),
1368
+ uiLabel: z.string().optional(),
1369
+ uiReadOnly: smartUnion([
1370
+ z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1371
+ z.boolean(),
1372
+ CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
1373
+ ]).optional(),
1374
+ uiHidden: smartUnion([
1375
+ z.lazy(() => CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1376
+ z.boolean(),
1377
+ CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
1378
+ ]).optional(),
1379
+ uiDisabled: smartUnion([
1380
+ z.lazy(() => CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1381
+ z.boolean(),
1382
+ CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema3$outboundSchema,
1383
+ ]).optional(),
1384
+ uiDescription: smartUnion([
1385
+ z.lazy(() => CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema2$outboundSchema),
1386
+ z.string(),
1387
+ ]).optional(),
1388
+ uiFormattedValue: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaUiFormattedValue$outboundSchema).optional(),
1389
+ uiPlaceholder: z.string().optional(),
1390
+ }).transform((v) => {
1391
+ return remap$(v, {
1392
+ uiControl: "ui:control",
1393
+ uiLabel: "ui:label",
1394
+ uiReadOnly: "ui:read-only",
1395
+ uiHidden: "ui:hidden",
1396
+ uiDisabled: "ui:disabled",
1397
+ uiDescription: "ui:description",
1398
+ uiFormattedValue: "ui:formatted-value",
1399
+ uiPlaceholder: "ui:placeholder",
1400
+ });
1401
+ });
1402
+ export function createIntegrationStoreDirectProperties9ToJSON(createIntegrationStoreDirectProperties9) {
1403
+ return JSON.stringify(CreateIntegrationStoreDirectProperties9$outboundSchema.parse(createIntegrationStoreDirectProperties9));
1404
+ }
1405
+ export function createIntegrationStoreDirectProperties9FromJSON(jsonString) {
1406
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectProperties9$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectProperties9' from JSON`);
1407
+ }
1408
+ /** @internal */
1409
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType);
1410
+ /** @internal */
1411
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema;
1412
+ /** @internal */
1413
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type);
1414
+ /** @internal */
1415
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema;
1416
+ /** @internal */
1417
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema = z.object({
1418
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$inboundSchema,
1419
+ description: types.optional(types.string()),
1420
+ minLength: types.optional(types.number()),
1421
+ maxLength: types.optional(types.number()),
1422
+ pattern: types.optional(types.string()),
1423
+ default: types.optional(types.string()),
1424
+ enum: types.optional(z.array(types.string())),
1425
+ });
1426
+ /** @internal */
1427
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema = z.object({
1428
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8Type$outboundSchema,
1429
+ description: z.string().optional(),
1430
+ minLength: z.number().optional(),
1431
+ maxLength: z.number().optional(),
1432
+ pattern: z.string().optional(),
1433
+ default: z.string().optional(),
1434
+ enum: z.array(z.string()).optional(),
1435
+ });
1436
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseItems) {
1437
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema
1438
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseItems));
1439
+ }
1440
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseItemsFromJSON(jsonString) {
1441
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema
1442
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems' from JSON`);
1443
+ }
1444
+ /** @internal */
1445
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl);
1446
+ /** @internal */
1447
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
1448
+ /** @internal */
1449
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3);
1450
+ /** @internal */
1451
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema;
1452
+ /** @internal */
1453
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema = z.object({
1454
+ expr: types.string(),
1455
+ });
1456
+ /** @internal */
1457
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema = z.object({
1458
+ expr: z.string(),
1459
+ });
1460
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2) {
1461
+ return JSON.stringify(CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
1462
+ .parse(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2));
1463
+ }
1464
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString) {
1465
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
1466
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2' from JSON`);
1467
+ }
1468
+ /** @internal */
1469
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$inboundSchema = smartUnion([
1470
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema),
1471
+ types.boolean(),
1472
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
1473
+ ]);
1474
+ /** @internal */
1475
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$outboundSchema = smartUnion([
1476
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema),
1477
+ z.boolean(),
1478
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
1479
+ ]);
1480
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled) {
1481
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$outboundSchema
1482
+ .parse(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled));
1483
+ }
1484
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200DisabledFromJSON(jsonString) {
1485
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled$inboundSchema
1486
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Disabled' from JSON`);
1487
+ }
1488
+ /** @internal */
1489
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3);
1490
+ /** @internal */
1491
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema;
1492
+ /** @internal */
1493
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema = z.object({
1494
+ expr: types.string(),
1495
+ });
1496
+ /** @internal */
1497
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema = z.object({
1498
+ expr: z.string(),
1499
+ });
1500
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2) {
1501
+ return JSON.stringify(CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
1502
+ .parse(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2));
1503
+ }
1504
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString) {
1505
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
1506
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2' from JSON`);
1507
+ }
1508
+ /** @internal */
1509
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$inboundSchema = smartUnion([
1510
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema),
1511
+ types.boolean(),
1512
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
1513
+ ]);
1514
+ /** @internal */
1515
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$outboundSchema = smartUnion([
1516
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema),
1517
+ z.boolean(),
1518
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
1519
+ ]);
1520
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden) {
1521
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$outboundSchema
1522
+ .parse(createIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden));
1523
+ }
1524
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponse200HiddenFromJSON(jsonString) {
1525
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden$inboundSchema
1526
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponse200Hidden' from JSON`);
1527
+ }
1528
+ /** @internal */
1529
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema = z.object({
1530
+ value: types.string(),
1531
+ disabled: types.optional(smartUnion([
1532
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema),
1533
+ types.boolean(),
1534
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
1535
+ ])),
1536
+ hidden: types.optional(smartUnion([
1537
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema),
1538
+ types.boolean(),
1539
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
1540
+ ])),
1541
+ });
1542
+ /** @internal */
1543
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema = z.object({
1544
+ value: z.string(),
1545
+ disabled: smartUnion([
1546
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema),
1547
+ z.boolean(),
1548
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
1549
+ ]).optional(),
1550
+ hidden: smartUnion([
1551
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema),
1552
+ z.boolean(),
1553
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
1554
+ ]).optional(),
1555
+ });
1556
+ export function createIntegrationStoreDirectUiOptionsIntegrations3ToJSON(createIntegrationStoreDirectUiOptionsIntegrations3) {
1557
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema.parse(createIntegrationStoreDirectUiOptionsIntegrations3));
1558
+ }
1559
+ export function createIntegrationStoreDirectUiOptionsIntegrations3FromJSON(jsonString) {
1560
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrations3' from JSON`);
1561
+ }
1562
+ /** @internal */
1563
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3);
1564
+ /** @internal */
1565
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema;
1566
+ /** @internal */
1567
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema = z.object({
1568
+ expr: types.string(),
1569
+ });
1570
+ /** @internal */
1571
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema = z.object({
1572
+ expr: z.string(),
1573
+ });
1574
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2) {
1575
+ return JSON.stringify(CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
1576
+ .parse(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2));
1577
+ }
1578
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2FromJSON(jsonString) {
1579
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
1580
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2' from JSON`);
1581
+ }
1582
+ /** @internal */
1583
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$inboundSchema = smartUnion([
1584
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema),
1585
+ types.boolean(),
1586
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
1587
+ ]);
1588
+ /** @internal */
1589
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$outboundSchema = smartUnion([
1590
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema),
1591
+ z.boolean(),
1592
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
1593
+ ]);
1594
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled) {
1595
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$outboundSchema
1596
+ .parse(createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled));
1597
+ }
1598
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseDisabledFromJSON(jsonString) {
1599
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled$inboundSchema
1600
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponseDisabled' from JSON`);
1601
+ }
1602
+ /** @internal */
1603
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3);
1604
+ /** @internal */
1605
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema;
1606
+ /** @internal */
1607
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema = z.object({
1608
+ expr: types.string(),
1609
+ });
1610
+ /** @internal */
1611
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema = z.object({
1612
+ expr: z.string(),
1613
+ });
1614
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2) {
1615
+ return JSON.stringify(CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
1616
+ .parse(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2));
1617
+ }
1618
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2FromJSON(jsonString) {
1619
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
1620
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2' from JSON`);
1621
+ }
1622
+ /** @internal */
1623
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$inboundSchema = smartUnion([
1624
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema),
1625
+ types.boolean(),
1626
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
1627
+ ]);
1628
+ /** @internal */
1629
+ export const CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$outboundSchema = smartUnion([
1630
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema),
1631
+ z.boolean(),
1632
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
1633
+ ]);
1634
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenToJSON(createIntegrationStoreDirectUiOptionsIntegrationsResponseHidden) {
1635
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$outboundSchema
1636
+ .parse(createIntegrationStoreDirectUiOptionsIntegrationsResponseHidden));
1637
+ }
1638
+ export function createIntegrationStoreDirectUiOptionsIntegrationsResponseHiddenFromJSON(jsonString) {
1639
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden$inboundSchema
1640
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrationsResponseHidden' from JSON`);
1641
+ }
1642
+ /** @internal */
1643
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema = z.object({
1644
+ value: types.string(),
1645
+ label: types.string(),
1646
+ disabled: types.optional(smartUnion([
1647
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema),
1648
+ types.boolean(),
1649
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
1650
+ ])),
1651
+ hidden: types.optional(smartUnion([
1652
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema),
1653
+ types.boolean(),
1654
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
1655
+ ])),
1656
+ });
1657
+ /** @internal */
1658
+ export const CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema = z.object({
1659
+ value: z.string(),
1660
+ label: z.string(),
1661
+ disabled: smartUnion([
1662
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema),
1663
+ z.boolean(),
1664
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
1665
+ ]).optional(),
1666
+ hidden: smartUnion([
1667
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema),
883
1668
  z.boolean(),
884
- CreateIntegrationStoreDirectHidden3$outboundSchema,
1669
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
885
1670
  ]).optional(),
886
1671
  });
887
- export function createIntegrationStoreDirectProperties9ToJSON(createIntegrationStoreDirectProperties9) {
888
- return JSON.stringify(CreateIntegrationStoreDirectProperties9$outboundSchema.parse(createIntegrationStoreDirectProperties9));
1672
+ export function createIntegrationStoreDirectUiOptionsIntegrations1ToJSON(createIntegrationStoreDirectUiOptionsIntegrations1) {
1673
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema.parse(createIntegrationStoreDirectUiOptionsIntegrations1));
889
1674
  }
890
- export function createIntegrationStoreDirectProperties9FromJSON(jsonString) {
891
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectProperties9$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectProperties9' from JSON`);
1675
+ export function createIntegrationStoreDirectUiOptionsIntegrations1FromJSON(jsonString) {
1676
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsIntegrations1' from JSON`);
892
1677
  }
893
1678
  /** @internal */
894
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType);
895
- /** @internal */
896
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema;
897
- /** @internal */
898
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl);
1679
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$inboundSchema = smartUnion([
1680
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema),
1681
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema),
1682
+ types.string(),
1683
+ ]);
899
1684
  /** @internal */
900
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
1685
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$outboundSchema = smartUnion([
1686
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema),
1687
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema),
1688
+ z.string(),
1689
+ ]);
1690
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions) {
1691
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$outboundSchema
1692
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions));
1693
+ }
1694
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptionsFromJSON(jsonString) {
1695
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions$inboundSchema
1696
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiOptions' from JSON`);
1697
+ }
901
1698
  /** @internal */
902
1699
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3);
903
1700
  /** @internal */
@@ -1071,13 +1868,16 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
1071
1868
  /** @internal */
1072
1869
  export const CreateIntegrationStoreDirectProperties8$inboundSchema = z.object({
1073
1870
  type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema,
1871
+ items: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$inboundSchema),
1074
1872
  "ui:control": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema,
1075
- enum: types.optional(z.array(types.string())),
1076
- maxLength: types.optional(types.number()),
1077
- minLength: types.optional(types.number()),
1078
- pattern: types.optional(types.string()),
1873
+ "ui:options": z.array(smartUnion([
1874
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations1$inboundSchema),
1875
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations3$inboundSchema),
1876
+ types.string(),
1877
+ ])),
1878
+ maxItems: types.optional(types.number()),
1879
+ minItems: types.optional(types.number()),
1079
1880
  description: types.optional(types.string()),
1080
- default: types.optional(types.string()),
1081
1881
  "ui:label": types.optional(types.string()),
1082
1882
  "ui:read-only": types.optional(smartUnion([
1083
1883
  z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema),
@@ -1100,9 +1900,12 @@ export const CreateIntegrationStoreDirectProperties8$inboundSchema = z.object({
1100
1900
  ])),
1101
1901
  "ui:formatted-value": types.optional(z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$inboundSchema)),
1102
1902
  "ui:placeholder": types.optional(types.string()),
1903
+ default: types.optional(z.array(types.string())),
1904
+ example: types.optional(z.array(types.string())),
1103
1905
  }).transform((v) => {
1104
1906
  return remap$(v, {
1105
1907
  "ui:control": "uiControl",
1908
+ "ui:options": "uiOptions",
1106
1909
  "ui:label": "uiLabel",
1107
1910
  "ui:read-only": "uiReadOnly",
1108
1911
  "ui:hidden": "uiHidden",
@@ -1115,13 +1918,16 @@ export const CreateIntegrationStoreDirectProperties8$inboundSchema = z.object({
1115
1918
  /** @internal */
1116
1919
  export const CreateIntegrationStoreDirectProperties8$outboundSchema = z.object({
1117
1920
  type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema,
1921
+ items: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseItems$outboundSchema),
1118
1922
  uiControl: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema,
1119
- enum: z.array(z.string()).optional(),
1120
- maxLength: z.number().optional(),
1121
- minLength: z.number().optional(),
1122
- pattern: z.string().optional(),
1923
+ uiOptions: z.array(smartUnion([
1924
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations1$outboundSchema),
1925
+ z.lazy(() => CreateIntegrationStoreDirectUiOptionsIntegrations3$outboundSchema),
1926
+ z.string(),
1927
+ ])),
1928
+ maxItems: z.number().optional(),
1929
+ minItems: z.number().optional(),
1123
1930
  description: z.string().optional(),
1124
- default: z.string().optional(),
1125
1931
  uiLabel: z.string().optional(),
1126
1932
  uiReadOnly: smartUnion([
1127
1933
  z.lazy(() => CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema),
@@ -1144,9 +1950,12 @@ export const CreateIntegrationStoreDirectProperties8$outboundSchema = z.object({
1144
1950
  ]).optional(),
1145
1951
  uiFormattedValue: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$outboundSchema).optional(),
1146
1952
  uiPlaceholder: z.string().optional(),
1953
+ default: z.array(z.string()).optional(),
1954
+ example: z.array(z.string()).optional(),
1147
1955
  }).transform((v) => {
1148
1956
  return remap$(v, {
1149
1957
  uiControl: "ui:control",
1958
+ uiOptions: "ui:options",
1150
1959
  uiLabel: "ui:label",
1151
1960
  uiReadOnly: "ui:read-only",
1152
1961
  uiHidden: "ui:hidden",
@@ -1285,36 +2094,36 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(jsonString) {
1285
2094
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptions3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptions3' from JSON`);
1286
2095
  }
1287
2096
  /** @internal */
1288
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3);
2097
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectDisabledIntegrationsResponse3);
1289
2098
  /** @internal */
1290
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema = CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema;
2099
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema = CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema;
1291
2100
  /** @internal */
1292
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema = z.object({
2101
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema = z.object({
1293
2102
  expr: types.string(),
1294
2103
  });
1295
2104
  /** @internal */
1296
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema = z.object({
2105
+ export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema = z.object({
1297
2106
  expr: z.string(),
1298
2107
  });
1299
- export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2) {
1300
- return JSON.stringify(CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema
1301
- .parse(createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2));
2108
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse2) {
2109
+ return JSON.stringify(CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
2110
+ .parse(createIntegrationStoreDirectDisabledIntegrationsResponse2));
1302
2111
  }
1303
- export function createIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJSON2FromJSON(jsonString) {
1304
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema
1305
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2' from JSON`);
2112
+ export function createIntegrationStoreDirectDisabledIntegrationsResponse2FromJSON(jsonString) {
2113
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
2114
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse2' from JSON`);
1306
2115
  }
1307
2116
  /** @internal */
1308
2117
  export const CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema = smartUnion([
1309
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema),
2118
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema),
1310
2119
  types.boolean(),
1311
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
2120
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
1312
2121
  ]);
1313
2122
  /** @internal */
1314
2123
  export const CreateIntegrationStoreDirectUiOptionsDisabled$outboundSchema = smartUnion([
1315
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema),
2124
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema),
1316
2125
  z.boolean(),
1317
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
2126
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
1318
2127
  ]);
1319
2128
  export function createIntegrationStoreDirectUiOptionsDisabledToJSON(createIntegrationStoreDirectUiOptionsDisabled) {
1320
2129
  return JSON.stringify(CreateIntegrationStoreDirectUiOptionsDisabled$outboundSchema.parse(createIntegrationStoreDirectUiOptionsDisabled));
@@ -1323,36 +2132,36 @@ export function createIntegrationStoreDirectUiOptionsDisabledFromJSON(jsonString
1323
2132
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsDisabled' from JSON`);
1324
2133
  }
1325
2134
  /** @internal */
1326
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3);
2135
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectHiddenIntegrationsResponse3);
1327
2136
  /** @internal */
1328
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema = CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema;
2137
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema = CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema;
1329
2138
  /** @internal */
1330
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema = z.object({
2139
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema = z.object({
1331
2140
  expr: types.string(),
1332
2141
  });
1333
2142
  /** @internal */
1334
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema = z.object({
2143
+ export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema = z.object({
1335
2144
  expr: z.string(),
1336
2145
  });
1337
- export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2) {
1338
- return JSON.stringify(CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema
1339
- .parse(createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2));
2146
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse2) {
2147
+ return JSON.stringify(CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
2148
+ .parse(createIntegrationStoreDirectHiddenIntegrationsResponse2));
1340
2149
  }
1341
- export function createIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJSON2FromJSON(jsonString) {
1342
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema
1343
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2' from JSON`);
2150
+ export function createIntegrationStoreDirectHiddenIntegrationsResponse2FromJSON(jsonString) {
2151
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
2152
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse2' from JSON`);
1344
2153
  }
1345
2154
  /** @internal */
1346
2155
  export const CreateIntegrationStoreDirectUiOptionsHidden$inboundSchema = smartUnion([
1347
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema),
2156
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema),
1348
2157
  types.boolean(),
1349
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
2158
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
1350
2159
  ]);
1351
2160
  /** @internal */
1352
2161
  export const CreateIntegrationStoreDirectUiOptionsHidden$outboundSchema = smartUnion([
1353
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema),
2162
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema),
1354
2163
  z.boolean(),
1355
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
2164
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
1356
2165
  ]);
1357
2166
  export function createIntegrationStoreDirectUiOptionsHiddenToJSON(createIntegrationStoreDirectUiOptionsHidden) {
1358
2167
  return JSON.stringify(CreateIntegrationStoreDirectUiOptionsHidden$outboundSchema.parse(createIntegrationStoreDirectUiOptionsHidden));
@@ -1365,14 +2174,14 @@ export const CreateIntegrationStoreDirectUiOptions1$inboundSchema = z.object({
1365
2174
  value: types.string(),
1366
2175
  label: types.string(),
1367
2176
  disabled: types.optional(smartUnion([
1368
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema),
2177
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema),
1369
2178
  types.boolean(),
1370
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema,
2179
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
1371
2180
  ])),
1372
2181
  hidden: types.optional(smartUnion([
1373
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema),
2182
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema),
1374
2183
  types.boolean(),
1375
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema,
2184
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
1376
2185
  ])),
1377
2186
  });
1378
2187
  /** @internal */
@@ -1380,14 +2189,14 @@ export const CreateIntegrationStoreDirectUiOptions1$outboundSchema = z.object({
1380
2189
  value: z.string(),
1381
2190
  label: z.string(),
1382
2191
  disabled: smartUnion([
1383
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema),
2192
+ z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema),
1384
2193
  z.boolean(),
1385
- CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema,
2194
+ CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
1386
2195
  ]).optional(),
1387
2196
  hidden: smartUnion([
1388
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema),
2197
+ z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema),
1389
2198
  z.boolean(),
1390
- CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema,
2199
+ CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
1391
2200
  ]).optional(),
1392
2201
  });
1393
2202
  export function createIntegrationStoreDirectUiOptions1ToJSON(createIntegrationStoreDirectUiOptions1) {
@@ -2125,98 +2934,90 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
2125
2934
  /** @internal */
2126
2935
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema;
2127
2936
  /** @internal */
2128
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectDisabledIntegrationsResponse3);
2937
+ export const CreateIntegrationStoreDirectDisabled3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectDisabled3);
2129
2938
  /** @internal */
2130
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema = CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema;
2939
+ export const CreateIntegrationStoreDirectDisabled3$outboundSchema = CreateIntegrationStoreDirectDisabled3$inboundSchema;
2131
2940
  /** @internal */
2132
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema = z.object({
2941
+ export const CreateIntegrationStoreDirectDisabled2$inboundSchema = z.object({
2133
2942
  expr: types.string(),
2134
2943
  });
2135
2944
  /** @internal */
2136
- export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema = z.object({
2945
+ export const CreateIntegrationStoreDirectDisabled2$outboundSchema = z.object({
2137
2946
  expr: z.string(),
2138
2947
  });
2139
- export function createIntegrationStoreDirectDisabledIntegrationsResponse2ToJSON(createIntegrationStoreDirectDisabledIntegrationsResponse2) {
2140
- return JSON.stringify(CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema
2141
- .parse(createIntegrationStoreDirectDisabledIntegrationsResponse2));
2948
+ export function createIntegrationStoreDirectDisabled2ToJSON(createIntegrationStoreDirectDisabled2) {
2949
+ return JSON.stringify(CreateIntegrationStoreDirectDisabled2$outboundSchema.parse(createIntegrationStoreDirectDisabled2));
2142
2950
  }
2143
- export function createIntegrationStoreDirectDisabledIntegrationsResponse2FromJSON(jsonString) {
2144
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema
2145
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectDisabledIntegrationsResponse2' from JSON`);
2951
+ export function createIntegrationStoreDirectDisabled2FromJSON(jsonString) {
2952
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectDisabled2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectDisabled2' from JSON`);
2146
2953
  }
2147
2954
  /** @internal */
2148
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$inboundSchema = smartUnion([
2149
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema),
2955
+ export const CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema = smartUnion([
2956
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
2150
2957
  types.boolean(),
2151
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
2958
+ CreateIntegrationStoreDirectDisabled3$inboundSchema,
2152
2959
  ]);
2153
2960
  /** @internal */
2154
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$outboundSchema = smartUnion([
2155
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema),
2961
+ export const CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema = smartUnion([
2962
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
2156
2963
  z.boolean(),
2157
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
2964
+ CreateIntegrationStoreDirectDisabled3$outboundSchema,
2158
2965
  ]);
2159
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseDisabledToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseDisabled) {
2160
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$outboundSchema
2161
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseDisabled));
2966
+ export function createIntegrationStoreDirectPropertiesDisabledToJSON(createIntegrationStoreDirectPropertiesDisabled) {
2967
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema.parse(createIntegrationStoreDirectPropertiesDisabled));
2162
2968
  }
2163
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseDisabledFromJSON(jsonString) {
2164
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$inboundSchema
2165
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled' from JSON`);
2969
+ export function createIntegrationStoreDirectPropertiesDisabledFromJSON(jsonString) {
2970
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesDisabled' from JSON`);
2166
2971
  }
2167
2972
  /** @internal */
2168
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectHiddenIntegrationsResponse3);
2973
+ export const CreateIntegrationStoreDirectHidden3$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectHidden3);
2169
2974
  /** @internal */
2170
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema = CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema;
2975
+ export const CreateIntegrationStoreDirectHidden3$outboundSchema = CreateIntegrationStoreDirectHidden3$inboundSchema;
2171
2976
  /** @internal */
2172
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema = z.object({
2977
+ export const CreateIntegrationStoreDirectHidden2$inboundSchema = z.object({
2173
2978
  expr: types.string(),
2174
2979
  });
2175
2980
  /** @internal */
2176
- export const CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema = z.object({
2981
+ export const CreateIntegrationStoreDirectHidden2$outboundSchema = z.object({
2177
2982
  expr: z.string(),
2178
2983
  });
2179
- export function createIntegrationStoreDirectHiddenIntegrationsResponse2ToJSON(createIntegrationStoreDirectHiddenIntegrationsResponse2) {
2180
- return JSON.stringify(CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema
2181
- .parse(createIntegrationStoreDirectHiddenIntegrationsResponse2));
2984
+ export function createIntegrationStoreDirectHidden2ToJSON(createIntegrationStoreDirectHidden2) {
2985
+ return JSON.stringify(CreateIntegrationStoreDirectHidden2$outboundSchema.parse(createIntegrationStoreDirectHidden2));
2182
2986
  }
2183
- export function createIntegrationStoreDirectHiddenIntegrationsResponse2FromJSON(jsonString) {
2184
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema
2185
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectHiddenIntegrationsResponse2' from JSON`);
2987
+ export function createIntegrationStoreDirectHidden2FromJSON(jsonString) {
2988
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectHidden2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectHidden2' from JSON`);
2186
2989
  }
2187
2990
  /** @internal */
2188
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$inboundSchema = smartUnion([
2189
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema),
2991
+ export const CreateIntegrationStoreDirectPropertiesHidden$inboundSchema = smartUnion([
2992
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
2190
2993
  types.boolean(),
2191
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
2994
+ CreateIntegrationStoreDirectHidden3$inboundSchema,
2192
2995
  ]);
2193
2996
  /** @internal */
2194
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$outboundSchema = smartUnion([
2195
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema),
2997
+ export const CreateIntegrationStoreDirectPropertiesHidden$outboundSchema = smartUnion([
2998
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
2196
2999
  z.boolean(),
2197
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
3000
+ CreateIntegrationStoreDirectHidden3$outboundSchema,
2198
3001
  ]);
2199
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseHiddenToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseHidden) {
2200
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$outboundSchema
2201
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseHidden));
3002
+ export function createIntegrationStoreDirectPropertiesHiddenToJSON(createIntegrationStoreDirectPropertiesHidden) {
3003
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesHidden$outboundSchema.parse(createIntegrationStoreDirectPropertiesHidden));
2202
3004
  }
2203
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseHiddenFromJSON(jsonString) {
2204
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$inboundSchema
2205
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden' from JSON`);
3005
+ export function createIntegrationStoreDirectPropertiesHiddenFromJSON(jsonString) {
3006
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesHidden$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesHidden' from JSON`);
2206
3007
  }
2207
3008
  /** @internal */
2208
3009
  export const CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema = z.object({
2209
3010
  value: types.string(),
2210
3011
  label: types.string(),
2211
3012
  disabled: types.optional(smartUnion([
2212
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema),
3013
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$inboundSchema),
2213
3014
  types.boolean(),
2214
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema,
3015
+ CreateIntegrationStoreDirectDisabled3$inboundSchema,
2215
3016
  ])),
2216
3017
  hidden: types.optional(smartUnion([
2217
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema),
3018
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$inboundSchema),
2218
3019
  types.boolean(),
2219
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema,
3020
+ CreateIntegrationStoreDirectHidden3$inboundSchema,
2220
3021
  ])),
2221
3022
  });
2222
3023
  /** @internal */
@@ -2224,14 +3025,14 @@ export const CreateIntegrationStoreDirectPropertiesUiOptions$outboundSchema = z.
2224
3025
  value: z.string(),
2225
3026
  label: z.string(),
2226
3027
  disabled: smartUnion([
2227
- z.lazy(() => CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema),
3028
+ z.lazy(() => CreateIntegrationStoreDirectDisabled2$outboundSchema),
2228
3029
  z.boolean(),
2229
- CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema,
3030
+ CreateIntegrationStoreDirectDisabled3$outboundSchema,
2230
3031
  ]).optional(),
2231
3032
  hidden: smartUnion([
2232
- z.lazy(() => CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema),
3033
+ z.lazy(() => CreateIntegrationStoreDirectHidden2$outboundSchema),
2233
3034
  z.boolean(),
2234
- CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema,
3035
+ CreateIntegrationStoreDirectHidden3$outboundSchema,
2235
3036
  ]).optional(),
2236
3037
  });
2237
3038
  export function createIntegrationStoreDirectPropertiesUiOptionsToJSON(createIntegrationStoreDirectPropertiesUiOptions) {
@@ -2513,12 +3314,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$i
2513
3314
  /** @internal */
2514
3315
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$inboundSchema;
2515
3316
  /** @internal */
2516
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType);
3317
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema = z.nativeEnum(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type);
2517
3318
  /** @internal */
2518
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema;
3319
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema;
2519
3320
  /** @internal */
2520
3321
  export const CreateIntegrationStoreDirectPropertiesItems$inboundSchema = z.object({
2521
- type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema,
3322
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$inboundSchema,
2522
3323
  description: types.optional(types.string()),
2523
3324
  minimum: types.optional(types.number()),
2524
3325
  exclusiveMinimum: types.optional(types.number()),
@@ -2528,7 +3329,7 @@ export const CreateIntegrationStoreDirectPropertiesItems$inboundSchema = z.objec
2528
3329
  });
2529
3330
  /** @internal */
2530
3331
  export const CreateIntegrationStoreDirectPropertiesItems$outboundSchema = z.object({
2531
- type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema,
3332
+ type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema4Type$outboundSchema,
2532
3333
  description: z.string().optional(),
2533
3334
  minimum: z.number().optional(),
2534
3335
  exclusiveMinimum: z.number().optional(),
@@ -3597,25 +4398,27 @@ export function createIntegrationStoreDirectProperties1FromJSON(jsonString) {
3597
4398
  export const CreateIntegrationStoreDirectProperties$inboundSchema = smartUnion([
3598
4399
  z.lazy(() => CreateIntegrationStoreDirectProperties4$inboundSchema),
3599
4400
  z.lazy(() => CreateIntegrationStoreDirectProperties6$inboundSchema),
4401
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
3600
4402
  z.lazy(() => CreateIntegrationStoreDirectProperties5$inboundSchema),
3601
4403
  z.lazy(() => CreateIntegrationStoreDirectProperties7$inboundSchema),
3602
4404
  z.lazy(() => CreateIntegrationStoreDirectProperties1$inboundSchema),
3603
4405
  z.lazy(() => CreateIntegrationStoreDirectProperties2$inboundSchema),
3604
4406
  z.lazy(() => CreateIntegrationStoreDirectProperties3$inboundSchema),
3605
- z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
3606
4407
  z.lazy(() => CreateIntegrationStoreDirectProperties9$inboundSchema),
4408
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$inboundSchema),
3607
4409
  ]);
3608
4410
  /** @internal */
3609
4411
  export const CreateIntegrationStoreDirectProperties$outboundSchema = smartUnion([
3610
4412
  z.lazy(() => CreateIntegrationStoreDirectProperties4$outboundSchema),
3611
4413
  z.lazy(() => CreateIntegrationStoreDirectProperties6$outboundSchema),
4414
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
3612
4415
  z.lazy(() => CreateIntegrationStoreDirectProperties5$outboundSchema),
3613
4416
  z.lazy(() => CreateIntegrationStoreDirectProperties7$outboundSchema),
3614
4417
  z.lazy(() => CreateIntegrationStoreDirectProperties1$outboundSchema),
3615
4418
  z.lazy(() => CreateIntegrationStoreDirectProperties2$outboundSchema),
3616
4419
  z.lazy(() => CreateIntegrationStoreDirectProperties3$outboundSchema),
3617
- z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
3618
4420
  z.lazy(() => CreateIntegrationStoreDirectProperties9$outboundSchema),
4421
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$outboundSchema),
3619
4422
  ]);
3620
4423
  export function createIntegrationStoreDirectPropertiesToJSON(createIntegrationStoreDirectProperties) {
3621
4424
  return JSON.stringify(CreateIntegrationStoreDirectProperties$outboundSchema.parse(createIntegrationStoreDirectProperties));
@@ -3629,13 +4432,14 @@ export const CreateIntegrationStoreDirectMetadataSchema$inboundSchema = z.object
3629
4432
  properties: z.record(smartUnion([
3630
4433
  z.lazy(() => CreateIntegrationStoreDirectProperties4$inboundSchema),
3631
4434
  z.lazy(() => CreateIntegrationStoreDirectProperties6$inboundSchema),
4435
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
3632
4436
  z.lazy(() => CreateIntegrationStoreDirectProperties5$inboundSchema),
3633
4437
  z.lazy(() => CreateIntegrationStoreDirectProperties7$inboundSchema),
3634
4438
  z.lazy(() => CreateIntegrationStoreDirectProperties1$inboundSchema),
3635
4439
  z.lazy(() => CreateIntegrationStoreDirectProperties2$inboundSchema),
3636
4440
  z.lazy(() => CreateIntegrationStoreDirectProperties3$inboundSchema),
3637
- z.lazy(() => CreateIntegrationStoreDirectProperties8$inboundSchema),
3638
4441
  z.lazy(() => CreateIntegrationStoreDirectProperties9$inboundSchema),
4442
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$inboundSchema),
3639
4443
  ])),
3640
4444
  required: types.optional(z.array(types.string())),
3641
4445
  });
@@ -3645,13 +4449,14 @@ export const CreateIntegrationStoreDirectMetadataSchema$outboundSchema = z.objec
3645
4449
  properties: z.record(smartUnion([
3646
4450
  z.lazy(() => CreateIntegrationStoreDirectProperties4$outboundSchema),
3647
4451
  z.lazy(() => CreateIntegrationStoreDirectProperties6$outboundSchema),
4452
+ z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
3648
4453
  z.lazy(() => CreateIntegrationStoreDirectProperties5$outboundSchema),
3649
4454
  z.lazy(() => CreateIntegrationStoreDirectProperties7$outboundSchema),
3650
4455
  z.lazy(() => CreateIntegrationStoreDirectProperties1$outboundSchema),
3651
4456
  z.lazy(() => CreateIntegrationStoreDirectProperties2$outboundSchema),
3652
4457
  z.lazy(() => CreateIntegrationStoreDirectProperties3$outboundSchema),
3653
- z.lazy(() => CreateIntegrationStoreDirectProperties8$outboundSchema),
3654
4458
  z.lazy(() => CreateIntegrationStoreDirectProperties9$outboundSchema),
4459
+ z.lazy(() => CreateIntegrationStoreDirectProperties10$outboundSchema),
3655
4460
  ])),
3656
4461
  required: z.array(z.string()).optional(),
3657
4462
  });
@@ -3761,79 +4566,42 @@ export function guidesFromJSON(jsonString) {
3761
4566
  return safeParse(jsonString, (x) => Guides$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Guides' from JSON`);
3762
4567
  }
3763
4568
  /** @internal */
3764
- export const Disabled3$inboundSchema = z
3765
- .nativeEnum(Disabled3);
3766
- /** @internal */
3767
- export const Disabled3$outboundSchema = Disabled3$inboundSchema;
3768
- /** @internal */
3769
- export const Disabled2$inboundSchema = z.object({
3770
- expr: types.string(),
4569
+ export const CreateIntegrationStoreDirectIntegration$inboundSchema = z.object({
4570
+ id: types.string(),
4571
+ name: types.string(),
4572
+ slug: types.string(),
4573
+ supportsInstallationBillingPlans: types.optional(types.boolean()),
4574
+ icon: types.string(),
4575
+ flags: types.optional(z.array(types.string())),
3771
4576
  });
3772
4577
  /** @internal */
3773
- export const Disabled2$outboundSchema = z.object({
3774
- expr: z.string(),
4578
+ export const CreateIntegrationStoreDirectIntegration$outboundSchema = z.object({
4579
+ id: z.string(),
4580
+ name: z.string(),
4581
+ slug: z.string(),
4582
+ supportsInstallationBillingPlans: z.boolean().optional(),
4583
+ icon: z.string(),
4584
+ flags: z.array(z.string()).optional(),
3775
4585
  });
3776
- export function disabled2ToJSON(disabled2) {
3777
- return JSON.stringify(Disabled2$outboundSchema.parse(disabled2));
3778
- }
3779
- export function disabled2FromJSON(jsonString) {
3780
- return safeParse(jsonString, (x) => Disabled2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Disabled2' from JSON`);
3781
- }
3782
- /** @internal */
3783
- export const Disabled$inboundSchema = smartUnion([
3784
- z.lazy(() => Disabled2$inboundSchema),
3785
- types.boolean(),
3786
- Disabled3$inboundSchema,
3787
- ]);
3788
- /** @internal */
3789
- export const Disabled$outboundSchema = smartUnion([
3790
- z.lazy(() => Disabled2$outboundSchema),
3791
- z.boolean(),
3792
- Disabled3$outboundSchema,
3793
- ]);
3794
- export function disabledToJSON(disabled) {
3795
- return JSON.stringify(Disabled$outboundSchema.parse(disabled));
4586
+ export function createIntegrationStoreDirectIntegrationToJSON(createIntegrationStoreDirectIntegration) {
4587
+ return JSON.stringify(CreateIntegrationStoreDirectIntegration$outboundSchema.parse(createIntegrationStoreDirectIntegration));
3796
4588
  }
3797
- export function disabledFromJSON(jsonString) {
3798
- return safeParse(jsonString, (x) => Disabled$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Disabled' from JSON`);
4589
+ export function createIntegrationStoreDirectIntegrationFromJSON(jsonString) {
4590
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectIntegration$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectIntegration' from JSON`);
3799
4591
  }
3800
4592
  /** @internal */
3801
- export const Hidden3$inboundSchema = z
3802
- .nativeEnum(Hidden3);
4593
+ export const SupportedProtocols$inboundSchema = z.nativeEnum(SupportedProtocols);
3803
4594
  /** @internal */
3804
- export const Hidden3$outboundSchema = Hidden3$inboundSchema;
4595
+ export const SupportedProtocols$outboundSchema = SupportedProtocols$inboundSchema;
3805
4596
  /** @internal */
3806
- export const Hidden2$inboundSchema = z.object({
3807
- expr: types.string(),
3808
- });
4597
+ export const CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema = z
4598
+ .nativeEnum(CreateIntegrationStoreDirectPrimaryProtocol);
3809
4599
  /** @internal */
3810
- export const Hidden2$outboundSchema = z.object({
3811
- expr: z.string(),
3812
- });
3813
- export function hidden2ToJSON(hidden2) {
3814
- return JSON.stringify(Hidden2$outboundSchema.parse(hidden2));
3815
- }
3816
- export function hidden2FromJSON(jsonString) {
3817
- return safeParse(jsonString, (x) => Hidden2$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Hidden2' from JSON`);
3818
- }
4600
+ export const CreateIntegrationStoreDirectPrimaryProtocol$outboundSchema = CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema;
3819
4601
  /** @internal */
3820
- export const Hidden$inboundSchema = smartUnion([
3821
- z.lazy(() => Hidden2$inboundSchema),
3822
- types.boolean(),
3823
- Hidden3$inboundSchema,
3824
- ]);
4602
+ export const LogDrainStatus$inboundSchema = z.nativeEnum(LogDrainStatus);
3825
4603
  /** @internal */
3826
- export const Hidden$outboundSchema = smartUnion([
3827
- z.lazy(() => Hidden2$outboundSchema),
3828
- z.boolean(),
3829
- Hidden3$outboundSchema,
3830
- ]);
3831
- export function hiddenToJSON(hidden) {
3832
- return JSON.stringify(Hidden$outboundSchema.parse(hidden));
3833
- }
3834
- export function hiddenFromJSON(jsonString) {
3835
- return safeParse(jsonString, (x) => Hidden$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Hidden' from JSON`);
3836
- }
4604
+ export const LogDrainStatus$outboundSchema = LogDrainStatus$inboundSchema;
3837
4605
  /** @internal */
3838
4606
  export const Product$inboundSchema = z.object({
3839
4607
  id: types.optional(types.string()),
@@ -3850,17 +4618,11 @@ export const Product$inboundSchema = z.object({
3850
4618
  disableResourceRenaming: types.optional(types.boolean()),
3851
4619
  repl: types.optional(z.lazy(() => Repl$inboundSchema)),
3852
4620
  guides: types.optional(z.array(z.lazy(() => Guides$inboundSchema))),
3853
- value: types.string(),
3854
- disabled: types.optional(smartUnion([
3855
- z.lazy(() => Disabled2$inboundSchema),
3856
- types.boolean(),
3857
- Disabled3$inboundSchema,
3858
- ])),
3859
- hidden: types.optional(smartUnion([
3860
- z.lazy(() => Hidden2$inboundSchema),
3861
- types.boolean(),
3862
- Hidden3$inboundSchema,
3863
- ])),
4621
+ integration: z.lazy(() => CreateIntegrationStoreDirectIntegration$inboundSchema),
4622
+ integrationConfigurationId: types.string(),
4623
+ supportedProtocols: z.array(SupportedProtocols$inboundSchema),
4624
+ primaryProtocol: types.optional(CreateIntegrationStoreDirectPrimaryProtocol$inboundSchema),
4625
+ logDrainStatus: types.optional(LogDrainStatus$inboundSchema),
3864
4626
  });
3865
4627
  /** @internal */
3866
4628
  export const Product$outboundSchema = z.object({
@@ -3879,17 +4641,12 @@ export const Product$outboundSchema = z.object({
3879
4641
  disableResourceRenaming: z.boolean().optional(),
3880
4642
  repl: z.lazy(() => Repl$outboundSchema).optional(),
3881
4643
  guides: z.array(z.lazy(() => Guides$outboundSchema)).optional(),
3882
- value: z.string(),
3883
- disabled: smartUnion([
3884
- z.lazy(() => Disabled2$outboundSchema),
3885
- z.boolean(),
3886
- Disabled3$outboundSchema,
3887
- ]).optional(),
3888
- hidden: smartUnion([
3889
- z.lazy(() => Hidden2$outboundSchema),
3890
- z.boolean(),
3891
- Hidden3$outboundSchema,
3892
- ]).optional(),
4644
+ integration: z.lazy(() => CreateIntegrationStoreDirectIntegration$outboundSchema),
4645
+ integrationConfigurationId: z.string(),
4646
+ supportedProtocols: z.array(SupportedProtocols$outboundSchema),
4647
+ primaryProtocol: CreateIntegrationStoreDirectPrimaryProtocol$outboundSchema
4648
+ .optional(),
4649
+ logDrainStatus: LogDrainStatus$outboundSchema.optional(),
3893
4650
  });
3894
4651
  export function productToJSON(product) {
3895
4652
  return JSON.stringify(Product$outboundSchema.parse(product));