@vercel/sdk 1.15.0 → 1.16.0

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 (323) hide show
  1. package/README.md +42 -25
  2. package/bin/mcp-server.js +3040 -1304
  3. package/bin/mcp-server.js.map +60 -42
  4. package/docs/sdks/connect/README.md +10 -10
  5. package/docs/sdks/environment/README.md +512 -0
  6. package/docs/sdks/staticips/README.md +95 -0
  7. package/esm/__tests__/accessgroups.test.js +1 -3
  8. package/esm/__tests__/accessgroups.test.js.map +1 -1
  9. package/esm/__tests__/checks.test.js +1 -1
  10. package/esm/__tests__/checks.test.js.map +1 -1
  11. package/esm/__tests__/connect.test.js +10 -7
  12. package/esm/__tests__/connect.test.js.map +1 -1
  13. package/esm/__tests__/domains.test.js +10 -3
  14. package/esm/__tests__/domains.test.js.map +1 -1
  15. package/esm/__tests__/edgeconfig.test.js +6 -6
  16. package/esm/__tests__/edgeconfig.test.js.map +1 -1
  17. package/esm/__tests__/environment.test.js +164 -0
  18. package/esm/__tests__/environment.test.js.map +1 -1
  19. package/esm/__tests__/integrations.test.js +1 -1
  20. package/esm/__tests__/logdrains.test.js +1 -3
  21. package/esm/__tests__/logdrains.test.js.map +1 -1
  22. package/esm/__tests__/rollingrelease.test.js +2 -1
  23. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  24. package/esm/__tests__/security.test.js +11 -1
  25. package/esm/__tests__/security.test.js.map +1 -1
  26. package/esm/funcs/connectUpdateStaticIps.d.ts +17 -0
  27. package/esm/funcs/connectUpdateStaticIps.d.ts.map +1 -0
  28. package/esm/funcs/{connectUpdateSharedConnectLinks.js → connectUpdateStaticIps.js} +8 -8
  29. package/esm/funcs/connectUpdateStaticIps.js.map +1 -0
  30. package/esm/funcs/environmentCreateSharedEnvVariable.d.ts +17 -0
  31. package/esm/funcs/environmentCreateSharedEnvVariable.d.ts.map +1 -0
  32. package/esm/funcs/environmentCreateSharedEnvVariable.js +83 -0
  33. package/esm/funcs/environmentCreateSharedEnvVariable.js.map +1 -0
  34. package/esm/funcs/environmentDeleteSharedEnvVariable.d.ts +17 -0
  35. package/esm/funcs/environmentDeleteSharedEnvVariable.d.ts.map +1 -0
  36. package/esm/funcs/environmentDeleteSharedEnvVariable.js +83 -0
  37. package/esm/funcs/environmentDeleteSharedEnvVariable.js.map +1 -0
  38. package/esm/funcs/environmentGetSharedEnvVar.d.ts +17 -0
  39. package/esm/funcs/environmentGetSharedEnvVar.d.ts.map +1 -0
  40. package/esm/funcs/environmentGetSharedEnvVar.js +88 -0
  41. package/esm/funcs/environmentGetSharedEnvVar.js.map +1 -0
  42. package/esm/funcs/environmentListSharedEnvVariable.d.ts +17 -0
  43. package/esm/funcs/environmentListSharedEnvVariable.d.ts.map +1 -0
  44. package/esm/funcs/environmentListSharedEnvVariable.js +89 -0
  45. package/esm/funcs/environmentListSharedEnvVariable.js.map +1 -0
  46. package/esm/funcs/environmentUnlinkSharedEnvVariable.d.ts +17 -0
  47. package/esm/funcs/environmentUnlinkSharedEnvVariable.d.ts.map +1 -0
  48. package/esm/funcs/environmentUnlinkSharedEnvVariable.js +92 -0
  49. package/esm/funcs/environmentUnlinkSharedEnvVariable.js.map +1 -0
  50. package/esm/funcs/environmentUpdateSharedEnvVariable.d.ts +17 -0
  51. package/esm/funcs/environmentUpdateSharedEnvVariable.d.ts.map +1 -0
  52. package/esm/funcs/environmentUpdateSharedEnvVariable.js +83 -0
  53. package/esm/funcs/environmentUpdateSharedEnvVariable.js.map +1 -0
  54. package/esm/funcs/integrationsCreateIntegrationStoreDirect.js +13 -2
  55. package/esm/funcs/integrationsCreateIntegrationStoreDirect.js.map +1 -1
  56. package/esm/lib/config.d.ts +3 -3
  57. package/esm/lib/config.js +3 -3
  58. package/esm/mcp-server/mcp-server.js +1 -1
  59. package/esm/mcp-server/server.d.ts.map +1 -1
  60. package/esm/mcp-server/server.js +20 -8
  61. package/esm/mcp-server/server.js.map +1 -1
  62. package/esm/mcp-server/tools/connectUpdateStaticIps.d.ts +7 -0
  63. package/esm/mcp-server/tools/connectUpdateStaticIps.d.ts.map +1 -0
  64. package/esm/mcp-server/tools/connectUpdateStaticIps.js +28 -0
  65. package/esm/mcp-server/tools/connectUpdateStaticIps.js.map +1 -0
  66. package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.d.ts +7 -0
  67. package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.d.ts.map +1 -0
  68. package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.js +28 -0
  69. package/esm/mcp-server/tools/environmentCreateSharedEnvVariable.js.map +1 -0
  70. package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.d.ts +7 -0
  71. package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.d.ts.map +1 -0
  72. package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.js +28 -0
  73. package/esm/mcp-server/tools/environmentDeleteSharedEnvVariable.js.map +1 -0
  74. package/esm/mcp-server/tools/environmentGetSharedEnvVar.d.ts +7 -0
  75. package/esm/mcp-server/tools/environmentGetSharedEnvVar.d.ts.map +1 -0
  76. package/esm/mcp-server/tools/environmentGetSharedEnvVar.js +28 -0
  77. package/esm/mcp-server/tools/environmentGetSharedEnvVar.js.map +1 -0
  78. package/esm/mcp-server/tools/environmentListSharedEnvVariable.d.ts +7 -0
  79. package/esm/mcp-server/tools/environmentListSharedEnvVariable.d.ts.map +1 -0
  80. package/esm/mcp-server/tools/environmentListSharedEnvVariable.js +28 -0
  81. package/esm/mcp-server/tools/environmentListSharedEnvVariable.js.map +1 -0
  82. package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.d.ts +7 -0
  83. package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.d.ts.map +1 -0
  84. package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.js +28 -0
  85. package/esm/mcp-server/tools/environmentUnlinkSharedEnvVariable.js.map +1 -0
  86. package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.d.ts +7 -0
  87. package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.d.ts.map +1 -0
  88. package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.js +28 -0
  89. package/esm/mcp-server/tools/environmentUpdateSharedEnvVariable.js.map +1 -0
  90. package/esm/models/buydomainsop.d.ts +4 -4
  91. package/esm/models/buydomainsop.d.ts.map +1 -1
  92. package/esm/models/buysingledomainop.d.ts +4 -4
  93. package/esm/models/buysingledomainop.d.ts.map +1 -1
  94. package/esm/models/canceldeploymentop.d.ts +3 -0
  95. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  96. package/esm/models/canceldeploymentop.js +1 -0
  97. package/esm/models/canceldeploymentop.js.map +1 -1
  98. package/esm/models/createdeploymentop.d.ts +6 -0
  99. package/esm/models/createdeploymentop.d.ts.map +1 -1
  100. package/esm/models/createdeploymentop.js +2 -0
  101. package/esm/models/createdeploymentop.js.map +1 -1
  102. package/esm/models/createdrainop.d.ts +3 -0
  103. package/esm/models/createdrainop.d.ts.map +1 -1
  104. package/esm/models/createdrainop.js +1 -0
  105. package/esm/models/createdrainop.js.map +1 -1
  106. package/esm/models/createintegrationstoredirectop.d.ts +288 -285
  107. package/esm/models/createintegrationstoredirectop.d.ts.map +1 -1
  108. package/esm/models/createintegrationstoredirectop.js +352 -351
  109. package/esm/models/createintegrationstoredirectop.js.map +1 -1
  110. package/esm/models/createprojectenvop.d.ts +37 -37
  111. package/esm/models/createprojectenvop.d.ts.map +1 -1
  112. package/esm/models/createprojectenvop.js +44 -44
  113. package/esm/models/createprojectenvop.js.map +1 -1
  114. package/esm/models/createprojectop.d.ts +6 -0
  115. package/esm/models/createprojectop.d.ts.map +1 -1
  116. package/esm/models/createprojectop.js +2 -0
  117. package/esm/models/createprojectop.js.map +1 -1
  118. package/esm/models/createsharedenvvariableop.d.ts +746 -0
  119. package/esm/models/createsharedenvvariableop.d.ts.map +1 -0
  120. package/esm/models/createsharedenvvariableop.js +609 -0
  121. package/esm/models/createsharedenvvariableop.js.map +1 -0
  122. package/esm/models/deletesharedenvvariableop.d.ts +291 -0
  123. package/esm/models/deletesharedenvvariableop.d.ts.map +1 -0
  124. package/esm/models/deletesharedenvvariableop.js +291 -0
  125. package/esm/models/deletesharedenvvariableop.js.map +1 -0
  126. package/esm/models/getalllogdrainsop.d.ts +6 -0
  127. package/esm/models/getalllogdrainsop.d.ts.map +1 -1
  128. package/esm/models/getalllogdrainsop.js +2 -0
  129. package/esm/models/getalllogdrainsop.js.map +1 -1
  130. package/esm/models/getconfigurablelogdrainop.d.ts +3 -0
  131. package/esm/models/getconfigurablelogdrainop.d.ts.map +1 -1
  132. package/esm/models/getconfigurablelogdrainop.js +1 -0
  133. package/esm/models/getconfigurablelogdrainop.js.map +1 -1
  134. package/esm/models/getconfigurationproductsop.d.ts +375 -375
  135. package/esm/models/getconfigurationproductsop.js +465 -465
  136. package/esm/models/getcontactinfoschemaop.d.ts +2 -2
  137. package/esm/models/getcontactinfoschemaop.d.ts.map +1 -1
  138. package/esm/models/getdeploymentop.d.ts +3 -0
  139. package/esm/models/getdeploymentop.d.ts.map +1 -1
  140. package/esm/models/getdeploymentop.js +1 -0
  141. package/esm/models/getdeploymentop.js.map +1 -1
  142. package/esm/models/getdeploymentsop.d.ts +3 -0
  143. package/esm/models/getdeploymentsop.d.ts.map +1 -1
  144. package/esm/models/getdeploymentsop.js +1 -0
  145. package/esm/models/getdeploymentsop.js.map +1 -1
  146. package/esm/models/getdomainauthcodeop.d.ts +4 -4
  147. package/esm/models/getdomainauthcodeop.d.ts.map +1 -1
  148. package/esm/models/getdomainpriceop.d.ts +2 -2
  149. package/esm/models/getdomainpriceop.d.ts.map +1 -1
  150. package/esm/models/getdomaintransferinop.d.ts +2 -2
  151. package/esm/models/getdomaintransferinop.d.ts.map +1 -1
  152. package/esm/models/getdrainop.d.ts +3 -0
  153. package/esm/models/getdrainop.d.ts.map +1 -1
  154. package/esm/models/getdrainop.js +1 -0
  155. package/esm/models/getdrainop.js.map +1 -1
  156. package/esm/models/getdrainsop.d.ts +3 -0
  157. package/esm/models/getdrainsop.d.ts.map +1 -1
  158. package/esm/models/getdrainsop.js +1 -0
  159. package/esm/models/getdrainsop.js.map +1 -1
  160. package/esm/models/getinvoiceop.d.ts +3 -0
  161. package/esm/models/getinvoiceop.d.ts.map +1 -1
  162. package/esm/models/getinvoiceop.js +1 -0
  163. package/esm/models/getinvoiceop.js.map +1 -1
  164. package/esm/models/getorderop.d.ts +2 -2
  165. package/esm/models/getorderop.d.ts.map +1 -1
  166. package/esm/models/getprojectsop.d.ts +3 -0
  167. package/esm/models/getprojectsop.d.ts.map +1 -1
  168. package/esm/models/getprojectsop.js +1 -0
  169. package/esm/models/getprojectsop.js.map +1 -1
  170. package/esm/models/getsharedenvvarop.d.ts +227 -0
  171. package/esm/models/getsharedenvvarop.d.ts.map +1 -0
  172. package/esm/models/getsharedenvvarop.js +142 -0
  173. package/esm/models/getsharedenvvarop.js.map +1 -0
  174. package/esm/models/gettldpriceop.d.ts +2 -2
  175. package/esm/models/gettldpriceop.d.ts.map +1 -1
  176. package/esm/models/getwebhooksop.d.ts +3 -0
  177. package/esm/models/getwebhooksop.d.ts.map +1 -1
  178. package/esm/models/getwebhooksop.js +1 -0
  179. package/esm/models/getwebhooksop.js.map +1 -1
  180. package/esm/models/listsharedenvvariableop.d.ts +285 -0
  181. package/esm/models/listsharedenvvariableop.d.ts.map +1 -0
  182. package/esm/models/listsharedenvvariableop.js +198 -0
  183. package/esm/models/listsharedenvvariableop.js.map +1 -0
  184. package/esm/models/renewdomainop.d.ts +4 -4
  185. package/esm/models/renewdomainop.d.ts.map +1 -1
  186. package/esm/models/transferindomainop.d.ts +4 -4
  187. package/esm/models/transferindomainop.d.ts.map +1 -1
  188. package/esm/models/unlinksharedenvvariableop.d.ts +69 -0
  189. package/esm/models/unlinksharedenvvariableop.d.ts.map +1 -0
  190. package/esm/models/unlinksharedenvvariableop.js +62 -0
  191. package/esm/models/unlinksharedenvvariableop.js.map +1 -0
  192. package/esm/models/updatedomainautorenewop.d.ts +4 -4
  193. package/esm/models/updatedomainautorenewop.d.ts.map +1 -1
  194. package/esm/models/updatedomainnameserversop.d.ts +4 -4
  195. package/esm/models/updatedomainnameserversop.d.ts.map +1 -1
  196. package/esm/models/updatedrainop.d.ts +3 -0
  197. package/esm/models/updatedrainop.d.ts.map +1 -1
  198. package/esm/models/updatedrainop.js +1 -0
  199. package/esm/models/updatedrainop.js.map +1 -1
  200. package/esm/models/updateinstallationop.d.ts +32 -5
  201. package/esm/models/updateinstallationop.d.ts.map +1 -1
  202. package/esm/models/updateinstallationop.js +29 -4
  203. package/esm/models/updateinstallationop.js.map +1 -1
  204. package/esm/models/updateprojectdatacacheop.d.ts +3 -0
  205. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  206. package/esm/models/updateprojectdatacacheop.js +1 -0
  207. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  208. package/esm/models/updateprojectop.d.ts +6 -0
  209. package/esm/models/updateprojectop.d.ts.map +1 -1
  210. package/esm/models/updateprojectop.js +2 -0
  211. package/esm/models/updateprojectop.js.map +1 -1
  212. package/esm/models/updatesharedenvvariableop.d.ts +629 -0
  213. package/esm/models/updatesharedenvvariableop.d.ts.map +1 -0
  214. package/esm/models/updatesharedenvvariableop.js +507 -0
  215. package/esm/models/updatesharedenvvariableop.js.map +1 -0
  216. package/esm/models/updatestaticipsop.d.ts +238 -0
  217. package/esm/models/updatestaticipsop.d.ts.map +1 -0
  218. package/esm/models/updatestaticipsop.js +239 -0
  219. package/esm/models/updatestaticipsop.js.map +1 -0
  220. package/esm/sdk/connect.d.ts +4 -4
  221. package/esm/sdk/connect.d.ts.map +1 -1
  222. package/esm/sdk/connect.js +5 -5
  223. package/esm/sdk/connect.js.map +1 -1
  224. package/esm/sdk/environment.d.ts +48 -0
  225. package/esm/sdk/environment.d.ts.map +1 -1
  226. package/esm/sdk/environment.js +60 -0
  227. package/esm/sdk/environment.js.map +1 -1
  228. package/esm/sdk/sdk.d.ts +5 -2
  229. package/esm/sdk/sdk.d.ts.map +1 -1
  230. package/esm/sdk/sdk.js +6 -2
  231. package/esm/sdk/sdk.js.map +1 -1
  232. package/esm/sdk/staticips.d.ts +12 -0
  233. package/esm/sdk/staticips.d.ts.map +1 -0
  234. package/esm/sdk/staticips.js +18 -0
  235. package/esm/sdk/staticips.js.map +1 -0
  236. package/examples/package-lock.json +1 -1
  237. package/jsr.json +1 -1
  238. package/package.json +1 -1
  239. package/src/__tests__/accessgroups.test.ts +1 -3
  240. package/src/__tests__/checks.test.ts +1 -1
  241. package/src/__tests__/connect.test.ts +13 -7
  242. package/src/__tests__/domains.test.ts +10 -3
  243. package/src/__tests__/edgeconfig.test.ts +6 -6
  244. package/src/__tests__/environment.test.ts +184 -0
  245. package/src/__tests__/integrations.test.ts +1 -1
  246. package/src/__tests__/logdrains.test.ts +1 -3
  247. package/src/__tests__/rollingrelease.test.ts +2 -1
  248. package/src/__tests__/security.test.ts +11 -1
  249. package/src/funcs/{connectUpdateSharedConnectLinks.ts → connectUpdateStaticIps.ts} +16 -16
  250. package/src/funcs/environmentCreateSharedEnvVariable.ts +171 -0
  251. package/src/funcs/environmentDeleteSharedEnvVariable.ts +171 -0
  252. package/src/funcs/environmentGetSharedEnvVar.ts +177 -0
  253. package/src/funcs/environmentListSharedEnvVariable.ts +177 -0
  254. package/src/funcs/environmentUnlinkSharedEnvVariable.ts +181 -0
  255. package/src/funcs/environmentUpdateSharedEnvVariable.ts +171 -0
  256. package/src/funcs/integrationsCreateIntegrationStoreDirect.ts +13 -2
  257. package/src/lib/config.ts +3 -3
  258. package/src/mcp-server/mcp-server.ts +1 -1
  259. package/src/mcp-server/server.ts +20 -8
  260. package/src/mcp-server/tools/connectUpdateStaticIps.ts +37 -0
  261. package/src/mcp-server/tools/environmentCreateSharedEnvVariable.ts +39 -0
  262. package/src/mcp-server/tools/environmentDeleteSharedEnvVariable.ts +39 -0
  263. package/src/mcp-server/tools/environmentGetSharedEnvVar.ts +38 -0
  264. package/src/mcp-server/tools/environmentListSharedEnvVariable.ts +39 -0
  265. package/src/mcp-server/tools/environmentUnlinkSharedEnvVariable.ts +39 -0
  266. package/src/mcp-server/tools/environmentUpdateSharedEnvVariable.ts +39 -0
  267. package/src/models/buydomainsop.ts +2 -2
  268. package/src/models/buysingledomainop.ts +2 -2
  269. package/src/models/canceldeploymentop.ts +1 -0
  270. package/src/models/createdeploymentop.ts +2 -0
  271. package/src/models/createdrainop.ts +1 -0
  272. package/src/models/createintegrationstoredirectop.ts +605 -604
  273. package/src/models/createprojectenvop.ts +86 -66
  274. package/src/models/createprojectop.ts +2 -0
  275. package/src/models/createsharedenvvariableop.ts +1298 -0
  276. package/src/models/deletesharedenvvariableop.ts +608 -0
  277. package/src/models/getalllogdrainsop.ts +2 -0
  278. package/src/models/getconfigurablelogdrainop.ts +1 -0
  279. package/src/models/getconfigurationproductsop.ts +802 -802
  280. package/src/models/getcontactinfoschemaop.ts +1 -1
  281. package/src/models/getdeploymentop.ts +1 -0
  282. package/src/models/getdeploymentsop.ts +1 -0
  283. package/src/models/getdomainauthcodeop.ts +2 -2
  284. package/src/models/getdomainpriceop.ts +1 -1
  285. package/src/models/getdomaintransferinop.ts +1 -1
  286. package/src/models/getdrainop.ts +1 -0
  287. package/src/models/getdrainsop.ts +1 -0
  288. package/src/models/getinvoiceop.ts +1 -0
  289. package/src/models/getorderop.ts +1 -1
  290. package/src/models/getprojectsop.ts +1 -0
  291. package/src/models/getsharedenvvarop.ts +336 -0
  292. package/src/models/gettldpriceop.ts +1 -1
  293. package/src/models/getwebhooksop.ts +1 -0
  294. package/src/models/listsharedenvvariableop.ts +458 -0
  295. package/src/models/renewdomainop.ts +2 -2
  296. package/src/models/transferindomainop.ts +2 -2
  297. package/src/models/unlinksharedenvvariableop.ts +152 -0
  298. package/src/models/updatedomainautorenewop.ts +2 -2
  299. package/src/models/updatedomainnameserversop.ts +2 -2
  300. package/src/models/updatedrainop.ts +1 -0
  301. package/src/models/updateinstallationop.ts +67 -11
  302. package/src/models/updateprojectdatacacheop.ts +1 -0
  303. package/src/models/updateprojectop.ts +2 -0
  304. package/src/models/updatesharedenvvariableop.ts +1105 -0
  305. package/src/models/updatestaticipsop.ts +530 -0
  306. package/src/sdk/connect.ts +10 -10
  307. package/src/sdk/environment.ts +132 -0
  308. package/src/sdk/sdk.ts +9 -3
  309. package/src/sdk/staticips.ts +30 -0
  310. package/vercel-spec.json +1623 -121
  311. package/esm/funcs/connectUpdateSharedConnectLinks.d.ts +0 -17
  312. package/esm/funcs/connectUpdateSharedConnectLinks.d.ts.map +0 -1
  313. package/esm/funcs/connectUpdateSharedConnectLinks.js.map +0 -1
  314. package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.d.ts +0 -7
  315. package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.d.ts.map +0 -1
  316. package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.js +0 -28
  317. package/esm/mcp-server/tools/connectUpdateSharedConnectLinks.js.map +0 -1
  318. package/esm/models/updatesharedconnectlinksop.d.ts +0 -182
  319. package/esm/models/updatesharedconnectlinksop.d.ts.map +0 -1
  320. package/esm/models/updatesharedconnectlinksop.js +0 -179
  321. package/esm/models/updatesharedconnectlinksop.js.map +0 -1
  322. package/src/mcp-server/tools/connectUpdateSharedConnectLinks.ts +0 -38
  323. package/src/models/updatesharedconnectlinksop.ts +0 -402
