@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
@@ -237,17 +237,17 @@ export type Protocols = {
237
237
  };
238
238
 
239
239
  export const PrimaryProtocol = {
240
+ Checks: "checks",
241
+ Ai: "ai",
242
+ Authentication: "authentication",
240
243
  Storage: "storage",
241
244
  Experimentation: "experimentation",
242
- Ai: "ai",
245
+ Messaging: "messaging",
243
246
  Observability: "observability",
244
247
  Video: "video",
245
- Authentication: "authentication",
246
248
  Workflow: "workflow",
247
- Checks: "checks",
248
249
  LogDrain: "logDrain",
249
250
  TraceDrain: "traceDrain",
250
- Messaging: "messaging",
251
251
  Other: "other",
252
252
  } as const;
253
253
  export type PrimaryProtocol = ClosedEnum<typeof PrimaryProtocol>;
@@ -259,52 +259,136 @@ export type GetConfigurationProductsType = ClosedEnum<
259
259
  typeof GetConfigurationProductsType
260
260
  >;
261
261
 
262
- export const GetConfigurationProductsDisabled3 = {
263
- Update: "update",
264
- Create: "create",
265
- } as const;
266
- export type GetConfigurationProductsDisabled3 = ClosedEnum<
267
- typeof GetConfigurationProductsDisabled3
268
- >;
262
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type =
263
+ {
264
+ String: "string",
265
+ } as const;
266
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type =
267
+ ClosedEnum<
268
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type
269
+ >;
269
270
 
270
- export type GetConfigurationProductsDisabled2 = {
271
- expr: string;
272
- };
271
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl =
272
+ {
273
+ GitNamespace: "git-namespace",
274
+ } as const;
275
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl =
276
+ ClosedEnum<
277
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl
278
+ >;
273
279
 
274
- export type PropertiesDisabled =
275
- | GetConfigurationProductsDisabled2
280
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 =
281
+ {
282
+ Update: "update",
283
+ Create: "create",
284
+ } as const;
285
+ export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 =
286
+ ClosedEnum<
287
+ typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
288
+ >;
289
+
290
+ export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 =
291
+ {
292
+ expr: string;
293
+ };
294
+
295
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly =
296
+ | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
276
297
  | boolean
277
- | GetConfigurationProductsDisabled3;
298
+ | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
278
299
 
279
- export const GetConfigurationProductsHidden3 = {
280
- Update: "update",
281
- Create: "create",
282
- } as const;
283
- export type GetConfigurationProductsHidden3 = ClosedEnum<
284
- typeof GetConfigurationProductsHidden3
285
- >;
300
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 =
301
+ {
302
+ Update: "update",
303
+ Create: "create",
304
+ } as const;
305
+ export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 =
306
+ ClosedEnum<
307
+ typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
308
+ >;
286
309
 
287
- export type GetConfigurationProductsHidden2 = {
288
- expr: string;
289
- };
310
+ export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 =
311
+ {
312
+ expr: string;
313
+ };
290
314
 
291
- export type PropertiesHidden =
292
- | GetConfigurationProductsHidden2
315
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden =
316
+ | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
293
317
  | boolean
294
- | GetConfigurationProductsHidden3;
318
+ | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
319
+
320
+ export const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 =
321
+ {
322
+ Update: "update",
323
+ Create: "create",
324
+ } as const;
325
+ export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 =
326
+ ClosedEnum<
327
+ typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
328
+ >;
329
+
330
+ export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 =
331
+ {
332
+ expr: string;
333
+ };
334
+
335
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled =
336
+ | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
337
+ | boolean
338
+ | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
339
+
340
+ export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 =
341
+ {
342
+ expr: string;
343
+ };
344
+
345
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription =
346
+ | GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
347
+ | string;
348
+
349
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue =
350
+ {
351
+ expr: string;
352
+ };
353
+
354
+ export const GitProviders = {
355
+ Github: "github",
356
+ Gitlab: "gitlab",
357
+ Bitbucket: "bitbucket",
358
+ } as const;
359
+ export type GitProviders = ClosedEnum<typeof GitProviders>;
295
360
 
296
361
  export type Properties10 = {
297
- value: string;
298
- disabled?:
299
- | GetConfigurationProductsDisabled2
362
+ type:
363
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type;
364
+ uiControl:
365
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl;
366
+ description?: string | undefined;
367
+ uiLabel?: string | undefined;
368
+ uiReadOnly?:
369
+ | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
300
370
  | boolean
301
- | GetConfigurationProductsDisabled3
371
+ | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
302
372
  | undefined;
303
- hidden?:
304
- | GetConfigurationProductsHidden2
373
+ uiHidden?:
374
+ | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
305
375
  | boolean
306
- | GetConfigurationProductsHidden3
376
+ | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
377
+ | undefined;
378
+ uiDisabled?:
379
+ | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
380
+ | boolean
381
+ | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
307
382
  | undefined;
383
+ uiDescription?:
384
+ | GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
385
+ | string
386
+ | undefined;
387
+ uiFormattedValue?:
388
+ | GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue
389
+ | undefined;
390
+ uiPlaceholder?: string | undefined;
391
+ gitProviders?: Array<GitProviders> | undefined;
308
392
  };
309
393
 
310
394
  export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType =
