@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
@@ -154,17 +154,17 @@ export type Protocols = {
154
154
  other?: Other | undefined;
155
155
  };
156
156
  export declare const PrimaryProtocol: {
157
+ readonly Checks: "checks";
158
+ readonly Ai: "ai";
159
+ readonly Authentication: "authentication";
157
160
  readonly Storage: "storage";
158
161
  readonly Experimentation: "experimentation";
159
- readonly Ai: "ai";
162
+ readonly Messaging: "messaging";
160
163
  readonly Observability: "observability";
161
164
  readonly Video: "video";
162
- readonly Authentication: "authentication";
163
165
  readonly Workflow: "workflow";
164
- readonly Checks: "checks";
165
166
  readonly LogDrain: "logDrain";
166
167
  readonly TraceDrain: "traceDrain";
167
- readonly Messaging: "messaging";
168
168
  readonly Other: "other";
169
169
  };
170
170
  export type PrimaryProtocol = ClosedEnum<typeof PrimaryProtocol>;
@@ -172,28 +172,66 @@ export declare const GetConfigurationProductsType: {
172
172
  readonly Object: "object";
173
173
  };
174
174
  export type GetConfigurationProductsType = ClosedEnum<typeof GetConfigurationProductsType>;
175
- export declare const GetConfigurationProductsDisabled3: {
175
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type: {
176
+ readonly String: "string";
177
+ };
178
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type>;
179
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl: {
180
+ readonly GitNamespace: "git-namespace";
181
+ };
182
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl>;
183
+ export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3: {
176
184
  readonly Update: "update";
177
185
  readonly Create: "create";
178
186
  };
179
- export type GetConfigurationProductsDisabled3 = ClosedEnum<typeof GetConfigurationProductsDisabled3>;
180
- export type GetConfigurationProductsDisabled2 = {
187
+ export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 = ClosedEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
188
+ export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 = {
181
189
  expr: string;
182
190
  };
183
- export type PropertiesDisabled = GetConfigurationProductsDisabled2 | boolean | GetConfigurationProductsDisabled3;
184
- export declare const GetConfigurationProductsHidden3: {
191
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly = GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
192
+ export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3: {
185
193
  readonly Update: "update";
186
194
  readonly Create: "create";
187
195
  };
188
- export type GetConfigurationProductsHidden3 = ClosedEnum<typeof GetConfigurationProductsHidden3>;
189
- export type GetConfigurationProductsHidden2 = {
196
+ export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 = ClosedEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
197
+ export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 = {
190
198
  expr: string;
191
199
  };
192
- export type PropertiesHidden = GetConfigurationProductsHidden2 | boolean | GetConfigurationProductsHidden3;
200
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden = GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
201
+ export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3: {
202
+ readonly Update: "update";
203
+ readonly Create: "create";
204
+ };
205
+ export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 = ClosedEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
206
+ export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 = {
207
+ expr: string;
208
+ };
209
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled = GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3;
210
+ export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 = {
211
+ expr: string;
212
+ };
213
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription = GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | string;
214
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue = {
215
+ expr: string;
216
+ };
217
+ export declare const GitProviders: {
218
+ readonly Github: "github";
219
+ readonly Gitlab: "gitlab";
220
+ readonly Bitbucket: "bitbucket";
221
+ };
222
+ export type GitProviders = ClosedEnum<typeof GitProviders>;
193
223
  export type Properties10 = {
194
- value: string;
195
- disabled?: GetConfigurationProductsDisabled2 | boolean | GetConfigurationProductsDisabled3 | undefined;
196
- hidden?: GetConfigurationProductsHidden2 | boolean | GetConfigurationProductsHidden3 | undefined;
224
+ type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type;
225
+ uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl;
226
+ description?: string | undefined;
227
+ uiLabel?: string | undefined;
228
+ uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 | undefined;
229
+ uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 | undefined;
230
+ uiDisabled?: GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | boolean | GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3 | undefined;
231
+ uiDescription?: GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2 | string | undefined;
232
+ uiFormattedValue?: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue | undefined;
233
+ uiPlaceholder?: string | undefined;
234
+ gitProviders?: Array<GitProviders> | undefined;
197
235
  };
198
236
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType: {
199
237
  readonly String: "string";
@@ -241,11 +279,11 @@ export type Properties9 = {
241
279
  type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType;
242
280
  uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl;
243
281
  description?: string | undefined;
244
- minLength?: number | undefined;
282
+ enum?: Array<string> | undefined;
245
283
  maxLength?: number | undefined;
284
+ minLength?: number | undefined;
246
285
  pattern?: string | undefined;
247
286
  default?: string | undefined;
248
- enum?: Array<string> | undefined;
249
287
  uiLabel?: string | undefined;
250
288
  uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 | undefined;
251
289
  uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3 | undefined;
@@ -258,10 +296,6 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
258
296
  readonly Array: "array";
259
297
  };
260
298
  export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType>;
261
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl: {
262
- readonly MultiVercelRegion: "multi-vercel-region";
263
- };
264
- export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
265
299
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type: {
266
300
  readonly String: "string";
267
301
  };
@@ -275,6 +309,10 @@ export type GetConfigurationProductsPropertiesIntegrationsItems = {
275
309
  default?: string | undefined;
276
310
  enum?: Array<string> | undefined;
277
311
  };
312
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl: {
313
+ readonly MultiVercelRegion: "multi-vercel-region";
314
+ };
315
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
278
316
  export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3: {
279
317
  readonly Update: "update";
280
318
  readonly Create: "create";
@@ -359,12 +397,12 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200Application
359
397
  };
360
398
  export type Properties8 = {
361
399
  type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType;
362
- uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl;
363
400
  items: GetConfigurationProductsPropertiesIntegrationsItems;
401
+ uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl;
364
402
  uiOptions: Array<GetConfigurationProductsUiOptions1 | GetConfigurationProductsUiOptions3 | string>;
365
403
  description?: string | undefined;
366
- minItems?: number | undefined;
367
404
  maxItems?: number | undefined;
405
+ minItems?: number | undefined;
368
406
  uiLabel?: string | undefined;
369
407
  uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
370
408
  uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
@@ -383,52 +421,52 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
383
421
  readonly VercelRegion: "vercel-region";
384
422
  };
385
423
  export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
386
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
424
+ export declare const GetConfigurationProductsDisabledIntegrationsResponse3: {
387
425
  readonly Update: "update";
388
426
  readonly Create: "create";
389
427
  };
390
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
391
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2 = {
428
+ export type GetConfigurationProductsDisabledIntegrationsResponse3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
429
+ export type GetConfigurationProductsDisabledIntegrationsResponse2 = {
392
430
  expr: string;
393
431
  };
394
- export type GetConfigurationProductsUiOptionsDisabled = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
395
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3: {
432
+ export type GetConfigurationProductsUiOptionsDisabled = GetConfigurationProductsDisabledIntegrationsResponse2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse3;
433
+ export declare const GetConfigurationProductsHiddenIntegrationsResponse3: {
396
434
  readonly Update: "update";
397
435
  readonly Create: "create";
398
436
  };
399
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
400
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2 = {
437
+ export type GetConfigurationProductsHiddenIntegrationsResponse3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
438
+ export type GetConfigurationProductsHiddenIntegrationsResponse2 = {
401
439
  expr: string;
402
440
  };
403
- export type GetConfigurationProductsUiOptionsHidden = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3;
441
+ export type GetConfigurationProductsUiOptionsHidden = GetConfigurationProductsHiddenIntegrationsResponse2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse3;
404
442
  export type UiOptions3 = {
405
443
  value: string;
406
- disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
407
- hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3 | undefined;
444
+ disabled?: GetConfigurationProductsDisabledIntegrationsResponse2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse3 | undefined;
445
+ hidden?: GetConfigurationProductsHiddenIntegrationsResponse2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse3 | undefined;
408
446
  };
409
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3: {
447
+ export declare const GetConfigurationProductsDisabledIntegrations3: {
410
448
  readonly Update: "update";
411
449
  readonly Create: "create";
412
450
  };
413
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
414
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2 = {
451
+ export type GetConfigurationProductsDisabledIntegrations3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrations3>;
452
+ export type GetConfigurationProductsDisabledIntegrations2 = {
415
453
  expr: string;
416
454
  };
417
- export type UiOptionsDisabled = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3;
418
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3: {
455
+ export type UiOptionsDisabled = GetConfigurationProductsDisabledIntegrations2 | boolean | GetConfigurationProductsDisabledIntegrations3;
456
+ export declare const GetConfigurationProductsHiddenIntegrations3: {
419
457
  readonly Update: "update";
420
458
  readonly Create: "create";
421
459
  };
422
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
423
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2 = {
460
+ export type GetConfigurationProductsHiddenIntegrations3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrations3>;
461
+ export type GetConfigurationProductsHiddenIntegrations2 = {
424
462
  expr: string;
425
463
  };
426
- export type UiOptionsHidden = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3;
464
+ export type UiOptionsHidden = GetConfigurationProductsHiddenIntegrations2 | boolean | GetConfigurationProductsHiddenIntegrations3;
427
465
  export type UiOptions1 = {
428
466
  value: string;
429
467
  label: string;
430
- disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
431
- hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
468
+ disabled?: GetConfigurationProductsDisabledIntegrations2 | boolean | GetConfigurationProductsDisabledIntegrations3 | undefined;
469
+ hidden?: GetConfigurationProductsHiddenIntegrations2 | boolean | GetConfigurationProductsHiddenIntegrations3 | undefined;
432
470
  };
433
471
  export type GetConfigurationProductsPropertiesUiOptions = UiOptions1 | UiOptions3 | string;
434
472
  export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3: {
@@ -470,11 +508,11 @@ export type Properties7 = {
470
508
  uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl;
471
509
  uiOptions: Array<UiOptions1 | UiOptions3 | string>;
472
510
  description?: string | undefined;
473
- minLength?: number | undefined;
511
+ enum?: Array<string> | undefined;
474
512
  maxLength?: number | undefined;
513
+ minLength?: number | undefined;
475
514
  pattern?: string | undefined;
476
515
  default?: string | undefined;
477
- enum?: Array<string> | undefined;
478
516
  uiLabel?: string | undefined;
479
517
  uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
480
518
  uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3 | undefined;
@@ -487,10 +525,6 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
487
525
  readonly Array: "array";
488
526
  };
489
527
  export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType>;
490
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl: {
491
- readonly MultiSelect: "multi-select";
492
- };
493
- export type GetConfigurationProductsPropertiesIntegrationsResponse200UiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl>;
494
528
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type: {
495
529
  readonly String: "string";
496
530
  };
@@ -504,29 +538,33 @@ export type GetConfigurationProductsPropertiesItems = {
504
538
  default?: string | undefined;
505
539
  enum?: Array<string> | undefined;
506
540
  };
507
- export declare const GetConfigurationProductsDisabledIntegrationsResponse3: {
541
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl: {
542
+ readonly MultiSelect: "multi-select";
543
+ };
544
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200UiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl>;
545
+ export declare const GetConfigurationProductsDisabled3: {
508
546
  readonly Update: "update";
509
547
  readonly Create: "create";
510
548
  };
511
- export type GetConfigurationProductsDisabledIntegrationsResponse3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
512
- export type GetConfigurationProductsDisabledIntegrationsResponse2 = {
549
+ export type GetConfigurationProductsDisabled3 = ClosedEnum<typeof GetConfigurationProductsDisabled3>;
550
+ export type GetConfigurationProductsDisabled2 = {
513
551
  expr: string;
514
552
  };
515
- export type GetConfigurationProductsPropertiesIntegrationsDisabled = GetConfigurationProductsDisabledIntegrationsResponse2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse3;
516
- export declare const GetConfigurationProductsHiddenIntegrationsResponse3: {
553
+ export type PropertiesDisabled = GetConfigurationProductsDisabled2 | boolean | GetConfigurationProductsDisabled3;
554
+ export declare const GetConfigurationProductsHidden3: {
517
555
  readonly Update: "update";
518
556
  readonly Create: "create";
519
557
  };
520
- export type GetConfigurationProductsHiddenIntegrationsResponse3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
521
- export type GetConfigurationProductsHiddenIntegrationsResponse2 = {
558
+ export type GetConfigurationProductsHidden3 = ClosedEnum<typeof GetConfigurationProductsHidden3>;
559
+ export type GetConfigurationProductsHidden2 = {
522
560
  expr: string;
523
561
  };
524
- export type GetConfigurationProductsPropertiesIntegrationsHidden = GetConfigurationProductsHiddenIntegrationsResponse2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse3;
562
+ export type PropertiesHidden = GetConfigurationProductsHidden2 | boolean | GetConfigurationProductsHidden3;
525
563
  export type PropertiesUiOptions = {
526
564
  value: string;
527
565
  label: string;
528
- disabled?: GetConfigurationProductsDisabledIntegrationsResponse2 | boolean | GetConfigurationProductsDisabledIntegrationsResponse3 | undefined;
529
- hidden?: GetConfigurationProductsHiddenIntegrationsResponse2 | boolean | GetConfigurationProductsHiddenIntegrationsResponse3 | undefined;
566
+ disabled?: GetConfigurationProductsDisabled2 | boolean | GetConfigurationProductsDisabled3 | undefined;
567
+ hidden?: GetConfigurationProductsHidden2 | boolean | GetConfigurationProductsHidden3 | undefined;
530
568
  };
531
569
  export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3: {
532
570
  readonly Update: "update";
@@ -564,12 +602,12 @@ export type GetConfigurationProductsPropertiesIntegrationsResponse200UiFormatted
564
602
  };
565
603
  export type Properties6 = {
566
604
  type: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType;
567
- uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200UiControl;
568
605
  items: GetConfigurationProductsPropertiesItems;
606
+ uiControl: GetConfigurationProductsPropertiesIntegrationsResponse200UiControl;
569
607
  uiOptions: Array<PropertiesUiOptions>;
570
608
  description?: string | undefined;
571
- minItems?: number | undefined;
572
609
  maxItems?: number | undefined;
610
+ minItems?: number | undefined;
573
611
  uiLabel?: string | undefined;
574
612
  uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3 | undefined;
575
613
  uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson2 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson3 | undefined;
@@ -588,29 +626,29 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponseUiCon
588
626
  readonly Select: "select";
589
627
  };
590
628
  export type GetConfigurationProductsPropertiesIntegrationsResponseUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponseUiControl>;
591
- export declare const GetConfigurationProductsDisabledIntegrations3: {
629
+ export declare const Disabled3: {
592
630
  readonly Update: "update";
593
631
  readonly Create: "create";
594
632
  };
595
- export type GetConfigurationProductsDisabledIntegrations3 = ClosedEnum<typeof GetConfigurationProductsDisabledIntegrations3>;
596
- export type GetConfigurationProductsDisabledIntegrations2 = {
633
+ export type Disabled3 = ClosedEnum<typeof Disabled3>;
634
+ export type Disabled2 = {
597
635
  expr: string;
598
636
  };
599
- export type GetConfigurationProductsPropertiesDisabled = GetConfigurationProductsDisabledIntegrations2 | boolean | GetConfigurationProductsDisabledIntegrations3;
600
- export declare const GetConfigurationProductsHiddenIntegrations3: {
637
+ export type Disabled = Disabled2 | boolean | Disabled3;
638
+ export declare const Hidden3: {
601
639
  readonly Update: "update";
602
640
  readonly Create: "create";
603
641
  };
604
- export type GetConfigurationProductsHiddenIntegrations3 = ClosedEnum<typeof GetConfigurationProductsHiddenIntegrations3>;
605
- export type GetConfigurationProductsHiddenIntegrations2 = {
642
+ export type Hidden3 = ClosedEnum<typeof Hidden3>;
643
+ export type Hidden2 = {
606
644
  expr: string;
607
645
  };
608
- export type GetConfigurationProductsPropertiesHidden = GetConfigurationProductsHiddenIntegrations2 | boolean | GetConfigurationProductsHiddenIntegrations3;
646
+ export type Hidden = Hidden2 | boolean | Hidden3;
609
647
  export type UiOptions = {
610
648
  value: string;
611
649
  label: string;
612
- disabled?: GetConfigurationProductsDisabledIntegrations2 | boolean | GetConfigurationProductsDisabledIntegrations3 | undefined;
613
- hidden?: GetConfigurationProductsHiddenIntegrations2 | boolean | GetConfigurationProductsHiddenIntegrations3 | undefined;
650
+ disabled?: Disabled2 | boolean | Disabled3 | undefined;
651
+ hidden?: Hidden2 | boolean | Hidden3 | undefined;
614
652
  };
615
653
  export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse2003: {
616
654
  readonly Update: "update";
@@ -651,11 +689,11 @@ export type Properties5 = {
651
689
  uiControl: GetConfigurationProductsPropertiesIntegrationsResponseUiControl;
652
690
  uiOptions: Array<UiOptions>;
653
691
  description?: string | undefined;
654
- minLength?: number | undefined;
692
+ enum?: Array<string> | undefined;
655
693
  maxLength?: number | undefined;
694
+ minLength?: number | undefined;
656
695
  pattern?: string | undefined;
657
696
  default?: string | undefined;
658
- enum?: Array<string> | undefined;
659
697
  uiLabel?: string | undefined;
660
698
  uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse2002 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse2003 | undefined;
661
699
  uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse2002 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse2003 | undefined;
@@ -668,10 +706,6 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponseType:
668
706
  readonly Array: "array";
669
707
  };
670
708
  export type GetConfigurationProductsPropertiesIntegrationsResponseType = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponseType>;
671
- export declare const GetConfigurationProductsPropertiesIntegrationsUiControl: {
672
- readonly Slider: "slider";
673
- };
674
- export type GetConfigurationProductsPropertiesIntegrationsUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
675
709
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type: {
676
710
  readonly Number: "number";
677
711
  };
@@ -685,6 +719,10 @@ export type PropertiesItems = {
685
719
  exclusiveMaximum?: number | undefined;
686
720
  default?: number | undefined;
687
721
  };
722
+ export declare const GetConfigurationProductsPropertiesIntegrationsUiControl: {
723
+ readonly Slider: "slider";
724
+ };
725
+ export type GetConfigurationProductsPropertiesIntegrationsUiControl = ClosedEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
688
726
  export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse3: {
689
727
  readonly Update: "update";
690
728
  readonly Create: "create";
@@ -721,12 +759,12 @@ export type GetConfigurationProductsPropertiesIntegrationsUiFormattedValue = {
721
759
  };
722
760
  export type Properties4 = {
723
761
  type: GetConfigurationProductsPropertiesIntegrationsResponseType;
762
+ items: PropertiesItems;
724
763
  uiControl: GetConfigurationProductsPropertiesIntegrationsUiControl;
725
764
  uiSteps: Array<number>;
726
- items: PropertiesItems;
727
765
  description?: string | undefined;
728
- minItems?: number | undefined;
729
766
  maxItems?: number | undefined;
767
+ minItems?: number | undefined;
730
768
  uiLabel?: string | undefined;
731
769
  uiReadOnly?: GetConfigurationProductsUiReadOnlyIntegrationsResponse2 | boolean | GetConfigurationProductsUiReadOnlyIntegrationsResponse3 | undefined;
732
770
  uiHidden?: GetConfigurationProductsUiHiddenIntegrationsResponse2 | boolean | GetConfigurationProductsUiHiddenIntegrationsResponse3 | undefined;
@@ -837,9 +875,9 @@ export type Properties2 = {
837
875
  minimum?: number | undefined;
838
876
  maximum?: number | undefined;
839
877
  description?: string | undefined;
840
- default?: number | undefined;
841
- exclusiveMinimum?: number | undefined;
842
878
  exclusiveMaximum?: number | undefined;
879
+ exclusiveMinimum?: number | undefined;
880
+ default?: number | undefined;
843
881
  uiLabel?: string | undefined;
844
882
  uiReadOnly?: GetConfigurationProductsUiReadOnly2 | boolean | GetConfigurationProductsUiReadOnly3 | undefined;
845
883
  uiHidden?: GetConfigurationProductsUiHidden2 | boolean | GetConfigurationProductsUiHidden3 | undefined;
@@ -894,11 +932,11 @@ export type Properties1 = {
894
932
  type: PropertiesType;
895
933
  uiControl: UiControl;
896
934
  description?: string | undefined;
897
- minLength?: number | undefined;
935
+ enum?: Array<string> | undefined;
898
936
  maxLength?: number | undefined;
937
+ minLength?: number | undefined;
899
938
  pattern?: string | undefined;
900
939
  default?: string | undefined;
901
- enum?: Array<string> | undefined;
902
940
  uiLabel?: string | undefined;
903
941
  uiReadOnly?: UiReadOnly2 | boolean | UiReadOnly3 | undefined;
904
942
  uiHidden?: UiHidden2 | boolean | UiHidden3 | undefined;
@@ -1181,56 +1219,126 @@ export declare const GetConfigurationProductsType$inboundSchema: z.ZodNativeEnum
1181
1219
  /** @internal */
1182
1220
  export declare const GetConfigurationProductsType$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsType>;
1183
1221
  /** @internal */
1184
- export declare const GetConfigurationProductsDisabled3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabled3>;
1222
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type>;
1185
1223
  /** @internal */
1186
- export declare const GetConfigurationProductsDisabled3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabled3>;
1224
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10Type>;
1187
1225
  /** @internal */
1188
- export declare const GetConfigurationProductsDisabled2$inboundSchema: z.ZodType<GetConfigurationProductsDisabled2, z.ZodTypeDef, unknown>;
1226
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl>;
1189
1227
  /** @internal */
1190
- export type GetConfigurationProductsDisabled2$Outbound = {
1228
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiControl>;
1229
+ /** @internal */
1230
+ export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
1231
+ /** @internal */
1232
+ export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
1233
+ /** @internal */
1234
+ export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema: z.ZodType<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1235
+ /** @internal */
1236
+ export type GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound = {
1191
1237
  expr: string;
1192
1238
  };
1193
1239
  /** @internal */
1194
- export declare const GetConfigurationProductsDisabled2$outboundSchema: z.ZodType<GetConfigurationProductsDisabled2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabled2>;
1195
- export declare function getConfigurationProductsDisabled2ToJSON(getConfigurationProductsDisabled2: GetConfigurationProductsDisabled2): string;
1196
- export declare function getConfigurationProductsDisabled2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabled2, SDKValidationError>;
1240
+ export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema: z.ZodType<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound, z.ZodTypeDef, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2>;
1241
+ export declare function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2): string;
1242
+ export declare function getConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, SDKValidationError>;
1197
1243
  /** @internal */
1198
- export declare const PropertiesDisabled$inboundSchema: z.ZodType<PropertiesDisabled, z.ZodTypeDef, unknown>;
1244
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly, z.ZodTypeDef, unknown>;
1199
1245
  /** @internal */
1200
- export type PropertiesDisabled$Outbound = GetConfigurationProductsDisabled2$Outbound | boolean | string;
1246
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$Outbound = GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | boolean | string;
1201
1247
  /** @internal */
1202
- export declare const PropertiesDisabled$outboundSchema: z.ZodType<PropertiesDisabled$Outbound, z.ZodTypeDef, PropertiesDisabled>;
1203
- export declare function propertiesDisabledToJSON(propertiesDisabled: PropertiesDisabled): string;
1204
- export declare function propertiesDisabledFromJSON(jsonString: string): SafeParseResult<PropertiesDisabled, SDKValidationError>;
1248
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly>;
1249
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnlyToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly): string;
1250
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnlyFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiReadOnly, SDKValidationError>;
1205
1251
  /** @internal */
1206
- export declare const GetConfigurationProductsHidden3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHidden3>;
1252
+ export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
1207
1253
  /** @internal */
1208
- export declare const GetConfigurationProductsHidden3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHidden3>;
1254
+ export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
1209
1255
  /** @internal */
1210
- export declare const GetConfigurationProductsHidden2$inboundSchema: z.ZodType<GetConfigurationProductsHidden2, z.ZodTypeDef, unknown>;
1256
+ export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema: z.ZodType<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1211
1257
  /** @internal */
1212
- export type GetConfigurationProductsHidden2$Outbound = {
1258
+ export type GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound = {
1213
1259
  expr: string;
1214
1260
  };
1215
1261
  /** @internal */
1216
- export declare const GetConfigurationProductsHidden2$outboundSchema: z.ZodType<GetConfigurationProductsHidden2$Outbound, z.ZodTypeDef, GetConfigurationProductsHidden2>;
1217
- export declare function getConfigurationProductsHidden2ToJSON(getConfigurationProductsHidden2: GetConfigurationProductsHidden2): string;
1218
- export declare function getConfigurationProductsHidden2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHidden2, SDKValidationError>;
1262
+ export declare const GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema: z.ZodType<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound, z.ZodTypeDef, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2>;
1263
+ export declare function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2): string;
1264
+ export declare function getConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, SDKValidationError>;
1219
1265
  /** @internal */
1220
- export declare const PropertiesHidden$inboundSchema: z.ZodType<PropertiesHidden, z.ZodTypeDef, unknown>;
1266
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden, z.ZodTypeDef, unknown>;
1221
1267
  /** @internal */
1222
- export type PropertiesHidden$Outbound = GetConfigurationProductsHidden2$Outbound | boolean | string;
1268
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$Outbound = GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | boolean | string;
1223
1269
  /** @internal */
1224
- export declare const PropertiesHidden$outboundSchema: z.ZodType<PropertiesHidden$Outbound, z.ZodTypeDef, PropertiesHidden>;
1225
- export declare function propertiesHiddenToJSON(propertiesHidden: PropertiesHidden): string;
1226
- export declare function propertiesHiddenFromJSON(jsonString: string): SafeParseResult<PropertiesHidden, SDKValidationError>;
1270
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden>;
1271
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHiddenToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden): string;
1272
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiHidden, SDKValidationError>;
1273
+ /** @internal */
1274
+ export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
1275
+ /** @internal */
1276
+ export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties3>;
1277
+ /** @internal */
1278
+ export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema: z.ZodType<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1279
+ /** @internal */
1280
+ export type GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound = {
1281
+ expr: string;
1282
+ };
1283
+ /** @internal */
1284
+ export declare const GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema: z.ZodType<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound, z.ZodTypeDef, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2>;
1285
+ export declare function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2: GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2): string;
1286
+ export declare function getConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, SDKValidationError>;
1287
+ /** @internal */
1288
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled, z.ZodTypeDef, unknown>;
1289
+ /** @internal */
1290
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$Outbound = GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | boolean | string;
1291
+ /** @internal */
1292
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled>;
1293
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabledToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled): string;
1294
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDisabled, SDKValidationError>;
1295
+ /** @internal */
1296
+ export declare const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$inboundSchema: z.ZodType<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, z.ZodTypeDef, unknown>;
1297
+ /** @internal */
1298
+ export type GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound = {
1299
+ expr: string;
1300
+ };
1301
+ /** @internal */
1302
+ export declare const GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$outboundSchema: z.ZodType<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound, z.ZodTypeDef, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2>;
1303
+ export declare function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2ToJSON(getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2: GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2): string;
1304
+ export declare function getConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2, SDKValidationError>;
1305
+ /** @internal */
1306
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription, z.ZodTypeDef, unknown>;
1307
+ /** @internal */
1308
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$Outbound = GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | string;
1309
+ /** @internal */
1310
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription>;
1311
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescriptionToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription): string;
1312
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescriptionFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiDescription, SDKValidationError>;
1313
+ /** @internal */
1314
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue, z.ZodTypeDef, unknown>;
1315
+ /** @internal */
1316
+ export type GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$Outbound = {
1317
+ expr: string;
1318
+ };
1319
+ /** @internal */
1320
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue>;
1321
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValueToJSON(getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue): string;
1322
+ export declare function getConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValueFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue, SDKValidationError>;
1323
+ /** @internal */
1324
+ export declare const GitProviders$inboundSchema: z.ZodNativeEnum<typeof GitProviders>;
1325
+ /** @internal */
1326
+ export declare const GitProviders$outboundSchema: z.ZodNativeEnum<typeof GitProviders>;
1227
1327
  /** @internal */
1228
1328
  export declare const Properties10$inboundSchema: z.ZodType<Properties10, z.ZodTypeDef, unknown>;
1229
1329
  /** @internal */
1230
1330
  export type Properties10$Outbound = {
1231
- value: string;
1232
- disabled?: GetConfigurationProductsDisabled2$Outbound | boolean | string | undefined;
1233
- hidden?: GetConfigurationProductsHidden2$Outbound | boolean | string | undefined;
1331
+ type: string;
1332
+ "ui:control": string;
1333
+ description?: string | undefined;
1334
+ "ui:label"?: string | undefined;
1335
+ "ui:read-only"?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | boolean | string | undefined;
1336
+ "ui:hidden"?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | boolean | string | undefined;
1337
+ "ui:disabled"?: GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | boolean | string | undefined;
1338
+ "ui:description"?: GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaProperties2$Outbound | string | undefined;
1339
+ "ui:formatted-value"?: GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaUiFormattedValue$Outbound | undefined;
1340
+ "ui:placeholder"?: string | undefined;
1341
+ "git:providers"?: Array<string> | undefined;
1234
1342
  };
1235
1343
  /** @internal */
1236
1344
  export declare const Properties10$outboundSchema: z.ZodType<Properties10$Outbound, z.ZodTypeDef, Properties10>;
@@ -1345,11 +1453,11 @@ export type Properties9$Outbound = {
1345
1453
  type: string;
1346
1454
  "ui:control": string;
1347
1455
  description?: string | undefined;
1348
- minLength?: number | undefined;
1456
+ enum?: Array<string> | undefined;
1349
1457
  maxLength?: number | undefined;
1458
+ minLength?: number | undefined;
1350
1459
  pattern?: string | undefined;
1351
1460
  default?: string | undefined;
1352
- enum?: Array<string> | undefined;
1353
1461
  "ui:label"?: string | undefined;
1354
1462
  "ui:read-only"?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound | boolean | string | undefined;
1355
1463
  "ui:hidden"?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$Outbound | boolean | string | undefined;
@@ -1367,10 +1475,6 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
1367
1475
  /** @internal */
1368
1476
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType>;
1369
1477
  /** @internal */
1370
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
1371
- /** @internal */
1372
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
1373
- /** @internal */
1374
1478
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type>;
1375
1479
  /** @internal */
1376
1480
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type>;
@@ -1391,6 +1495,10 @@ export declare const GetConfigurationProductsPropertiesIntegrationsItems$outboun
1391
1495
  export declare function getConfigurationProductsPropertiesIntegrationsItemsToJSON(getConfigurationProductsPropertiesIntegrationsItems: GetConfigurationProductsPropertiesIntegrationsItems): string;
1392
1496
  export declare function getConfigurationProductsPropertiesIntegrationsItemsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsItems, SDKValidationError>;
1393
1497
  /** @internal */
1498
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
1499
+ /** @internal */
1500
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl>;
1501
+ /** @internal */
1394
1502
  export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3>;
1395
1503
  /** @internal */
1396
1504
  export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3>;
@@ -1610,12 +1718,12 @@ export declare const Properties8$inboundSchema: z.ZodType<Properties8, z.ZodType
1610
1718
  /** @internal */
1611
1719
  export type Properties8$Outbound = {
1612
1720
  type: string;
1613
- "ui:control": string;
1614
1721
  items: GetConfigurationProductsPropertiesIntegrationsItems$Outbound;
1722
+ "ui:control": string;
1615
1723
  "ui:options": Array<GetConfigurationProductsUiOptions1$Outbound | GetConfigurationProductsUiOptions3$Outbound | string>;
1616
1724
  description?: string | undefined;
1617
- minItems?: number | undefined;
1618
1725
  maxItems?: number | undefined;
1726
+ minItems?: number | undefined;
1619
1727
  "ui:label"?: string | undefined;
1620
1728
  "ui:read-only"?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound | boolean | string | undefined;
1621
1729
  "ui:hidden"?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound | boolean | string | undefined;
@@ -1639,45 +1747,45 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
1639
1747
  /** @internal */
1640
1748
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl>;
1641
1749
  /** @internal */
1642
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
1750
+ export declare const GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
1643
1751
  /** @internal */
1644
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
1752
+ export declare const GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
1645
1753
  /** @internal */
1646
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2, z.ZodTypeDef, unknown>;
1754
+ export declare const GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse2, z.ZodTypeDef, unknown>;
1647
1755
  /** @internal */
1648
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound = {
1756
+ export type GetConfigurationProductsDisabledIntegrationsResponse2$Outbound = {
1649
1757
  expr: string;
1650
1758
  };
1651
1759
  /** @internal */
1652
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2>;
1653
- export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2ToJSON(getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2): string;
1654
- export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2, SDKValidationError>;
1760
+ export declare const GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabledIntegrationsResponse2>;
1761
+ export declare function getConfigurationProductsDisabledIntegrationsResponse2ToJSON(getConfigurationProductsDisabledIntegrationsResponse2: GetConfigurationProductsDisabledIntegrationsResponse2): string;
1762
+ export declare function getConfigurationProductsDisabledIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse2, SDKValidationError>;
1655
1763
  /** @internal */
1656
1764
  export declare const GetConfigurationProductsUiOptionsDisabled$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsDisabled, z.ZodTypeDef, unknown>;
1657
1765
  /** @internal */
1658
- export type GetConfigurationProductsUiOptionsDisabled$Outbound = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound | boolean | string;
1766
+ export type GetConfigurationProductsUiOptionsDisabled$Outbound = GetConfigurationProductsDisabledIntegrationsResponse2$Outbound | boolean | string;
1659
1767
  /** @internal */
1660
1768
  export declare const GetConfigurationProductsUiOptionsDisabled$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsDisabled$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsDisabled>;
1661
1769
  export declare function getConfigurationProductsUiOptionsDisabledToJSON(getConfigurationProductsUiOptionsDisabled: GetConfigurationProductsUiOptionsDisabled): string;
1662
1770
  export declare function getConfigurationProductsUiOptionsDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsUiOptionsDisabled, SDKValidationError>;
1663
1771
  /** @internal */
1664
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
1772
+ export declare const GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
1665
1773
  /** @internal */
1666
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3>;
1774
+ export declare const GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
1667
1775
  /** @internal */
1668
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2, z.ZodTypeDef, unknown>;
1776
+ export declare const GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse2, z.ZodTypeDef, unknown>;
1669
1777
  /** @internal */
1670
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound = {
1778
+ export type GetConfigurationProductsHiddenIntegrationsResponse2$Outbound = {
1671
1779
  expr: string;
1672
1780
  };
1673
1781
  /** @internal */
1674
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound, z.ZodTypeDef, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2>;
1675
- export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2ToJSON(getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2): string;
1676
- export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2, SDKValidationError>;
1782
+ export declare const GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse2$Outbound, z.ZodTypeDef, GetConfigurationProductsHiddenIntegrationsResponse2>;
1783
+ export declare function getConfigurationProductsHiddenIntegrationsResponse2ToJSON(getConfigurationProductsHiddenIntegrationsResponse2: GetConfigurationProductsHiddenIntegrationsResponse2): string;
1784
+ export declare function getConfigurationProductsHiddenIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse2, SDKValidationError>;
1677
1785
  /** @internal */
1678
1786
  export declare const GetConfigurationProductsUiOptionsHidden$inboundSchema: z.ZodType<GetConfigurationProductsUiOptionsHidden, z.ZodTypeDef, unknown>;
1679
1787
  /** @internal */
1680
- export type GetConfigurationProductsUiOptionsHidden$Outbound = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound | boolean | string;
1788
+ export type GetConfigurationProductsUiOptionsHidden$Outbound = GetConfigurationProductsHiddenIntegrationsResponse2$Outbound | boolean | string;
1681
1789
  /** @internal */
1682
1790
  export declare const GetConfigurationProductsUiOptionsHidden$outboundSchema: z.ZodType<GetConfigurationProductsUiOptionsHidden$Outbound, z.ZodTypeDef, GetConfigurationProductsUiOptionsHidden>;
1683
1791
  export declare function getConfigurationProductsUiOptionsHiddenToJSON(getConfigurationProductsUiOptionsHidden: GetConfigurationProductsUiOptionsHidden): string;
@@ -1687,53 +1795,53 @@ export declare const UiOptions3$inboundSchema: z.ZodType<UiOptions3, z.ZodTypeDe
1687
1795
  /** @internal */
1688
1796
  export type UiOptions3$Outbound = {
1689
1797
  value: string;
1690
- disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound | boolean | string | undefined;
1691
- hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$Outbound | boolean | string | undefined;
1798
+ disabled?: GetConfigurationProductsDisabledIntegrationsResponse2$Outbound | boolean | string | undefined;
1799
+ hidden?: GetConfigurationProductsHiddenIntegrationsResponse2$Outbound | boolean | string | undefined;
1692
1800
  };
1693
1801
  /** @internal */
1694
1802
  export declare const UiOptions3$outboundSchema: z.ZodType<UiOptions3$Outbound, z.ZodTypeDef, UiOptions3>;
1695
1803
  export declare function uiOptions3ToJSON(uiOptions3: UiOptions3): string;
1696
1804
  export declare function uiOptions3FromJSON(jsonString: string): SafeParseResult<UiOptions3, SDKValidationError>;
1697
1805
  /** @internal */
1698
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
1806
+ export declare const GetConfigurationProductsDisabledIntegrations3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3>;
1699
1807
  /** @internal */
1700
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3>;
1808
+ export declare const GetConfigurationProductsDisabledIntegrations3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3>;
1701
1809
  /** @internal */
1702
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2, z.ZodTypeDef, unknown>;
1810
+ export declare const GetConfigurationProductsDisabledIntegrations2$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrations2, z.ZodTypeDef, unknown>;
1703
1811
  /** @internal */
1704
- export type GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound = {
1812
+ export type GetConfigurationProductsDisabledIntegrations2$Outbound = {
1705
1813
  expr: string;
1706
1814
  };
1707
1815
  /** @internal */
1708
- export declare const GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2>;
1709
- export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2): string;
1710
- export declare function getConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2, SDKValidationError>;
1816
+ export declare const GetConfigurationProductsDisabledIntegrations2$outboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrations2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabledIntegrations2>;
1817
+ export declare function getConfigurationProductsDisabledIntegrations2ToJSON(getConfigurationProductsDisabledIntegrations2: GetConfigurationProductsDisabledIntegrations2): string;
1818
+ export declare function getConfigurationProductsDisabledIntegrations2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrations2, SDKValidationError>;
1711
1819
  /** @internal */
1712
1820
  export declare const UiOptionsDisabled$inboundSchema: z.ZodType<UiOptionsDisabled, z.ZodTypeDef, unknown>;
1713
1821
  /** @internal */
1714
- export type UiOptionsDisabled$Outbound = GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string;
1822
+ export type UiOptionsDisabled$Outbound = GetConfigurationProductsDisabledIntegrations2$Outbound | boolean | string;
1715
1823
  /** @internal */
1716
1824
  export declare const UiOptionsDisabled$outboundSchema: z.ZodType<UiOptionsDisabled$Outbound, z.ZodTypeDef, UiOptionsDisabled>;
1717
1825
  export declare function uiOptionsDisabledToJSON(uiOptionsDisabled: UiOptionsDisabled): string;
1718
1826
  export declare function uiOptionsDisabledFromJSON(jsonString: string): SafeParseResult<UiOptionsDisabled, SDKValidationError>;
1719
1827
  /** @internal */
1720
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
1828
+ export declare const GetConfigurationProductsHiddenIntegrations3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3>;
1721
1829
  /** @internal */
1722
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3>;
1830
+ export declare const GetConfigurationProductsHiddenIntegrations3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3>;
1723
1831
  /** @internal */
1724
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2, z.ZodTypeDef, unknown>;
1832
+ export declare const GetConfigurationProductsHiddenIntegrations2$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrations2, z.ZodTypeDef, unknown>;
1725
1833
  /** @internal */
1726
- export type GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound = {
1834
+ export type GetConfigurationProductsHiddenIntegrations2$Outbound = {
1727
1835
  expr: string;
1728
1836
  };
1729
1837
  /** @internal */
1730
- export declare const GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound, z.ZodTypeDef, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2>;
1731
- export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2ToJSON(getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2): string;
1732
- export declare function getConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2, SDKValidationError>;
1838
+ export declare const GetConfigurationProductsHiddenIntegrations2$outboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrations2$Outbound, z.ZodTypeDef, GetConfigurationProductsHiddenIntegrations2>;
1839
+ export declare function getConfigurationProductsHiddenIntegrations2ToJSON(getConfigurationProductsHiddenIntegrations2: GetConfigurationProductsHiddenIntegrations2): string;
1840
+ export declare function getConfigurationProductsHiddenIntegrations2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrations2, SDKValidationError>;
1733
1841
  /** @internal */
1734
1842
  export declare const UiOptionsHidden$inboundSchema: z.ZodType<UiOptionsHidden, z.ZodTypeDef, unknown>;
1735
1843
  /** @internal */
1736
- export type UiOptionsHidden$Outbound = GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string;
1844
+ export type UiOptionsHidden$Outbound = GetConfigurationProductsHiddenIntegrations2$Outbound | boolean | string;
1737
1845
  /** @internal */
1738
1846
  export declare const UiOptionsHidden$outboundSchema: z.ZodType<UiOptionsHidden$Outbound, z.ZodTypeDef, UiOptionsHidden>;
1739
1847
  export declare function uiOptionsHiddenToJSON(uiOptionsHidden: UiOptionsHidden): string;
@@ -1744,8 +1852,8 @@ export declare const UiOptions1$inboundSchema: z.ZodType<UiOptions1, z.ZodTypeDe
1744
1852
  export type UiOptions1$Outbound = {
1745
1853
  value: string;
1746
1854
  label: string;
1747
- disabled?: GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
1748
- hidden?: GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
1855
+ disabled?: GetConfigurationProductsDisabledIntegrations2$Outbound | boolean | string | undefined;
1856
+ hidden?: GetConfigurationProductsHiddenIntegrations2$Outbound | boolean | string | undefined;
1749
1857
  };
1750
1858
  /** @internal */
1751
1859
  export declare const UiOptions1$outboundSchema: z.ZodType<UiOptions1$Outbound, z.ZodTypeDef, UiOptions1>;
@@ -1861,11 +1969,11 @@ export type Properties7$Outbound = {
1861
1969
  "ui:control": string;
1862
1970
  "ui:options": Array<UiOptions1$Outbound | UiOptions3$Outbound | string>;
1863
1971
  description?: string | undefined;
1864
- minLength?: number | undefined;
1972
+ enum?: Array<string> | undefined;
1865
1973
  maxLength?: number | undefined;
1974
+ minLength?: number | undefined;
1866
1975
  pattern?: string | undefined;
1867
1976
  default?: string | undefined;
1868
- enum?: Array<string> | undefined;
1869
1977
  "ui:label"?: string | undefined;
1870
1978
  "ui:read-only"?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
1871
1979
  "ui:hidden"?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$Outbound | boolean | string | undefined;
@@ -1883,10 +1991,6 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200Ap
1883
1991
  /** @internal */
1884
1992
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType>;
1885
1993
  /** @internal */
1886
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl>;
1887
- /** @internal */
1888
- export declare const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl>;
1889
- /** @internal */
1890
1994
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type>;
1891
1995
  /** @internal */
1892
1996
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type>;
@@ -1907,57 +2011,61 @@ export declare const GetConfigurationProductsPropertiesItems$outboundSchema: z.Z
1907
2011
  export declare function getConfigurationProductsPropertiesItemsToJSON(getConfigurationProductsPropertiesItems: GetConfigurationProductsPropertiesItems): string;
1908
2012
  export declare function getConfigurationProductsPropertiesItemsFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesItems, SDKValidationError>;
1909
2013
  /** @internal */
1910
- export declare const GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
2014
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl>;
1911
2015
  /** @internal */
1912
- export declare const GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrationsResponse3>;
2016
+ export declare const GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200UiControl>;
1913
2017
  /** @internal */
1914
- export declare const GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse2, z.ZodTypeDef, unknown>;
2018
+ export declare const GetConfigurationProductsDisabled3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabled3>;
1915
2019
  /** @internal */
1916
- export type GetConfigurationProductsDisabledIntegrationsResponse2$Outbound = {
2020
+ export declare const GetConfigurationProductsDisabled3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabled3>;
2021
+ /** @internal */
2022
+ export declare const GetConfigurationProductsDisabled2$inboundSchema: z.ZodType<GetConfigurationProductsDisabled2, z.ZodTypeDef, unknown>;
2023
+ /** @internal */
2024
+ export type GetConfigurationProductsDisabled2$Outbound = {
1917
2025
  expr: string;
1918
2026
  };
1919
2027
  /** @internal */
1920
- export declare const GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrationsResponse2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabledIntegrationsResponse2>;
1921
- export declare function getConfigurationProductsDisabledIntegrationsResponse2ToJSON(getConfigurationProductsDisabledIntegrationsResponse2: GetConfigurationProductsDisabledIntegrationsResponse2): string;
1922
- export declare function getConfigurationProductsDisabledIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrationsResponse2, SDKValidationError>;
2028
+ export declare const GetConfigurationProductsDisabled2$outboundSchema: z.ZodType<GetConfigurationProductsDisabled2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabled2>;
2029
+ export declare function getConfigurationProductsDisabled2ToJSON(getConfigurationProductsDisabled2: GetConfigurationProductsDisabled2): string;
2030
+ export declare function getConfigurationProductsDisabled2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabled2, SDKValidationError>;
1923
2031
  /** @internal */
1924
- export declare const GetConfigurationProductsPropertiesIntegrationsDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsDisabled, z.ZodTypeDef, unknown>;
2032
+ export declare const PropertiesDisabled$inboundSchema: z.ZodType<PropertiesDisabled, z.ZodTypeDef, unknown>;
1925
2033
  /** @internal */
1926
- export type GetConfigurationProductsPropertiesIntegrationsDisabled$Outbound = GetConfigurationProductsDisabledIntegrationsResponse2$Outbound | boolean | string;
2034
+ export type PropertiesDisabled$Outbound = GetConfigurationProductsDisabled2$Outbound | boolean | string;
1927
2035
  /** @internal */
1928
- export declare const GetConfigurationProductsPropertiesIntegrationsDisabled$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsDisabled$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsDisabled>;
1929
- export declare function getConfigurationProductsPropertiesIntegrationsDisabledToJSON(getConfigurationProductsPropertiesIntegrationsDisabled: GetConfigurationProductsPropertiesIntegrationsDisabled): string;
1930
- export declare function getConfigurationProductsPropertiesIntegrationsDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsDisabled, SDKValidationError>;
2036
+ export declare const PropertiesDisabled$outboundSchema: z.ZodType<PropertiesDisabled$Outbound, z.ZodTypeDef, PropertiesDisabled>;
2037
+ export declare function propertiesDisabledToJSON(propertiesDisabled: PropertiesDisabled): string;
2038
+ export declare function propertiesDisabledFromJSON(jsonString: string): SafeParseResult<PropertiesDisabled, SDKValidationError>;
1931
2039
  /** @internal */
1932
- export declare const GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
2040
+ export declare const GetConfigurationProductsHidden3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHidden3>;
1933
2041
  /** @internal */
1934
- export declare const GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrationsResponse3>;
2042
+ export declare const GetConfigurationProductsHidden3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHidden3>;
1935
2043
  /** @internal */
1936
- export declare const GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse2, z.ZodTypeDef, unknown>;
2044
+ export declare const GetConfigurationProductsHidden2$inboundSchema: z.ZodType<GetConfigurationProductsHidden2, z.ZodTypeDef, unknown>;
1937
2045
  /** @internal */
1938
- export type GetConfigurationProductsHiddenIntegrationsResponse2$Outbound = {
2046
+ export type GetConfigurationProductsHidden2$Outbound = {
1939
2047
  expr: string;
1940
2048
  };
1941
2049
  /** @internal */
1942
- export declare const GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrationsResponse2$Outbound, z.ZodTypeDef, GetConfigurationProductsHiddenIntegrationsResponse2>;
1943
- export declare function getConfigurationProductsHiddenIntegrationsResponse2ToJSON(getConfigurationProductsHiddenIntegrationsResponse2: GetConfigurationProductsHiddenIntegrationsResponse2): string;
1944
- export declare function getConfigurationProductsHiddenIntegrationsResponse2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrationsResponse2, SDKValidationError>;
2050
+ export declare const GetConfigurationProductsHidden2$outboundSchema: z.ZodType<GetConfigurationProductsHidden2$Outbound, z.ZodTypeDef, GetConfigurationProductsHidden2>;
2051
+ export declare function getConfigurationProductsHidden2ToJSON(getConfigurationProductsHidden2: GetConfigurationProductsHidden2): string;
2052
+ export declare function getConfigurationProductsHidden2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHidden2, SDKValidationError>;
1945
2053
  /** @internal */
1946
- export declare const GetConfigurationProductsPropertiesIntegrationsHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsHidden, z.ZodTypeDef, unknown>;
2054
+ export declare const PropertiesHidden$inboundSchema: z.ZodType<PropertiesHidden, z.ZodTypeDef, unknown>;
1947
2055
  /** @internal */
1948
- export type GetConfigurationProductsPropertiesIntegrationsHidden$Outbound = GetConfigurationProductsHiddenIntegrationsResponse2$Outbound | boolean | string;
2056
+ export type PropertiesHidden$Outbound = GetConfigurationProductsHidden2$Outbound | boolean | string;
1949
2057
  /** @internal */
1950
- export declare const GetConfigurationProductsPropertiesIntegrationsHidden$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesIntegrationsHidden$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesIntegrationsHidden>;
1951
- export declare function getConfigurationProductsPropertiesIntegrationsHiddenToJSON(getConfigurationProductsPropertiesIntegrationsHidden: GetConfigurationProductsPropertiesIntegrationsHidden): string;
1952
- export declare function getConfigurationProductsPropertiesIntegrationsHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesIntegrationsHidden, SDKValidationError>;
2058
+ export declare const PropertiesHidden$outboundSchema: z.ZodType<PropertiesHidden$Outbound, z.ZodTypeDef, PropertiesHidden>;
2059
+ export declare function propertiesHiddenToJSON(propertiesHidden: PropertiesHidden): string;
2060
+ export declare function propertiesHiddenFromJSON(jsonString: string): SafeParseResult<PropertiesHidden, SDKValidationError>;
1953
2061
  /** @internal */
1954
2062
  export declare const PropertiesUiOptions$inboundSchema: z.ZodType<PropertiesUiOptions, z.ZodTypeDef, unknown>;
1955
2063
  /** @internal */
1956
2064
  export type PropertiesUiOptions$Outbound = {
1957
2065
  value: string;
1958
2066
  label: string;
1959
- disabled?: GetConfigurationProductsDisabledIntegrationsResponse2$Outbound | boolean | string | undefined;
1960
- hidden?: GetConfigurationProductsHiddenIntegrationsResponse2$Outbound | boolean | string | undefined;
2067
+ disabled?: GetConfigurationProductsDisabled2$Outbound | boolean | string | undefined;
2068
+ hidden?: GetConfigurationProductsHidden2$Outbound | boolean | string | undefined;
1961
2069
  };
1962
2070
  /** @internal */
1963
2071
  export declare const PropertiesUiOptions$outboundSchema: z.ZodType<PropertiesUiOptions$Outbound, z.ZodTypeDef, PropertiesUiOptions>;
@@ -2062,12 +2170,12 @@ export declare const Properties6$inboundSchema: z.ZodType<Properties6, z.ZodType
2062
2170
  /** @internal */
2063
2171
  export type Properties6$Outbound = {
2064
2172
  type: string;
2065
- "ui:control": string;
2066
2173
  items: GetConfigurationProductsPropertiesItems$Outbound;
2174
+ "ui:control": string;
2067
2175
  "ui:options": Array<PropertiesUiOptions$Outbound>;
2068
2176
  description?: string | undefined;
2069
- minItems?: number | undefined;
2070
2177
  maxItems?: number | undefined;
2178
+ minItems?: number | undefined;
2071
2179
  "ui:label"?: string | undefined;
2072
2180
  "ui:read-only"?: GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
2073
2181
  "ui:hidden"?: GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson2$Outbound | boolean | string | undefined;
@@ -2091,57 +2199,57 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponseUiCon
2091
2199
  /** @internal */
2092
2200
  export declare const GetConfigurationProductsPropertiesIntegrationsResponseUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponseUiControl>;
2093
2201
  /** @internal */
2094
- export declare const GetConfigurationProductsDisabledIntegrations3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3>;
2202
+ export declare const Disabled3$inboundSchema: z.ZodNativeEnum<typeof Disabled3>;
2095
2203
  /** @internal */
2096
- export declare const GetConfigurationProductsDisabledIntegrations3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsDisabledIntegrations3>;
2204
+ export declare const Disabled3$outboundSchema: z.ZodNativeEnum<typeof Disabled3>;
2097
2205
  /** @internal */
2098
- export declare const GetConfigurationProductsDisabledIntegrations2$inboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrations2, z.ZodTypeDef, unknown>;
2206
+ export declare const Disabled2$inboundSchema: z.ZodType<Disabled2, z.ZodTypeDef, unknown>;
2099
2207
  /** @internal */
2100
- export type GetConfigurationProductsDisabledIntegrations2$Outbound = {
2208
+ export type Disabled2$Outbound = {
2101
2209
  expr: string;
2102
2210
  };
2103
2211
  /** @internal */
2104
- export declare const GetConfigurationProductsDisabledIntegrations2$outboundSchema: z.ZodType<GetConfigurationProductsDisabledIntegrations2$Outbound, z.ZodTypeDef, GetConfigurationProductsDisabledIntegrations2>;
2105
- export declare function getConfigurationProductsDisabledIntegrations2ToJSON(getConfigurationProductsDisabledIntegrations2: GetConfigurationProductsDisabledIntegrations2): string;
2106
- export declare function getConfigurationProductsDisabledIntegrations2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsDisabledIntegrations2, SDKValidationError>;
2212
+ export declare const Disabled2$outboundSchema: z.ZodType<Disabled2$Outbound, z.ZodTypeDef, Disabled2>;
2213
+ export declare function disabled2ToJSON(disabled2: Disabled2): string;
2214
+ export declare function disabled2FromJSON(jsonString: string): SafeParseResult<Disabled2, SDKValidationError>;
2107
2215
  /** @internal */
2108
- export declare const GetConfigurationProductsPropertiesDisabled$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesDisabled, z.ZodTypeDef, unknown>;
2216
+ export declare const Disabled$inboundSchema: z.ZodType<Disabled, z.ZodTypeDef, unknown>;
2109
2217
  /** @internal */
2110
- export type GetConfigurationProductsPropertiesDisabled$Outbound = GetConfigurationProductsDisabledIntegrations2$Outbound | boolean | string;
2218
+ export type Disabled$Outbound = Disabled2$Outbound | boolean | string;
2111
2219
  /** @internal */
2112
- export declare const GetConfigurationProductsPropertiesDisabled$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesDisabled$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesDisabled>;
2113
- export declare function getConfigurationProductsPropertiesDisabledToJSON(getConfigurationProductsPropertiesDisabled: GetConfigurationProductsPropertiesDisabled): string;
2114
- export declare function getConfigurationProductsPropertiesDisabledFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesDisabled, SDKValidationError>;
2220
+ export declare const Disabled$outboundSchema: z.ZodType<Disabled$Outbound, z.ZodTypeDef, Disabled>;
2221
+ export declare function disabledToJSON(disabled: Disabled): string;
2222
+ export declare function disabledFromJSON(jsonString: string): SafeParseResult<Disabled, SDKValidationError>;
2115
2223
  /** @internal */
2116
- export declare const GetConfigurationProductsHiddenIntegrations3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3>;
2224
+ export declare const Hidden3$inboundSchema: z.ZodNativeEnum<typeof Hidden3>;
2117
2225
  /** @internal */
2118
- export declare const GetConfigurationProductsHiddenIntegrations3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsHiddenIntegrations3>;
2226
+ export declare const Hidden3$outboundSchema: z.ZodNativeEnum<typeof Hidden3>;
2119
2227
  /** @internal */
2120
- export declare const GetConfigurationProductsHiddenIntegrations2$inboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrations2, z.ZodTypeDef, unknown>;
2228
+ export declare const Hidden2$inboundSchema: z.ZodType<Hidden2, z.ZodTypeDef, unknown>;
2121
2229
  /** @internal */
2122
- export type GetConfigurationProductsHiddenIntegrations2$Outbound = {
2230
+ export type Hidden2$Outbound = {
2123
2231
  expr: string;
2124
2232
  };
2125
2233
  /** @internal */
2126
- export declare const GetConfigurationProductsHiddenIntegrations2$outboundSchema: z.ZodType<GetConfigurationProductsHiddenIntegrations2$Outbound, z.ZodTypeDef, GetConfigurationProductsHiddenIntegrations2>;
2127
- export declare function getConfigurationProductsHiddenIntegrations2ToJSON(getConfigurationProductsHiddenIntegrations2: GetConfigurationProductsHiddenIntegrations2): string;
2128
- export declare function getConfigurationProductsHiddenIntegrations2FromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsHiddenIntegrations2, SDKValidationError>;
2234
+ export declare const Hidden2$outboundSchema: z.ZodType<Hidden2$Outbound, z.ZodTypeDef, Hidden2>;
2235
+ export declare function hidden2ToJSON(hidden2: Hidden2): string;
2236
+ export declare function hidden2FromJSON(jsonString: string): SafeParseResult<Hidden2, SDKValidationError>;
2129
2237
  /** @internal */
2130
- export declare const GetConfigurationProductsPropertiesHidden$inboundSchema: z.ZodType<GetConfigurationProductsPropertiesHidden, z.ZodTypeDef, unknown>;
2238
+ export declare const Hidden$inboundSchema: z.ZodType<Hidden, z.ZodTypeDef, unknown>;
2131
2239
  /** @internal */
2132
- export type GetConfigurationProductsPropertiesHidden$Outbound = GetConfigurationProductsHiddenIntegrations2$Outbound | boolean | string;
2240
+ export type Hidden$Outbound = Hidden2$Outbound | boolean | string;
2133
2241
  /** @internal */
2134
- export declare const GetConfigurationProductsPropertiesHidden$outboundSchema: z.ZodType<GetConfigurationProductsPropertiesHidden$Outbound, z.ZodTypeDef, GetConfigurationProductsPropertiesHidden>;
2135
- export declare function getConfigurationProductsPropertiesHiddenToJSON(getConfigurationProductsPropertiesHidden: GetConfigurationProductsPropertiesHidden): string;
2136
- export declare function getConfigurationProductsPropertiesHiddenFromJSON(jsonString: string): SafeParseResult<GetConfigurationProductsPropertiesHidden, SDKValidationError>;
2242
+ export declare const Hidden$outboundSchema: z.ZodType<Hidden$Outbound, z.ZodTypeDef, Hidden>;
2243
+ export declare function hiddenToJSON(hidden: Hidden): string;
2244
+ export declare function hiddenFromJSON(jsonString: string): SafeParseResult<Hidden, SDKValidationError>;
2137
2245
  /** @internal */
2138
2246
  export declare const UiOptions$inboundSchema: z.ZodType<UiOptions, z.ZodTypeDef, unknown>;
2139
2247
  /** @internal */
2140
2248
  export type UiOptions$Outbound = {
2141
2249
  value: string;
2142
2250
  label: string;
2143
- disabled?: GetConfigurationProductsDisabledIntegrations2$Outbound | boolean | string | undefined;
2144
- hidden?: GetConfigurationProductsHiddenIntegrations2$Outbound | boolean | string | undefined;
2251
+ disabled?: Disabled2$Outbound | boolean | string | undefined;
2252
+ hidden?: Hidden2$Outbound | boolean | string | undefined;
2145
2253
  };
2146
2254
  /** @internal */
2147
2255
  export declare const UiOptions$outboundSchema: z.ZodType<UiOptions$Outbound, z.ZodTypeDef, UiOptions>;
@@ -2249,11 +2357,11 @@ export type Properties5$Outbound = {
2249
2357
  "ui:control": string;
2250
2358
  "ui:options": Array<UiOptions$Outbound>;
2251
2359
  description?: string | undefined;
2252
- minLength?: number | undefined;
2360
+ enum?: Array<string> | undefined;
2253
2361
  maxLength?: number | undefined;
2362
+ minLength?: number | undefined;
2254
2363
  pattern?: string | undefined;
2255
2364
  default?: string | undefined;
2256
- enum?: Array<string> | undefined;
2257
2365
  "ui:label"?: string | undefined;
2258
2366
  "ui:read-only"?: GetConfigurationProductsUiReadOnlyIntegrationsResponse2002$Outbound | boolean | string | undefined;
2259
2367
  "ui:hidden"?: GetConfigurationProductsUiHiddenIntegrationsResponse2002$Outbound | boolean | string | undefined;
@@ -2271,10 +2379,6 @@ export declare const GetConfigurationProductsPropertiesIntegrationsResponseType$
2271
2379
  /** @internal */
2272
2380
  export declare const GetConfigurationProductsPropertiesIntegrationsResponseType$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponseType>;
2273
2381
  /** @internal */
2274
- export declare const GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
2275
- /** @internal */
2276
- export declare const GetConfigurationProductsPropertiesIntegrationsUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
2277
- /** @internal */
2278
2382
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type>;
2279
2383
  /** @internal */
2280
2384
  export declare const GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type>;
@@ -2295,6 +2399,10 @@ export declare const PropertiesItems$outboundSchema: z.ZodType<PropertiesItems$O
2295
2399
  export declare function propertiesItemsToJSON(propertiesItems: PropertiesItems): string;
2296
2400
  export declare function propertiesItemsFromJSON(jsonString: string): SafeParseResult<PropertiesItems, SDKValidationError>;
2297
2401
  /** @internal */
2402
+ export declare const GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
2403
+ /** @internal */
2404
+ export declare const GetConfigurationProductsPropertiesIntegrationsUiControl$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsPropertiesIntegrationsUiControl>;
2405
+ /** @internal */
2298
2406
  export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse3$inboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse3>;
2299
2407
  /** @internal */
2300
2408
  export declare const GetConfigurationProductsUiReadOnlyIntegrationsResponse3$outboundSchema: z.ZodNativeEnum<typeof GetConfigurationProductsUiReadOnlyIntegrationsResponse3>;
@@ -2393,12 +2501,12 @@ export declare const Properties4$inboundSchema: z.ZodType<Properties4, z.ZodType
2393
2501
  /** @internal */
2394
2502
  export type Properties4$Outbound = {
2395
2503
  type: string;
2504
+ items: PropertiesItems$Outbound;
2396
2505
  "ui:control": string;
2397
2506
  "ui:steps": Array<number>;
2398
- items: PropertiesItems$Outbound;
2399
2507
  description?: string | undefined;
2400
- minItems?: number | undefined;
2401
2508
  maxItems?: number | undefined;
2509
+ minItems?: number | undefined;
2402
2510
  "ui:label"?: string | undefined;
2403
2511
  "ui:read-only"?: GetConfigurationProductsUiReadOnlyIntegrationsResponse2$Outbound | boolean | string | undefined;
2404
2512
  "ui:hidden"?: GetConfigurationProductsUiHiddenIntegrationsResponse2$Outbound | boolean | string | undefined;
@@ -2643,9 +2751,9 @@ export type Properties2$Outbound = {
2643
2751
  minimum?: number | undefined;
2644
2752
  maximum?: number | undefined;
2645
2753
  description?: string | undefined;
2646
- default?: number | undefined;
2647
- exclusiveMinimum?: number | undefined;
2648
2754
  exclusiveMaximum?: number | undefined;
2755
+ exclusiveMinimum?: number | undefined;
2756
+ default?: number | undefined;
2649
2757
  "ui:label"?: string | undefined;
2650
2758
  "ui:read-only"?: GetConfigurationProductsUiReadOnly2$Outbound | boolean | string | undefined;
2651
2759
  "ui:hidden"?: GetConfigurationProductsUiHidden2$Outbound | boolean | string | undefined;
@@ -2767,11 +2875,11 @@ export type Properties1$Outbound = {
2767
2875
  type: string;
2768
2876
  "ui:control": string;
2769
2877
  description?: string | undefined;
2770
- minLength?: number | undefined;
2878
+ enum?: Array<string> | undefined;
2771
2879
  maxLength?: number | undefined;
2880
+ minLength?: number | undefined;
2772
2881
  pattern?: string | undefined;
2773
2882
  default?: string | undefined;
2774
- enum?: Array<string> | undefined;
2775
2883
  "ui:label"?: string | undefined;
2776
2884
  "ui:read-only"?: UiReadOnly2$Outbound | boolean | string | undefined;
2777
2885
  "ui:hidden"?: UiHidden2$Outbound | boolean | string | undefined;