@@ -114,6 +114,7 @@ export declare const CreateIntegrationStoreDirectFramework: {
114
114
  readonly Express: "express";
115
115
  readonly H3: "h3";
116
116
  readonly Nestjs: "nestjs";
117
+ readonly Fastify: "fastify";
117
118
  readonly Xmcp: "xmcp";
118
119
  };
119
120
  export type CreateIntegrationStoreDirectFramework = ClosedEnum<typeof CreateIntegrationStoreDirectFramework>;
@@ -217,9 +218,9 @@ export declare const CreateIntegrationStoreDirectIntegrationsType: {
217
218
  readonly Object: "object";
218
219
  };
219
220
  export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<typeof CreateIntegrationStoreDirectIntegrationsType>;
220
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558 = {};
221
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684 = {};
221
222
  export type CreateIntegrationStoreDirectPropertiesValue = {
222
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558;
223
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684;
223
224
  };
224
225
  export declare const CreateIntegrationStoreDirectDisabled3: {
225
226
  readonly Update: "update";
@@ -252,17 +253,17 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
252
253
  readonly Domain: "domain";
253
254
  };
254
255
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl>;
255
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558 = {};
256
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684 = {};
256
257
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength = {
257
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558;
258
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684;
258
259
  };
259
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558 = {};
260
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684 = {};
260
261
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength = {
261
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558;
262
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684;
262
263
  };