@@ -405,11 +489,11 @@ export type Properties9 = {
405
489
  uiControl:
406
490
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl;
407
491
  description?: string | undefined;
408
- minLength?: number | undefined;
492
+ enum?: Array<string> | undefined;
409
493
  maxLength?: number | undefined;
494
+ minLength?: number | undefined;
410
495
  pattern?: string | undefined;
411
496
  default?: string | undefined;
412
- enum?: Array<string> | undefined;
413
497
  uiLabel?: string | undefined;
414
498
  uiReadOnly?:
415
499
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2
@@ -445,15 +529,6 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
445
529
  typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType
446
530
  >;
447
531
 
448
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl =
449
- {
450
- MultiVercelRegion: "multi-vercel-region",
451
- } as const;
452
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl =
453
- ClosedEnum<
454
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl
455
- >;
456
-
457
532
  export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type =
458
533
  {
459
534
  String: "string",
@@ -474,6 +549,15 @@ export type GetConfigurationProductsPropertiesIntegrationsItems = {
474
549
  enum?: Array<string> | undefined;
475
550
  };
476
551
 
552
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl =
553
+ {
554
+ MultiVercelRegion: "multi-vercel-region",
555
+ } as const;
556
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl =
557
+ ClosedEnum<
558
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl
559
+ >;
560
+
477
561
  export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3 =
478
562
  {
479
563
  Update: "update",
@@ -658,17 +742,17 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
658
742
  export type Properties8 = {
659
743
  type:
660
744
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType;
745
+ items: GetConfigurationProductsPropertiesIntegrationsItems;
661
746
  uiControl:
662
747
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl;
663
- items: GetConfigurationProductsPropertiesIntegrationsItems;
664
748
  uiOptions: Array<
665
749
  | GetConfigurationProductsUiOptions1
666
750
  | GetConfigurationProductsUiOptions3
667
751
  | string
668
752
  >;
669
753
  description?: string | undefined;
670
- minItems?: number | undefined;
671
754
  maxItems?: number | undefined;
755
+ minItems?: number | undefined;
672
756
  uiLabel?: string | undefined;
673
757
  uiReadOnly?:
674
758
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2
@@ -715,112 +799,100 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
715
799
  typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl
716
800
  >;
717
801
 
718
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 =
719
- {
720
- Update: "update",
721
- Create: "create",
722
- } as const;
723
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 =
724
- ClosedEnum<
725
- typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3
726
- >;
802
+ export const GetConfigurationProductsDisabledIntegrationsResponse3 = {
803
+ Update: "update",
804
+ Create: "create",
805
+ } as const;
806
+ export type GetConfigurationProductsDisabledIntegrationsResponse3 = ClosedEnum<
807
+ typeof GetConfigurationProductsDisabledIntegrationsResponse3
808
+ >;
727
809
 
728
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2 =
729
- {
730
- expr: string;
731
- };
810
+ export type GetConfigurationProductsDisabledIntegrationsResponse2 = {
811
+ expr: string;
812
+ };
732
813
 
733
814
  export type GetConfigurationProductsUiOptionsDisabled =
734
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2
815
+ | GetConfigurationProductsDisabledIntegrationsResponse2
735
816
  | boolean
736
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
817
+ | GetConfigurationProductsDisabledIntegrationsResponse3;
737
818
 
738
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 =
739
- {
740
- Update: "update",
741
- Create: "create",
742
- } as const;
743
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 =
744
- ClosedEnum<
745
- typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3
746
- >;
819
+ export const GetConfigurationProductsHiddenIntegrationsResponse3 = {
820
+ Update: "update",
821
+ Create: "create",
822
+ } as const;
823
+ export type GetConfigurationProductsHiddenIntegrationsResponse3 = ClosedEnum<
824
+ typeof GetConfigurationProductsHiddenIntegrationsResponse3
825
+ >;
747
826
 
748
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2 =
749
- {
750
- expr: string;
751
- };
827
+ export type GetConfigurationProductsHiddenIntegrationsResponse2 = {
828
+ expr: string;
829
+ };
752
830
 
753
831
  export type GetConfigurationProductsUiOptionsHidden =
754
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2
832
+ | GetConfigurationProductsHiddenIntegrationsResponse2
755
833
  | boolean
756
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
834
+ | GetConfigurationProductsHiddenIntegrationsResponse3;
757
835
 
758
836
  export type UiOptions3 = {
759
837
  value: string;
760
838
  disabled?:
761
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2
839
+ | GetConfigurationProductsDisabledIntegrationsResponse2
762
840
  | boolean
763
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3
841
+ | GetConfigurationProductsDisabledIntegrationsResponse3
764
842
  | undefined;
765
843
  hidden?:
766
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2
844
+ | GetConfigurationProductsHiddenIntegrationsResponse2
767
845
  | boolean
768
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3
846
+ | GetConfigurationProductsHiddenIntegrationsResponse3
769
847
  | undefined;
770
848
  };
771
849
 
772
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 =
773
- {
774
- Update: "update",
775
- Create: "create",
776
- } as const;
777
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 =
778
- ClosedEnum<
779
- typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3
780
- >;
850
+ export const GetConfigurationProductsDisabledIntegrations3 = {
851
+ Update: "update",
852
+ Create: "create",
853
+ } as const;
854
+ export type GetConfigurationProductsDisabledIntegrations3 = ClosedEnum<
855
+ typeof GetConfigurationProductsDisabledIntegrations3
856
+ >;
781
857
 
782
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2 =
783
- {
784
- expr: string;
785
- };
858
+ export type GetConfigurationProductsDisabledIntegrations2 = {
859
+ expr: string;
860
+ };
786
861
 
787
862
  export type UiOptionsDisabled =
788
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2
863
+ | GetConfigurationProductsDisabledIntegrations2
789
864
  | boolean
790
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3;
865
+ | GetConfigurationProductsDisabledIntegrations3;
791
866
 
792
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 =
793
- {
794
- Update: "update",
795
- Create: "create",
796
- } as const;
797
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 =
798
- ClosedEnum<
799
- typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3
800
- >;
867
+ export const GetConfigurationProductsHiddenIntegrations3 = {
868
+ Update: "update",
869
+ Create: "create",
870
+ } as const;
871
+ export type GetConfigurationProductsHiddenIntegrations3 = ClosedEnum<
872
+ typeof GetConfigurationProductsHiddenIntegrations3
873
+ >;
801
874
 
802
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2 =
803
- {
804
- expr: string;
805
- };
875
+ export type GetConfigurationProductsHiddenIntegrations2 = {
876
+ expr: string;
877
+ };
806
878
 
807
879
  export type UiOptionsHidden =
808
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2
880
+ | GetConfigurationProductsHiddenIntegrations2
809
881
  | boolean
810
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3;
882
+ | GetConfigurationProductsHiddenIntegrations3;
811
883
 
812
884
  export type UiOptions1 = {
813
885
  value: string;
814
886
  label: string;
815
887
  disabled?:
816
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2
888
+ | GetConfigurationProductsDisabledIntegrations2
817
889
  | boolean
818
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3
890
+ | GetConfigurationProductsDisabledIntegrations3
819
891
  | undefined;
820
892
  hidden?:
821
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2
893
+ | GetConfigurationProductsHiddenIntegrations2
822
894
  | boolean
823
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3
895
+ | GetConfigurationProductsHiddenIntegrations3
824
896
  | undefined;
825
897
  };
826
898
 
@@ -910,11 +982,11 @@ export type Properties7 = {
910
982
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl;
911
983
  uiOptions: Array<UiOptions1 | UiOptions3 | string>;
912
984
  description?: string | undefined;
913
- minLength?: number | undefined;
985
+ enum?: Array<string> | undefined;
914
986
  maxLength?: number | undefined;
987
+ minLength?: number | undefined;
915
988
  pattern?: string | undefined;
916
989
  default?: string | undefined;
917
- enum?: Array<string> | undefined;
918
990
  uiLabel?: string | undefined;
919
991
  uiReadOnly?:
920
992
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2
@@ -950,15 +1022,6 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
950
1022
  typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType
951
1023
  >;
952
1024
 
953
- export const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl =
954
- {
955
- MultiSelect: "multi-select",
956
- } as const;
957
- export type GetConfigurationProductsPropertiesIntegrationsResponse200UiControl =
958
- ClosedEnum<
959
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl
960
- >;
961
-
962
1025
  export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type =
963
1026
  {
964
1027
  String: "string",
@@ -979,52 +1042,61 @@ export type GetConfigurationProductsPropertiesItems = {
979
1042
  enum?: Array<string> | undefined;
980
1043
  };
981
1044
 
982
- export const GetConfigurationProductsDisabledIntegrationsResponse3 = {
1045
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl =
1046
+ {
1047
+ MultiSelect: "multi-select",
1048
+ } as const;
1049
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200UiControl =
1050
+ ClosedEnum<
1051
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl
1052
+ >;
1053
+
1054
+ export const GetConfigurationProductsDisabled3 = {
983
1055
  Update: "update",
984
1056
  Create: "create",
985
1057
  } as const;
986
- export type GetConfigurationProductsDisabledIntegrationsResponse3 = ClosedEnum<
987
- typeof GetConfigurationProductsDisabledIntegrationsResponse3
1058
+ export type GetConfigurationProductsDisabled3 = ClosedEnum<
1059
+ typeof GetConfigurationProductsDisabled3
988
1060
  >;
989
1061
 
990
- export type GetConfigurationProductsDisabledIntegrationsResponse2 = {
1062
+ export type GetConfigurationProductsDisabled2 = {
991
1063
  expr: string;
992
1064
  };
993
1065
 
994
- export type GetConfigurationProductsPropertiesIntegrationsDisabled =
995
- | GetConfigurationProductsDisabledIntegrationsResponse2
1066
+ export type PropertiesDisabled =
1067
+ | GetConfigurationProductsDisabled2
996
1068
  | boolean
997
- | GetConfigurationProductsDisabledIntegrationsResponse3;
1069
+ | GetConfigurationProductsDisabled3;
998
1070
 
999
- export const GetConfigurationProductsHiddenIntegrationsResponse3 = {
1071
+ export const GetConfigurationProductsHidden3 = {
1000
1072
  Update: "update",
1001
1073
  Create: "create",
1002
1074
  } as const;
1003
- export type GetConfigurationProductsHiddenIntegrationsResponse3 = ClosedEnum<
1004
- typeof GetConfigurationProductsHiddenIntegrationsResponse3
1075
+ export type GetConfigurationProductsHidden3 = ClosedEnum<
1076
+ typeof GetConfigurationProductsHidden3
1005
1077
  >;
1006
1078
 
1007
- export type GetConfigurationProductsHiddenIntegrationsResponse2 = {
1079
+ export type GetConfigurationProductsHidden2 = {
1008
1080
  expr: string;
1009
1081
  };
1010
1082
 
1011
- export type GetConfigurationProductsPropertiesIntegrationsHidden =
1012
- | GetConfigurationProductsHiddenIntegrationsResponse2
1083
+ export type PropertiesHidden =
1084
+ | GetConfigurationProductsHidden2
1013
1085
  | boolean
1014
- | GetConfigurationProductsHiddenIntegrationsResponse3;
1086
+ | GetConfigurationProductsHidden3;
1015
1087
 
1016
1088
  export type PropertiesUiOptions = {
1017
1089
  value: string;
1018
1090
  label: string;
1019
1091
  disabled?:
1020
- | GetConfigurationProductsDisabledIntegrationsResponse2
1092
+ | GetConfigurationProductsDisabled2
1021
1093
  | boolean
1022
- | GetConfigurationProductsDisabledIntegrationsResponse3
1094
+ | GetConfigurationProductsDisabled3
1023
1095
  | undefined;
1024
1096
  hidden?:
1025
- | GetConfigurationProductsHiddenIntegrationsResponse2
1097
+ | GetConfigurationProductsHidden2
1026
1098
  | boolean
1027
- | GetConfigurationProductsHiddenIntegrationsResponse3
1099
+ | GetConfigurationProductsHidden3
1028
1100
  | undefined;
1029
1101
  };
1030
1102
 
@@ -1105,12 +1177,12 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200UiFormatted
1105
1177
  export type Properties6 = {
1106
1178
  type:
1107
1179
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType;
1108
- uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200UiControl;
1109
1180
  items: GetConfigurationProductsPropertiesItems;
1181
+ uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200UiControl;
1110
1182
  uiOptions: Array<PropertiesUiOptions>;
1111
1183
  description?: string | undefined;
1112
- minItems?: number | undefined;
1113
1184
  maxItems?: number | undefined;
1185
+ minItems?: number | undefined;
1114
1186
  uiLabel?: string | undefined;
1115
1187
  uiReadOnly?:
1116
1188
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2
@@ -1155,53 +1227,35 @@ export type GetConfigurationProductsPropertiesIntegrationsResponseUiControl =
1155
1227
  typeof GetConfigurationProductsPropertiesIntegrationsResponseUiControl
1156
1228
  >;
1157
1229
 
1158
- export const GetConfigurationProductsDisabledIntegrations3 = {
1230
+ export const Disabled3 = {
1159
1231
  Update: "update",
1160
1232
  Create: "create",
1161
1233
  } as const;
1162
- export type GetConfigurationProductsDisabledIntegrations3 = ClosedEnum<
1163
- typeof GetConfigurationProductsDisabledIntegrations3
1164
- >;
1234
+ export type Disabled3 = ClosedEnum<typeof Disabled3>;
1165
1235
 
1166
- export type GetConfigurationProductsDisabledIntegrations2 = {
1236
+ export type Disabled2 = {
1167
1237
  expr: string;
1168
1238
  };
1169
1239
 
1170
- export type GetConfigurationProductsPropertiesDisabled =
1171
- | GetConfigurationProductsDisabledIntegrations2
1172
- | boolean
1173
- | GetConfigurationProductsDisabledIntegrations3;
1240
+ export type Disabled = Disabled2 | boolean | Disabled3;
1174
1241
 
1175
- export const GetConfigurationProductsHiddenIntegrations3 = {
1242
+ export const Hidden3 = {
1176
1243
  Update: "update",
1177
1244
  Create: "create",
1178
1245
  } as const;
1179
- export type GetConfigurationProductsHiddenIntegrations3 = ClosedEnum<
1180
- typeof GetConfigurationProductsHiddenIntegrations3
1181
- >;
1246
+ export type Hidden3 = ClosedEnum<typeof Hidden3>;
1182
1247
 
1183
- export type GetConfigurationProductsHiddenIntegrations2 = {
1248
+ export type Hidden2 = {
1184
1249
  expr: string;
1185
1250
  };
1186
1251
 
1187
- export type GetConfigurationProductsPropertiesHidden =
1188
- | GetConfigurationProductsHiddenIntegrations2
1189
- | boolean
1190
- | GetConfigurationProductsHiddenIntegrations3;
1252
+ export type Hidden = Hidden2 | boolean | Hidden3;
1191
1253
 
1192
1254
  export type UiOptions = {
1193
1255
  value: string;
1194
1256
  label: string;
1195
- disabled?:
1196
- | GetConfigurationProductsDisabledIntegrations2
1197
- | boolean
1198
- | GetConfigurationProductsDisabledIntegrations3
1199
- | undefined;
1200
- hidden?:
1201
- | GetConfigurationProductsHiddenIntegrations2
1202
- | boolean
1203
- | GetConfigurationProductsHiddenIntegrations3
1204
- | undefined;
1257
+ disabled?: Disabled2 | boolean | Disabled3 | undefined;
1258
+ hidden?: Hidden2 | boolean | Hidden3 | undefined;
1205
1259
  };
1206
1260
 
1207
1261
  export const GetConfigurationProductsUiReadOnlyIntegrationsResponse2003 = {
@@ -1270,11 +1324,11 @@ export type Properties5 = {
1270
1324
  uiControl: GetConfigurationProductsPropertiesIntegrationsResponseUiControl;
1271
1325
  uiOptions: Array<UiOptions>;
1272
1326
  description?: string | undefined;
1273
- minLength?: number | undefined;
1327
+ enum?: Array<string> | undefined;
1274
1328
  maxLength?: number | undefined;
1329
+ minLength?: number | undefined;
1275
1330
  pattern?: string | undefined;
1276
1331
  default?: string | undefined;
1277
- enum?: Array<string> | undefined;
1278
1332
  uiLabel?: string | undefined;
1279
1333
  uiReadOnly?:
1280
1334
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse2002
@@ -1307,12 +1361,6 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseType = {
1307
1361
  export type GetConfigurationProductsPropertiesIntegrationsResponseType =
1308
1362
  ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponseType>;
1309
1363
 
1310
- export const GetConfigurationProductsPropertiesIntegrationsUiControl = {
1311
- Slider: "slider",
1312
- } as const;
1313
- export type GetConfigurationProductsPropertiesIntegrationsUiControl =
1314
- ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
1315
-
1316
1364
  export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type =
1317
1365
  {
1318
1366
  Number: "number",
@@ -1333,6 +1381,12 @@ export type PropertiesItems = {
1333
1381
  default?: number | undefined;
1334
1382
  };
1335
1383
 
1384
+ export const GetConfigurationProductsPropertiesIntegrationsUiControl = {
1385
+ Slider: "slider",
1386
+ } as const;
1387
+ export type GetConfigurationProductsPropertiesIntegrationsUiControl =
1388
+ ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
1389
+
1336
1390
  export const GetConfigurationProductsUiReadOnlyIntegrationsResponse3 = {
1337
1391
  Update: "update",
1338
1392
  Create: "create",
@@ -1396,12 +1450,12 @@ export type GetConfigurationProductsPropertiesIntegrationsUiFormattedValue = {
1396
1450
 
1397
1451
  export type Properties4 = {
1398
1452
  type: GetConfigurationProductsPropertiesIntegrationsResponseType;
1453
+ items: PropertiesItems;
1399
1454
  uiControl: GetConfigurationProductsPropertiesIntegrationsUiControl;
1400
1455
  uiSteps: Array<number>;
1401
- items: PropertiesItems;
1402
1456
  description?: string | undefined;
1403
- minItems?: number | undefined;
1404
1457
  maxItems?: number | undefined;
1458
+ minItems?: number | undefined;
1405
1459
  uiLabel?: string | undefined;
1406
1460
  uiReadOnly?:
1407
1461
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse2
@@ -1616,9 +1670,9 @@ export type Properties2 = {
1616
1670
  minimum?: number | undefined;
1617
1671
  maximum?: number | undefined;
1618
1672
  description?: string | undefined;
1619
- default?: number | undefined;
1620
- exclusiveMinimum?: number | undefined;
1621
1673
  exclusiveMaximum?: number | undefined;
1674
+ exclusiveMinimum?: number | undefined;
1675
+ default?: number | undefined;
1622
1676
  uiLabel?: string | undefined;
1623
1677
  uiReadOnly?:
1624
1678
  | GetConfigurationProductsUiReadOnly2
@@ -1700,11 +1754,11 @@ export type Properties1 = {
1700
1754
  type: PropertiesType;
1701
1755
  uiControl: UiControl;
1702
1756
  description?: string | undefined;
1703
- minLength?: number | undefined;
1757
+ enum?: Array<string> | undefined;
1704
1758
  maxLength?: number | undefined;
1759
+ minLength?: number | undefined;
1705
1760
  pattern?: string | undefined;
1706
1761
  default?: string | undefined;
1707
- enum?: Array<string> | undefined;
1708
1762
  uiLabel?: string | undefined;
1709
1763
  uiReadOnly?: UiReadOnly2 | boolean | UiReadOnly3 | undefined;
1710
1764
  uiHidden?: UiHidden2 | boolean | UiHidden3 | undefined;
@@ -2593,543 +2647,1021 @@ export const GetConfigurationProductsType$outboundSchema: z.ZodNativeEnum<
2593
2647
  > = GetConfigurationProductsType$inboundSchema;
2594
2648
 
2595
2649
  /** @internal */
2596
- export const GetConfigurationProductsDisabled3$inboundSchema: z.ZodNativeEnum<
2597
- typeof GetConfigurationProductsDisabled3
2598
- > = z.nativeEnum(GetConfigurationProductsDisabled3);
2650
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$inboundSchema:
2651
+ z.ZodNativeEnum<
2652
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type
2653
+ > = z.nativeEnum(
2654
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type,
2655
+ );
2599
2656
  /** @internal */
2600
- export const GetConfigurationProductsDisabled3$outboundSchema: z.ZodNativeEnum<
2601
- typeof GetConfigurationProductsDisabled3
2602
- > = GetConfigurationProductsDisabled3$inboundSchema;
2657
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$outboundSchema:
2658
+ z.ZodNativeEnum<
2659
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type
2660
+ > =
2661
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$inboundSchema;
2603
2662
 
2604
2663
  /** @internal */
2605
- export const GetConfigurationProductsDisabled2$inboundSchema: z.ZodType<
2606
- GetConfigurationProductsDisabled2,
2607
- z.ZodTypeDef,
2608
- unknown
2609
- > = z.object({
2610
- expr: types.string(),
2611
- });
2664
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$inboundSchema:
2665
+ z.ZodNativeEnum<
2666
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl
2667
+ > = z.nativeEnum(
2668
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl,
2669
+ );
2612
2670
  /** @internal */
2613
- export type GetConfigurationProductsDisabled2$Outbound = {
2614
- expr: string;
2615
- };
2671
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$outboundSchema:
2672
+ z.ZodNativeEnum<
2673
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl
2674
+ > =
2675
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$inboundSchema;
2616
2676
 
2617
2677
  /** @internal */
2618
- export const GetConfigurationProductsDisabled2$outboundSchema: z.ZodType<
2619
- GetConfigurationProductsDisabled2$Outbound,
2620
- z.ZodTypeDef,
2621
- GetConfigurationProductsDisabled2
2622
- > = z.object({
2623
- expr: z.string(),
2624
- });
2678
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema:
2679
+ z.ZodNativeEnum<
2680
+ typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
2681
+ > = z.nativeEnum(
2682
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3,
2683
+ );
2684
+ /** @internal */
2685
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema:
2686
+ z.ZodNativeEnum<
2687
+ typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
2688
+ > =
2689
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema;
2625
2690
 
2626
- export function getConfigurationProductsDisabled2ToJSON(
2627
- getConfigurationProductsDisabled2: GetConfigurationProductsDisabled2,
2691
+ /** @internal */
2692
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema:
2693
+ z.ZodType<
2694
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2695
+ z.ZodTypeDef,
2696
+ unknown
2697
+ > = z.object({
2698
+ expr: types.string(),
2699
+ });
2700
+ /** @internal */
2701
+ export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound =
2702
+ {
2703
+ expr: string;
2704
+ };
2705
+
2706
+ /** @internal */
2707
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema:
2708
+ z.ZodType<
2709
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound,
2710
+ z.ZodTypeDef,
2711
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
2712
+ > = z.object({
2713
+ expr: z.string(),
2714
+ });
2715
+
2716
+ export function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(
2717
+ getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2:
2718
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2628
2719
  ): string {
2629
2720
  return JSON.stringify(
2630
- GetConfigurationProductsDisabled2$outboundSchema.parse(
2631
- getConfigurationProductsDisabled2,
2632
- ),
2721
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
2722
+ .parse(
2723
+ getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2724
+ ),
2633
2725
  );
2634
2726
  }
2635
- export function getConfigurationProductsDisabled2FromJSON(
2727
+ export function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(
2636
2728
  jsonString: string,
2637
- ): SafeParseResult<GetConfigurationProductsDisabled2, SDKValidationError> {
2729
+ ): SafeParseResult<
2730
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2731
+ SDKValidationError
2732
+ > {
2638
2733
  return safeParse(
2639
2734
  jsonString,
2640
- (x) => GetConfigurationProductsDisabled2$inboundSchema.parse(JSON.parse(x)),
2641
- `Failed to parse 'GetConfigurationProductsDisabled2' from JSON`,
2735
+ (x) =>
2736
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
2737
+ .parse(JSON.parse(x)),
2738
+ `Failed to parse 'GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2' from JSON`,
2642
2739
  );
2643
2740
  }
2644
2741
 
2645
2742
  /** @internal */
2646
- export const PropertiesDisabled$inboundSchema: z.ZodType<
2647
- PropertiesDisabled,
2648
- z.ZodTypeDef,
2649
- unknown
2650
- > = smartUnion([
2651
- z.lazy(() => GetConfigurationProductsDisabled2$inboundSchema),
2652
- types.boolean(),
2653
- GetConfigurationProductsDisabled3$inboundSchema,
2654
- ]);
2743
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$inboundSchema:
2744
+ z.ZodType<
2745
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly,
2746
+ z.ZodTypeDef,
2747
+ unknown
2748
+ > = smartUnion([
2749
+ z.lazy(() =>
2750
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
2751
+ ),
2752
+ types.boolean(),
2753
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema,
2754
+ ]);
2655
2755
  /** @internal */
2656
- export type PropertiesDisabled$Outbound =
2657
- | GetConfigurationProductsDisabled2$Outbound
2756
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$Outbound =
2757
+ | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
2658
2758
  | boolean
2659
2759
  | string;
2660
2760
 
2661
2761
  /** @internal */
2662
- export const PropertiesDisabled$outboundSchema: z.ZodType<
2663
- PropertiesDisabled$Outbound,
2664
- z.ZodTypeDef,
2665
- PropertiesDisabled
2666
- > = smartUnion([
2667
- z.lazy(() => GetConfigurationProductsDisabled2$outboundSchema),
2668
- z.boolean(),
2669
- GetConfigurationProductsDisabled3$outboundSchema,
2670
- ]);
2762
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$outboundSchema:
2763
+ z.ZodType<
2764
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$Outbound,
2765
+ z.ZodTypeDef,
2766
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly
2767
+ > = smartUnion([
2768
+ z.lazy(() =>
2769
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
2770
+ ),
2771
+ z.boolean(),
2772
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema,
2773
+ ]);
2671
2774
 
2672
- export function propertiesDisabledToJSON(
2673
- propertiesDisabled: PropertiesDisabled,
2775
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnlyToJSON(
2776
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly:
2777
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly,
2674
2778
  ): string {
2675
2779
  return JSON.stringify(
2676
- PropertiesDisabled$outboundSchema.parse(propertiesDisabled),
2780
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$outboundSchema
2781
+ .parse(
2782
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly,
2783
+ ),
2677
2784
  );
2678
2785
  }
2679
- export function propertiesDisabledFromJSON(
2786
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnlyFromJSON(
2680
2787
  jsonString: string,
2681
- ): SafeParseResult<PropertiesDisabled, SDKValidationError> {
2788
+ ): SafeParseResult<
2789
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly,
2790
+ SDKValidationError
2791
+ > {
2682
2792
  return safeParse(
2683
2793
  jsonString,
2684
- (x) => PropertiesDisabled$inboundSchema.parse(JSON.parse(x)),
2685
- `Failed to parse 'PropertiesDisabled' from JSON`,
2794
+ (x) =>
2795
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$inboundSchema
2796
+ .parse(JSON.parse(x)),
2797
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly' from JSON`,
2686
2798
  );
2687
2799
  }
2688
2800
 
2689
2801
  /** @internal */
2690
- export const GetConfigurationProductsHidden3$inboundSchema: z.ZodNativeEnum<
2691
- typeof GetConfigurationProductsHidden3
2692
- > = z.nativeEnum(GetConfigurationProductsHidden3);
2802
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema:
2803
+ z.ZodNativeEnum<
2804
+ typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
2805
+ > = z.nativeEnum(
2806
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3,
2807
+ );
2693
2808
  /** @internal */
2694
- export const GetConfigurationProductsHidden3$outboundSchema: z.ZodNativeEnum<
2695
- typeof GetConfigurationProductsHidden3
2696
- > = GetConfigurationProductsHidden3$inboundSchema;
2809
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema:
2810
+ z.ZodNativeEnum<
2811
+ typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
2812
+ > =
2813
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema;
2697
2814
 
2698
2815
  /** @internal */
2699
- export const GetConfigurationProductsHidden2$inboundSchema: z.ZodType<
2700
- GetConfigurationProductsHidden2,
2701
- z.ZodTypeDef,
2702
- unknown
2703
- > = z.object({
2704
- expr: types.string(),
2705
- });
2816
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema:
2817
+ z.ZodType<
2818
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2819
+ z.ZodTypeDef,
2820
+ unknown
2821
+ > = z.object({
2822
+ expr: types.string(),
2823
+ });
2706
2824
  /** @internal */
2707
- export type GetConfigurationProductsHidden2$Outbound = {
2708
- expr: string;
2709
- };
2825
+ export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound =
2826
+ {
2827
+ expr: string;
2828
+ };
2710
2829
 
2711
2830
  /** @internal */
2712
- export const GetConfigurationProductsHidden2$outboundSchema: z.ZodType<
2713
- GetConfigurationProductsHidden2$Outbound,
2714
- z.ZodTypeDef,
2715
- GetConfigurationProductsHidden2
2716
- > = z.object({
2717
- expr: z.string(),
2718
- });
2831
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema:
2832
+ z.ZodType<
2833
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound,
2834
+ z.ZodTypeDef,
2835
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
2836
+ > = z.object({
2837
+ expr: z.string(),
2838
+ });
2719
2839
 
2720
- export function getConfigurationProductsHidden2ToJSON(
2721
- getConfigurationProductsHidden2: GetConfigurationProductsHidden2,
2840
+ export function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(
2841
+ getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2:
2842
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2722
2843
  ): string {
2723
2844
  return JSON.stringify(
2724
- GetConfigurationProductsHidden2$outboundSchema.parse(
2725
- getConfigurationProductsHidden2,
2726
- ),
2845
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
2846
+ .parse(
2847
+ getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2848
+ ),
2727
2849
  );
2728
2850
  }
2729
- export function getConfigurationProductsHidden2FromJSON(
2851
+ export function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(
2730
2852
  jsonString: string,
2731
- ): SafeParseResult<GetConfigurationProductsHidden2, SDKValidationError> {
2853
+ ): SafeParseResult<
2854
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2855
+ SDKValidationError
2856
+ > {
2732
2857
  return safeParse(
2733
2858
  jsonString,
2734
- (x) => GetConfigurationProductsHidden2$inboundSchema.parse(JSON.parse(x)),
2735
- `Failed to parse 'GetConfigurationProductsHidden2' from JSON`,
2859
+ (x) =>
2860
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
2861
+ .parse(JSON.parse(x)),
2862
+ `Failed to parse 'GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2' from JSON`,
2736
2863
  );
2737
2864
  }
2738
2865
 
2739
2866
  /** @internal */
2740
- export const PropertiesHidden$inboundSchema: z.ZodType<
2741
- PropertiesHidden,
2742
- z.ZodTypeDef,
2743
- unknown
2744
- > = smartUnion([
2745
- z.lazy(() => GetConfigurationProductsHidden2$inboundSchema),
2746
- types.boolean(),
2747
- GetConfigurationProductsHidden3$inboundSchema,
2748
- ]);
2867
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$inboundSchema:
2868
+ z.ZodType<
2869
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden,
2870
+ z.ZodTypeDef,
2871
+ unknown
2872
+ > = smartUnion([
2873
+ z.lazy(() =>
2874
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
2875
+ ),
2876
+ types.boolean(),
2877
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema,
2878
+ ]);
2749
2879
  /** @internal */
2750
- export type PropertiesHidden$Outbound =
2751
- | GetConfigurationProductsHidden2$Outbound
2880
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$Outbound =
2881
+ | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
2752
2882
  | boolean
2753
2883
  | string;
2754
2884
 
2755
2885
  /** @internal */
2756
- export const PropertiesHidden$outboundSchema: z.ZodType<
2757
- PropertiesHidden$Outbound,
2758
- z.ZodTypeDef,
2759
- PropertiesHidden
2760
- > = smartUnion([
2761
- z.lazy(() => GetConfigurationProductsHidden2$outboundSchema),
2762
- z.boolean(),
2763
- GetConfigurationProductsHidden3$outboundSchema,
2764
- ]);
2886
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$outboundSchema:
2887
+ z.ZodType<
2888
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$Outbound,
2889
+ z.ZodTypeDef,
2890
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden
2891
+ > = smartUnion([
2892
+ z.lazy(() =>
2893
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
2894
+ ),
2895
+ z.boolean(),
2896
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema,
2897
+ ]);
2765
2898
 
2766
- export function propertiesHiddenToJSON(
2767
- propertiesHidden: PropertiesHidden,
2899
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHiddenToJSON(
2900
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden:
2901
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden,
2768
2902
  ): string {
2769
2903
  return JSON.stringify(
2770
- PropertiesHidden$outboundSchema.parse(propertiesHidden),
2771
- );
2772
- }
2773
- export function propertiesHiddenFromJSON(
2774
- jsonString: string,
2775
- ): SafeParseResult<PropertiesHidden, SDKValidationError> {
2776
- return safeParse(
2777
- jsonString,
2778
- (x) => PropertiesHidden$inboundSchema.parse(JSON.parse(x)),
2779
- `Failed to parse 'PropertiesHidden' from JSON`,
2904
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$outboundSchema
2905
+ .parse(
2906
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden,
2907
+ ),
2780
2908
  );
2781
2909
  }
2782
-
2783
- /** @internal */
2784
- export const Properties10$inboundSchema: z.ZodType<
2785
- Properties10,
2786
- z.ZodTypeDef,
2787
- unknown
2788
- > = z.object({
2789
- value: types.string(),
2790
- disabled: types.optional(
2791
- smartUnion([
2792
- z.lazy(() => GetConfigurationProductsDisabled2$inboundSchema),
2793
- types.boolean(),
2794
- GetConfigurationProductsDisabled3$inboundSchema,
2795
- ]),
2796
- ),
2797
- hidden: types.optional(
2798
- smartUnion([
2799
- z.lazy(() => GetConfigurationProductsHidden2$inboundSchema),
2800
- types.boolean(),
2801
- GetConfigurationProductsHidden3$inboundSchema,
2802
- ]),
2803
- ),
2804
- });
2805
- /** @internal */
2806
- export type Properties10$Outbound = {
2807
- value: string;
2808
- disabled?:
2809
- | GetConfigurationProductsDisabled2$Outbound
2810
- | boolean
2811
- | string
2812
- | undefined;
2813
- hidden?:
2814
- | GetConfigurationProductsHidden2$Outbound
2815
- | boolean
2816
- | string
2817
- | undefined;
2818
- };
2819
-
2820
- /** @internal */
2821
- export const Properties10$outboundSchema: z.ZodType<
2822
- Properties10$Outbound,
2823
- z.ZodTypeDef,
2824
- Properties10
2825
- > = z.object({
2826
- value: z.string(),
2827
- disabled: smartUnion([
2828
- z.lazy(() => GetConfigurationProductsDisabled2$outboundSchema),
2829
- z.boolean(),
2830
- GetConfigurationProductsDisabled3$outboundSchema,
2831
- ]).optional(),
2832
- hidden: smartUnion([
2833
- z.lazy(() => GetConfigurationProductsHidden2$outboundSchema),
2834
- z.boolean(),
2835
- GetConfigurationProductsHidden3$outboundSchema,
2836
- ]).optional(),
2837
- });
2838
-
2839
- export function properties10ToJSON(properties10: Properties10): string {
2840
- return JSON.stringify(Properties10$outboundSchema.parse(properties10));
2841
- }
2842
- export function properties10FromJSON(
2910
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHiddenFromJSON(
2843
2911
  jsonString: string,
2844
- ): SafeParseResult<Properties10, SDKValidationError> {
2912
+ ): SafeParseResult<
2913
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden,
2914
+ SDKValidationError
2915
+ > {
2845
2916
  return safeParse(
2846
2917
  jsonString,
2847
- (x) => Properties10$inboundSchema.parse(JSON.parse(x)),
2848
- `Failed to parse 'Properties10' from JSON`,
2918
+ (x) =>
2919
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$inboundSchema
2920
+ .parse(JSON.parse(x)),
2921
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden' from JSON`,
2849
2922
  );
2850
2923
  }
2851
2924
 
2852
2925
  /** @internal */
2853
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema:
2854
- z.ZodNativeEnum<
2855
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType
2856
- > = z.nativeEnum(
2857
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType,
2858
- );
2859
- /** @internal */
2860
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$outboundSchema:
2861
- z.ZodNativeEnum<
2862
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType
2863
- > =
2864
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema;
2865
-
2866
- /** @internal */
2867
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema:
2868
- z.ZodNativeEnum<
2869
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl
2870
- > = z.nativeEnum(
2871
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl,
2872
- );
2873
- /** @internal */
2874
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$outboundSchema:
2875
- z.ZodNativeEnum<
2876
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl
2877
- > =
2878
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema;
2879
-
2880
- /** @internal */
2881
- export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema:
2926
+ export const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema:
2882
2927
  z.ZodNativeEnum<
2883
- typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
2928
+ typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
2884
2929
  > = z.nativeEnum(
2885
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3,
2930
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3,
2886
2931
  );
2887
2932
  /** @internal */
2888
- export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema:
2933
+ export const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema:
2889
2934
  z.ZodNativeEnum<
2890
- typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
2935
+ typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3
2891
2936
  > =
2892
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema;
2937
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema;
2893
2938
 
2894
2939
  /** @internal */
2895
- export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema:
2940
+ export const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema:
2896
2941
  z.ZodType<
2897
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
2942
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2898
2943
  z.ZodTypeDef,
2899
2944
  unknown
2900
2945
  > = z.object({
2901
2946
  expr: types.string(),
2902
2947
  });
2903
2948
  /** @internal */
2904
- export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound =
2949
+ export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound =
2905
2950
  {
2906
2951
  expr: string;
2907
2952
  };
2908
2953
 
2909
2954
  /** @internal */
2910
- export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema:
2955
+ export const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema:
2911
2956
  z.ZodType<
2912
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound,
2957
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound,
2913
2958
  z.ZodTypeDef,
2914
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2
2959
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
2915
2960
  > = z.object({
2916
2961
  expr: z.string(),
2917
2962
  });
2918
2963
 
2919
- export function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2ToJSON(
2920
- getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2:
2921
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
2964
+ export function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(
2965
+ getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2:
2966
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2922
2967
  ): string {
2923
2968
  return JSON.stringify(
2924
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
2969
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
2925
2970
  .parse(
2926
- getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
2971
+ getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2927
2972
  ),
2928
2973
  );
2929
2974
  }
2930
- export function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2FromJSON(
2975
+ export function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(
2931
2976
  jsonString: string,
2932
2977
  ): SafeParseResult<
2933
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
2978
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
2934
2979
  SDKValidationError
2935
2980
  > {
2936
2981
  return safeParse(
2937
2982
  jsonString,
2938
2983
  (x) =>
2939
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
2984
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
2940
2985
  .parse(JSON.parse(x)),
2941
- `Failed to parse 'GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2' from JSON`,
2986
+ `Failed to parse 'GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2' from JSON`,
2942
2987
  );
2943
2988
  }
2944
2989
 
2945
2990
  /** @internal */
2946
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$inboundSchema:
2991
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$inboundSchema:
2947
2992
  z.ZodType<
2948
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
2993
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled,
2949
2994
  z.ZodTypeDef,
2950
2995
  unknown
2951
2996
  > = smartUnion([
2952
2997
  z.lazy(() =>
2953
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
2998
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
2954
2999
  ),
2955
3000
  types.boolean(),
2956
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema,
3001
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema,
2957
3002
  ]);
2958
3003
  /** @internal */
2959
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$Outbound =
2960
- | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound
3004
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$Outbound =
3005
+ | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
2961
3006
  | boolean
2962
3007
  | string;
2963
3008
 
2964
3009
  /** @internal */
2965
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$outboundSchema:
3010
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$outboundSchema:
2966
3011
  z.ZodType<
2967
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$Outbound,
3012
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$Outbound,
2968
3013
  z.ZodTypeDef,
2969
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly
3014
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled
2970
3015
  > = smartUnion([
2971
3016
  z.lazy(() =>
2972
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
3017
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
2973
3018
  ),
2974
3019
  z.boolean(),
2975
- GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema,
3020
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema,
2976
3021
  ]);
2977
3022
 
2978
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnlyToJSON(
2979
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly:
2980
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
3023
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabledToJSON(
3024
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled:
3025
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled,
2981
3026
  ): string {
2982
3027
  return JSON.stringify(
2983
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$outboundSchema
3028
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$outboundSchema
2984
3029
  .parse(
2985
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
3030
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled,
2986
3031
  ),
2987
3032
  );
2988
3033
  }
2989
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnlyFromJSON(
3034
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabledFromJSON(
2990
3035
  jsonString: string,
2991
3036
  ): SafeParseResult<
2992
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
3037
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled,
2993
3038
  SDKValidationError
2994
3039
  > {
2995
3040
  return safeParse(
2996
3041
  jsonString,
2997
3042
  (x) =>
2998
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$inboundSchema
3043
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$inboundSchema
2999
3044
  .parse(JSON.parse(x)),
3000
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly' from JSON`,
3045
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled' from JSON`,
3001
3046
  );
3002
3047
  }
3003
3048
 
3004
3049
  /** @internal */
3005
- export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema:
3006
- z.ZodNativeEnum<
3007
- typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3008
- > = z.nativeEnum(
3009
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3,
3010
- );
3011
- /** @internal */
3012
- export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema:
3013
- z.ZodNativeEnum<
3014
- typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3015
- > =
3016
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema;
3017
-
3018
- /** @internal */
3019
- export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema:
3050
+ export const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema:
3020
3051
  z.ZodType<
3021
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3052
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
3022
3053
  z.ZodTypeDef,
3023
3054
  unknown
3024
3055
  > = z.object({
3025
3056
  expr: types.string(),
3026
3057
  });
3027
3058
  /** @internal */
3028
- export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound =
3059
+ export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound =
3029
3060
  {
3030
3061
  expr: string;
3031
3062
  };
3032
3063
 
3033
3064
  /** @internal */
3034
- export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema:
3065
+ export const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema:
3035
3066
  z.ZodType<
3036
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound,
3067
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound,
3037
3068
  z.ZodTypeDef,
3038
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2
3069
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2
3039
3070
  > = z.object({
3040
3071
  expr: z.string(),
3041
3072
  });
3042
3073
 
3043
- export function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2ToJSON(
3044
- getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2:
3045
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3074
+ export function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(
3075
+ getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2:
3076
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
3046
3077
  ): string {
3047
3078
  return JSON.stringify(
3048
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
3079
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
3049
3080
  .parse(
3050
- getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3081
+ getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
3051
3082
  ),
3052
3083
  );
3053
3084
  }
3054
- export function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2FromJSON(
3085
+ export function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(
3055
3086
  jsonString: string,
3056
3087
  ): SafeParseResult<
3057
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3088
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2,
3058
3089
  SDKValidationError
3059
3090
  > {
3060
3091
  return safeParse(
3061
3092
  jsonString,
3062
3093
  (x) =>
3063
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
3094
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
3064
3095
  .parse(JSON.parse(x)),
3065
- `Failed to parse 'GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2' from JSON`,
3096
+ `Failed to parse 'GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2' from JSON`,
3066
3097
  );
3067
3098
  }
3068
3099
 
3069
3100
  /** @internal */
3070
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$inboundSchema:
3101
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$inboundSchema:
3071
3102
  z.ZodType<
3072
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3103
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription,
3073
3104
  z.ZodTypeDef,
3074
3105
  unknown
3075
3106
  > = smartUnion([
3076
3107
  z.lazy(() =>
3077
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
3108
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
3078
3109
  ),
3079
- types.boolean(),
3080
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema,
3110
+ types.string(),
3081
3111
  ]);
3082
3112
  /** @internal */
3083
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$Outbound =
3084
- | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound
3085
- | boolean
3113
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$Outbound =
3114
+ | GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
3086
3115
  | string;
3087
3116
 
3088
3117
  /** @internal */
3089
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$outboundSchema:
3118
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$outboundSchema:
3090
3119
  z.ZodType<
3091
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$Outbound,
3120
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$Outbound,
3092
3121
  z.ZodTypeDef,
3093
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden
3122
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription
3094
3123
  > = smartUnion([
3095
3124
  z.lazy(() =>
3096
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
3125
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
3097
3126
  ),
3098
- z.boolean(),
3099
- GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema,
3127
+ z.string(),
3100
3128
  ]);
3101
3129
 
3102
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHiddenToJSON(
3103
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden:
3104
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3130
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescriptionToJSON(
3131
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription:
3132
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription,
3105
3133
  ): string {
3106
3134
  return JSON.stringify(
3107
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$outboundSchema
3135
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$outboundSchema
3108
3136
  .parse(
3109
- getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3137
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription,
3110
3138
  ),
3111
3139
  );
3112
3140
  }
3113
- export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHiddenFromJSON(
3141
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescriptionFromJSON(
3114
3142
  jsonString: string,
3115
3143
  ): SafeParseResult<
3116
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3144
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription,
3117
3145
  SDKValidationError
3118
3146
  > {
3119
3147
  return safeParse(
3120
3148
  jsonString,
3121
3149
  (x) =>
3122
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$inboundSchema
3150
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$inboundSchema
3123
3151
  .parse(JSON.parse(x)),
3124
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden' from JSON`,
3152
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription' from JSON`,
3125
3153
  );
3126
3154
  }
3127
3155
 
3128
3156
  /** @internal */
3129
- export const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema:
3130
- z.ZodNativeEnum<
3131
- typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3132
- > = z.nativeEnum(
3157
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$inboundSchema:
3158
+ z.ZodType<
3159
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue,
3160
+ z.ZodTypeDef,
3161
+ unknown
3162
+ > = z.object({
3163
+ expr: types.string(),
3164
+ });
3165
+ /** @internal */
3166
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$Outbound =
3167
+ {
3168
+ expr: string;
3169
+ };
3170
+
3171
+ /** @internal */
3172
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$outboundSchema:
3173
+ z.ZodType<
3174
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$Outbound,
3175
+ z.ZodTypeDef,
3176
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue
3177
+ > = z.object({
3178
+ expr: z.string(),
3179
+ });
3180
+
3181
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValueToJSON(
3182
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue:
3183
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue,
3184
+ ): string {
3185
+ return JSON.stringify(
3186
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$outboundSchema
3187
+ .parse(
3188
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue,
3189
+ ),
3190
+ );
3191
+ }
3192
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValueFromJSON(
3193
+ jsonString: string,
3194
+ ): SafeParseResult<
3195
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue,
3196
+ SDKValidationError
3197
+ > {
3198
+ return safeParse(
3199
+ jsonString,
3200
+ (x) =>
3201
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$inboundSchema
3202
+ .parse(JSON.parse(x)),
3203
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue' from JSON`,
3204
+ );
3205
+ }
3206
+
3207
+ /** @internal */
3208
+ export const GitProviders$inboundSchema: z.ZodNativeEnum<typeof GitProviders> =
3209
+ z.nativeEnum(GitProviders);
3210
+ /** @internal */
3211
+ export const GitProviders$outboundSchema: z.ZodNativeEnum<typeof GitProviders> =
3212
+ GitProviders$inboundSchema;
3213
+
3214
+ /** @internal */
3215
+ export const Properties10$inboundSchema: z.ZodType<
3216
+ Properties10,
3217
+ z.ZodTypeDef,
3218
+ unknown
3219
+ > = z.object({
3220
+ type:
3221
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$inboundSchema,
3222
+ "ui:control":
3223
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$inboundSchema,
3224
+ description: types.optional(types.string()),
3225
+ "ui:label": types.optional(types.string()),
3226
+ "ui:read-only": types.optional(
3227
+ smartUnion([
3228
+ z.lazy(() =>
3229
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
3230
+ ),
3231
+ types.boolean(),
3232
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema,
3233
+ ]),
3234
+ ),
3235
+ "ui:hidden": types.optional(
3236
+ smartUnion([
3237
+ z.lazy(() =>
3238
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
3239
+ ),
3240
+ types.boolean(),
3241
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema,
3242
+ ]),
3243
+ ),
3244
+ "ui:disabled": types.optional(
3245
+ smartUnion([
3246
+ z.lazy(() =>
3247
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
3248
+ ),
3249
+ types.boolean(),
3250
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema,
3251
+ ]),
3252
+ ),
3253
+ "ui:description": types.optional(
3254
+ smartUnion([
3255
+ z.lazy(() =>
3256
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema
3257
+ ),
3258
+ types.string(),
3259
+ ]),
3260
+ ),
3261
+ "ui:formatted-value": types.optional(
3262
+ z.lazy(() =>
3263
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$inboundSchema
3264
+ ),
3265
+ ),
3266
+ "ui:placeholder": types.optional(types.string()),
3267
+ "git:providers": types.optional(z.array(GitProviders$inboundSchema)),
3268
+ }).transform((v) => {
3269
+ return remap$(v, {
3270
+ "ui:control": "uiControl",
3271
+ "ui:label": "uiLabel",
3272
+ "ui:read-only": "uiReadOnly",
3273
+ "ui:hidden": "uiHidden",
3274
+ "ui:disabled": "uiDisabled",
3275
+ "ui:description": "uiDescription",
3276
+ "ui:formatted-value": "uiFormattedValue",
3277
+ "ui:placeholder": "uiPlaceholder",
3278
+ "git:providers": "gitProviders",
3279
+ });
3280
+ });
3281
+ /** @internal */
3282
+ export type Properties10$Outbound = {
3283
+ type: string;
3284
+ "ui:control": string;
3285
+ description?: string | undefined;
3286
+ "ui:label"?: string | undefined;
3287
+ "ui:read-only"?:
3288
+ | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
3289
+ | boolean
3290
+ | string
3291
+ | undefined;
3292
+ "ui:hidden"?:
3293
+ | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
3294
+ | boolean
3295
+ | string
3296
+ | undefined;
3297
+ "ui:disabled"?:
3298
+ | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
3299
+ | boolean
3300
+ | string
3301
+ | undefined;
3302
+ "ui:description"?:
3303
+ | GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound
3304
+ | string
3305
+ | undefined;
3306
+ "ui:formatted-value"?:
3307
+ | GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$Outbound
3308
+ | undefined;
3309
+ "ui:placeholder"?: string | undefined;
3310
+ "git:providers"?: Array<string> | undefined;
3311
+ };
3312
+
3313
+ /** @internal */
3314
+ export const Properties10$outboundSchema: z.ZodType<
3315
+ Properties10$Outbound,
3316
+ z.ZodTypeDef,
3317
+ Properties10
3318
+ > = z.object({
3319
+ type:
3320
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$outboundSchema,
3321
+ uiControl:
3322
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$outboundSchema,
3323
+ description: z.string().optional(),
3324
+ uiLabel: z.string().optional(),
3325
+ uiReadOnly: smartUnion([
3326
+ z.lazy(() =>
3327
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
3328
+ ),
3329
+ z.boolean(),
3330
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema,
3331
+ ]).optional(),
3332
+ uiHidden: smartUnion([
3333
+ z.lazy(() =>
3334
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
3335
+ ),
3336
+ z.boolean(),
3337
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema,
3338
+ ]).optional(),
3339
+ uiDisabled: smartUnion([
3340
+ z.lazy(() =>
3341
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
3342
+ ),
3343
+ z.boolean(),
3344
+ GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema,
3345
+ ]).optional(),
3346
+ uiDescription: smartUnion([
3347
+ z.lazy(() =>
3348
+ GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema
3349
+ ),
3350
+ z.string(),
3351
+ ]).optional(),
3352
+ uiFormattedValue: z.lazy(() =>
3353
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$outboundSchema
3354
+ ).optional(),
3355
+ uiPlaceholder: z.string().optional(),
3356
+ gitProviders: z.array(GitProviders$outboundSchema).optional(),
3357
+ }).transform((v) => {
3358
+ return remap$(v, {
3359
+ uiControl: "ui:control",
3360
+ uiLabel: "ui:label",
3361
+ uiReadOnly: "ui:read-only",
3362
+ uiHidden: "ui:hidden",
3363
+ uiDisabled: "ui:disabled",
3364
+ uiDescription: "ui:description",
3365
+ uiFormattedValue: "ui:formatted-value",
3366
+ uiPlaceholder: "ui:placeholder",
3367
+ gitProviders: "git:providers",
3368
+ });
3369
+ });
3370
+
3371
+ export function properties10ToJSON(properties10: Properties10): string {
3372
+ return JSON.stringify(Properties10$outboundSchema.parse(properties10));
3373
+ }
3374
+ export function properties10FromJSON(
3375
+ jsonString: string,
3376
+ ): SafeParseResult<Properties10, SDKValidationError> {
3377
+ return safeParse(
3378
+ jsonString,
3379
+ (x) => Properties10$inboundSchema.parse(JSON.parse(x)),
3380
+ `Failed to parse 'Properties10' from JSON`,
3381
+ );
3382
+ }
3383
+
3384
+ /** @internal */
3385
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema:
3386
+ z.ZodNativeEnum<
3387
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType
3388
+ > = z.nativeEnum(
3389
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType,
3390
+ );
3391
+ /** @internal */
3392
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$outboundSchema:
3393
+ z.ZodNativeEnum<
3394
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType
3395
+ > =
3396
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema;
3397
+
3398
+ /** @internal */
3399
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema:
3400
+ z.ZodNativeEnum<
3401
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl
3402
+ > = z.nativeEnum(
3403
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl,
3404
+ );
3405
+ /** @internal */
3406
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$outboundSchema:
3407
+ z.ZodNativeEnum<
3408
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl
3409
+ > =
3410
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema;
3411
+
3412
+ /** @internal */
3413
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema:
3414
+ z.ZodNativeEnum<
3415
+ typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3416
+ > = z.nativeEnum(
3417
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3,
3418
+ );
3419
+ /** @internal */
3420
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema:
3421
+ z.ZodNativeEnum<
3422
+ typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3423
+ > =
3424
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema;
3425
+
3426
+ /** @internal */
3427
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema:
3428
+ z.ZodType<
3429
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3430
+ z.ZodTypeDef,
3431
+ unknown
3432
+ > = z.object({
3433
+ expr: types.string(),
3434
+ });
3435
+ /** @internal */
3436
+ export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound =
3437
+ {
3438
+ expr: string;
3439
+ };
3440
+
3441
+ /** @internal */
3442
+ export const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema:
3443
+ z.ZodType<
3444
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound,
3445
+ z.ZodTypeDef,
3446
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2
3447
+ > = z.object({
3448
+ expr: z.string(),
3449
+ });
3450
+
3451
+ export function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2ToJSON(
3452
+ getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2:
3453
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3454
+ ): string {
3455
+ return JSON.stringify(
3456
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
3457
+ .parse(
3458
+ getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3459
+ ),
3460
+ );
3461
+ }
3462
+ export function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2FromJSON(
3463
+ jsonString: string,
3464
+ ): SafeParseResult<
3465
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3466
+ SDKValidationError
3467
+ > {
3468
+ return safeParse(
3469
+ jsonString,
3470
+ (x) =>
3471
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
3472
+ .parse(JSON.parse(x)),
3473
+ `Failed to parse 'GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2' from JSON`,
3474
+ );
3475
+ }
3476
+
3477
+ /** @internal */
3478
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$inboundSchema:
3479
+ z.ZodType<
3480
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
3481
+ z.ZodTypeDef,
3482
+ unknown
3483
+ > = smartUnion([
3484
+ z.lazy(() =>
3485
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
3486
+ ),
3487
+ types.boolean(),
3488
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema,
3489
+ ]);
3490
+ /** @internal */
3491
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$Outbound =
3492
+ | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound
3493
+ | boolean
3494
+ | string;
3495
+
3496
+ /** @internal */
3497
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$outboundSchema:
3498
+ z.ZodType<
3499
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$Outbound,
3500
+ z.ZodTypeDef,
3501
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly
3502
+ > = smartUnion([
3503
+ z.lazy(() =>
3504
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
3505
+ ),
3506
+ z.boolean(),
3507
+ GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema,
3508
+ ]);
3509
+
3510
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnlyToJSON(
3511
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly:
3512
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
3513
+ ): string {
3514
+ return JSON.stringify(
3515
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$outboundSchema
3516
+ .parse(
3517
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
3518
+ ),
3519
+ );
3520
+ }
3521
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnlyFromJSON(
3522
+ jsonString: string,
3523
+ ): SafeParseResult<
3524
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly,
3525
+ SDKValidationError
3526
+ > {
3527
+ return safeParse(
3528
+ jsonString,
3529
+ (x) =>
3530
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$inboundSchema
3531
+ .parse(JSON.parse(x)),
3532
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly' from JSON`,
3533
+ );
3534
+ }
3535
+
3536
+ /** @internal */
3537
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema:
3538
+ z.ZodNativeEnum<
3539
+ typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3540
+ > = z.nativeEnum(
3541
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3,
3542
+ );
3543
+ /** @internal */
3544
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema:
3545
+ z.ZodNativeEnum<
3546
+ typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3547
+ > =
3548
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema;
3549
+
3550
+ /** @internal */
3551
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema:
3552
+ z.ZodType<
3553
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3554
+ z.ZodTypeDef,
3555
+ unknown
3556
+ > = z.object({
3557
+ expr: types.string(),
3558
+ });
3559
+ /** @internal */
3560
+ export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound =
3561
+ {
3562
+ expr: string;
3563
+ };
3564
+
3565
+ /** @internal */
3566
+ export const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema:
3567
+ z.ZodType<
3568
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound,
3569
+ z.ZodTypeDef,
3570
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2
3571
+ > = z.object({
3572
+ expr: z.string(),
3573
+ });
3574
+
3575
+ export function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2ToJSON(
3576
+ getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2:
3577
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3578
+ ): string {
3579
+ return JSON.stringify(
3580
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
3581
+ .parse(
3582
+ getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3583
+ ),
3584
+ );
3585
+ }
3586
+ export function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2FromJSON(
3587
+ jsonString: string,
3588
+ ): SafeParseResult<
3589
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2,
3590
+ SDKValidationError
3591
+ > {
3592
+ return safeParse(
3593
+ jsonString,
3594
+ (x) =>
3595
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
3596
+ .parse(JSON.parse(x)),
3597
+ `Failed to parse 'GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2' from JSON`,
3598
+ );
3599
+ }
3600
+
3601
+ /** @internal */
3602
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$inboundSchema:
3603
+ z.ZodType<
3604
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3605
+ z.ZodTypeDef,
3606
+ unknown
3607
+ > = smartUnion([
3608
+ z.lazy(() =>
3609
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema
3610
+ ),
3611
+ types.boolean(),
3612
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema,
3613
+ ]);
3614
+ /** @internal */
3615
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$Outbound =
3616
+ | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound
3617
+ | boolean
3618
+ | string;
3619
+
3620
+ /** @internal */
3621
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$outboundSchema:
3622
+ z.ZodType<
3623
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$Outbound,
3624
+ z.ZodTypeDef,
3625
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden
3626
+ > = smartUnion([
3627
+ z.lazy(() =>
3628
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema
3629
+ ),
3630
+ z.boolean(),
3631
+ GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema,
3632
+ ]);
3633
+
3634
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHiddenToJSON(
3635
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden:
3636
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3637
+ ): string {
3638
+ return JSON.stringify(
3639
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$outboundSchema
3640
+ .parse(
3641
+ getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3642
+ ),
3643
+ );
3644
+ }
3645
+ export function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHiddenFromJSON(
3646
+ jsonString: string,
3647
+ ): SafeParseResult<
3648
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden,
3649
+ SDKValidationError
3650
+ > {
3651
+ return safeParse(
3652
+ jsonString,
3653
+ (x) =>
3654
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$inboundSchema
3655
+ .parse(JSON.parse(x)),
3656
+ `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden' from JSON`,
3657
+ );
3658
+ }
3659
+
3660
+ /** @internal */
3661
+ export const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema:
3662
+ z.ZodNativeEnum<
3663
+ typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3
3664
+ > = z.nativeEnum(
3133
3665
  GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3,
3134
3666
  );
3135
3667
  /** @internal */
@@ -3418,11 +3950,11 @@ export const Properties9$inboundSchema: z.ZodType<
3418
3950
  "ui:control":
3419
3951
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema,
3420
3952
  description: types.optional(types.string()),
3421
- minLength: types.optional(types.number()),
3953
+ enum: types.optional(z.array(types.string())),
3422
3954
  maxLength: types.optional(types.number()),
3955
+ minLength: types.optional(types.number()),
3423
3956
  pattern: types.optional(types.string()),
3424
3957
  default: types.optional(types.string()),
3425
- enum: types.optional(z.array(types.string())),
3426
3958
  "ui:label": types.optional(types.string()),
3427
3959
  "ui:read-only": types.optional(
3428
3960
  smartUnion([
@@ -3482,11 +4014,11 @@ export type Properties9$Outbound = {
3482
4014
  type: string;
3483
4015
  "ui:control": string;
3484
4016
  description?: string | undefined;
3485
- minLength?: number | undefined;
4017
+ enum?: Array<string> | undefined;
3486
4018
  maxLength?: number | undefined;
4019
+ minLength?: number | undefined;
3487
4020
  pattern?: string | undefined;
3488
4021
  default?: string | undefined;
3489
- enum?: Array<string> | undefined;
3490
4022
  "ui:label"?: string | undefined;
3491
4023
  "ui:read-only"?:
3492
4024
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound
@@ -3524,11 +4056,11 @@ export const Properties9$outboundSchema: z.ZodType<
3524
4056
  uiControl:
3525
4057
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$outboundSchema,
3526
4058
  description: z.string().optional(),
3527
- minLength: z.number().optional(),
4059
+ enum: z.array(z.string()).optional(),
3528
4060
  maxLength: z.number().optional(),
4061
+ minLength: z.number().optional(),
3529
4062
  pattern: z.string().optional(),
3530
4063
  default: z.string().optional(),
3531
- enum: z.array(z.string()).optional(),
3532
4064
  uiLabel: z.string().optional(),
3533
4065
  uiReadOnly: smartUnion([
3534
4066
  z.lazy(() =>
@@ -3601,20 +4133,6 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Applicatio
3601
4133
  > =
3602
4134
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$inboundSchema;
3603
4135
 
3604
- /** @internal */
3605
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema:
3606
- z.ZodNativeEnum<
3607
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl
3608
- > = z.nativeEnum(
3609
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl,
3610
- );
3611
- /** @internal */
3612
- export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema:
3613
- z.ZodNativeEnum<
3614
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl
3615
- > =
3616
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema;
3617
-
3618
4136
  /** @internal */
3619
4137
  export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$inboundSchema:
3620
4138
  z.ZodNativeEnum<
@@ -3699,6 +4217,20 @@ export function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(
3699
4217
  );
3700
4218
  }
3701
4219
 
4220
+ /** @internal */
4221
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema:
4222
+ z.ZodNativeEnum<
4223
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl
4224
+ > = z.nativeEnum(
4225
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl,
4226
+ );
4227
+ /** @internal */
4228
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema:
4229
+ z.ZodNativeEnum<
4230
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl
4231
+ > =
4232
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema;
4233
+
3702
4234
  /** @internal */
3703
4235
  export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$inboundSchema:
3704
4236
  z.ZodNativeEnum<
@@ -4943,11 +5475,11 @@ export const Properties8$inboundSchema: z.ZodType<
4943
5475
  > = z.object({
4944
5476
  type:
4945
5477
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$inboundSchema,
4946
- "ui:control":
4947
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema,
4948
5478
  items: z.lazy(() =>
4949
5479
  GetConfigurationProductsPropertiesIntegrationsItems$inboundSchema
4950
5480
  ),
5481
+ "ui:control":
5482
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema,
4951
5483
  "ui:options": z.array(
4952
5484
  smartUnion([
4953
5485
  z.lazy(() => GetConfigurationProductsUiOptions1$inboundSchema),
@@ -4956,8 +5488,8 @@ export const Properties8$inboundSchema: z.ZodType<
4956
5488
  ]),
4957
5489
  ),
4958
5490
  description: types.optional(types.string()),
4959
- minItems: types.optional(types.number()),
4960
5491
  maxItems: types.optional(types.number()),
5492
+ minItems: types.optional(types.number()),
4961
5493
  "ui:label": types.optional(types.string()),
4962
5494
  "ui:read-only": types.optional(
4963
5495
  smartUnion([
@@ -5018,16 +5550,16 @@ export const Properties8$inboundSchema: z.ZodType<
5018
5550
  /** @internal */
5019
5551
  export type Properties8$Outbound = {
5020
5552
  type: string;
5021
- "ui:control": string;
5022
5553
  items: GetConfigurationProductsPropertiesIntegrationsItems$Outbound;
5554
+ "ui:control": string;
5023
5555
  "ui:options": Array<
5024
5556
  | GetConfigurationProductsUiOptions1$Outbound
5025
5557
  | GetConfigurationProductsUiOptions3$Outbound
5026
5558
  | string
5027
5559
  >;
5028
5560
  description?: string | undefined;
5029
- minItems?: number | undefined;
5030
5561
  maxItems?: number | undefined;
5562
+ minItems?: number | undefined;
5031
5563
  "ui:label"?: string | undefined;
5032
5564
  "ui:read-only"?:
5033
5565
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound
@@ -5064,11 +5596,11 @@ export const Properties8$outboundSchema: z.ZodType<
5064
5596
  > = z.object({
5065
5597
  type:
5066
5598
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$outboundSchema,
5067
- uiControl:
5068
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema,
5069
5599
  items: z.lazy(() =>
5070
5600
  GetConfigurationProductsPropertiesIntegrationsItems$outboundSchema
5071
5601
  ),
5602
+ uiControl:
5603
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema,
5072
5604
  uiOptions: z.array(
5073
5605
  smartUnion([
5074
5606
  z.lazy(() => GetConfigurationProductsUiOptions1$outboundSchema),
@@ -5077,8 +5609,8 @@ export const Properties8$outboundSchema: z.ZodType<
5077
5609
  ]),
5078
5610
  ),
5079
5611
  description: z.string().optional(),
5080
- minItems: z.number().optional(),
5081
5612
  maxItems: z.number().optional(),
5613
+ minItems: z.number().optional(),
5082
5614
  uiLabel: z.string().optional(),
5083
5615
  uiReadOnly: smartUnion([
5084
5616
  z.lazy(() =>
@@ -5169,67 +5701,63 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Applicatio
5169
5701
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema;
5170
5702
 
5171
5703
  /** @internal */
5172
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema:
5704
+ export const GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema:
5173
5705
  z.ZodNativeEnum<
5174
- typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3
5175
- > = z.nativeEnum(
5176
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3,
5177
- );
5706
+ typeof GetConfigurationProductsDisabledIntegrationsResponse3
5707
+ > = z.nativeEnum(GetConfigurationProductsDisabledIntegrationsResponse3);
5178
5708
  /** @internal */
5179
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema:
5709
+ export const GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema:
5180
5710
  z.ZodNativeEnum<
5181
- typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3
5182
- > =
5183
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema;
5711
+ typeof GetConfigurationProductsDisabledIntegrationsResponse3
5712
+ > = GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema;
5184
5713
 
5185
5714
  /** @internal */
5186
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema:
5715
+ export const GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema:
5187
5716
  z.ZodType<
5188
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5717
+ GetConfigurationProductsDisabledIntegrationsResponse2,
5189
5718
  z.ZodTypeDef,
5190
5719
  unknown
5191
5720
  > = z.object({
5192
5721
  expr: types.string(),
5193
5722
  });
5194
5723
  /** @internal */
5195
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound =
5196
- {
5197
- expr: string;
5198
- };
5724
+ export type GetConfigurationProductsDisabledIntegrationsResponse2$Outbound = {
5725
+ expr: string;
5726
+ };
5199
5727
 
5200
5728
  /** @internal */
5201
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema:
5729
+ export const GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema:
5202
5730
  z.ZodType<
5203
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound,
5731
+ GetConfigurationProductsDisabledIntegrationsResponse2$Outbound,
5204
5732
  z.ZodTypeDef,
5205
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2
5733
+ GetConfigurationProductsDisabledIntegrationsResponse2
5206
5734
  > = z.object({
5207
5735
  expr: z.string(),
5208
5736
  });
5209
5737
 
5210
- export function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2ToJSON(
5211
- getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2:
5212
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5738
+ export function getConfigurationProductsDisabledIntegrationsResponse2ToJSON(
5739
+ getConfigurationProductsDisabledIntegrationsResponse2:
5740
+ GetConfigurationProductsDisabledIntegrationsResponse2,
5213
5741
  ): string {
5214
5742
  return JSON.stringify(
5215
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema
5216
- .parse(
5217
- getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5218
- ),
5743
+ GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema.parse(
5744
+ getConfigurationProductsDisabledIntegrationsResponse2,
5745
+ ),
5219
5746
  );
5220
5747
  }
5221
- export function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2FromJSON(
5748
+ export function getConfigurationProductsDisabledIntegrationsResponse2FromJSON(
5222
5749
  jsonString: string,
5223
5750
  ): SafeParseResult<
5224
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5751
+ GetConfigurationProductsDisabledIntegrationsResponse2,
5225
5752
  SDKValidationError
5226
5753
  > {
5227
5754
  return safeParse(
5228
5755
  jsonString,
5229
5756
  (x) =>
5230
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema
5231
- .parse(JSON.parse(x)),
5232
- `Failed to parse 'GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2' from JSON`,
5757
+ GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema.parse(
5758
+ JSON.parse(x),
5759
+ ),
5760
+ `Failed to parse 'GetConfigurationProductsDisabledIntegrationsResponse2' from JSON`,
5233
5761
  );
5234
5762
  }
5235
5763
 
@@ -5240,14 +5768,14 @@ export const GetConfigurationProductsUiOptionsDisabled$inboundSchema: z.ZodType<
5240
5768
  unknown
5241
5769
  > = smartUnion([
5242
5770
  z.lazy(() =>
5243
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema
5771
+ GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema
5244
5772
  ),
5245
5773
  types.boolean(),
5246
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema,
5774
+ GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema,
5247
5775
  ]);
5248
5776
  /** @internal */
5249
5777
  export type GetConfigurationProductsUiOptionsDisabled$Outbound =
5250
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound
5778
+ | GetConfigurationProductsDisabledIntegrationsResponse2$Outbound
5251
5779
  | boolean
5252
5780
  | string;
5253
5781
 
@@ -5259,10 +5787,10 @@ export const GetConfigurationProductsUiOptionsDisabled$outboundSchema:
5259
5787
  GetConfigurationProductsUiOptionsDisabled
5260
5788
  > = smartUnion([
5261
5789
  z.lazy(() =>
5262
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema
5790
+ GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema
5263
5791
  ),
5264
5792
  z.boolean(),
5265
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema,
5793
+ GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema,
5266
5794
  ]);
5267
5795
 
5268
5796
  export function getConfigurationProductsUiOptionsDisabledToJSON(
@@ -5292,67 +5820,61 @@ export function getConfigurationProductsUiOptionsDisabledFromJSON(
5292
5820
  }
5293
5821
 
5294
5822
  /** @internal */
5295
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema:
5296
- z.ZodNativeEnum<
5297
- typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3
5298
- > = z.nativeEnum(
5299
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3,
5300
- );
5823
+ export const GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema:
5824
+ z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3> =
5825
+ z.nativeEnum(GetConfigurationProductsHiddenIntegrationsResponse3);
5301
5826
  /** @internal */
5302
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema:
5303
- z.ZodNativeEnum<
5304
- typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3
5305
- > =
5306
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema;
5827
+ export const GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema:
5828
+ z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3> =
5829
+ GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema;
5307
5830
 
5308
5831
  /** @internal */
5309
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema:
5832
+ export const GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema:
5310
5833
  z.ZodType<
5311
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5834
+ GetConfigurationProductsHiddenIntegrationsResponse2,
5312
5835
  z.ZodTypeDef,
5313
5836
  unknown
5314
5837
  > = z.object({
5315
5838
  expr: types.string(),
5316
5839
  });
5317
5840
  /** @internal */
5318
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound =
5319
- {
5320
- expr: string;
5321
- };
5841
+ export type GetConfigurationProductsHiddenIntegrationsResponse2$Outbound = {
5842
+ expr: string;
5843
+ };
5322
5844
 
5323
5845
  /** @internal */
5324
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema:
5846
+ export const GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema:
5325
5847
  z.ZodType<
5326
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound,
5848
+ GetConfigurationProductsHiddenIntegrationsResponse2$Outbound,
5327
5849
  z.ZodTypeDef,
5328
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2
5850
+ GetConfigurationProductsHiddenIntegrationsResponse2
5329
5851
  > = z.object({
5330
5852
  expr: z.string(),
5331
5853
  });
5332
5854
 
5333
- export function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2ToJSON(
5334
- getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2:
5335
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5855
+ export function getConfigurationProductsHiddenIntegrationsResponse2ToJSON(
5856
+ getConfigurationProductsHiddenIntegrationsResponse2:
5857
+ GetConfigurationProductsHiddenIntegrationsResponse2,
5336
5858
  ): string {
5337
5859
  return JSON.stringify(
5338
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema
5339
- .parse(
5340
- getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5341
- ),
5860
+ GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema.parse(
5861
+ getConfigurationProductsHiddenIntegrationsResponse2,
5862
+ ),
5342
5863
  );
5343
5864
  }
5344
- export function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2FromJSON(
5865
+ export function getConfigurationProductsHiddenIntegrationsResponse2FromJSON(
5345
5866
  jsonString: string,
5346
5867
  ): SafeParseResult<
5347
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2,
5868
+ GetConfigurationProductsHiddenIntegrationsResponse2,
5348
5869
  SDKValidationError
5349
5870
  > {
5350
5871
  return safeParse(
5351
5872
  jsonString,
5352
5873
  (x) =>
5353
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema
5354
- .parse(JSON.parse(x)),
5355
- `Failed to parse 'GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2' from JSON`,
5874
+ GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema.parse(
5875
+ JSON.parse(x),
5876
+ ),
5877
+ `Failed to parse 'GetConfigurationProductsHiddenIntegrationsResponse2' from JSON`,
5356
5878
  );
5357
5879
  }
5358
5880
 
@@ -5363,14 +5885,14 @@ export const GetConfigurationProductsUiOptionsHidden$inboundSchema: z.ZodType<
5363
5885
  unknown
5364
5886
  > = smartUnion([
5365
5887
  z.lazy(() =>
5366
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema
5888
+ GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema
5367
5889
  ),
5368
5890
  types.boolean(),
5369
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema,
5891
+ GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema,
5370
5892
  ]);
5371
5893
  /** @internal */
5372
5894
  export type GetConfigurationProductsUiOptionsHidden$Outbound =
5373
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound
5895
+ | GetConfigurationProductsHiddenIntegrationsResponse2$Outbound
5374
5896
  | boolean
5375
5897
  | string;
5376
5898
 
@@ -5381,10 +5903,10 @@ export const GetConfigurationProductsUiOptionsHidden$outboundSchema: z.ZodType<
5381
5903
  GetConfigurationProductsUiOptionsHidden
5382
5904
  > = smartUnion([
5383
5905
  z.lazy(() =>
5384
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema
5906
+ GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema
5385
5907
  ),
5386
5908
  z.boolean(),
5387
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema,
5909
+ GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema,
5388
5910
  ]);
5389
5911
 
5390
5912
  export function getConfigurationProductsUiOptionsHiddenToJSON(
@@ -5423,19 +5945,19 @@ export const UiOptions3$inboundSchema: z.ZodType<
5423
5945
  disabled: types.optional(
5424
5946
  smartUnion([
5425
5947
  z.lazy(() =>
5426
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema
5948
+ GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema
5427
5949
  ),
5428
5950
  types.boolean(),
5429
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema,
5951
+ GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema,
5430
5952
  ]),
5431
5953
  ),
5432
5954
  hidden: types.optional(
5433
5955
  smartUnion([
5434
5956
  z.lazy(() =>
5435
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema
5957
+ GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema
5436
5958
  ),
5437
5959
  types.boolean(),
5438
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema,
5960
+ GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema,
5439
5961
  ]),
5440
5962
  ),
5441
5963
  });
@@ -5443,12 +5965,12 @@ export const UiOptions3$inboundSchema: z.ZodType<
5443
5965
  export type UiOptions3$Outbound = {
5444
5966
  value: string;
5445
5967
  disabled?:
5446
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound
5968
+ | GetConfigurationProductsDisabledIntegrationsResponse2$Outbound
5447
5969
  | boolean
5448
5970
  | string
5449
5971
  | undefined;
5450
5972
  hidden?:
5451
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound
5973
+ | GetConfigurationProductsHiddenIntegrationsResponse2$Outbound
5452
5974
  | boolean
5453
5975
  | string
5454
5976
  | undefined;
@@ -5463,17 +5985,17 @@ export const UiOptions3$outboundSchema: z.ZodType<
5463
5985
  value: z.string(),
5464
5986
  disabled: smartUnion([
5465
5987
  z.lazy(() =>
5466
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema
5988
+ GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema
5467
5989
  ),
5468
5990
  z.boolean(),
5469
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema,
5991
+ GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema,
5470
5992
  ]).optional(),
5471
5993
  hidden: smartUnion([
5472
5994
  z.lazy(() =>
5473
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema
5995
+ GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema
5474
5996
  ),
5475
5997
  z.boolean(),
5476
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema,
5998
+ GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema,
5477
5999
  ]).optional(),
5478
6000
  });
5479
6001
 
@@ -5491,67 +6013,61 @@ export function uiOptions3FromJSON(
5491
6013
  }
5492
6014
 
5493
6015
  /** @internal */
5494
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema:
5495
- z.ZodNativeEnum<
5496
- typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3
5497
- > = z.nativeEnum(
5498
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3,
5499
- );
6016
+ export const GetConfigurationProductsDisabledIntegrations3$inboundSchema:
6017
+ z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3> = z
6018
+ .nativeEnum(GetConfigurationProductsDisabledIntegrations3);
5500
6019
  /** @internal */
5501
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema:
5502
- z.ZodNativeEnum<
5503
- typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3
5504
- > =
5505
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema;
6020
+ export const GetConfigurationProductsDisabledIntegrations3$outboundSchema:
6021
+ z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3> =
6022
+ GetConfigurationProductsDisabledIntegrations3$inboundSchema;
5506
6023
 
5507
6024
  /** @internal */
5508
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema:
6025
+ export const GetConfigurationProductsDisabledIntegrations2$inboundSchema:
5509
6026
  z.ZodType<
5510
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
6027
+ GetConfigurationProductsDisabledIntegrations2,
5511
6028
  z.ZodTypeDef,
5512
6029
  unknown
5513
6030
  > = z.object({
5514
6031
  expr: types.string(),
5515
6032
  });
5516
6033
  /** @internal */
5517
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound =
5518
- {
5519
- expr: string;
5520
- };
6034
+ export type GetConfigurationProductsDisabledIntegrations2$Outbound = {
6035
+ expr: string;
6036
+ };
5521
6037
 
5522
6038
  /** @internal */
5523
- export const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema:
6039
+ export const GetConfigurationProductsDisabledIntegrations2$outboundSchema:
5524
6040
  z.ZodType<
5525
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound,
6041
+ GetConfigurationProductsDisabledIntegrations2$Outbound,
5526
6042
  z.ZodTypeDef,
5527
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2
6043
+ GetConfigurationProductsDisabledIntegrations2
5528
6044
  > = z.object({
5529
6045
  expr: z.string(),
5530
6046
  });
5531
6047
 
5532
- export function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(
5533
- getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2:
5534
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
6048
+ export function getConfigurationProductsDisabledIntegrations2ToJSON(
6049
+ getConfigurationProductsDisabledIntegrations2:
6050
+ GetConfigurationProductsDisabledIntegrations2,
5535
6051
  ): string {
5536
6052
  return JSON.stringify(
5537
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5538
- .parse(
5539
- getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
5540
- ),
6053
+ GetConfigurationProductsDisabledIntegrations2$outboundSchema.parse(
6054
+ getConfigurationProductsDisabledIntegrations2,
6055
+ ),
5541
6056
  );
5542
6057
  }
5543
- export function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(
6058
+ export function getConfigurationProductsDisabledIntegrations2FromJSON(
5544
6059
  jsonString: string,
5545
6060
  ): SafeParseResult<
5546
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2,
6061
+ GetConfigurationProductsDisabledIntegrations2,
5547
6062
  SDKValidationError
5548
6063
  > {
5549
6064
  return safeParse(
5550
6065
  jsonString,
5551
6066
  (x) =>
5552
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5553
- .parse(JSON.parse(x)),
5554
- `Failed to parse 'GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2' from JSON`,
6067
+ GetConfigurationProductsDisabledIntegrations2$inboundSchema.parse(
6068
+ JSON.parse(x),
6069
+ ),
6070
+ `Failed to parse 'GetConfigurationProductsDisabledIntegrations2' from JSON`,
5555
6071
  );
5556
6072
  }
5557
6073
 
@@ -5561,15 +6077,13 @@ export const UiOptionsDisabled$inboundSchema: z.ZodType<
5561
6077
  z.ZodTypeDef,
5562
6078
  unknown
5563
6079
  > = smartUnion([
5564
- z.lazy(() =>
5565
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5566
- ),
6080
+ z.lazy(() => GetConfigurationProductsDisabledIntegrations2$inboundSchema),
5567
6081
  types.boolean(),
5568
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
6082
+ GetConfigurationProductsDisabledIntegrations3$inboundSchema,
5569
6083
  ]);
5570
6084
  /** @internal */
5571
6085
  export type UiOptionsDisabled$Outbound =
5572
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
6086
+ | GetConfigurationProductsDisabledIntegrations2$Outbound
5573
6087
  | boolean
5574
6088
  | string;
5575
6089
 
@@ -5579,11 +6093,9 @@ export const UiOptionsDisabled$outboundSchema: z.ZodType<
5579
6093
  z.ZodTypeDef,
5580
6094
  UiOptionsDisabled
5581
6095
  > = smartUnion([
5582
- z.lazy(() =>
5583
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5584
- ),
6096
+ z.lazy(() => GetConfigurationProductsDisabledIntegrations2$outboundSchema),
5585
6097
  z.boolean(),
5586
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
6098
+ GetConfigurationProductsDisabledIntegrations3$outboundSchema,
5587
6099
  ]);
5588
6100
 
5589
6101
  export function uiOptionsDisabledToJSON(
@@ -5604,67 +6116,61 @@ export function uiOptionsDisabledFromJSON(
5604
6116
  }
5605
6117
 
5606
6118
  /** @internal */
5607
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema:
5608
- z.ZodNativeEnum<
5609
- typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3
5610
- > = z.nativeEnum(
5611
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3,
5612
- );
6119
+ export const GetConfigurationProductsHiddenIntegrations3$inboundSchema:
6120
+ z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3> = z
6121
+ .nativeEnum(GetConfigurationProductsHiddenIntegrations3);
5613
6122
  /** @internal */
5614
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema:
5615
- z.ZodNativeEnum<
5616
- typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3
5617
- > =
5618
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema;
6123
+ export const GetConfigurationProductsHiddenIntegrations3$outboundSchema:
6124
+ z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3> =
6125
+ GetConfigurationProductsHiddenIntegrations3$inboundSchema;
5619
6126
 
5620
6127
  /** @internal */
5621
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema:
6128
+ export const GetConfigurationProductsHiddenIntegrations2$inboundSchema:
5622
6129
  z.ZodType<
5623
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
6130
+ GetConfigurationProductsHiddenIntegrations2,
5624
6131
  z.ZodTypeDef,
5625
6132
  unknown
5626
6133
  > = z.object({
5627
6134
  expr: types.string(),
5628
6135
  });
5629
6136
  /** @internal */
5630
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound =
5631
- {
5632
- expr: string;
5633
- };
6137
+ export type GetConfigurationProductsHiddenIntegrations2$Outbound = {
6138
+ expr: string;
6139
+ };
5634
6140
 
5635
6141
  /** @internal */
5636
- export const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema:
6142
+ export const GetConfigurationProductsHiddenIntegrations2$outboundSchema:
5637
6143
  z.ZodType<
5638
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound,
6144
+ GetConfigurationProductsHiddenIntegrations2$Outbound,
5639
6145
  z.ZodTypeDef,
5640
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2
6146
+ GetConfigurationProductsHiddenIntegrations2
5641
6147
  > = z.object({
5642
6148
  expr: z.string(),
5643
6149
  });
5644
6150
 
5645
- export function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(
5646
- getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2:
5647
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
6151
+ export function getConfigurationProductsHiddenIntegrations2ToJSON(
6152
+ getConfigurationProductsHiddenIntegrations2:
6153
+ GetConfigurationProductsHiddenIntegrations2,
5648
6154
  ): string {
5649
6155
  return JSON.stringify(
5650
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5651
- .parse(
5652
- getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
5653
- ),
6156
+ GetConfigurationProductsHiddenIntegrations2$outboundSchema.parse(
6157
+ getConfigurationProductsHiddenIntegrations2,
6158
+ ),
5654
6159
  );
5655
6160
  }
5656
- export function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(
6161
+ export function getConfigurationProductsHiddenIntegrations2FromJSON(
5657
6162
  jsonString: string,
5658
6163
  ): SafeParseResult<
5659
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2,
6164
+ GetConfigurationProductsHiddenIntegrations2,
5660
6165
  SDKValidationError
5661
6166
  > {
5662
6167
  return safeParse(
5663
6168
  jsonString,
5664
6169
  (x) =>
5665
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5666
- .parse(JSON.parse(x)),
5667
- `Failed to parse 'GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2' from JSON`,
6170
+ GetConfigurationProductsHiddenIntegrations2$inboundSchema.parse(
6171
+ JSON.parse(x),
6172
+ ),
6173
+ `Failed to parse 'GetConfigurationProductsHiddenIntegrations2' from JSON`,
5668
6174
  );
5669
6175
  }
5670
6176
 
@@ -5674,15 +6180,13 @@ export const UiOptionsHidden$inboundSchema: z.ZodType<
5674
6180
  z.ZodTypeDef,
5675
6181
  unknown
5676
6182
  > = smartUnion([
5677
- z.lazy(() =>
5678
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5679
- ),
6183
+ z.lazy(() => GetConfigurationProductsHiddenIntegrations2$inboundSchema),
5680
6184
  types.boolean(),
5681
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
6185
+ GetConfigurationProductsHiddenIntegrations3$inboundSchema,
5682
6186
  ]);
5683
6187
  /** @internal */
5684
6188
  export type UiOptionsHidden$Outbound =
5685
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
6189
+ | GetConfigurationProductsHiddenIntegrations2$Outbound
5686
6190
  | boolean
5687
6191
  | string;
5688
6192
 
@@ -5692,11 +6196,9 @@ export const UiOptionsHidden$outboundSchema: z.ZodType<
5692
6196
  z.ZodTypeDef,
5693
6197
  UiOptionsHidden
5694
6198
  > = smartUnion([
5695
- z.lazy(() =>
5696
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5697
- ),
6199
+ z.lazy(() => GetConfigurationProductsHiddenIntegrations2$outboundSchema),
5698
6200
  z.boolean(),
5699
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
6201
+ GetConfigurationProductsHiddenIntegrations3$outboundSchema,
5700
6202
  ]);
5701
6203
 
5702
6204
  export function uiOptionsHiddenToJSON(
@@ -5724,20 +6226,16 @@ export const UiOptions1$inboundSchema: z.ZodType<
5724
6226
  label: types.string(),
5725
6227
  disabled: types.optional(
5726
6228
  smartUnion([
5727
- z.lazy(() =>
5728
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5729
- ),
6229
+ z.lazy(() => GetConfigurationProductsDisabledIntegrations2$inboundSchema),
5730
6230
  types.boolean(),
5731
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
6231
+ GetConfigurationProductsDisabledIntegrations3$inboundSchema,
5732
6232
  ]),
5733
6233
  ),
5734
6234
  hidden: types.optional(
5735
6235
  smartUnion([
5736
- z.lazy(() =>
5737
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema
5738
- ),
6236
+ z.lazy(() => GetConfigurationProductsHiddenIntegrations2$inboundSchema),
5739
6237
  types.boolean(),
5740
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema,
6238
+ GetConfigurationProductsHiddenIntegrations3$inboundSchema,
5741
6239
  ]),
5742
6240
  ),
5743
6241
  });
@@ -5746,12 +6244,12 @@ export type UiOptions1$Outbound = {
5746
6244
  value: string;
5747
6245
  label: string;
5748
6246
  disabled?:
5749
- | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
6247
+ | GetConfigurationProductsDisabledIntegrations2$Outbound
5750
6248
  | boolean
5751
6249
  | string
5752
6250
  | undefined;
5753
6251
  hidden?:
5754
- | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
6252
+ | GetConfigurationProductsHiddenIntegrations2$Outbound
5755
6253
  | boolean
5756
6254
  | string
5757
6255
  | undefined;
@@ -5766,18 +6264,14 @@ export const UiOptions1$outboundSchema: z.ZodType<
5766
6264
  value: z.string(),
5767
6265
  label: z.string(),
5768
6266
  disabled: smartUnion([
5769
- z.lazy(() =>
5770
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5771
- ),
6267
+ z.lazy(() => GetConfigurationProductsDisabledIntegrations2$outboundSchema),
5772
6268
  z.boolean(),
5773
- GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
6269
+ GetConfigurationProductsDisabledIntegrations3$outboundSchema,
5774
6270
  ]).optional(),
5775
6271
  hidden: smartUnion([
5776
- z.lazy(() =>
5777
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema
5778
- ),
6272
+ z.lazy(() => GetConfigurationProductsHiddenIntegrations2$outboundSchema),
5779
6273
  z.boolean(),
5780
- GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema,
6274
+ GetConfigurationProductsHiddenIntegrations3$outboundSchema,
5781
6275
  ]).optional(),
5782
6276
  });
5783
6277
 
@@ -6397,11 +6891,11 @@ export const Properties7$inboundSchema: z.ZodType<
6397
6891
  ]),
6398
6892
  ),
6399
6893
  description: types.optional(types.string()),
6400
- minLength: types.optional(types.number()),
6894
+ enum: types.optional(z.array(types.string())),
6401
6895
  maxLength: types.optional(types.number()),
6896
+ minLength: types.optional(types.number()),
6402
6897
  pattern: types.optional(types.string()),
6403
6898
  default: types.optional(types.string()),
6404
- enum: types.optional(z.array(types.string())),
6405
6899
  "ui:label": types.optional(types.string()),
6406
6900
  "ui:read-only": types.optional(
6407
6901
  smartUnion([
@@ -6463,11 +6957,11 @@ export type Properties7$Outbound = {
6463
6957
  "ui:control": string;
6464
6958
  "ui:options": Array<UiOptions1$Outbound | UiOptions3$Outbound | string>;
6465
6959
  description?: string | undefined;
6466
- minLength?: number | undefined;
6960
+ enum?: Array<string> | undefined;
6467
6961
  maxLength?: number | undefined;
6962
+ minLength?: number | undefined;
6468
6963
  pattern?: string | undefined;
6469
6964
  default?: string | undefined;
6470
- enum?: Array<string> | undefined;
6471
6965
  "ui:label"?: string | undefined;
6472
6966
  "ui:read-only"?:
6473
6967
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$Outbound
@@ -6512,11 +7006,11 @@ export const Properties7$outboundSchema: z.ZodType<
6512
7006
  ]),
6513
7007
  ),
6514
7008
  description: z.string().optional(),
6515
- minLength: z.number().optional(),
7009
+ enum: z.array(z.string()).optional(),
6516
7010
  maxLength: z.number().optional(),
7011
+ minLength: z.number().optional(),
6517
7012
  pattern: z.string().optional(),
6518
7013
  default: z.string().optional(),
6519
- enum: z.array(z.string()).optional(),
6520
7014
  uiLabel: z.string().optional(),
6521
7015
  uiReadOnly: smartUnion([
6522
7016
  z.lazy(() =>
@@ -6590,20 +7084,6 @@ export const GetConfigurationProductsPropertiesIntegrationsResponse200Applicatio
6590
7084
  > =
6591
7085
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$inboundSchema;
6592
7086
 
6593
- /** @internal */
6594
- export const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema:
6595
- z.ZodNativeEnum<
6596
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl
6597
- > = z.nativeEnum(
6598
- GetConfigurationProductsPropertiesIntegrationsResponse200UiControl,
6599
- );
6600
- /** @internal */
6601
- export const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema:
6602
- z.ZodNativeEnum<
6603
- typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl
6604
- > =
6605
- GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema;
6606
-
6607
7087
  /** @internal */
6608
7088
  export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$inboundSchema:
6609
7089
  z.ZodNativeEnum<
@@ -6687,239 +7167,204 @@ export function getConfigurationProductsPropertiesItemsFromJSON(
6687
7167
  }
6688
7168
 
6689
7169
  /** @internal */
6690
- export const GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema:
7170
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema:
6691
7171
  z.ZodNativeEnum<
6692
- typeof GetConfigurationProductsDisabledIntegrationsResponse3
6693
- > = z.nativeEnum(GetConfigurationProductsDisabledIntegrationsResponse3);
7172
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl
7173
+ > = z.nativeEnum(
7174
+ GetConfigurationProductsPropertiesIntegrationsResponse200UiControl,
7175
+ );
6694
7176
  /** @internal */
6695
- export const GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema:
7177
+ export const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema:
6696
7178
  z.ZodNativeEnum<
6697
- typeof GetConfigurationProductsDisabledIntegrationsResponse3
6698
- > = GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema;
7179
+ typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl
7180
+ > =
7181
+ GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema;
7182
+
7183
+ /** @internal */
7184
+ export const GetConfigurationProductsDisabled3$inboundSchema: z.ZodNativeEnum<
7185
+ typeof GetConfigurationProductsDisabled3
7186
+ > = z.nativeEnum(GetConfigurationProductsDisabled3);
7187
+ /** @internal */
7188
+ export const GetConfigurationProductsDisabled3$outboundSchema: z.ZodNativeEnum<
7189
+ typeof GetConfigurationProductsDisabled3
7190
+ > = GetConfigurationProductsDisabled3$inboundSchema;
6699
7191
 
6700
7192
  /** @internal */
6701
- export const GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema:
6702
- z.ZodType<
6703
- GetConfigurationProductsDisabledIntegrationsResponse2,
6704
- z.ZodTypeDef,
6705
- unknown
6706
- > = z.object({
6707
- expr: types.string(),
6708
- });
7193
+ export const GetConfigurationProductsDisabled2$inboundSchema: z.ZodType<
7194
+ GetConfigurationProductsDisabled2,
7195
+ z.ZodTypeDef,
7196
+ unknown
7197
+ > = z.object({
7198
+ expr: types.string(),
7199
+ });
6709
7200
  /** @internal */
6710
- export type GetConfigurationProductsDisabledIntegrationsResponse2$Outbound = {
7201
+ export type GetConfigurationProductsDisabled2$Outbound = {
6711
7202
  expr: string;
6712
7203
  };
6713
7204
 
6714
7205
  /** @internal */
6715
- export const GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema:
6716
- z.ZodType<
6717
- GetConfigurationProductsDisabledIntegrationsResponse2$Outbound,
6718
- z.ZodTypeDef,
6719
- GetConfigurationProductsDisabledIntegrationsResponse2
6720
- > = z.object({
6721
- expr: z.string(),
6722
- });
7206
+ export const GetConfigurationProductsDisabled2$outboundSchema: z.ZodType<
7207
+ GetConfigurationProductsDisabled2$Outbound,
7208
+ z.ZodTypeDef,
7209
+ GetConfigurationProductsDisabled2
7210
+ > = z.object({
7211
+ expr: z.string(),
7212
+ });
6723
7213
 
6724
- export function getConfigurationProductsDisabledIntegrationsResponse2ToJSON(
6725
- getConfigurationProductsDisabledIntegrationsResponse2:
6726
- GetConfigurationProductsDisabledIntegrationsResponse2,
7214
+ export function getConfigurationProductsDisabled2ToJSON(
7215
+ getConfigurationProductsDisabled2: GetConfigurationProductsDisabled2,
6727
7216
  ): string {
6728
7217
  return JSON.stringify(
6729
- GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema.parse(
6730
- getConfigurationProductsDisabledIntegrationsResponse2,
7218
+ GetConfigurationProductsDisabled2$outboundSchema.parse(
7219
+ getConfigurationProductsDisabled2,
6731
7220
  ),
6732
7221
  );
6733
7222
  }
6734
- export function getConfigurationProductsDisabledIntegrationsResponse2FromJSON(
7223
+ export function getConfigurationProductsDisabled2FromJSON(
6735
7224
  jsonString: string,
6736
- ): SafeParseResult<
6737
- GetConfigurationProductsDisabledIntegrationsResponse2,
6738
- SDKValidationError
6739
- > {
7225
+ ): SafeParseResult<GetConfigurationProductsDisabled2, SDKValidationError> {
6740
7226
  return safeParse(
6741
7227
  jsonString,
6742
- (x) =>
6743
- GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema.parse(
6744
- JSON.parse(x),
6745
- ),
6746
- `Failed to parse 'GetConfigurationProductsDisabledIntegrationsResponse2' from JSON`,
7228
+ (x) => GetConfigurationProductsDisabled2$inboundSchema.parse(JSON.parse(x)),
7229
+ `Failed to parse 'GetConfigurationProductsDisabled2' from JSON`,
6747
7230
  );
6748
7231
  }
6749
7232
 
6750
7233
  /** @internal */
6751
- export const GetConfigurationProductsPropertiesIntegrationsDisabled$inboundSchema:
6752
- z.ZodType<
6753
- GetConfigurationProductsPropertiesIntegrationsDisabled,
6754
- z.ZodTypeDef,
6755
- unknown
6756
- > = smartUnion([
6757
- z.lazy(() =>
6758
- GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema
6759
- ),
6760
- types.boolean(),
6761
- GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema,
6762
- ]);
7234
+ export const PropertiesDisabled$inboundSchema: z.ZodType<
7235
+ PropertiesDisabled,
7236
+ z.ZodTypeDef,
7237
+ unknown
7238
+ > = smartUnion([
7239
+ z.lazy(() => GetConfigurationProductsDisabled2$inboundSchema),
7240
+ types.boolean(),
7241
+ GetConfigurationProductsDisabled3$inboundSchema,
7242
+ ]);
6763
7243
  /** @internal */
6764
- export type GetConfigurationProductsPropertiesIntegrationsDisabled$Outbound =
6765
- | GetConfigurationProductsDisabledIntegrationsResponse2$Outbound
7244
+ export type PropertiesDisabled$Outbound =
7245
+ | GetConfigurationProductsDisabled2$Outbound
6766
7246
  | boolean
6767
7247
  | string;
6768
7248
 
6769
7249
  /** @internal */
6770
- export const GetConfigurationProductsPropertiesIntegrationsDisabled$outboundSchema:
6771
- z.ZodType<
6772
- GetConfigurationProductsPropertiesIntegrationsDisabled$Outbound,
6773
- z.ZodTypeDef,
6774
- GetConfigurationProductsPropertiesIntegrationsDisabled
6775
- > = smartUnion([
6776
- z.lazy(() =>
6777
- GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema
6778
- ),
6779
- z.boolean(),
6780
- GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema,
6781
- ]);
7250
+ export const PropertiesDisabled$outboundSchema: z.ZodType<
7251
+ PropertiesDisabled$Outbound,
7252
+ z.ZodTypeDef,
7253
+ PropertiesDisabled
7254
+ > = smartUnion([
7255
+ z.lazy(() => GetConfigurationProductsDisabled2$outboundSchema),
7256
+ z.boolean(),
7257
+ GetConfigurationProductsDisabled3$outboundSchema,
7258
+ ]);
6782
7259
 
6783
- export function getConfigurationProductsPropertiesIntegrationsDisabledToJSON(
6784
- getConfigurationProductsPropertiesIntegrationsDisabled:
6785
- GetConfigurationProductsPropertiesIntegrationsDisabled,
7260
+ export function propertiesDisabledToJSON(
7261
+ propertiesDisabled: PropertiesDisabled,
6786
7262
  ): string {
6787
7263
  return JSON.stringify(
6788
- GetConfigurationProductsPropertiesIntegrationsDisabled$outboundSchema.parse(
6789
- getConfigurationProductsPropertiesIntegrationsDisabled,
6790
- ),
7264
+ PropertiesDisabled$outboundSchema.parse(propertiesDisabled),
6791
7265
  );
6792
7266
  }
6793
- export function getConfigurationProductsPropertiesIntegrationsDisabledFromJSON(
7267
+ export function propertiesDisabledFromJSON(
6794
7268
  jsonString: string,
6795
- ): SafeParseResult<
6796
- GetConfigurationProductsPropertiesIntegrationsDisabled,
6797
- SDKValidationError
6798
- > {
7269
+ ): SafeParseResult<PropertiesDisabled, SDKValidationError> {
6799
7270
  return safeParse(
6800
7271
  jsonString,
6801
- (x) =>
6802
- GetConfigurationProductsPropertiesIntegrationsDisabled$inboundSchema
6803
- .parse(JSON.parse(x)),
6804
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsDisabled' from JSON`,
7272
+ (x) => PropertiesDisabled$inboundSchema.parse(JSON.parse(x)),
7273
+ `Failed to parse 'PropertiesDisabled' from JSON`,
6805
7274
  );
6806
7275
  }
6807
7276
 
6808
7277
  /** @internal */
6809
- export const GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema:
6810
- z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3> =
6811
- z.nativeEnum(GetConfigurationProductsHiddenIntegrationsResponse3);
7278
+ export const GetConfigurationProductsHidden3$inboundSchema: z.ZodNativeEnum<
7279
+ typeof GetConfigurationProductsHidden3
7280
+ > = z.nativeEnum(GetConfigurationProductsHidden3);
6812
7281
  /** @internal */
6813
- export const GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema:
6814
- z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3> =
6815
- GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema;
7282
+ export const GetConfigurationProductsHidden3$outboundSchema: z.ZodNativeEnum<
7283
+ typeof GetConfigurationProductsHidden3
7284
+ > = GetConfigurationProductsHidden3$inboundSchema;
6816
7285
 
6817
7286
  /** @internal */
6818
- export const GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema:
6819
- z.ZodType<
6820
- GetConfigurationProductsHiddenIntegrationsResponse2,
6821
- z.ZodTypeDef,
6822
- unknown
6823
- > = z.object({
6824
- expr: types.string(),
6825
- });
7287
+ export const GetConfigurationProductsHidden2$inboundSchema: z.ZodType<
7288
+ GetConfigurationProductsHidden2,
7289
+ z.ZodTypeDef,
7290
+ unknown
7291
+ > = z.object({
7292
+ expr: types.string(),
7293
+ });
6826
7294
  /** @internal */
6827
- export type GetConfigurationProductsHiddenIntegrationsResponse2$Outbound = {
7295
+ export type GetConfigurationProductsHidden2$Outbound = {
6828
7296
  expr: string;
6829
7297
  };
6830
7298
 
6831
7299
  /** @internal */
6832
- export const GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema:
6833
- z.ZodType<
6834
- GetConfigurationProductsHiddenIntegrationsResponse2$Outbound,
6835
- z.ZodTypeDef,
6836
- GetConfigurationProductsHiddenIntegrationsResponse2
6837
- > = z.object({
6838
- expr: z.string(),
6839
- });
7300
+ export const GetConfigurationProductsHidden2$outboundSchema: z.ZodType<
7301
+ GetConfigurationProductsHidden2$Outbound,
7302
+ z.ZodTypeDef,
7303
+ GetConfigurationProductsHidden2
7304
+ > = z.object({
7305
+ expr: z.string(),
7306
+ });
6840
7307
 
6841
- export function getConfigurationProductsHiddenIntegrationsResponse2ToJSON(
6842
- getConfigurationProductsHiddenIntegrationsResponse2:
6843
- GetConfigurationProductsHiddenIntegrationsResponse2,
7308
+ export function getConfigurationProductsHidden2ToJSON(
7309
+ getConfigurationProductsHidden2: GetConfigurationProductsHidden2,
6844
7310
  ): string {
6845
7311
  return JSON.stringify(
6846
- GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema.parse(
6847
- getConfigurationProductsHiddenIntegrationsResponse2,
7312
+ GetConfigurationProductsHidden2$outboundSchema.parse(
7313
+ getConfigurationProductsHidden2,
6848
7314
  ),
6849
7315
  );
6850
7316
  }
6851
- export function getConfigurationProductsHiddenIntegrationsResponse2FromJSON(
7317
+ export function getConfigurationProductsHidden2FromJSON(
6852
7318
  jsonString: string,
6853
- ): SafeParseResult<
6854
- GetConfigurationProductsHiddenIntegrationsResponse2,
6855
- SDKValidationError
6856
- > {
7319
+ ): SafeParseResult<GetConfigurationProductsHidden2, SDKValidationError> {
6857
7320
  return safeParse(
6858
7321
  jsonString,
6859
- (x) =>
6860
- GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema.parse(
6861
- JSON.parse(x),
6862
- ),
6863
- `Failed to parse 'GetConfigurationProductsHiddenIntegrationsResponse2' from JSON`,
7322
+ (x) => GetConfigurationProductsHidden2$inboundSchema.parse(JSON.parse(x)),
7323
+ `Failed to parse 'GetConfigurationProductsHidden2' from JSON`,
6864
7324
  );
6865
7325
  }
6866
7326
 
6867
7327
  /** @internal */
6868
- export const GetConfigurationProductsPropertiesIntegrationsHidden$inboundSchema:
6869
- z.ZodType<
6870
- GetConfigurationProductsPropertiesIntegrationsHidden,
6871
- z.ZodTypeDef,
6872
- unknown
6873
- > = smartUnion([
6874
- z.lazy(() =>
6875
- GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema
6876
- ),
6877
- types.boolean(),
6878
- GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema,
6879
- ]);
7328
+ export const PropertiesHidden$inboundSchema: z.ZodType<
7329
+ PropertiesHidden,
7330
+ z.ZodTypeDef,
7331
+ unknown
7332
+ > = smartUnion([
7333
+ z.lazy(() => GetConfigurationProductsHidden2$inboundSchema),
7334
+ types.boolean(),
7335
+ GetConfigurationProductsHidden3$inboundSchema,
7336
+ ]);
6880
7337
  /** @internal */
6881
- export type GetConfigurationProductsPropertiesIntegrationsHidden$Outbound =
6882
- | GetConfigurationProductsHiddenIntegrationsResponse2$Outbound
7338
+ export type PropertiesHidden$Outbound =
7339
+ | GetConfigurationProductsHidden2$Outbound
6883
7340
  | boolean
6884
7341
  | string;
6885
7342
 
6886
7343
  /** @internal */
6887
- export const GetConfigurationProductsPropertiesIntegrationsHidden$outboundSchema:
6888
- z.ZodType<
6889
- GetConfigurationProductsPropertiesIntegrationsHidden$Outbound,
6890
- z.ZodTypeDef,
6891
- GetConfigurationProductsPropertiesIntegrationsHidden
6892
- > = smartUnion([
6893
- z.lazy(() =>
6894
- GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema
6895
- ),
6896
- z.boolean(),
6897
- GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema,
6898
- ]);
7344
+ export const PropertiesHidden$outboundSchema: z.ZodType<
7345
+ PropertiesHidden$Outbound,
7346
+ z.ZodTypeDef,
7347
+ PropertiesHidden
7348
+ > = smartUnion([
7349
+ z.lazy(() => GetConfigurationProductsHidden2$outboundSchema),
7350
+ z.boolean(),
7351
+ GetConfigurationProductsHidden3$outboundSchema,
7352
+ ]);
6899
7353
 
6900
- export function getConfigurationProductsPropertiesIntegrationsHiddenToJSON(
6901
- getConfigurationProductsPropertiesIntegrationsHidden:
6902
- GetConfigurationProductsPropertiesIntegrationsHidden,
7354
+ export function propertiesHiddenToJSON(
7355
+ propertiesHidden: PropertiesHidden,
6903
7356
  ): string {
6904
7357
  return JSON.stringify(
6905
- GetConfigurationProductsPropertiesIntegrationsHidden$outboundSchema.parse(
6906
- getConfigurationProductsPropertiesIntegrationsHidden,
6907
- ),
7358
+ PropertiesHidden$outboundSchema.parse(propertiesHidden),
6908
7359
  );
6909
7360
  }
6910
- export function getConfigurationProductsPropertiesIntegrationsHiddenFromJSON(
7361
+ export function propertiesHiddenFromJSON(
6911
7362
  jsonString: string,
6912
- ): SafeParseResult<
6913
- GetConfigurationProductsPropertiesIntegrationsHidden,
6914
- SDKValidationError
6915
- > {
7363
+ ): SafeParseResult<PropertiesHidden, SDKValidationError> {
6916
7364
  return safeParse(
6917
7365
  jsonString,
6918
- (x) =>
6919
- GetConfigurationProductsPropertiesIntegrationsHidden$inboundSchema.parse(
6920
- JSON.parse(x),
6921
- ),
6922
- `Failed to parse 'GetConfigurationProductsPropertiesIntegrationsHidden' from JSON`,
7366
+ (x) => PropertiesHidden$inboundSchema.parse(JSON.parse(x)),
7367
+ `Failed to parse 'PropertiesHidden' from JSON`,
6923
7368
  );
6924
7369
  }
6925
7370
 
@@ -6933,20 +7378,16 @@ export const PropertiesUiOptions$inboundSchema: z.ZodType<
6933
7378
  label: types.string(),
6934
7379
  disabled: types.optional(
6935
7380
  smartUnion([
6936
- z.lazy(() =>
6937
- GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema
6938
- ),
7381
+ z.lazy(() => GetConfigurationProductsDisabled2$inboundSchema),
6939
7382
  types.boolean(),
6940
- GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema,
7383
+ GetConfigurationProductsDisabled3$inboundSchema,
6941
7384
  ]),
6942
7385
  ),
6943
7386
  hidden: types.optional(
6944
7387
  smartUnion([
6945
- z.lazy(() =>
6946
- GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema
6947
- ),
7388
+ z.lazy(() => GetConfigurationProductsHidden2$inboundSchema),
6948
7389
  types.boolean(),
6949
- GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema,
7390
+ GetConfigurationProductsHidden3$inboundSchema,
6950
7391
  ]),
6951
7392
  ),
6952
7393
  });
@@ -6955,12 +7396,12 @@ export type PropertiesUiOptions$Outbound = {
6955
7396
  value: string;
6956
7397
  label: string;
6957
7398
  disabled?:
6958
- | GetConfigurationProductsDisabledIntegrationsResponse2$Outbound
7399
+ | GetConfigurationProductsDisabled2$Outbound
6959
7400
  | boolean
6960
7401
  | string
6961
7402
  | undefined;
6962
7403
  hidden?:
6963
- | GetConfigurationProductsHiddenIntegrationsResponse2$Outbound
7404
+ | GetConfigurationProductsHidden2$Outbound
6964
7405
  | boolean
6965
7406
  | string
6966
7407
  | undefined;
@@ -6975,18 +7416,14 @@ export const PropertiesUiOptions$outboundSchema: z.ZodType<
6975
7416
  value: z.string(),
6976
7417
  label: z.string(),
6977
7418
  disabled: smartUnion([
6978
- z.lazy(() =>
6979
- GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema
6980
- ),
7419
+ z.lazy(() => GetConfigurationProductsDisabled2$outboundSchema),
6981
7420
  z.boolean(),
6982
- GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema,
7421
+ GetConfigurationProductsDisabled3$outboundSchema,
6983
7422
  ]).optional(),
6984
7423
  hidden: smartUnion([
6985
- z.lazy(() =>
6986
- GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema
6987
- ),
7424
+ z.lazy(() => GetConfigurationProductsHidden2$outboundSchema),
6988
7425
  z.boolean(),
6989
- GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema,
7426
+ GetConfigurationProductsHidden3$outboundSchema,
6990
7427
  ]).optional(),
6991
7428
  });
6992
7429
 
@@ -7543,13 +7980,13 @@ export const Properties6$inboundSchema: z.ZodType<
7543
7980
  > = z.object({
7544
7981
  type:
7545
7982
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$inboundSchema,
7983
+ items: z.lazy(() => GetConfigurationProductsPropertiesItems$inboundSchema),
7546
7984
  "ui:control":
7547
7985
  GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema,
7548
- items: z.lazy(() => GetConfigurationProductsPropertiesItems$inboundSchema),
7549
7986
  "ui:options": z.array(z.lazy(() => PropertiesUiOptions$inboundSchema)),
7550
7987
  description: types.optional(types.string()),
7551
- minItems: types.optional(types.number()),
7552
7988
  maxItems: types.optional(types.number()),
7989
+ minItems: types.optional(types.number()),
7553
7990
  "ui:label": types.optional(types.string()),
7554
7991
  "ui:read-only": types.optional(
7555
7992
  smartUnion([
@@ -7610,12 +8047,12 @@ export const Properties6$inboundSchema: z.ZodType<
7610
8047
  /** @internal */
7611
8048
  export type Properties6$Outbound = {
7612
8049
  type: string;
7613
- "ui:control": string;
7614
8050
  items: GetConfigurationProductsPropertiesItems$Outbound;
8051
+ "ui:control": string;
7615
8052
  "ui:options": Array<PropertiesUiOptions$Outbound>;
7616
8053
  description?: string | undefined;
7617
- minItems?: number | undefined;
7618
8054
  maxItems?: number | undefined;
8055
+ minItems?: number | undefined;
7619
8056
  "ui:label"?: string | undefined;
7620
8057
  "ui:read-only"?:
7621
8058
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2$Outbound
@@ -7652,13 +8089,13 @@ export const Properties6$outboundSchema: z.ZodType<
7652
8089
  > = z.object({
7653
8090
  type:
7654
8091
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$outboundSchema,
8092
+ items: z.lazy(() => GetConfigurationProductsPropertiesItems$outboundSchema),
7655
8093
  uiControl:
7656
8094
  GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema,
7657
- items: z.lazy(() => GetConfigurationProductsPropertiesItems$outboundSchema),
7658
8095
  uiOptions: z.array(z.lazy(() => PropertiesUiOptions$outboundSchema)),
7659
8096
  description: z.string().optional(),
7660
- minItems: z.number().optional(),
7661
8097
  maxItems: z.number().optional(),
8098
+ minItems: z.number().optional(),
7662
8099
  uiLabel: z.string().optional(),
7663
8100
  uiReadOnly: smartUnion([
7664
8101
  z.lazy(() =>
@@ -7749,225 +8186,154 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseUiControl$out
7749
8186
  GetConfigurationProductsPropertiesIntegrationsResponseUiControl$inboundSchema;
7750
8187
 
7751
8188
  /** @internal */
7752
- export const GetConfigurationProductsDisabledIntegrations3$inboundSchema:
7753
- z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3> = z
7754
- .nativeEnum(GetConfigurationProductsDisabledIntegrations3);
8189
+ export const Disabled3$inboundSchema: z.ZodNativeEnum<typeof Disabled3> = z
8190
+ .nativeEnum(Disabled3);
7755
8191
  /** @internal */
7756
- export const GetConfigurationProductsDisabledIntegrations3$outboundSchema:
7757
- z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3> =
7758
- GetConfigurationProductsDisabledIntegrations3$inboundSchema;
8192
+ export const Disabled3$outboundSchema: z.ZodNativeEnum<typeof Disabled3> =
8193
+ Disabled3$inboundSchema;
7759
8194
 
7760
8195
  /** @internal */
7761
- export const GetConfigurationProductsDisabledIntegrations2$inboundSchema:
7762
- z.ZodType<
7763
- GetConfigurationProductsDisabledIntegrations2,
7764
- z.ZodTypeDef,
7765
- unknown
7766
- > = z.object({
7767
- expr: types.string(),
7768
- });
8196
+ export const Disabled2$inboundSchema: z.ZodType<
8197
+ Disabled2,
8198
+ z.ZodTypeDef,
8199
+ unknown
8200
+ > = z.object({
8201
+ expr: types.string(),
8202
+ });
7769
8203
  /** @internal */
7770
- export type GetConfigurationProductsDisabledIntegrations2$Outbound = {
8204
+ export type Disabled2$Outbound = {
7771
8205
  expr: string;
7772
8206
  };
7773
8207
 
7774
8208
  /** @internal */
7775
- export const GetConfigurationProductsDisabledIntegrations2$outboundSchema:
7776
- z.ZodType<
7777
- GetConfigurationProductsDisabledIntegrations2$Outbound,
7778
- z.ZodTypeDef,
7779
- GetConfigurationProductsDisabledIntegrations2
7780
- > = z.object({
7781
- expr: z.string(),
7782
- });
8209
+ export const Disabled2$outboundSchema: z.ZodType<
8210
+ Disabled2$Outbound,
8211
+ z.ZodTypeDef,
8212
+ Disabled2
8213
+ > = z.object({
8214
+ expr: z.string(),
8215
+ });
7783
8216
 
7784
- export function getConfigurationProductsDisabledIntegrations2ToJSON(
7785
- getConfigurationProductsDisabledIntegrations2:
7786
- GetConfigurationProductsDisabledIntegrations2,
7787
- ): string {
7788
- return JSON.stringify(
7789
- GetConfigurationProductsDisabledIntegrations2$outboundSchema.parse(
7790
- getConfigurationProductsDisabledIntegrations2,
7791
- ),
7792
- );
8217
+ export function disabled2ToJSON(disabled2: Disabled2): string {
8218
+ return JSON.stringify(Disabled2$outboundSchema.parse(disabled2));
7793
8219
  }
7794
- export function getConfigurationProductsDisabledIntegrations2FromJSON(
8220
+ export function disabled2FromJSON(
7795
8221
  jsonString: string,
7796
- ): SafeParseResult<
7797
- GetConfigurationProductsDisabledIntegrations2,
7798
- SDKValidationError
7799
- > {
8222
+ ): SafeParseResult<Disabled2, SDKValidationError> {
7800
8223
  return safeParse(
7801
8224
  jsonString,
7802
- (x) =>
7803
- GetConfigurationProductsDisabledIntegrations2$inboundSchema.parse(
7804
- JSON.parse(x),
7805
- ),
7806
- `Failed to parse 'GetConfigurationProductsDisabledIntegrations2' from JSON`,
8225
+ (x) => Disabled2$inboundSchema.parse(JSON.parse(x)),
8226
+ `Failed to parse 'Disabled2' from JSON`,
7807
8227
  );
7808
8228
  }
7809
8229
 
7810
8230
  /** @internal */
7811
- export const GetConfigurationProductsPropertiesDisabled$inboundSchema:
7812
- z.ZodType<GetConfigurationProductsPropertiesDisabled, z.ZodTypeDef, unknown> =
7813
- smartUnion([
7814
- z.lazy(() => GetConfigurationProductsDisabledIntegrations2$inboundSchema),
7815
- types.boolean(),
7816
- GetConfigurationProductsDisabledIntegrations3$inboundSchema,
7817
- ]);
8231
+ export const Disabled$inboundSchema: z.ZodType<
8232
+ Disabled,
8233
+ z.ZodTypeDef,
8234
+ unknown
8235
+ > = smartUnion([
8236
+ z.lazy(() => Disabled2$inboundSchema),
8237
+ types.boolean(),
8238
+ Disabled3$inboundSchema,
8239
+ ]);
7818
8240
  /** @internal */
7819
- export type GetConfigurationProductsPropertiesDisabled$Outbound =
7820
- | GetConfigurationProductsDisabledIntegrations2$Outbound
7821
- | boolean
7822
- | string;
8241
+ export type Disabled$Outbound = Disabled2$Outbound | boolean | string;
7823
8242
 
7824
8243
  /** @internal */
7825
- export const GetConfigurationProductsPropertiesDisabled$outboundSchema:
7826
- z.ZodType<
7827
- GetConfigurationProductsPropertiesDisabled$Outbound,
7828
- z.ZodTypeDef,
7829
- GetConfigurationProductsPropertiesDisabled
7830
- > = smartUnion([
7831
- z.lazy(() => GetConfigurationProductsDisabledIntegrations2$outboundSchema),
7832
- z.boolean(),
7833
- GetConfigurationProductsDisabledIntegrations3$outboundSchema,
7834
- ]);
8244
+ export const Disabled$outboundSchema: z.ZodType<
8245
+ Disabled$Outbound,
8246
+ z.ZodTypeDef,
8247
+ Disabled
8248
+ > = smartUnion([
8249
+ z.lazy(() => Disabled2$outboundSchema),
8250
+ z.boolean(),
8251
+ Disabled3$outboundSchema,
8252
+ ]);
7835
8253
 
7836
- export function getConfigurationProductsPropertiesDisabledToJSON(
7837
- getConfigurationProductsPropertiesDisabled:
7838
- GetConfigurationProductsPropertiesDisabled,
7839
- ): string {
7840
- return JSON.stringify(
7841
- GetConfigurationProductsPropertiesDisabled$outboundSchema.parse(
7842
- getConfigurationProductsPropertiesDisabled,
7843
- ),
7844
- );
8254
+ export function disabledToJSON(disabled: Disabled): string {
8255
+ return JSON.stringify(Disabled$outboundSchema.parse(disabled));
7845
8256
  }
7846
- export function getConfigurationProductsPropertiesDisabledFromJSON(
8257
+ export function disabledFromJSON(
7847
8258
  jsonString: string,
7848
- ): SafeParseResult<
7849
- GetConfigurationProductsPropertiesDisabled,
7850
- SDKValidationError
7851
- > {
8259
+ ): SafeParseResult<Disabled, SDKValidationError> {
7852
8260
  return safeParse(
7853
8261
  jsonString,
7854
- (x) =>
7855
- GetConfigurationProductsPropertiesDisabled$inboundSchema.parse(
7856
- JSON.parse(x),
7857
- ),
7858
- `Failed to parse 'GetConfigurationProductsPropertiesDisabled' from JSON`,
8262
+ (x) => Disabled$inboundSchema.parse(JSON.parse(x)),
8263
+ `Failed to parse 'Disabled' from JSON`,
7859
8264
  );
7860
8265
  }
7861
8266
 
7862
8267
  /** @internal */
7863
- export const GetConfigurationProductsHiddenIntegrations3$inboundSchema:
7864
- z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3> = z
7865
- .nativeEnum(GetConfigurationProductsHiddenIntegrations3);
8268
+ export const Hidden3$inboundSchema: z.ZodNativeEnum<typeof Hidden3> = z
8269
+ .nativeEnum(Hidden3);
7866
8270
  /** @internal */
7867
- export const GetConfigurationProductsHiddenIntegrations3$outboundSchema:
7868
- z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3> =
7869
- GetConfigurationProductsHiddenIntegrations3$inboundSchema;
8271
+ export const Hidden3$outboundSchema: z.ZodNativeEnum<typeof Hidden3> =
8272
+ Hidden3$inboundSchema;
7870
8273
 
7871
8274
  /** @internal */
7872
- export const GetConfigurationProductsHiddenIntegrations2$inboundSchema:
7873
- z.ZodType<
7874
- GetConfigurationProductsHiddenIntegrations2,
7875
- z.ZodTypeDef,
7876
- unknown
7877
- > = z.object({
8275
+ export const Hidden2$inboundSchema: z.ZodType<Hidden2, z.ZodTypeDef, unknown> =
8276
+ z.object({
7878
8277
  expr: types.string(),
7879
8278
  });
7880
8279
  /** @internal */
7881
- export type GetConfigurationProductsHiddenIntegrations2$Outbound = {
8280
+ export type Hidden2$Outbound = {
7882
8281
  expr: string;
7883
8282
  };
7884
8283
 
7885
8284
  /** @internal */
7886
- export const GetConfigurationProductsHiddenIntegrations2$outboundSchema:
7887
- z.ZodType<
7888
- GetConfigurationProductsHiddenIntegrations2$Outbound,
7889
- z.ZodTypeDef,
7890
- GetConfigurationProductsHiddenIntegrations2
7891
- > = z.object({
7892
- expr: z.string(),
7893
- });
8285
+ export const Hidden2$outboundSchema: z.ZodType<
8286
+ Hidden2$Outbound,
8287
+ z.ZodTypeDef,
8288
+ Hidden2
8289
+ > = z.object({
8290
+ expr: z.string(),
8291
+ });
7894
8292
 
7895
- export function getConfigurationProductsHiddenIntegrations2ToJSON(
7896
- getConfigurationProductsHiddenIntegrations2:
7897
- GetConfigurationProductsHiddenIntegrations2,
7898
- ): string {
7899
- return JSON.stringify(
7900
- GetConfigurationProductsHiddenIntegrations2$outboundSchema.parse(
7901
- getConfigurationProductsHiddenIntegrations2,
7902
- ),
7903
- );
8293
+ export function hidden2ToJSON(hidden2: Hidden2): string {
8294
+ return JSON.stringify(Hidden2$outboundSchema.parse(hidden2));
7904
8295
  }
7905
- export function getConfigurationProductsHiddenIntegrations2FromJSON(
8296
+ export function hidden2FromJSON(
7906
8297
  jsonString: string,
7907
- ): SafeParseResult<
7908
- GetConfigurationProductsHiddenIntegrations2,
7909
- SDKValidationError
7910
- > {
8298
+ ): SafeParseResult<Hidden2, SDKValidationError> {
7911
8299
  return safeParse(
7912
8300
  jsonString,
7913
- (x) =>
7914
- GetConfigurationProductsHiddenIntegrations2$inboundSchema.parse(
7915
- JSON.parse(x),
7916
- ),
7917
- `Failed to parse 'GetConfigurationProductsHiddenIntegrations2' from JSON`,
8301
+ (x) => Hidden2$inboundSchema.parse(JSON.parse(x)),
8302
+ `Failed to parse 'Hidden2' from JSON`,
7918
8303
  );
7919
8304
  }
7920
8305
 
7921
8306
  /** @internal */
7922
- export const GetConfigurationProductsPropertiesHidden$inboundSchema: z.ZodType<
7923
- GetConfigurationProductsPropertiesHidden,
7924
- z.ZodTypeDef,
7925
- unknown
7926
- > = smartUnion([
7927
- z.lazy(() => GetConfigurationProductsHiddenIntegrations2$inboundSchema),
7928
- types.boolean(),
7929
- GetConfigurationProductsHiddenIntegrations3$inboundSchema,
7930
- ]);
8307
+ export const Hidden$inboundSchema: z.ZodType<Hidden, z.ZodTypeDef, unknown> =
8308
+ smartUnion([
8309
+ z.lazy(() => Hidden2$inboundSchema),
8310
+ types.boolean(),
8311
+ Hidden3$inboundSchema,
8312
+ ]);
7931
8313
  /** @internal */
7932
- export type GetConfigurationProductsPropertiesHidden$Outbound =
7933
- | GetConfigurationProductsHiddenIntegrations2$Outbound
7934
- | boolean
7935
- | string;
8314
+ export type Hidden$Outbound = Hidden2$Outbound | boolean | string;
7936
8315
 
7937
8316
  /** @internal */
7938
- export const GetConfigurationProductsPropertiesHidden$outboundSchema: z.ZodType<
7939
- GetConfigurationProductsPropertiesHidden$Outbound,
8317
+ export const Hidden$outboundSchema: z.ZodType<
8318
+ Hidden$Outbound,
7940
8319
  z.ZodTypeDef,
7941
- GetConfigurationProductsPropertiesHidden
8320
+ Hidden
7942
8321
  > = smartUnion([
7943
- z.lazy(() => GetConfigurationProductsHiddenIntegrations2$outboundSchema),
8322
+ z.lazy(() => Hidden2$outboundSchema),
7944
8323
  z.boolean(),
7945
- GetConfigurationProductsHiddenIntegrations3$outboundSchema,
8324
+ Hidden3$outboundSchema,
7946
8325
  ]);
7947
8326
 
7948
- export function getConfigurationProductsPropertiesHiddenToJSON(
7949
- getConfigurationProductsPropertiesHidden:
7950
- GetConfigurationProductsPropertiesHidden,
7951
- ): string {
7952
- return JSON.stringify(
7953
- GetConfigurationProductsPropertiesHidden$outboundSchema.parse(
7954
- getConfigurationProductsPropertiesHidden,
7955
- ),
7956
- );
8327
+ export function hiddenToJSON(hidden: Hidden): string {
8328
+ return JSON.stringify(Hidden$outboundSchema.parse(hidden));
7957
8329
  }
7958
- export function getConfigurationProductsPropertiesHiddenFromJSON(
8330
+ export function hiddenFromJSON(
7959
8331
  jsonString: string,
7960
- ): SafeParseResult<
7961
- GetConfigurationProductsPropertiesHidden,
7962
- SDKValidationError
7963
- > {
8332
+ ): SafeParseResult<Hidden, SDKValidationError> {
7964
8333
  return safeParse(
7965
8334
  jsonString,
7966
- (x) =>
7967
- GetConfigurationProductsPropertiesHidden$inboundSchema.parse(
7968
- JSON.parse(x),
7969
- ),
7970
- `Failed to parse 'GetConfigurationProductsPropertiesHidden' from JSON`,
8335
+ (x) => Hidden$inboundSchema.parse(JSON.parse(x)),
8336
+ `Failed to parse 'Hidden' from JSON`,
7971
8337
  );
7972
8338
  }
7973
8339
 
@@ -7981,16 +8347,16 @@ export const UiOptions$inboundSchema: z.ZodType<
7981
8347
  label: types.string(),
7982
8348
  disabled: types.optional(
7983
8349
  smartUnion([
7984
- z.lazy(() => GetConfigurationProductsDisabledIntegrations2$inboundSchema),
8350
+ z.lazy(() => Disabled2$inboundSchema),
7985
8351
  types.boolean(),
7986
- GetConfigurationProductsDisabledIntegrations3$inboundSchema,
8352
+ Disabled3$inboundSchema,
7987
8353
  ]),
7988
8354
  ),
7989
8355
  hidden: types.optional(
7990
8356
  smartUnion([
7991
- z.lazy(() => GetConfigurationProductsHiddenIntegrations2$inboundSchema),
8357
+ z.lazy(() => Hidden2$inboundSchema),
7992
8358
  types.boolean(),
7993
- GetConfigurationProductsHiddenIntegrations3$inboundSchema,
8359
+ Hidden3$inboundSchema,
7994
8360
  ]),
7995
8361
  ),
7996
8362
  });
@@ -7998,16 +8364,8 @@ export const UiOptions$inboundSchema: z.ZodType<
7998
8364
  export type UiOptions$Outbound = {
7999
8365
  value: string;
8000
8366
  label: string;
8001
- disabled?:
8002
- | GetConfigurationProductsDisabledIntegrations2$Outbound
8003
- | boolean
8004
- | string
8005
- | undefined;
8006
- hidden?:
8007
- | GetConfigurationProductsHiddenIntegrations2$Outbound
8008
- | boolean
8009
- | string
8010
- | undefined;
8367
+ disabled?: Disabled2$Outbound | boolean | string | undefined;
8368
+ hidden?: Hidden2$Outbound | boolean | string | undefined;
8011
8369
  };
8012
8370
 
8013
8371
  /** @internal */
@@ -8019,14 +8377,14 @@ export const UiOptions$outboundSchema: z.ZodType<
8019
8377
  value: z.string(),
8020
8378
  label: z.string(),
8021
8379
  disabled: smartUnion([
8022
- z.lazy(() => GetConfigurationProductsDisabledIntegrations2$outboundSchema),
8380
+ z.lazy(() => Disabled2$outboundSchema),
8023
8381
  z.boolean(),
8024
- GetConfigurationProductsDisabledIntegrations3$outboundSchema,
8382
+ Disabled3$outboundSchema,
8025
8383
  ]).optional(),
8026
8384
  hidden: smartUnion([
8027
- z.lazy(() => GetConfigurationProductsHiddenIntegrations2$outboundSchema),
8385
+ z.lazy(() => Hidden2$outboundSchema),
8028
8386
  z.boolean(),
8029
- GetConfigurationProductsHiddenIntegrations3$outboundSchema,
8387
+ Hidden3$outboundSchema,
8030
8388
  ]).optional(),
8031
8389
  });
8032
8390
 
@@ -8562,11 +8920,11 @@ export const Properties5$inboundSchema: z.ZodType<
8562
8920
  GetConfigurationProductsPropertiesIntegrationsResponseUiControl$inboundSchema,
8563
8921
  "ui:options": z.array(z.lazy(() => UiOptions$inboundSchema)),
8564
8922
  description: types.optional(types.string()),
8565
- minLength: types.optional(types.number()),
8923
+ enum: types.optional(z.array(types.string())),
8566
8924
  maxLength: types.optional(types.number()),
8925
+ minLength: types.optional(types.number()),
8567
8926
  pattern: types.optional(types.string()),
8568
8927
  default: types.optional(types.string()),
8569
- enum: types.optional(z.array(types.string())),
8570
8928
  "ui:label": types.optional(types.string()),
8571
8929
  "ui:read-only": types.optional(
8572
8930
  smartUnion([
@@ -8628,11 +8986,11 @@ export type Properties5$Outbound = {
8628
8986
  "ui:control": string;
8629
8987
  "ui:options": Array<UiOptions$Outbound>;
8630
8988
  description?: string | undefined;
8631
- minLength?: number | undefined;
8989
+ enum?: Array<string> | undefined;
8632
8990
  maxLength?: number | undefined;
8991
+ minLength?: number | undefined;
8633
8992
  pattern?: string | undefined;
8634
8993
  default?: string | undefined;
8635
- enum?: Array<string> | undefined;
8636
8994
  "ui:label"?: string | undefined;
8637
8995
  "ui:read-only"?:
8638
8996
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse2002$Outbound
@@ -8671,11 +9029,11 @@ export const Properties5$outboundSchema: z.ZodType<
8671
9029
  GetConfigurationProductsPropertiesIntegrationsResponseUiControl$outboundSchema,
8672
9030
  uiOptions: z.array(z.lazy(() => UiOptions$outboundSchema)),
8673
9031
  description: z.string().optional(),
8674
- minLength: z.number().optional(),
9032
+ enum: z.array(z.string()).optional(),
8675
9033
  maxLength: z.number().optional(),
9034
+ minLength: z.number().optional(),
8676
9035
  pattern: z.string().optional(),
8677
9036
  default: z.string().optional(),
8678
- enum: z.array(z.string()).optional(),
8679
9037
  uiLabel: z.string().optional(),
8680
9038
  uiReadOnly: smartUnion([
8681
9039
  z.lazy(() =>
@@ -8746,17 +9104,6 @@ export const GetConfigurationProductsPropertiesIntegrationsResponseType$outbound
8746
9104
  typeof GetConfigurationProductsPropertiesIntegrationsResponseType
8747
9105
  > = GetConfigurationProductsPropertiesIntegrationsResponseType$inboundSchema;
8748
9106
 
8749
- /** @internal */
8750
- export const GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema:
8751
- z.ZodNativeEnum<
8752
- typeof GetConfigurationProductsPropertiesIntegrationsUiControl
8753
- > = z.nativeEnum(GetConfigurationProductsPropertiesIntegrationsUiControl);
8754
- /** @internal */
8755
- export const GetConfigurationProductsPropertiesIntegrationsUiControl$outboundSchema:
8756
- z.ZodNativeEnum<
8757
- typeof GetConfigurationProductsPropertiesIntegrationsUiControl
8758
- > = GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema;
8759
-
8760
9107
  /** @internal */
8761
9108
  export const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type$inboundSchema:
8762
9109
  z.ZodNativeEnum<
@@ -8828,6 +9175,17 @@ export function propertiesItemsFromJSON(
8828
9175
  );
8829
9176
  }
8830
9177
 
9178
+ /** @internal */
9179
+ export const GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema:
9180
+ z.ZodNativeEnum<
9181
+ typeof GetConfigurationProductsPropertiesIntegrationsUiControl
9182
+ > = z.nativeEnum(GetConfigurationProductsPropertiesIntegrationsUiControl);
9183
+ /** @internal */
9184
+ export const GetConfigurationProductsPropertiesIntegrationsUiControl$outboundSchema:
9185
+ z.ZodNativeEnum<
9186
+ typeof GetConfigurationProductsPropertiesIntegrationsUiControl
9187
+ > = GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema;
9188
+
8831
9189
  /** @internal */
8832
9190
  export const GetConfigurationProductsUiReadOnlyIntegrationsResponse3$inboundSchema:
8833
9191
  z.ZodNativeEnum<
@@ -9339,13 +9697,13 @@ export const Properties4$inboundSchema: z.ZodType<
9339
9697
  > = z.object({
9340
9698
  type:
9341
9699
  GetConfigurationProductsPropertiesIntegrationsResponseType$inboundSchema,
9700
+ items: z.lazy(() => PropertiesItems$inboundSchema),
9342
9701
  "ui:control":
9343
9702
  GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema,
9344
9703
  "ui:steps": z.array(types.number()),
9345
- items: z.lazy(() => PropertiesItems$inboundSchema),
9346
9704
  description: types.optional(types.string()),
9347
- minItems: types.optional(types.number()),
9348
9705
  maxItems: types.optional(types.number()),
9706
+ minItems: types.optional(types.number()),
9349
9707
  "ui:label": types.optional(types.string()),
9350
9708
  "ui:read-only": types.optional(
9351
9709
  smartUnion([
@@ -9403,12 +9761,12 @@ export const Properties4$inboundSchema: z.ZodType<
9403
9761
  /** @internal */
9404
9762
  export type Properties4$Outbound = {
9405
9763
  type: string;
9764
+ items: PropertiesItems$Outbound;
9406
9765
  "ui:control": string;
9407
9766
  "ui:steps": Array<number>;
9408
- items: PropertiesItems$Outbound;
9409
9767
  description?: string | undefined;
9410
- minItems?: number | undefined;
9411
9768
  maxItems?: number | undefined;
9769
+ minItems?: number | undefined;
9412
9770
  "ui:label"?: string | undefined;
9413
9771
  "ui:read-only"?:
9414
9772
  | GetConfigurationProductsUiReadOnlyIntegrationsResponse2$Outbound
@@ -9443,13 +9801,13 @@ export const Properties4$outboundSchema: z.ZodType<
9443
9801
  > = z.object({
9444
9802
  type:
9445
9803
  GetConfigurationProductsPropertiesIntegrationsResponseType$outboundSchema,
9804
+ items: z.lazy(() => PropertiesItems$outboundSchema),
9446
9805
  uiControl:
9447
9806
  GetConfigurationProductsPropertiesIntegrationsUiControl$outboundSchema,
9448
9807
  uiSteps: z.array(z.number()),
9449
- items: z.lazy(() => PropertiesItems$outboundSchema),
9450
9808
  description: z.string().optional(),
9451
- minItems: z.number().optional(),
9452
9809
  maxItems: z.number().optional(),
9810
+ minItems: z.number().optional(),
9453
9811
  uiLabel: z.string().optional(),
9454
9812
  uiReadOnly: smartUnion([
9455
9813
  z.lazy(() =>
@@ -10617,9 +10975,9 @@ export const Properties2$inboundSchema: z.ZodType<
10617
10975
  minimum: types.optional(types.number()),
10618
10976
  maximum: types.optional(types.number()),
10619
10977
  description: types.optional(types.string()),
10620
- default: types.optional(types.number()),
10621
- exclusiveMinimum: types.optional(types.number()),
10622
10978
  exclusiveMaximum: types.optional(types.number()),
10979
+ exclusiveMinimum: types.optional(types.number()),
10980
+ default: types.optional(types.number()),
10623
10981
  "ui:label": types.optional(types.string()),
10624
10982
  "ui:read-only": types.optional(
10625
10983
  smartUnion([
@@ -10671,9 +11029,9 @@ export type Properties2$Outbound = {
10671
11029
  minimum?: number | undefined;
10672
11030
  maximum?: number | undefined;
10673
11031
  description?: string | undefined;
10674
- default?: number | undefined;
10675
- exclusiveMinimum?: number | undefined;
10676
11032
  exclusiveMaximum?: number | undefined;
11033
+ exclusiveMinimum?: number | undefined;
11034
+ default?: number | undefined;
10677
11035
  "ui:label"?: string | undefined;
10678
11036
  "ui:read-only"?:
10679
11037
  | GetConfigurationProductsUiReadOnly2$Outbound
@@ -10709,9 +11067,9 @@ export const Properties2$outboundSchema: z.ZodType<
10709
11067
  minimum: z.number().optional(),
10710
11068
  maximum: z.number().optional(),
10711
11069
  description: z.string().optional(),
10712
- default: z.number().optional(),
10713
- exclusiveMinimum: z.number().optional(),
10714
11070
  exclusiveMaximum: z.number().optional(),
11071
+ exclusiveMinimum: z.number().optional(),
11072
+ default: z.number().optional(),
10715
11073
  uiLabel: z.string().optional(),
10716
11074
  uiReadOnly: smartUnion([
10717
11075
  z.lazy(() => GetConfigurationProductsUiReadOnly2$outboundSchema),
@@ -11126,11 +11484,11 @@ export const Properties1$inboundSchema: z.ZodType<
11126
11484
  type: PropertiesType$inboundSchema,
11127
11485
  "ui:control": UiControl$inboundSchema,
11128
11486
  description: types.optional(types.string()),
11129
- minLength: types.optional(types.number()),
11487
+ enum: types.optional(z.array(types.string())),
11130
11488
  maxLength: types.optional(types.number()),
11489
+ minLength: types.optional(types.number()),
11131
11490
  pattern: types.optional(types.string()),
11132
11491
  default: types.optional(types.string()),
11133
- enum: types.optional(z.array(types.string())),
11134
11492
  "ui:label": types.optional(types.string()),
11135
11493
  "ui:read-only": types.optional(
11136
11494
  smartUnion([
@@ -11177,11 +11535,11 @@ export type Properties1$Outbound = {
11177
11535
  type: string;
11178
11536
  "ui:control": string;
11179
11537
  description?: string | undefined;
11180
- minLength?: number | undefined;
11538
+ enum?: Array<string> | undefined;
11181
11539
  maxLength?: number | undefined;
11540
+ minLength?: number | undefined;
11182
11541
  pattern?: string | undefined;
11183
11542
  default?: string | undefined;
11184
- enum?: Array<string> | undefined;
11185
11543
  "ui:label"?: string | undefined;
11186
11544
  "ui:read-only"?: UiReadOnly2$Outbound | boolean | string | undefined;
11187
11545
  "ui:hidden"?: UiHidden2$Outbound | boolean | string | undefined;
@@ -11200,11 +11558,11 @@ export const Properties1$outboundSchema: z.ZodType<
11200
11558
  type: PropertiesType$outboundSchema,
11201
11559
  uiControl: UiControl$outboundSchema,
11202
11560
  description: z.string().optional(),
11203
- minLength: z.number().optional(),
11561
+ enum: z.array(z.string()).optional(),
11204
11562
  maxLength: z.number().optional(),
11563
+ minLength: z.number().optional(),
11205
11564
  pattern: z.string().optional(),
11206
11565
  default: z.string().optional(),
11207
- enum: z.array(z.string()).optional(),
11208
11566
  uiLabel: z.string().optional(),
11209
11567
  uiReadOnly: smartUnion([
11210
11568
  z.lazy(() => UiReadOnly2$outboundSchema),