263
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558 = {};
264
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684 = {};
264
265
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern = {
265
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558;
266
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684;
266
267
  };
267
268
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3: {
268
269
  readonly Update: "update";
@@ -323,9 +324,9 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
323
324
  readonly VercelRegion: "vercel-region";
324
325
  };
325
326
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl>;
326
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558 = {};
327
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684 = {};
327
328
  export type CreateIntegrationStoreDirectUiOptionsValue = {
328
- atBRANDAt8558: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558;
329
+ atBRANDAt8684: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684;
329
330
  };
330
331
  export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003: {
331
332
  readonly Update: "update";
@@ -350,9 +351,9 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
350
351
  disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 | undefined;
351
352
  hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2002 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse2003 | undefined;
352
353
  };
353
- export type UiOptionsAtBRANDAt8558 = {};
354
+ export type UiOptionsAtBRANDAt8684 = {};
354
355
  export type CreateIntegrationStoreDirectUiOptions2 = {
355
- atBRANDAt8558: UiOptionsAtBRANDAt8558;
356
+ atBRANDAt8684: UiOptionsAtBRANDAt8684;
356
357
  };
357
358
  export declare const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3: {
358
359
  readonly Update: "update";
@@ -379,17 +380,17 @@ export type CreateIntegrationStoreDirectUiOptions1 = {
379
380
  hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3 | undefined;
380
381
  };
381
382
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions = CreateIntegrationStoreDirectUiOptions1 | CreateIntegrationStoreDirectUiOptions2 | CreateIntegrationStoreDirectUiOptions3;
382
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558 = {};
383
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684 = {};
383
384
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength = {
384
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558;
385
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684;
385
386
  };
386
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558 = {};
387
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684 = {};
387
388
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength = {
388
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558;
389
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684;
389
390
  };
390
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558 = {};
391
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684 = {};
391
392
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern = {
392
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558;
393
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684;
393
394
  };
394
395
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3: {
395
396
  readonly Update: "update";
@@ -451,17 +452,17 @@ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse2
451
452
  readonly String: "string";
452
453
  };
453
454
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type>;
454
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558 = {};
455
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684 = {};
455
456
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength = {
456
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558;
457
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684;
457
458
  };
458
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558 = {};
459
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684 = {};
459
460
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength = {
460
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558;
461
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684;
461
462
  };
462
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558 = {};
463
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684 = {};
463
464
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern = {
464
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558;
465
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684;
465
466
  };
466
467
  export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
467
468
  type: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type;
@@ -584,17 +585,17 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
584
585
  disabled?: CreateIntegrationStoreDirectDisabledIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectDisabledIntegrationsResponse3 | undefined;
585
586
  hidden?: CreateIntegrationStoreDirectHiddenIntegrationsResponse2 | boolean | CreateIntegrationStoreDirectHiddenIntegrationsResponse3 | undefined;
586
587
  };
587
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558 = {};
588
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684 = {};
588
589
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
589
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558;
590
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684;
590
591
  };
591
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558 = {};
592
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684 = {};
592
593
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
593
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558;
594
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684;
594
595
  };
595
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558 = {};
596
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684 = {};
596
597
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
597
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558;
598
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684;
598
599
  };
599
600
  export declare const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3: {
600
601
  readonly Update: "update";
@@ -840,17 +841,17 @@ export declare const CreateIntegrationStoreDirectPropertiesUiControl: {
840
841
  readonly Input: "input";
841
842
  };
842
843
  export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<typeof CreateIntegrationStoreDirectPropertiesUiControl>;
843
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558 = {};
844
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684 = {};
844
845
  export type CreateIntegrationStoreDirectPropertiesMaxLength = {
845
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558;
846
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684;
846
847
  };
847
- export type PropertiesAtBRANDAt8558 = {};
848
+ export type PropertiesAtBRANDAt8684 = {};
848
849
  export type CreateIntegrationStoreDirectPropertiesMinLength = {
849
- atBRANDAt8558: PropertiesAtBRANDAt8558;
850
+ atBRANDAt8684: PropertiesAtBRANDAt8684;
850
851
  };
851
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8558 = {};
852
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8684 = {};
852
853
  export type CreateIntegrationStoreDirectPropertiesPattern = {
853
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesAtBRANDAt8558;
854
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesAtBRANDAt8684;
854
855
  };
855
856
  export declare const CreateIntegrationStoreDirectUiReadOnly3: {
856
857
  readonly Update: "update";
@@ -1008,9 +1009,9 @@ export type Guides = {
1008
1009
  title: string;
1009
1010
  steps: Array<Steps>;
1010
1011
  };
1011
- export type AtBRANDAt8558 = {};
1012
+ export type AtBRANDAt8684 = {};
1012
1013
  export type CreateIntegrationStoreDirectValue = {
1013
- atBRANDAt8558: AtBRANDAt8558;
1014
+ atBRANDAt8684: AtBRANDAt8684;
1014
1015
  };
1015
1016
  export declare const Disabled3: {
1016
1017
  readonly Update: "update";
@@ -1279,6 +1280,7 @@ export declare namespace CreateIntegrationStoreDirectFramework$ {
1279
1280
  readonly Express: "express";
1280
1281
  readonly H3: "h3";
1281
1282
  readonly Nestjs: "nestjs";
1283
+ readonly Fastify: "fastify";
1282
1284
  readonly Xmcp: "xmcp";
1283
1285
  }>;
1284
1286
  /** @deprecated use `CreateIntegrationStoreDirectFramework$outboundSchema` instead. */
@@ -1336,6 +1338,7 @@ export declare namespace CreateIntegrationStoreDirectFramework$ {
1336
1338
  readonly Express: "express";
1337
1339
  readonly H3: "h3";
1338
1340
  readonly Nestjs: "nestjs";
1341
+ readonly Fastify: "fastify";
1339
1342
  readonly Xmcp: "xmcp";
1340
1343
  }>;
1341
1344
  }
@@ -1744,30 +1747,30 @@ export declare namespace CreateIntegrationStoreDirectIntegrationsType$ {
1744
1747
  }>;
1745
1748
  }
1746
1749
  /** @internal */
1747
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558, z.ZodTypeDef, unknown>;
1750
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684, z.ZodTypeDef, unknown>;
1748
1751
  /** @internal */
1749
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound = {};
1752
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound = {};
1750
1753
  /** @internal */
1751
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558>;
1754
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684>;
1752
1755
  /**
1753
1756
  * @internal
1754
1757
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1755
1758
  */
1756
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$ {
1757
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema` instead. */
1758
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558, z.ZodTypeDef, unknown>;
1759
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema` instead. */
1760
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558>;
1761
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound` instead. */
1762
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound;
1759
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$ {
1760
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema` instead. */
1761
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684, z.ZodTypeDef, unknown>;
1762
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema` instead. */
1763
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684>;
1764
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound` instead. */
1765
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound;
1763
1766
  }
1764
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558): string;
1765
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558, SDKValidationError>;
1767
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684): string;
1768
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684, SDKValidationError>;
1766
1769
  /** @internal */
1767
1770
  export declare const CreateIntegrationStoreDirectPropertiesValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue, z.ZodTypeDef, unknown>;
1768
1771
  /** @internal */
1769
1772
  export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
1770
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound;
1773
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound;
1771
1774
  };
1772
1775
  /** @internal */
1773
1776
  export declare const CreateIntegrationStoreDirectPropertiesValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesValue>;
@@ -1970,30 +1973,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
1970
1973
  }>;
1971
1974
  }
1972
1975
  /** @internal */
1973
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558, z.ZodTypeDef, unknown>;
1976
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684, z.ZodTypeDef, unknown>;
1974
1977
  /** @internal */
1975
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound = {};
1978
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound = {};
1976
1979
  /** @internal */
1977
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558>;
1980
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684>;
1978
1981
  /**
1979
1982
  * @internal
1980
1983
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1981
1984
  */
1982
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$ {
1983
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema` instead. */
1984
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558, z.ZodTypeDef, unknown>;
1985
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema` instead. */
1986
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558>;
1987
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound` instead. */
1988
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound;
1985
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$ {
1986
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema` instead. */
1987
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684, z.ZodTypeDef, unknown>;
1988
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema` instead. */
1989
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684>;
1990
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound` instead. */
1991
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound;
1989
1992
  }
1990
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558): string;
1991
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558, SDKValidationError>;
1993
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684): string;
1994
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684, SDKValidationError>;
1992
1995
  /** @internal */
1993
1996
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, z.ZodTypeDef, unknown>;
1994
1997
  /** @internal */
1995
1998
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound = {
1996
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound;
1999
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound;
1997
2000
  };
1998
2001
  /** @internal */
1999
2002
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength>;
@@ -2012,30 +2015,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2012
2015
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength): string;
2013
2016
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength, SDKValidationError>;
2014
2017
  /** @internal */
2015
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558, z.ZodTypeDef, unknown>;
2018
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684, z.ZodTypeDef, unknown>;
2016
2019
  /** @internal */
2017
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound = {};
2020
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound = {};
2018
2021
  /** @internal */
2019
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558>;
2022
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684>;
2020
2023
  /**
2021
2024
  * @internal
2022
2025
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2023
2026
  */
2024
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$ {
2025
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema` instead. */
2026
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558, z.ZodTypeDef, unknown>;
2027
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema` instead. */
2028
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558>;
2029
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound` instead. */
2030
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound;
2027
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$ {
2028
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema` instead. */
2029
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684, z.ZodTypeDef, unknown>;
2030
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema` instead. */
2031
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684>;
2032
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound` instead. */
2033
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound;
2031
2034
  }
2032
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558): string;
2033
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558, SDKValidationError>;
2035
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684): string;
2036
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684, SDKValidationError>;
2034
2037
  /** @internal */
2035
2038
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, z.ZodTypeDef, unknown>;
2036
2039
  /** @internal */
2037
2040
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound = {
2038
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound;
2041
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound;
2039
2042
  };
2040
2043
  /** @internal */
2041
2044
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength>;
@@ -2054,30 +2057,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2054
2057
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength): string;
2055
2058
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200MinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength, SDKValidationError>;
2056
2059
  /** @internal */
2057
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558, z.ZodTypeDef, unknown>;
2060
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684, z.ZodTypeDef, unknown>;
2058
2061
  /** @internal */
2059
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound = {};
2062
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound = {};
2060
2063
  /** @internal */
2061
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558>;
2064
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684>;
2062
2065
  /**
2063
2066
  * @internal
2064
2067
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2065
2068
  */
2066
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$ {
2067
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema` instead. */
2068
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558, z.ZodTypeDef, unknown>;
2069
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema` instead. */
2070
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558>;
2071
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound` instead. */
2072
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound;
2069
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$ {
2070
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema` instead. */
2071
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684, z.ZodTypeDef, unknown>;
2072
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema` instead. */
2073
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684>;
2074
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound` instead. */
2075
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound;
2073
2076
  }
2074
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558): string;
2075
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558, SDKValidationError>;
2077
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684): string;
2078
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684, SDKValidationError>;
2076
2079
  /** @internal */
2077
2080
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern, z.ZodTypeDef, unknown>;
2078
2081
  /** @internal */
2079
2082
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound = {
2080
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound;
2083
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound;
2081
2084
  };
2082
2085
  /** @internal */
2083
2086
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern>;
@@ -2418,30 +2421,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2418
2421
  }>;
2419
2422
  }
2420
2423
  /** @internal */
2421
- export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558, z.ZodTypeDef, unknown>;
2424
+ export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684, z.ZodTypeDef, unknown>;
2422
2425
  /** @internal */
2423
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound = {};
2426
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound = {};
2424
2427
  /** @internal */
2425
- export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558>;
2428
+ export declare const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684>;
2426
2429
  /**
2427
2430
  * @internal
2428
2431
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2429
2432
  */
2430
- export declare namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$ {
2431
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema` instead. */
2432
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558, z.ZodTypeDef, unknown>;
2433
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema` instead. */
2434
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558>;
2435
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound` instead. */
2436
- type Outbound = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound;
2433
+ export declare namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$ {
2434
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema` instead. */
2435
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684, z.ZodTypeDef, unknown>;
2436
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema` instead. */
2437
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684>;
2438
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound` instead. */
2439
+ type Outbound = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound;
2437
2440
  }
2438
- export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8558ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt8558: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558): string;
2439
- export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558, SDKValidationError>;
2441
+ export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8684ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt8684: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684): string;
2442
+ export declare function createIntegrationStoreDirectUiOptionsAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684, SDKValidationError>;
2440
2443
  /** @internal */
2441
2444
  export declare const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown>;
2442
2445
  /** @internal */
2443
2446
  export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
2444
- "__@BRAND@8558": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound;
2447
+ "__@BRAND@8684": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound;
2445
2448
  };
2446
2449
  /** @internal */
2447
2450
  export declare const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptionsValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptionsValue>;
@@ -2608,30 +2611,30 @@ export declare namespace CreateIntegrationStoreDirectUiOptions3$ {
2608
2611
  export declare function createIntegrationStoreDirectUiOptions3ToJSON(createIntegrationStoreDirectUiOptions3: CreateIntegrationStoreDirectUiOptions3): string;
2609
2612
  export declare function createIntegrationStoreDirectUiOptions3FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectUiOptions3, SDKValidationError>;
2610
2613
  /** @internal */
2611
- export declare const UiOptionsAtBRANDAt8558$inboundSchema: z.ZodType<UiOptionsAtBRANDAt8558, z.ZodTypeDef, unknown>;
2614
+ export declare const UiOptionsAtBRANDAt8684$inboundSchema: z.ZodType<UiOptionsAtBRANDAt8684, z.ZodTypeDef, unknown>;
2612
2615
  /** @internal */
2613
- export type UiOptionsAtBRANDAt8558$Outbound = {};
2616
+ export type UiOptionsAtBRANDAt8684$Outbound = {};
2614
2617
  /** @internal */
2615
- export declare const UiOptionsAtBRANDAt8558$outboundSchema: z.ZodType<UiOptionsAtBRANDAt8558$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt8558>;
2618
+ export declare const UiOptionsAtBRANDAt8684$outboundSchema: z.ZodType<UiOptionsAtBRANDAt8684$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt8684>;
2616
2619
  /**
2617
2620
  * @internal
2618
2621
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2619
2622
  */
2620
- export declare namespace UiOptionsAtBRANDAt8558$ {
2621
- /** @deprecated use `UiOptionsAtBRANDAt8558$inboundSchema` instead. */
2622
- const inboundSchema: z.ZodType<UiOptionsAtBRANDAt8558, z.ZodTypeDef, unknown>;
2623
- /** @deprecated use `UiOptionsAtBRANDAt8558$outboundSchema` instead. */
2624
- const outboundSchema: z.ZodType<UiOptionsAtBRANDAt8558$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt8558>;
2625
- /** @deprecated use `UiOptionsAtBRANDAt8558$Outbound` instead. */
2626
- type Outbound = UiOptionsAtBRANDAt8558$Outbound;
2623
+ export declare namespace UiOptionsAtBRANDAt8684$ {
2624
+ /** @deprecated use `UiOptionsAtBRANDAt8684$inboundSchema` instead. */
2625
+ const inboundSchema: z.ZodType<UiOptionsAtBRANDAt8684, z.ZodTypeDef, unknown>;
2626
+ /** @deprecated use `UiOptionsAtBRANDAt8684$outboundSchema` instead. */
2627
+ const outboundSchema: z.ZodType<UiOptionsAtBRANDAt8684$Outbound, z.ZodTypeDef, UiOptionsAtBRANDAt8684>;
2628
+ /** @deprecated use `UiOptionsAtBRANDAt8684$Outbound` instead. */
2629
+ type Outbound = UiOptionsAtBRANDAt8684$Outbound;
2627
2630
  }
2628
- export declare function uiOptionsAtBRANDAt8558ToJSON(uiOptionsAtBRANDAt8558: UiOptionsAtBRANDAt8558): string;
2629
- export declare function uiOptionsAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt8558, SDKValidationError>;
2631
+ export declare function uiOptionsAtBRANDAt8684ToJSON(uiOptionsAtBRANDAt8684: UiOptionsAtBRANDAt8684): string;
2632
+ export declare function uiOptionsAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<UiOptionsAtBRANDAt8684, SDKValidationError>;
2630
2633
  /** @internal */
2631
2634
  export declare const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2, z.ZodTypeDef, unknown>;
2632
2635
  /** @internal */
2633
2636
  export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
2634
- "__@BRAND@8558": UiOptionsAtBRANDAt8558$Outbound;
2637
+ "__@BRAND@8684": UiOptionsAtBRANDAt8684$Outbound;
2635
2638
  };
2636
2639
  /** @internal */
2637
2640
  export declare const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<CreateIntegrationStoreDirectUiOptions2$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectUiOptions2>;
@@ -2819,30 +2822,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2819
2822
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions: CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions): string;
2820
2823
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions, SDKValidationError>;
2821
2824
  /** @internal */
2822
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558, z.ZodTypeDef, unknown>;
2825
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684, z.ZodTypeDef, unknown>;
2823
2826
  /** @internal */
2824
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound = {};
2827
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound = {};
2825
2828
  /** @internal */
2826
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558>;
2829
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684>;
2827
2830
  /**
2828
2831
  * @internal
2829
2832
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2830
2833
  */
2831
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$ {
2832
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema` instead. */
2833
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558, z.ZodTypeDef, unknown>;
2834
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema` instead. */
2835
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558>;
2836
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound` instead. */
2837
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound;
2834
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$ {
2835
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema` instead. */
2836
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684, z.ZodTypeDef, unknown>;
2837
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema` instead. */
2838
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684>;
2839
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound` instead. */
2840
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound;
2838
2841
  }
2839
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558): string;
2840
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558, SDKValidationError>;
2842
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684): string;
2843
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684, SDKValidationError>;
2841
2844
  /** @internal */
2842
2845
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, z.ZodTypeDef, unknown>;
2843
2846
  /** @internal */
2844
2847
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound = {
2845
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound;
2848
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound;
2846
2849
  };
2847
2850
  /** @internal */
2848
2851
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength>;
@@ -2861,30 +2864,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2861
2864
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength): string;
2862
2865
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength, SDKValidationError>;
2863
2866
  /** @internal */
2864
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558, z.ZodTypeDef, unknown>;
2867
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684, z.ZodTypeDef, unknown>;
2865
2868
  /** @internal */
2866
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound = {};
2869
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound = {};
2867
2870
  /** @internal */
2868
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558>;
2871
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684>;
2869
2872
  /**
2870
2873
  * @internal
2871
2874
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2872
2875
  */
2873
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$ {
2874
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema` instead. */
2875
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558, z.ZodTypeDef, unknown>;
2876
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema` instead. */
2877
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558>;
2878
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound` instead. */
2879
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound;
2876
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$ {
2877
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema` instead. */
2878
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684, z.ZodTypeDef, unknown>;
2879
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema` instead. */
2880
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684>;
2881
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound` instead. */
2882
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound;
2880
2883
  }
2881
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558): string;
2882
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558, SDKValidationError>;
2884
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684): string;
2885
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684, SDKValidationError>;
2883
2886
  /** @internal */
2884
2887
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, z.ZodTypeDef, unknown>;
2885
2888
  /** @internal */
2886
2889
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound = {
2887
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound;
2890
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound;
2888
2891
  };
2889
2892
  /** @internal */
2890
2893
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength>;
@@ -2903,30 +2906,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
2903
2906
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength): string;
2904
2907
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength, SDKValidationError>;
2905
2908
  /** @internal */
2906
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558, z.ZodTypeDef, unknown>;
2909
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684, z.ZodTypeDef, unknown>;
2907
2910
  /** @internal */
2908
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound = {};
2911
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound = {};
2909
2912
  /** @internal */
2910
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558>;
2913
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684>;
2911
2914
  /**
2912
2915
  * @internal
2913
2916
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2914
2917
  */
2915
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$ {
2916
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema` instead. */
2917
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558, z.ZodTypeDef, unknown>;
2918
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema` instead. */
2919
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558>;
2920
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound` instead. */
2921
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound;
2918
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$ {
2919
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema` instead. */
2920
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684, z.ZodTypeDef, unknown>;
2921
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema` instead. */
2922
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684>;
2923
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound` instead. */
2924
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound;
2922
2925
  }
2923
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558): string;
2924
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558, SDKValidationError>;
2926
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684): string;
2927
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684, SDKValidationError>;
2925
2928
  /** @internal */
2926
2929
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern, z.ZodTypeDef, unknown>;
2927
2930
  /** @internal */
2928
2931
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound = {
2929
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound;
2932
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound;
2930
2933
  };
2931
2934
  /** @internal */
2932
2935
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern>;
@@ -3268,30 +3271,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
3268
3271
  }>;
3269
3272
  }
3270
3273
  /** @internal */
3271
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558, z.ZodTypeDef, unknown>;
3274
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684, z.ZodTypeDef, unknown>;
3272
3275
  /** @internal */
3273
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound = {};
3276
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound = {};
3274
3277
  /** @internal */
3275
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558>;
3278
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684>;
3276
3279
  /**
3277
3280
  * @internal
3278
3281
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3279
3282
  */
3280
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$ {
3281
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema` instead. */
3282
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558, z.ZodTypeDef, unknown>;
3283
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema` instead. */
3284
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558>;
3285
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound` instead. */
3286
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound;
3283
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$ {
3284
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema` instead. */
3285
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684, z.ZodTypeDef, unknown>;
3286
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema` instead. */
3287
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684>;
3288
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound` instead. */
3289
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound;
3287
3290
  }
3288
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558): string;
3289
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558, SDKValidationError>;
3291
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684): string;
3292
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684, SDKValidationError>;
3290
3293
  /** @internal */
3291
3294
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength, z.ZodTypeDef, unknown>;
3292
3295
  /** @internal */
3293
3296
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound = {
3294
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound;
3297
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound;
3295
3298
  };
3296
3299
  /** @internal */
3297
3300
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength>;
@@ -3310,30 +3313,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
3310
3313
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength): string;
3311
3314
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength, SDKValidationError>;
3312
3315
  /** @internal */
3313
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558, z.ZodTypeDef, unknown>;
3316
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684, z.ZodTypeDef, unknown>;
3314
3317
  /** @internal */
3315
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound = {};
3318
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound = {};
3316
3319
  /** @internal */
3317
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558>;
3320
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684>;
3318
3321
  /**
3319
3322
  * @internal
3320
3323
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3321
3324
  */
3322
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$ {
3323
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema` instead. */
3324
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558, z.ZodTypeDef, unknown>;
3325
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema` instead. */
3326
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558>;
3327
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound` instead. */
3328
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound;
3325
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$ {
3326
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema` instead. */
3327
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684, z.ZodTypeDef, unknown>;
3328
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema` instead. */
3329
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684>;
3330
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound` instead. */
3331
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound;
3329
3332
  }
3330
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558): string;
3331
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558, SDKValidationError>;
3333
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684): string;
3334
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684, SDKValidationError>;
3332
3335
  /** @internal */
3333
3336
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength, z.ZodTypeDef, unknown>;
3334
3337
  /** @internal */
3335
3338
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound = {
3336
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound;
3339
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound;
3337
3340
  };
3338
3341
  /** @internal */
3339
3342
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength>;
@@ -3352,30 +3355,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsRespo
3352
3355
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength): string;
3353
3356
  export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength, SDKValidationError>;
3354
3357
  /** @internal */
3355
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558, z.ZodTypeDef, unknown>;
3358
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684, z.ZodTypeDef, unknown>;
3356
3359
  /** @internal */
3357
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound = {};
3360
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound = {};
3358
3361
  /** @internal */
3359
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558>;
3362
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684>;
3360
3363
  /**
3361
3364
  * @internal
3362
3365
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3363
3366
  */
3364
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$ {
3365
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema` instead. */
3366
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558, z.ZodTypeDef, unknown>;
3367
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema` instead. */
3368
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558>;
3369
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound` instead. */
3370
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound;
3367
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$ {
3368
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema` instead. */
3369
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684, z.ZodTypeDef, unknown>;
3370
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema` instead. */
3371
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684>;
3372
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound` instead. */
3373
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound;
3371
3374
  }
3372
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558): string;
3373
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558, SDKValidationError>;
3375
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684): string;
3376
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684, SDKValidationError>;
3374
3377
  /** @internal */
3375
3378
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern, z.ZodTypeDef, unknown>;
3376
3379
  /** @internal */
3377
3380
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound = {
3378
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound;
3381
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound;
3379
3382
  };
3380
3383
  /** @internal */
3381
3384
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern>;
@@ -4061,30 +4064,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesUiOptions$ {
4061
4064
  export declare function createIntegrationStoreDirectPropertiesUiOptionsToJSON(createIntegrationStoreDirectPropertiesUiOptions: CreateIntegrationStoreDirectPropertiesUiOptions): string;
4062
4065
  export declare function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesUiOptions, SDKValidationError>;
4063
4066
  /** @internal */
4064
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558, z.ZodTypeDef, unknown>;
4067
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684, z.ZodTypeDef, unknown>;
4065
4068
  /** @internal */
4066
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound = {};
4069
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound = {};
4067
4070
  /** @internal */
4068
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558>;
4071
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684>;
4069
4072
  /**
4070
4073
  * @internal
4071
4074
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4072
4075
  */
4073
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$ {
4074
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema` instead. */
4075
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558, z.ZodTypeDef, unknown>;
4076
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema` instead. */
4077
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558>;
4078
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound` instead. */
4079
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound;
4076
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$ {
4077
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema` instead. */
4078
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684, z.ZodTypeDef, unknown>;
4079
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema` instead. */
4080
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684>;
4081
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound` instead. */
4082
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound;
4080
4083
  }
4081
- export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558): string;
4082
- export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558, SDKValidationError>;
4084
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684): string;
4085
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684, SDKValidationError>;
4083
4086
  /** @internal */
4084
4087
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, z.ZodTypeDef, unknown>;
4085
4088
  /** @internal */
4086
4089
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound = {
4087
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound;
4090
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound;
4088
4091
  };
4089
4092
  /** @internal */
4090
4093
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength>;
@@ -4103,30 +4106,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsMaxLe
4103
4106
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMaxLength: CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength): string;
4104
4107
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength, SDKValidationError>;
4105
4108
  /** @internal */
4106
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558, z.ZodTypeDef, unknown>;
4109
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684, z.ZodTypeDef, unknown>;
4107
4110
  /** @internal */
4108
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound = {};
4111
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound = {};
4109
4112
  /** @internal */
4110
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558>;
4113
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684>;
4111
4114
  /**
4112
4115
  * @internal
4113
4116
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4114
4117
  */
4115
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$ {
4116
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema` instead. */
4117
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558, z.ZodTypeDef, unknown>;
4118
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema` instead. */
4119
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558>;
4120
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound` instead. */
4121
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound;
4118
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$ {
4119
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema` instead. */
4120
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684, z.ZodTypeDef, unknown>;
4121
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema` instead. */
4122
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684>;
4123
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound` instead. */
4124
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound;
4122
4125
  }
4123
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558): string;
4124
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558, SDKValidationError>;
4126
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684): string;
4127
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684, SDKValidationError>;
4125
4128
  /** @internal */
4126
4129
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, z.ZodTypeDef, unknown>;
4127
4130
  /** @internal */
4128
4131
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound = {
4129
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound;
4132
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound;
4130
4133
  };
4131
4134
  /** @internal */
4132
4135
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength>;
@@ -4145,30 +4148,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsMinLe
4145
4148
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthToJSON(createIntegrationStoreDirectPropertiesIntegrationsMinLength: CreateIntegrationStoreDirectPropertiesIntegrationsMinLength): string;
4146
4149
  export declare function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsMinLength, SDKValidationError>;
4147
4150
  /** @internal */
4148
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558, z.ZodTypeDef, unknown>;
4151
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684, z.ZodTypeDef, unknown>;
4149
4152
  /** @internal */
4150
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound = {};
4153
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound = {};
4151
4154
  /** @internal */
4152
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558>;
4155
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684>;
4153
4156
  /**
4154
4157
  * @internal
4155
4158
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4156
4159
  */
4157
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$ {
4158
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema` instead. */
4159
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558, z.ZodTypeDef, unknown>;
4160
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema` instead. */
4161
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558>;
4162
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound` instead. */
4163
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound;
4160
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$ {
4161
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema` instead. */
4162
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684, z.ZodTypeDef, unknown>;
4163
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema` instead. */
4164
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684>;
4165
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound` instead. */
4166
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound;
4164
4167
  }
4165
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558): string;
4166
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558, SDKValidationError>;
4168
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684): string;
4169
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684, SDKValidationError>;
4167
4170
  /** @internal */
4168
4171
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern, z.ZodTypeDef, unknown>;
4169
4172
  /** @internal */
4170
4173
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound = {
4171
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound;
4174
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound;
4172
4175
  };
4173
4176
  /** @internal */
4174
4177
  export declare const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsPattern>;
@@ -5516,30 +5519,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesUiControl$ {
5516
5519
  }>;
5517
5520
  }
5518
5521
  /** @internal */
5519
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558, z.ZodTypeDef, unknown>;
5522
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684, z.ZodTypeDef, unknown>;
5520
5523
  /** @internal */
5521
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound = {};
5524
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound = {};
5522
5525
  /** @internal */
5523
- export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558>;
5526
+ export declare const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684>;
5524
5527
  /**
5525
5528
  * @internal
5526
5529
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5527
5530
  */
5528
- export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$ {
5529
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema` instead. */
5530
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558, z.ZodTypeDef, unknown>;
5531
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema` instead. */
5532
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558>;
5533
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound` instead. */
5534
- type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound;
5531
+ export declare namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$ {
5532
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema` instead. */
5533
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684, z.ZodTypeDef, unknown>;
5534
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema` instead. */
5535
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684>;
5536
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound` instead. */
5537
+ type Outbound = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound;
5535
5538
  }
5536
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558): string;
5537
- export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558, SDKValidationError>;
5539
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684: CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684): string;
5540
+ export declare function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684, SDKValidationError>;
5538
5541
  /** @internal */
5539
5542
  export declare const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength, z.ZodTypeDef, unknown>;
5540
5543
  /** @internal */
5541
5544
  export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
5542
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound;
5545
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound;
5543
5546
  };
5544
5547
  /** @internal */
5545
5548
  export declare const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMaxLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMaxLength>;
@@ -5558,30 +5561,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesMaxLength$ {
5558
5561
  export declare function createIntegrationStoreDirectPropertiesMaxLengthToJSON(createIntegrationStoreDirectPropertiesMaxLength: CreateIntegrationStoreDirectPropertiesMaxLength): string;
5559
5562
  export declare function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMaxLength, SDKValidationError>;
5560
5563
  /** @internal */
5561
- export declare const PropertiesAtBRANDAt8558$inboundSchema: z.ZodType<PropertiesAtBRANDAt8558, z.ZodTypeDef, unknown>;
5564
+ export declare const PropertiesAtBRANDAt8684$inboundSchema: z.ZodType<PropertiesAtBRANDAt8684, z.ZodTypeDef, unknown>;
5562
5565
  /** @internal */
5563
- export type PropertiesAtBRANDAt8558$Outbound = {};
5566
+ export type PropertiesAtBRANDAt8684$Outbound = {};
5564
5567
  /** @internal */
5565
- export declare const PropertiesAtBRANDAt8558$outboundSchema: z.ZodType<PropertiesAtBRANDAt8558$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt8558>;
5568
+ export declare const PropertiesAtBRANDAt8684$outboundSchema: z.ZodType<PropertiesAtBRANDAt8684$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt8684>;
5566
5569
  /**
5567
5570
  * @internal
5568
5571
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5569
5572
  */
5570
- export declare namespace PropertiesAtBRANDAt8558$ {
5571
- /** @deprecated use `PropertiesAtBRANDAt8558$inboundSchema` instead. */
5572
- const inboundSchema: z.ZodType<PropertiesAtBRANDAt8558, z.ZodTypeDef, unknown>;
5573
- /** @deprecated use `PropertiesAtBRANDAt8558$outboundSchema` instead. */
5574
- const outboundSchema: z.ZodType<PropertiesAtBRANDAt8558$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt8558>;
5575
- /** @deprecated use `PropertiesAtBRANDAt8558$Outbound` instead. */
5576
- type Outbound = PropertiesAtBRANDAt8558$Outbound;
5573
+ export declare namespace PropertiesAtBRANDAt8684$ {
5574
+ /** @deprecated use `PropertiesAtBRANDAt8684$inboundSchema` instead. */
5575
+ const inboundSchema: z.ZodType<PropertiesAtBRANDAt8684, z.ZodTypeDef, unknown>;
5576
+ /** @deprecated use `PropertiesAtBRANDAt8684$outboundSchema` instead. */
5577
+ const outboundSchema: z.ZodType<PropertiesAtBRANDAt8684$Outbound, z.ZodTypeDef, PropertiesAtBRANDAt8684>;
5578
+ /** @deprecated use `PropertiesAtBRANDAt8684$Outbound` instead. */
5579
+ type Outbound = PropertiesAtBRANDAt8684$Outbound;
5577
5580
  }
5578
- export declare function propertiesAtBRANDAt8558ToJSON(propertiesAtBRANDAt8558: PropertiesAtBRANDAt8558): string;
5579
- export declare function propertiesAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt8558, SDKValidationError>;
5581
+ export declare function propertiesAtBRANDAt8684ToJSON(propertiesAtBRANDAt8684: PropertiesAtBRANDAt8684): string;
5582
+ export declare function propertiesAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<PropertiesAtBRANDAt8684, SDKValidationError>;
5580
5583
  /** @internal */
5581
5584
  export declare const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength, z.ZodTypeDef, unknown>;
5582
5585
  /** @internal */
5583
5586
  export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
5584
- "__@BRAND@8558": PropertiesAtBRANDAt8558$Outbound;
5587
+ "__@BRAND@8684": PropertiesAtBRANDAt8684$Outbound;
5585
5588
  };
5586
5589
  /** @internal */
5587
5590
  export declare const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesMinLength$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesMinLength>;
@@ -5600,30 +5603,30 @@ export declare namespace CreateIntegrationStoreDirectPropertiesMinLength$ {
5600
5603
  export declare function createIntegrationStoreDirectPropertiesMinLengthToJSON(createIntegrationStoreDirectPropertiesMinLength: CreateIntegrationStoreDirectPropertiesMinLength): string;
5601
5604
  export declare function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesMinLength, SDKValidationError>;
5602
5605
  /** @internal */
5603
- export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8558, z.ZodTypeDef, unknown>;
5606
+ export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8684, z.ZodTypeDef, unknown>;
5604
5607
  /** @internal */
5605
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound = {};
5608
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound = {};
5606
5609
  /** @internal */
5607
- export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt8558>;
5610
+ export declare const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt8684>;
5608
5611
  /**
5609
5612
  * @internal
5610
5613
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5611
5614
  */
5612
- export declare namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$ {
5613
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema` instead. */
5614
- const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8558, z.ZodTypeDef, unknown>;
5615
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema` instead. */
5616
- const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt8558>;
5617
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound` instead. */
5618
- type Outbound = CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound;
5615
+ export declare namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$ {
5616
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema` instead. */
5617
+ const inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8684, z.ZodTypeDef, unknown>;
5618
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema` instead. */
5619
+ const outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesAtBRANDAt8684>;
5620
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound` instead. */
5621
+ type Outbound = CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound;
5619
5622
  }
5620
- export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt8558: CreateIntegrationStoreDirectPropertiesAtBRANDAt8558): string;
5621
- export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8558FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesAtBRANDAt8558, SDKValidationError>;
5623
+ export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt8684: CreateIntegrationStoreDirectPropertiesAtBRANDAt8684): string;
5624
+ export declare function createIntegrationStoreDirectPropertiesAtBRANDAt8684FromJSON(jsonString: string): SafeParseResult<CreateIntegrationStoreDirectPropertiesAtBRANDAt8684, SDKValidationError>;
5622
5625
  /** @internal */
5623
5626
  export declare const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern, z.ZodTypeDef, unknown>;
5624
5627
  /** @internal */
5625
5628
  export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
5626
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound;
5629
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound;
5627
5630
  };
5628
5631
  /** @internal */
5629
5632
  export declare const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema: z.ZodType<CreateIntegrationStoreDirectPropertiesPattern$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectPropertiesPattern>;
@@ -6271,30 +6274,30 @@ export declare namespace Guides$ {
6271
6274
  export declare function guidesToJSON(guides: Guides): string;
6272
6275
  export declare function guidesFromJSON(jsonString: string): SafeParseResult<Guides, SDKValidationError>;
6273
6276
  /** @internal */
6274
- export declare const AtBRANDAt8558$inboundSchema: z.ZodType<AtBRANDAt8558, z.ZodTypeDef, unknown>;
6277
+ export declare const AtBRANDAt8684$inboundSchema: z.ZodType<AtBRANDAt8684, z.ZodTypeDef, unknown>;
6275
6278
  /** @internal */
6276
- export type AtBRANDAt8558$Outbound = {};
6279
+ export type AtBRANDAt8684$Outbound = {};
6277
6280
  /** @internal */
6278
- export declare const AtBRANDAt8558$outboundSchema: z.ZodType<AtBRANDAt8558$Outbound, z.ZodTypeDef, AtBRANDAt8558>;
6281
+ export declare const AtBRANDAt8684$outboundSchema: z.ZodType<AtBRANDAt8684$Outbound, z.ZodTypeDef, AtBRANDAt8684>;
6279
6282
  /**
6280
6283
  * @internal
6281
6284
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6282
6285
  */
6283
- export declare namespace AtBRANDAt8558$ {
6284
- /** @deprecated use `AtBRANDAt8558$inboundSchema` instead. */
6285
- const inboundSchema: z.ZodType<AtBRANDAt8558, z.ZodTypeDef, unknown>;
6286
- /** @deprecated use `AtBRANDAt8558$outboundSchema` instead. */
6287
- const outboundSchema: z.ZodType<AtBRANDAt8558$Outbound, z.ZodTypeDef, AtBRANDAt8558>;
6288
- /** @deprecated use `AtBRANDAt8558$Outbound` instead. */
6289
- type Outbound = AtBRANDAt8558$Outbound;
6286
+ export declare namespace AtBRANDAt8684$ {
6287
+ /** @deprecated use `AtBRANDAt8684$inboundSchema` instead. */
6288
+ const inboundSchema: z.ZodType<AtBRANDAt8684, z.ZodTypeDef, unknown>;
6289
+ /** @deprecated use `AtBRANDAt8684$outboundSchema` instead. */
6290
+ const outboundSchema: z.ZodType<AtBRANDAt8684$Outbound, z.ZodTypeDef, AtBRANDAt8684>;
6291
+ /** @deprecated use `AtBRANDAt8684$Outbound` instead. */
6292
+ type Outbound = AtBRANDAt8684$Outbound;
6290
6293
  }
6291
- export declare function atBRANDAt8558ToJSON(atBRANDAt8558: AtBRANDAt8558): string;
6292
- export declare function atBRANDAt8558FromJSON(jsonString: string): SafeParseResult<AtBRANDAt8558, SDKValidationError>;
6294
+ export declare function atBRANDAt8684ToJSON(atBRANDAt8684: AtBRANDAt8684): string;
6295
+ export declare function atBRANDAt8684FromJSON(jsonString: string): SafeParseResult<AtBRANDAt8684, SDKValidationError>;
6293
6296
  /** @internal */
6294
6297
  export declare const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<CreateIntegrationStoreDirectValue, z.ZodTypeDef, unknown>;
6295
6298
  /** @internal */
6296
6299
  export type CreateIntegrationStoreDirectValue$Outbound = {
6297
- "__@BRAND@8558": AtBRANDAt8558$Outbound;
6300
+ "__@BRAND@8684": AtBRANDAt8684$Outbound;
6298
6301
  };
6299
6302
  /** @internal */
6300
6303
  export declare const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<CreateIntegrationStoreDirectValue$Outbound, z.ZodTypeDef, CreateIntegrationStoreDirectValue>;