@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
@@ -127,6 +127,7 @@ export const CreateIntegrationStoreDirectFramework = {
127
127
  Express: "express",
128
128
  H3: "h3",
129
129
  Nestjs: "nestjs",
130
+ Fastify: "fastify",
130
131
  Xmcp: "xmcp",
131
132
  } as const;
132
133
  export type CreateIntegrationStoreDirectFramework = ClosedEnum<
@@ -265,12 +266,12 @@ export type CreateIntegrationStoreDirectIntegrationsType = ClosedEnum<
265
266
  typeof CreateIntegrationStoreDirectIntegrationsType
266
267
  >;
267
268
 
268
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558 =
269
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684 =
269
270
  {};
270
271
 
271
272
  export type CreateIntegrationStoreDirectPropertiesValue = {
272
- atBRANDAt8558:
273
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558;
273
+ atBRANDAt8684:
274
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684;
274
275
  };
275
276
 
276
277
  export const CreateIntegrationStoreDirectDisabled3 = {
@@ -339,31 +340,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
339
340
  typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl
340
341
  >;
341
342
 
342
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558 =
343
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684 =
343
344
  {};
344
345
 
345
346
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength =
346
347
  {
347
- atBRANDAt8558:
348
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558;
348
+ atBRANDAt8684:
349
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684;
349
350
  };
350
351
 
351
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558 =
352
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684 =
352
353
  {};
353
354
 
354
355
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength =
355
356
  {
356
- atBRANDAt8558:
357
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558;
357
+ atBRANDAt8684:
358
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684;
358
359
  };
359
360
 
360
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558 =
361
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684 =
361
362
  {};
362
363
 
363
364
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern =
364
365
  {
365
- atBRANDAt8558:
366
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558;
366
+ atBRANDAt8684:
367
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684;
367
368
  };
368
369
 
369
370
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3 =
@@ -501,10 +502,10 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
501
502
  typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl
502
503
  >;
503
504
 
504
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558 = {};
505
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684 = {};
505
506
 
506
507
  export type CreateIntegrationStoreDirectUiOptionsValue = {
507
- atBRANDAt8558: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558;
508
+ atBRANDAt8684: CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684;
508
509
  };
509
510
 
510
511
  export const CreateIntegrationStoreDirectDisabledIntegrationsResponse2003 = {
@@ -555,10 +556,10 @@ export type CreateIntegrationStoreDirectUiOptions3 = {
555
556
  | undefined;
556
557
  };
557
558
 
558
- export type UiOptionsAtBRANDAt8558 = {};
559
+ export type UiOptionsAtBRANDAt8684 = {};
559
560
 
560
561
  export type CreateIntegrationStoreDirectUiOptions2 = {
561
- atBRANDAt8558: UiOptionsAtBRANDAt8558;
562
+ atBRANDAt8684: UiOptionsAtBRANDAt8684;
562
563
  };
563
564
 
564
565
  export const CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3 =
@@ -621,31 +622,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions
621
622
  | CreateIntegrationStoreDirectUiOptions2
622
623
  | CreateIntegrationStoreDirectUiOptions3;
623
624
 
624
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558 =
625
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684 =
625
626
  {};
626
627
 
627
628
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength =
628
629
  {
629
- atBRANDAt8558:
630
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558;
630
+ atBRANDAt8684:
631
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684;
631
632
  };
632
633
 
633
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558 =
634
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684 =
634
635
  {};
635
636
 
636
637
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength =
637
638
  {
638
- atBRANDAt8558:
639
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558;
639
+ atBRANDAt8684:
640
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684;
640
641
  };
641
642
 
642
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558 =
643
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684 =
643
644
  {};
644
645
 
645
646
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern =
646
647
  {
647
- atBRANDAt8558:
648
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558;
648
+ atBRANDAt8684:
649
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684;
649
650
  };
650
651
 
651
652
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3 =
@@ -788,31 +789,31 @@ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applica
788
789
  typeof CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type
789
790
  >;
790
791
 
791
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558 =
792
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684 =
792
793
  {};
793
794
 
794
795
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength =
795
796
  {
796
- atBRANDAt8558:
797
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558;
797
+ atBRANDAt8684:
798
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684;
798
799
  };
799
800
 
800
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558 =
801
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684 =
801
802
  {};
802
803
 
803
804
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength =
804
805
  {
805
- atBRANDAt8558:
806
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558;
806
+ atBRANDAt8684:
807
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684;
807
808
  };
808
809
 
809
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558 =
810
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684 =
810
811
  {};
811
812
 
812
813
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern =
813
814
  {
814
- atBRANDAt8558:
815
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558;
815
+ atBRANDAt8684:
816
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684;
816
817
  };
817
818
 
818
819
  export type CreateIntegrationStoreDirectPropertiesIntegrationsItems = {
@@ -1067,28 +1068,28 @@ export type CreateIntegrationStoreDirectPropertiesUiOptions = {
1067
1068
  | undefined;
1068
1069
  };
1069
1070
 
1070
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558 =
1071
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684 =
1071
1072
  {};
1072
1073
 
1073
1074
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength = {
1074
- atBRANDAt8558:
1075
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558;
1075
+ atBRANDAt8684:
1076
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684;
1076
1077
  };
1077
1078
 
1078
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558 =
1079
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684 =
1079
1080
  {};
1080
1081
 
1081
1082
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength = {
1082
- atBRANDAt8558:
1083
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558;
1083
+ atBRANDAt8684:
1084
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684;
1084
1085
  };
1085
1086
 
1086
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558 =
1087
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684 =
1087
1088
  {};
1088
1089
 
1089
1090
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern = {
1090
- atBRANDAt8558:
1091
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558;
1091
+ atBRANDAt8684:
1092
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684;
1092
1093
  };
1093
1094
 
1094
1095
  export const CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3 =
@@ -1591,24 +1592,24 @@ export type CreateIntegrationStoreDirectPropertiesUiControl = ClosedEnum<
1591
1592
  typeof CreateIntegrationStoreDirectPropertiesUiControl
1592
1593
  >;
1593
1594
 
1594
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558 =
1595
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684 =
1595
1596
  {};
1596
1597
 
1597
1598
  export type CreateIntegrationStoreDirectPropertiesMaxLength = {
1598
- atBRANDAt8558:
1599
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558;
1599
+ atBRANDAt8684:
1600
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684;
1600
1601
  };
1601
1602
 
1602
- export type PropertiesAtBRANDAt8558 = {};
1603
+ export type PropertiesAtBRANDAt8684 = {};
1603
1604
 
1604
1605
  export type CreateIntegrationStoreDirectPropertiesMinLength = {
1605
- atBRANDAt8558: PropertiesAtBRANDAt8558;
1606
+ atBRANDAt8684: PropertiesAtBRANDAt8684;
1606
1607
  };
1607
1608
 
1608
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8558 = {};
1609
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8684 = {};
1609
1610
 
1610
1611
  export type CreateIntegrationStoreDirectPropertiesPattern = {
1611
- atBRANDAt8558: CreateIntegrationStoreDirectPropertiesAtBRANDAt8558;
1612
+ atBRANDAt8684: CreateIntegrationStoreDirectPropertiesAtBRANDAt8684;
1612
1613
  };
1613
1614
 
1614
1615
  export const CreateIntegrationStoreDirectUiReadOnly3 = {
@@ -1849,10 +1850,10 @@ export type Guides = {
1849
1850
  steps: Array<Steps>;
1850
1851
  };
1851
1852
 
1852
- export type AtBRANDAt8558 = {};
1853
+ export type AtBRANDAt8684 = {};
1853
1854
 
1854
1855
  export type CreateIntegrationStoreDirectValue = {
1855
- atBRANDAt8558: AtBRANDAt8558;
1856
+ atBRANDAt8684: AtBRANDAt8684;
1856
1857
  };
1857
1858
 
1858
1859
  export const Disabled3 = {
@@ -3064,65 +3065,65 @@ export namespace CreateIntegrationStoreDirectIntegrationsType$ {
3064
3065
  }
3065
3066
 
3066
3067
  /** @internal */
3067
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema:
3068
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema:
3068
3069
  z.ZodType<
3069
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558,
3070
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684,
3070
3071
  z.ZodTypeDef,
3071
3072
  unknown
3072
3073
  > = z.object({});
3073
3074
 
3074
3075
  /** @internal */
3075
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound =
3076
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound =
3076
3077
  {};
3077
3078
 
3078
3079
  /** @internal */
3079
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema:
3080
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema:
3080
3081
  z.ZodType<
3081
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound,
3082
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound,
3082
3083
  z.ZodTypeDef,
3083
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558
3084
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684
3084
3085
  > = z.object({});
3085
3086
 
3086
3087
  /**
3087
3088
  * @internal
3088
3089
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3089
3090
  */
3090
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$ {
3091
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema` instead. */
3091
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$ {
3092
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema` instead. */
3092
3093
  export const inboundSchema =
3093
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema;
3094
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema` instead. */
3094
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema;
3095
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema` instead. */
3095
3096
  export const outboundSchema =
3096
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema;
3097
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound` instead. */
3097
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema;
3098
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound` instead. */
3098
3099
  export type Outbound =
3099
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound;
3100
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound;
3100
3101
  }
3101
3102
 
3102
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558ToJSON(
3103
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558:
3104
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558,
3103
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684ToJSON(
3104
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684:
3105
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684,
3105
3106
  ): string {
3106
3107
  return JSON.stringify(
3107
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema
3108
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema
3108
3109
  .parse(
3109
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558,
3110
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684,
3110
3111
  ),
3111
3112
  );
3112
3113
  }
3113
3114
 
3114
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558FromJSON(
3115
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684FromJSON(
3115
3116
  jsonString: string,
3116
3117
  ): SafeParseResult<
3117
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558,
3118
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684,
3118
3119
  SDKValidationError
3119
3120
  > {
3120
3121
  return safeParse(
3121
3122
  jsonString,
3122
3123
  (x) =>
3123
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema
3124
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema
3124
3125
  .parse(JSON.parse(x)),
3125
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558' from JSON`,
3126
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684' from JSON`,
3126
3127
  );
3127
3128
  }
3128
3129
 
@@ -3133,19 +3134,19 @@ export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema:
3133
3134
  z.ZodTypeDef,
3134
3135
  unknown
3135
3136
  > = z.object({
3136
- "__@BRAND@8558": z.lazy(() =>
3137
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema
3137
+ "__@BRAND@8684": z.lazy(() =>
3138
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema
3138
3139
  ),
3139
3140
  }).transform((v) => {
3140
3141
  return remap$(v, {
3141
- "__@BRAND@8558": "atBRANDAt8558",
3142
+ "__@BRAND@8684": "atBRANDAt8684",
3142
3143
  });
3143
3144
  });
3144
3145
 
3145
3146
  /** @internal */
3146
3147
  export type CreateIntegrationStoreDirectPropertiesValue$Outbound = {
3147
- "__@BRAND@8558":
3148
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$Outbound;
3148
+ "__@BRAND@8684":
3149
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$Outbound;
3149
3150
  };
3150
3151
 
3151
3152
  /** @internal */
@@ -3155,12 +3156,12 @@ export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema:
3155
3156
  z.ZodTypeDef,
3156
3157
  CreateIntegrationStoreDirectPropertiesValue
3157
3158
  > = z.object({
3158
- atBRANDAt8558: z.lazy(() =>
3159
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema
3159
+ atBRANDAt8684: z.lazy(() =>
3160
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema
3160
3161
  ),
3161
3162
  }).transform((v) => {
3162
3163
  return remap$(v, {
3163
- atBRANDAt8558: "__@BRAND@8558",
3164
+ atBRANDAt8684: "__@BRAND@8684",
3164
3165
  });
3165
3166
  });
3166
3167
 
@@ -3672,65 +3673,65 @@ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Ap
3672
3673
  }
3673
3674
 
3674
3675
  /** @internal */
3675
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema:
3676
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema:
3676
3677
  z.ZodType<
3677
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558,
3678
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684,
3678
3679
  z.ZodTypeDef,
3679
3680
  unknown
3680
3681
  > = z.object({});
3681
3682
 
3682
3683
  /** @internal */
3683
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound =
3684
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound =
3684
3685
  {};
3685
3686
 
3686
3687
  /** @internal */
3687
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema:
3688
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema:
3688
3689
  z.ZodType<
3689
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound,
3690
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound,
3690
3691
  z.ZodTypeDef,
3691
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558
3692
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684
3692
3693
  > = z.object({});
3693
3694
 
3694
3695
  /**
3695
3696
  * @internal
3696
3697
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3697
3698
  */
3698
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$ {
3699
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema` instead. */
3699
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$ {
3700
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema` instead. */
3700
3701
  export const inboundSchema =
3701
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema;
3702
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema` instead. */
3702
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema;
3703
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema` instead. */
3703
3704
  export const outboundSchema =
3704
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema;
3705
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound` instead. */
3705
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema;
3706
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound` instead. */
3706
3707
  export type Outbound =
3707
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound;
3708
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound;
3708
3709
  }
3709
3710
 
3710
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558ToJSON(
3711
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558:
3712
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558,
3711
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684ToJSON(
3712
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684:
3713
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684,
3713
3714
  ): string {
3714
3715
  return JSON.stringify(
3715
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema
3716
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema
3716
3717
  .parse(
3717
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558,
3718
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684,
3718
3719
  ),
3719
3720
  );
3720
3721
  }
3721
3722
 
3722
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558FromJSON(
3723
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684FromJSON(
3723
3724
  jsonString: string,
3724
3725
  ): SafeParseResult<
3725
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558,
3726
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684,
3726
3727
  SDKValidationError
3727
3728
  > {
3728
3729
  return safeParse(
3729
3730
  jsonString,
3730
3731
  (x) =>
3731
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema
3732
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema
3732
3733
  .parse(JSON.parse(x)),
3733
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558' from JSON`,
3734
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684' from JSON`,
3734
3735
  );
3735
3736
  }
3736
3737
 
@@ -3741,20 +3742,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
3741
3742
  z.ZodTypeDef,
3742
3743
  unknown
3743
3744
  > = z.object({
3744
- "__@BRAND@8558": z.lazy(() =>
3745
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema
3745
+ "__@BRAND@8684": z.lazy(() =>
3746
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema
3746
3747
  ),
3747
3748
  }).transform((v) => {
3748
3749
  return remap$(v, {
3749
- "__@BRAND@8558": "atBRANDAt8558",
3750
+ "__@BRAND@8684": "atBRANDAt8684",
3750
3751
  });
3751
3752
  });
3752
3753
 
3753
3754
  /** @internal */
3754
3755
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$Outbound =
3755
3756
  {
3756
- "__@BRAND@8558":
3757
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$Outbound;
3757
+ "__@BRAND@8684":
3758
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$Outbound;
3758
3759
  };
3759
3760
 
3760
3761
  /** @internal */
@@ -3764,12 +3765,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLen
3764
3765
  z.ZodTypeDef,
3765
3766
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength
3766
3767
  > = z.object({
3767
- atBRANDAt8558: z.lazy(() =>
3768
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema
3768
+ atBRANDAt8684: z.lazy(() =>
3769
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema
3769
3770
  ),
3770
3771
  }).transform((v) => {
3771
3772
  return remap$(v, {
3772
- atBRANDAt8558: "__@BRAND@8558",
3773
+ atBRANDAt8684: "__@BRAND@8684",
3773
3774
  });
3774
3775
  });
3775
3776
 
@@ -3817,65 +3818,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
3817
3818
  }
3818
3819
 
3819
3820
  /** @internal */
3820
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema:
3821
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema:
3821
3822
  z.ZodType<
3822
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558,
3823
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684,
3823
3824
  z.ZodTypeDef,
3824
3825
  unknown
3825
3826
  > = z.object({});
3826
3827
 
3827
3828
  /** @internal */
3828
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound =
3829
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound =
3829
3830
  {};
3830
3831
 
3831
3832
  /** @internal */
3832
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema:
3833
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema:
3833
3834
  z.ZodType<
3834
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound,
3835
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound,
3835
3836
  z.ZodTypeDef,
3836
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558
3837
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684
3837
3838
  > = z.object({});
3838
3839
 
3839
3840
  /**
3840
3841
  * @internal
3841
3842
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3842
3843
  */
3843
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$ {
3844
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema` instead. */
3844
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$ {
3845
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema` instead. */
3845
3846
  export const inboundSchema =
3846
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema;
3847
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema` instead. */
3847
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema;
3848
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema` instead. */
3848
3849
  export const outboundSchema =
3849
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema;
3850
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound` instead. */
3850
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema;
3851
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound` instead. */
3851
3852
  export type Outbound =
3852
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound;
3853
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound;
3853
3854
  }
3854
3855
 
3855
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558ToJSON(
3856
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558:
3857
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558,
3856
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684ToJSON(
3857
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684:
3858
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684,
3858
3859
  ): string {
3859
3860
  return JSON.stringify(
3860
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema
3861
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema
3861
3862
  .parse(
3862
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558,
3863
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684,
3863
3864
  ),
3864
3865
  );
3865
3866
  }
3866
3867
 
3867
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558FromJSON(
3868
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684FromJSON(
3868
3869
  jsonString: string,
3869
3870
  ): SafeParseResult<
3870
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558,
3871
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684,
3871
3872
  SDKValidationError
3872
3873
  > {
3873
3874
  return safeParse(
3874
3875
  jsonString,
3875
3876
  (x) =>
3876
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema
3877
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema
3877
3878
  .parse(JSON.parse(x)),
3878
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558' from JSON`,
3879
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684' from JSON`,
3879
3880
  );
3880
3881
  }
3881
3882
 
@@ -3886,20 +3887,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
3886
3887
  z.ZodTypeDef,
3887
3888
  unknown
3888
3889
  > = z.object({
3889
- "__@BRAND@8558": z.lazy(() =>
3890
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema
3890
+ "__@BRAND@8684": z.lazy(() =>
3891
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema
3891
3892
  ),
3892
3893
  }).transform((v) => {
3893
3894
  return remap$(v, {
3894
- "__@BRAND@8558": "atBRANDAt8558",
3895
+ "__@BRAND@8684": "atBRANDAt8684",
3895
3896
  });
3896
3897
  });
3897
3898
 
3898
3899
  /** @internal */
3899
3900
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$Outbound =
3900
3901
  {
3901
- "__@BRAND@8558":
3902
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$Outbound;
3902
+ "__@BRAND@8684":
3903
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$Outbound;
3903
3904
  };
3904
3905
 
3905
3906
  /** @internal */
@@ -3909,12 +3910,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLen
3909
3910
  z.ZodTypeDef,
3910
3911
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength
3911
3912
  > = z.object({
3912
- atBRANDAt8558: z.lazy(() =>
3913
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema
3913
+ atBRANDAt8684: z.lazy(() =>
3914
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema
3914
3915
  ),
3915
3916
  }).transform((v) => {
3916
3917
  return remap$(v, {
3917
- atBRANDAt8558: "__@BRAND@8558",
3918
+ atBRANDAt8684: "__@BRAND@8684",
3918
3919
  });
3919
3920
  });
3920
3921
 
@@ -3962,65 +3963,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
3962
3963
  }
3963
3964
 
3964
3965
  /** @internal */
3965
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema:
3966
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema:
3966
3967
  z.ZodType<
3967
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558,
3968
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684,
3968
3969
  z.ZodTypeDef,
3969
3970
  unknown
3970
3971
  > = z.object({});
3971
3972
 
3972
3973
  /** @internal */
3973
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound =
3974
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound =
3974
3975
  {};
3975
3976
 
3976
3977
  /** @internal */
3977
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema:
3978
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema:
3978
3979
  z.ZodType<
3979
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound,
3980
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound,
3980
3981
  z.ZodTypeDef,
3981
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558
3982
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684
3982
3983
  > = z.object({});
3983
3984
 
3984
3985
  /**
3985
3986
  * @internal
3986
3987
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3987
3988
  */
3988
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$ {
3989
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema` instead. */
3989
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$ {
3990
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema` instead. */
3990
3991
  export const inboundSchema =
3991
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema;
3992
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema` instead. */
3992
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema;
3993
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema` instead. */
3993
3994
  export const outboundSchema =
3994
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema;
3995
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound` instead. */
3995
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema;
3996
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound` instead. */
3996
3997
  export type Outbound =
3997
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound;
3998
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound;
3998
3999
  }
3999
4000
 
4000
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558ToJSON(
4001
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558:
4002
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558,
4001
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684ToJSON(
4002
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684:
4003
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684,
4003
4004
  ): string {
4004
4005
  return JSON.stringify(
4005
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema
4006
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema
4006
4007
  .parse(
4007
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558,
4008
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684,
4008
4009
  ),
4009
4010
  );
4010
4011
  }
4011
4012
 
4012
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558FromJSON(
4013
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684FromJSON(
4013
4014
  jsonString: string,
4014
4015
  ): SafeParseResult<
4015
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558,
4016
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684,
4016
4017
  SDKValidationError
4017
4018
  > {
4018
4019
  return safeParse(
4019
4020
  jsonString,
4020
4021
  (x) =>
4021
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema
4022
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema
4022
4023
  .parse(JSON.parse(x)),
4023
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558' from JSON`,
4024
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684' from JSON`,
4024
4025
  );
4025
4026
  }
4026
4027
 
@@ -4031,20 +4032,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
4031
4032
  z.ZodTypeDef,
4032
4033
  unknown
4033
4034
  > = z.object({
4034
- "__@BRAND@8558": z.lazy(() =>
4035
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema
4035
+ "__@BRAND@8684": z.lazy(() =>
4036
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema
4036
4037
  ),
4037
4038
  }).transform((v) => {
4038
4039
  return remap$(v, {
4039
- "__@BRAND@8558": "atBRANDAt8558",
4040
+ "__@BRAND@8684": "atBRANDAt8684",
4040
4041
  });
4041
4042
  });
4042
4043
 
4043
4044
  /** @internal */
4044
4045
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$Outbound =
4045
4046
  {
4046
- "__@BRAND@8558":
4047
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$Outbound;
4047
+ "__@BRAND@8684":
4048
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$Outbound;
4048
4049
  };
4049
4050
 
4050
4051
  /** @internal */
@@ -4054,12 +4055,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Patter
4054
4055
  z.ZodTypeDef,
4055
4056
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern
4056
4057
  > = z.object({
4057
- atBRANDAt8558: z.lazy(() =>
4058
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema
4058
+ atBRANDAt8684: z.lazy(() =>
4059
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema
4059
4060
  ),
4060
4061
  }).transform((v) => {
4061
4062
  return remap$(v, {
4062
- atBRANDAt8558: "__@BRAND@8558",
4063
+ atBRANDAt8684: "__@BRAND@8684",
4063
4064
  });
4064
4065
  });
4065
4066
 
@@ -5115,64 +5116,64 @@ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Ap
5115
5116
  }
5116
5117
 
5117
5118
  /** @internal */
5118
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema:
5119
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema:
5119
5120
  z.ZodType<
5120
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558,
5121
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684,
5121
5122
  z.ZodTypeDef,
5122
5123
  unknown
5123
5124
  > = z.object({});
5124
5125
 
5125
5126
  /** @internal */
5126
- export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound = {};
5127
+ export type CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound = {};
5127
5128
 
5128
5129
  /** @internal */
5129
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema:
5130
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema:
5130
5131
  z.ZodType<
5131
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound,
5132
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound,
5132
5133
  z.ZodTypeDef,
5133
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558
5134
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684
5134
5135
  > = z.object({});
5135
5136
 
5136
5137
  /**
5137
5138
  * @internal
5138
5139
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5139
5140
  */
5140
- export namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$ {
5141
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema` instead. */
5141
+ export namespace CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$ {
5142
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema` instead. */
5142
5143
  export const inboundSchema =
5143
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema;
5144
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema` instead. */
5144
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema;
5145
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema` instead. */
5145
5146
  export const outboundSchema =
5146
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema;
5147
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound` instead. */
5147
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema;
5148
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound` instead. */
5148
5149
  export type Outbound =
5149
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound;
5150
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound;
5150
5151
  }
5151
5152
 
5152
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt8558ToJSON(
5153
- createIntegrationStoreDirectUiOptionsAtBRANDAt8558:
5154
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558,
5153
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8684ToJSON(
5154
+ createIntegrationStoreDirectUiOptionsAtBRANDAt8684:
5155
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684,
5155
5156
  ): string {
5156
5157
  return JSON.stringify(
5157
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema.parse(
5158
- createIntegrationStoreDirectUiOptionsAtBRANDAt8558,
5158
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema.parse(
5159
+ createIntegrationStoreDirectUiOptionsAtBRANDAt8684,
5159
5160
  ),
5160
5161
  );
5161
5162
  }
5162
5163
 
5163
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt8558FromJSON(
5164
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8684FromJSON(
5164
5165
  jsonString: string,
5165
5166
  ): SafeParseResult<
5166
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558,
5167
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684,
5167
5168
  SDKValidationError
5168
5169
  > {
5169
5170
  return safeParse(
5170
5171
  jsonString,
5171
5172
  (x) =>
5172
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema.parse(
5173
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema.parse(
5173
5174
  JSON.parse(x),
5174
5175
  ),
5175
- `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558' from JSON`,
5176
+ `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684' from JSON`,
5176
5177
  );
5177
5178
  }
5178
5179
 
@@ -5180,18 +5181,18 @@ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8558FromJSON(
5180
5181
  export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema:
5181
5182
  z.ZodType<CreateIntegrationStoreDirectUiOptionsValue, z.ZodTypeDef, unknown> =
5182
5183
  z.object({
5183
- "__@BRAND@8558": z.lazy(() =>
5184
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema
5184
+ "__@BRAND@8684": z.lazy(() =>
5185
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema
5185
5186
  ),
5186
5187
  }).transform((v) => {
5187
5188
  return remap$(v, {
5188
- "__@BRAND@8558": "atBRANDAt8558",
5189
+ "__@BRAND@8684": "atBRANDAt8684",
5189
5190
  });
5190
5191
  });
5191
5192
 
5192
5193
  /** @internal */
5193
5194
  export type CreateIntegrationStoreDirectUiOptionsValue$Outbound = {
5194
- "__@BRAND@8558": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$Outbound;
5195
+ "__@BRAND@8684": CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$Outbound;
5195
5196
  };
5196
5197
 
5197
5198
  /** @internal */
@@ -5201,12 +5202,12 @@ export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema:
5201
5202
  z.ZodTypeDef,
5202
5203
  CreateIntegrationStoreDirectUiOptionsValue
5203
5204
  > = z.object({
5204
- atBRANDAt8558: z.lazy(() =>
5205
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema
5205
+ atBRANDAt8684: z.lazy(() =>
5206
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema
5206
5207
  ),
5207
5208
  }).transform((v) => {
5208
5209
  return remap$(v, {
5209
- atBRANDAt8558: "__@BRAND@8558",
5210
+ atBRANDAt8684: "__@BRAND@8684",
5210
5211
  });
5211
5212
  });
5212
5213
 
@@ -5690,50 +5691,50 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(
5690
5691
  }
5691
5692
 
5692
5693
  /** @internal */
5693
- export const UiOptionsAtBRANDAt8558$inboundSchema: z.ZodType<
5694
- UiOptionsAtBRANDAt8558,
5694
+ export const UiOptionsAtBRANDAt8684$inboundSchema: z.ZodType<
5695
+ UiOptionsAtBRANDAt8684,
5695
5696
  z.ZodTypeDef,
5696
5697
  unknown
5697
5698
  > = z.object({});
5698
5699
 
5699
5700
  /** @internal */
5700
- export type UiOptionsAtBRANDAt8558$Outbound = {};
5701
+ export type UiOptionsAtBRANDAt8684$Outbound = {};
5701
5702
 
5702
5703
  /** @internal */
5703
- export const UiOptionsAtBRANDAt8558$outboundSchema: z.ZodType<
5704
- UiOptionsAtBRANDAt8558$Outbound,
5704
+ export const UiOptionsAtBRANDAt8684$outboundSchema: z.ZodType<
5705
+ UiOptionsAtBRANDAt8684$Outbound,
5705
5706
  z.ZodTypeDef,
5706
- UiOptionsAtBRANDAt8558
5707
+ UiOptionsAtBRANDAt8684
5707
5708
  > = z.object({});
5708
5709
 
5709
5710
  /**
5710
5711
  * @internal
5711
5712
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5712
5713
  */
5713
- export namespace UiOptionsAtBRANDAt8558$ {
5714
- /** @deprecated use `UiOptionsAtBRANDAt8558$inboundSchema` instead. */
5715
- export const inboundSchema = UiOptionsAtBRANDAt8558$inboundSchema;
5716
- /** @deprecated use `UiOptionsAtBRANDAt8558$outboundSchema` instead. */
5717
- export const outboundSchema = UiOptionsAtBRANDAt8558$outboundSchema;
5718
- /** @deprecated use `UiOptionsAtBRANDAt8558$Outbound` instead. */
5719
- export type Outbound = UiOptionsAtBRANDAt8558$Outbound;
5714
+ export namespace UiOptionsAtBRANDAt8684$ {
5715
+ /** @deprecated use `UiOptionsAtBRANDAt8684$inboundSchema` instead. */
5716
+ export const inboundSchema = UiOptionsAtBRANDAt8684$inboundSchema;
5717
+ /** @deprecated use `UiOptionsAtBRANDAt8684$outboundSchema` instead. */
5718
+ export const outboundSchema = UiOptionsAtBRANDAt8684$outboundSchema;
5719
+ /** @deprecated use `UiOptionsAtBRANDAt8684$Outbound` instead. */
5720
+ export type Outbound = UiOptionsAtBRANDAt8684$Outbound;
5720
5721
  }
5721
5722
 
5722
- export function uiOptionsAtBRANDAt8558ToJSON(
5723
- uiOptionsAtBRANDAt8558: UiOptionsAtBRANDAt8558,
5723
+ export function uiOptionsAtBRANDAt8684ToJSON(
5724
+ uiOptionsAtBRANDAt8684: UiOptionsAtBRANDAt8684,
5724
5725
  ): string {
5725
5726
  return JSON.stringify(
5726
- UiOptionsAtBRANDAt8558$outboundSchema.parse(uiOptionsAtBRANDAt8558),
5727
+ UiOptionsAtBRANDAt8684$outboundSchema.parse(uiOptionsAtBRANDAt8684),
5727
5728
  );
5728
5729
  }
5729
5730
 
5730
- export function uiOptionsAtBRANDAt8558FromJSON(
5731
+ export function uiOptionsAtBRANDAt8684FromJSON(
5731
5732
  jsonString: string,
5732
- ): SafeParseResult<UiOptionsAtBRANDAt8558, SDKValidationError> {
5733
+ ): SafeParseResult<UiOptionsAtBRANDAt8684, SDKValidationError> {
5733
5734
  return safeParse(
5734
5735
  jsonString,
5735
- (x) => UiOptionsAtBRANDAt8558$inboundSchema.parse(JSON.parse(x)),
5736
- `Failed to parse 'UiOptionsAtBRANDAt8558' from JSON`,
5736
+ (x) => UiOptionsAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)),
5737
+ `Failed to parse 'UiOptionsAtBRANDAt8684' from JSON`,
5737
5738
  );
5738
5739
  }
5739
5740
 
@@ -5743,16 +5744,16 @@ export const CreateIntegrationStoreDirectUiOptions2$inboundSchema: z.ZodType<
5743
5744
  z.ZodTypeDef,
5744
5745
  unknown
5745
5746
  > = z.object({
5746
- "__@BRAND@8558": z.lazy(() => UiOptionsAtBRANDAt8558$inboundSchema),
5747
+ "__@BRAND@8684": z.lazy(() => UiOptionsAtBRANDAt8684$inboundSchema),
5747
5748
  }).transform((v) => {
5748
5749
  return remap$(v, {
5749
- "__@BRAND@8558": "atBRANDAt8558",
5750
+ "__@BRAND@8684": "atBRANDAt8684",
5750
5751
  });
5751
5752
  });
5752
5753
 
5753
5754
  /** @internal */
5754
5755
  export type CreateIntegrationStoreDirectUiOptions2$Outbound = {
5755
- "__@BRAND@8558": UiOptionsAtBRANDAt8558$Outbound;
5756
+ "__@BRAND@8684": UiOptionsAtBRANDAt8684$Outbound;
5756
5757
  };
5757
5758
 
5758
5759
  /** @internal */
@@ -5761,10 +5762,10 @@ export const CreateIntegrationStoreDirectUiOptions2$outboundSchema: z.ZodType<
5761
5762
  z.ZodTypeDef,
5762
5763
  CreateIntegrationStoreDirectUiOptions2
5763
5764
  > = z.object({
5764
- atBRANDAt8558: z.lazy(() => UiOptionsAtBRANDAt8558$outboundSchema),
5765
+ atBRANDAt8684: z.lazy(() => UiOptionsAtBRANDAt8684$outboundSchema),
5765
5766
  }).transform((v) => {
5766
5767
  return remap$(v, {
5767
- atBRANDAt8558: "__@BRAND@8558",
5768
+ atBRANDAt8684: "__@BRAND@8684",
5768
5769
  });
5769
5770
  });
5770
5771
 
@@ -6326,65 +6327,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
6326
6327
  }
6327
6328
 
6328
6329
  /** @internal */
6329
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema:
6330
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema:
6330
6331
  z.ZodType<
6331
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558,
6332
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684,
6332
6333
  z.ZodTypeDef,
6333
6334
  unknown
6334
6335
  > = z.object({});
6335
6336
 
6336
6337
  /** @internal */
6337
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound =
6338
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound =
6338
6339
  {};
6339
6340
 
6340
6341
  /** @internal */
6341
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema:
6342
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema:
6342
6343
  z.ZodType<
6343
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound,
6344
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound,
6344
6345
  z.ZodTypeDef,
6345
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558
6346
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684
6346
6347
  > = z.object({});
6347
6348
 
6348
6349
  /**
6349
6350
  * @internal
6350
6351
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6351
6352
  */
6352
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$ {
6353
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema` instead. */
6353
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$ {
6354
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema` instead. */
6354
6355
  export const inboundSchema =
6355
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema;
6356
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema` instead. */
6356
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema;
6357
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema` instead. */
6357
6358
  export const outboundSchema =
6358
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema;
6359
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound` instead. */
6359
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema;
6360
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound` instead. */
6360
6361
  export type Outbound =
6361
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound;
6362
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound;
6362
6363
  }
6363
6364
 
6364
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558ToJSON(
6365
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558:
6366
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558,
6365
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684ToJSON(
6366
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684:
6367
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684,
6367
6368
  ): string {
6368
6369
  return JSON.stringify(
6369
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema
6370
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema
6370
6371
  .parse(
6371
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558,
6372
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684,
6372
6373
  ),
6373
6374
  );
6374
6375
  }
6375
6376
 
6376
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558FromJSON(
6377
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684FromJSON(
6377
6378
  jsonString: string,
6378
6379
  ): SafeParseResult<
6379
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558,
6380
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684,
6380
6381
  SDKValidationError
6381
6382
  > {
6382
6383
  return safeParse(
6383
6384
  jsonString,
6384
6385
  (x) =>
6385
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema
6386
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema
6386
6387
  .parse(JSON.parse(x)),
6387
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558' from JSON`,
6388
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684' from JSON`,
6388
6389
  );
6389
6390
  }
6390
6391
 
@@ -6395,20 +6396,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
6395
6396
  z.ZodTypeDef,
6396
6397
  unknown
6397
6398
  > = z.object({
6398
- "__@BRAND@8558": z.lazy(() =>
6399
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema
6399
+ "__@BRAND@8684": z.lazy(() =>
6400
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema
6400
6401
  ),
6401
6402
  }).transform((v) => {
6402
6403
  return remap$(v, {
6403
- "__@BRAND@8558": "atBRANDAt8558",
6404
+ "__@BRAND@8684": "atBRANDAt8684",
6404
6405
  });
6405
6406
  });
6406
6407
 
6407
6408
  /** @internal */
6408
6409
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$Outbound =
6409
6410
  {
6410
- "__@BRAND@8558":
6411
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$Outbound;
6411
+ "__@BRAND@8684":
6412
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$Outbound;
6412
6413
  };
6413
6414
 
6414
6415
  /** @internal */
@@ -6418,12 +6419,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
6418
6419
  z.ZodTypeDef,
6419
6420
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength
6420
6421
  > = z.object({
6421
- atBRANDAt8558: z.lazy(() =>
6422
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema
6422
+ atBRANDAt8684: z.lazy(() =>
6423
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema
6423
6424
  ),
6424
6425
  }).transform((v) => {
6425
6426
  return remap$(v, {
6426
- atBRANDAt8558: "__@BRAND@8558",
6427
+ atBRANDAt8684: "__@BRAND@8684",
6427
6428
  });
6428
6429
  });
6429
6430
 
@@ -6471,65 +6472,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
6471
6472
  }
6472
6473
 
6473
6474
  /** @internal */
6474
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema:
6475
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema:
6475
6476
  z.ZodType<
6476
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558,
6477
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684,
6477
6478
  z.ZodTypeDef,
6478
6479
  unknown
6479
6480
  > = z.object({});
6480
6481
 
6481
6482
  /** @internal */
6482
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound =
6483
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound =
6483
6484
  {};
6484
6485
 
6485
6486
  /** @internal */
6486
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema:
6487
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema:
6487
6488
  z.ZodType<
6488
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound,
6489
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound,
6489
6490
  z.ZodTypeDef,
6490
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558
6491
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684
6491
6492
  > = z.object({});
6492
6493
 
6493
6494
  /**
6494
6495
  * @internal
6495
6496
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6496
6497
  */
6497
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$ {
6498
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema` instead. */
6498
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$ {
6499
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema` instead. */
6499
6500
  export const inboundSchema =
6500
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema;
6501
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema` instead. */
6501
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema;
6502
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema` instead. */
6502
6503
  export const outboundSchema =
6503
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema;
6504
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound` instead. */
6504
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema;
6505
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound` instead. */
6505
6506
  export type Outbound =
6506
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound;
6507
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound;
6507
6508
  }
6508
6509
 
6509
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558ToJSON(
6510
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558:
6511
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558,
6510
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684ToJSON(
6511
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684:
6512
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684,
6512
6513
  ): string {
6513
6514
  return JSON.stringify(
6514
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema
6515
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema
6515
6516
  .parse(
6516
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558,
6517
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684,
6517
6518
  ),
6518
6519
  );
6519
6520
  }
6520
6521
 
6521
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558FromJSON(
6522
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684FromJSON(
6522
6523
  jsonString: string,
6523
6524
  ): SafeParseResult<
6524
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558,
6525
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684,
6525
6526
  SDKValidationError
6526
6527
  > {
6527
6528
  return safeParse(
6528
6529
  jsonString,
6529
6530
  (x) =>
6530
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema
6531
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema
6531
6532
  .parse(JSON.parse(x)),
6532
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558' from JSON`,
6533
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684' from JSON`,
6533
6534
  );
6534
6535
  }
6535
6536
 
@@ -6540,20 +6541,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
6540
6541
  z.ZodTypeDef,
6541
6542
  unknown
6542
6543
  > = z.object({
6543
- "__@BRAND@8558": z.lazy(() =>
6544
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema
6544
+ "__@BRAND@8684": z.lazy(() =>
6545
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema
6545
6546
  ),
6546
6547
  }).transform((v) => {
6547
6548
  return remap$(v, {
6548
- "__@BRAND@8558": "atBRANDAt8558",
6549
+ "__@BRAND@8684": "atBRANDAt8684",
6549
6550
  });
6550
6551
  });
6551
6552
 
6552
6553
  /** @internal */
6553
6554
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$Outbound =
6554
6555
  {
6555
- "__@BRAND@8558":
6556
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$Outbound;
6556
+ "__@BRAND@8684":
6557
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$Outbound;
6557
6558
  };
6558
6559
 
6559
6560
  /** @internal */
@@ -6563,12 +6564,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
6563
6564
  z.ZodTypeDef,
6564
6565
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength
6565
6566
  > = z.object({
6566
- atBRANDAt8558: z.lazy(() =>
6567
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema
6567
+ atBRANDAt8684: z.lazy(() =>
6568
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema
6568
6569
  ),
6569
6570
  }).transform((v) => {
6570
6571
  return remap$(v, {
6571
- atBRANDAt8558: "__@BRAND@8558",
6572
+ atBRANDAt8684: "__@BRAND@8684",
6572
6573
  });
6573
6574
  });
6574
6575
 
@@ -6616,65 +6617,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
6616
6617
  }
6617
6618
 
6618
6619
  /** @internal */
6619
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema:
6620
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema:
6620
6621
  z.ZodType<
6621
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558,
6622
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684,
6622
6623
  z.ZodTypeDef,
6623
6624
  unknown
6624
6625
  > = z.object({});
6625
6626
 
6626
6627
  /** @internal */
6627
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound =
6628
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound =
6628
6629
  {};
6629
6630
 
6630
6631
  /** @internal */
6631
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema:
6632
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema:
6632
6633
  z.ZodType<
6633
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound,
6634
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound,
6634
6635
  z.ZodTypeDef,
6635
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558
6636
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684
6636
6637
  > = z.object({});
6637
6638
 
6638
6639
  /**
6639
6640
  * @internal
6640
6641
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6641
6642
  */
6642
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$ {
6643
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema` instead. */
6643
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$ {
6644
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema` instead. */
6644
6645
  export const inboundSchema =
6645
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema;
6646
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema` instead. */
6646
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema;
6647
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema` instead. */
6647
6648
  export const outboundSchema =
6648
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema;
6649
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound` instead. */
6649
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema;
6650
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound` instead. */
6650
6651
  export type Outbound =
6651
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound;
6652
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound;
6652
6653
  }
6653
6654
 
6654
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558ToJSON(
6655
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558:
6656
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558,
6655
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684ToJSON(
6656
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684:
6657
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684,
6657
6658
  ): string {
6658
6659
  return JSON.stringify(
6659
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema
6660
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema
6660
6661
  .parse(
6661
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558,
6662
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684,
6662
6663
  ),
6663
6664
  );
6664
6665
  }
6665
6666
 
6666
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558FromJSON(
6667
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684FromJSON(
6667
6668
  jsonString: string,
6668
6669
  ): SafeParseResult<
6669
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558,
6670
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684,
6670
6671
  SDKValidationError
6671
6672
  > {
6672
6673
  return safeParse(
6673
6674
  jsonString,
6674
6675
  (x) =>
6675
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema
6676
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema
6676
6677
  .parse(JSON.parse(x)),
6677
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558' from JSON`,
6678
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684' from JSON`,
6678
6679
  );
6679
6680
  }
6680
6681
 
@@ -6685,20 +6686,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$i
6685
6686
  z.ZodTypeDef,
6686
6687
  unknown
6687
6688
  > = z.object({
6688
- "__@BRAND@8558": z.lazy(() =>
6689
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema
6689
+ "__@BRAND@8684": z.lazy(() =>
6690
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema
6690
6691
  ),
6691
6692
  }).transform((v) => {
6692
6693
  return remap$(v, {
6693
- "__@BRAND@8558": "atBRANDAt8558",
6694
+ "__@BRAND@8684": "atBRANDAt8684",
6694
6695
  });
6695
6696
  });
6696
6697
 
6697
6698
  /** @internal */
6698
6699
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$Outbound =
6699
6700
  {
6700
- "__@BRAND@8558":
6701
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$Outbound;
6701
+ "__@BRAND@8684":
6702
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$Outbound;
6702
6703
  };
6703
6704
 
6704
6705
  /** @internal */
@@ -6708,12 +6709,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$o
6708
6709
  z.ZodTypeDef,
6709
6710
  CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern
6710
6711
  > = z.object({
6711
- atBRANDAt8558: z.lazy(() =>
6712
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema
6712
+ atBRANDAt8684: z.lazy(() =>
6713
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema
6713
6714
  ),
6714
6715
  }).transform((v) => {
6715
6716
  return remap$(v, {
6716
- atBRANDAt8558: "__@BRAND@8558",
6717
+ atBRANDAt8684: "__@BRAND@8684",
6717
6718
  });
6718
6719
  });
6719
6720
 
@@ -7788,65 +7789,65 @@ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Ap
7788
7789
  }
7789
7790
 
7790
7791
  /** @internal */
7791
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema:
7792
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema:
7792
7793
  z.ZodType<
7793
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558,
7794
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684,
7794
7795
  z.ZodTypeDef,
7795
7796
  unknown
7796
7797
  > = z.object({});
7797
7798
 
7798
7799
  /** @internal */
7799
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound =
7800
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound =
7800
7801
  {};
7801
7802
 
7802
7803
  /** @internal */
7803
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema:
7804
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema:
7804
7805
  z.ZodType<
7805
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound,
7806
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound,
7806
7807
  z.ZodTypeDef,
7807
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558
7808
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684
7808
7809
  > = z.object({});
7809
7810
 
7810
7811
  /**
7811
7812
  * @internal
7812
7813
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7813
7814
  */
7814
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$ {
7815
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema` instead. */
7815
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$ {
7816
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema` instead. */
7816
7817
  export const inboundSchema =
7817
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema;
7818
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema` instead. */
7818
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema;
7819
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema` instead. */
7819
7820
  export const outboundSchema =
7820
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema;
7821
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound` instead. */
7821
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema;
7822
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound` instead. */
7822
7823
  export type Outbound =
7823
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound;
7824
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound;
7824
7825
  }
7825
7826
 
7826
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558ToJSON(
7827
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558:
7828
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558,
7827
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684ToJSON(
7828
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684:
7829
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684,
7829
7830
  ): string {
7830
7831
  return JSON.stringify(
7831
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema
7832
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema
7832
7833
  .parse(
7833
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558,
7834
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684,
7834
7835
  ),
7835
7836
  );
7836
7837
  }
7837
7838
 
7838
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558FromJSON(
7839
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684FromJSON(
7839
7840
  jsonString: string,
7840
7841
  ): SafeParseResult<
7841
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558,
7842
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684,
7842
7843
  SDKValidationError
7843
7844
  > {
7844
7845
  return safeParse(
7845
7846
  jsonString,
7846
7847
  (x) =>
7847
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema
7848
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema
7848
7849
  .parse(JSON.parse(x)),
7849
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558' from JSON`,
7850
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684' from JSON`,
7850
7851
  );
7851
7852
  }
7852
7853
 
@@ -7857,20 +7858,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
7857
7858
  z.ZodTypeDef,
7858
7859
  unknown
7859
7860
  > = z.object({
7860
- "__@BRAND@8558": z.lazy(() =>
7861
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema
7861
+ "__@BRAND@8684": z.lazy(() =>
7862
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema
7862
7863
  ),
7863
7864
  }).transform((v) => {
7864
7865
  return remap$(v, {
7865
- "__@BRAND@8558": "atBRANDAt8558",
7866
+ "__@BRAND@8684": "atBRANDAt8684",
7866
7867
  });
7867
7868
  });
7868
7869
 
7869
7870
  /** @internal */
7870
7871
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$Outbound =
7871
7872
  {
7872
- "__@BRAND@8558":
7873
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$Outbound;
7873
+ "__@BRAND@8684":
7874
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$Outbound;
7874
7875
  };
7875
7876
 
7876
7877
  /** @internal */
@@ -7880,12 +7881,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
7880
7881
  z.ZodTypeDef,
7881
7882
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength
7882
7883
  > = z.object({
7883
- atBRANDAt8558: z.lazy(() =>
7884
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema
7884
+ atBRANDAt8684: z.lazy(() =>
7885
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema
7885
7886
  ),
7886
7887
  }).transform((v) => {
7887
7888
  return remap$(v, {
7888
- atBRANDAt8558: "__@BRAND@8558",
7889
+ atBRANDAt8684: "__@BRAND@8684",
7889
7890
  });
7890
7891
  });
7891
7892
 
@@ -7933,65 +7934,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
7933
7934
  }
7934
7935
 
7935
7936
  /** @internal */
7936
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema:
7937
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema:
7937
7938
  z.ZodType<
7938
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558,
7939
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684,
7939
7940
  z.ZodTypeDef,
7940
7941
  unknown
7941
7942
  > = z.object({});
7942
7943
 
7943
7944
  /** @internal */
7944
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound =
7945
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound =
7945
7946
  {};
7946
7947
 
7947
7948
  /** @internal */
7948
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema:
7949
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema:
7949
7950
  z.ZodType<
7950
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound,
7951
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound,
7951
7952
  z.ZodTypeDef,
7952
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558
7953
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684
7953
7954
  > = z.object({});
7954
7955
 
7955
7956
  /**
7956
7957
  * @internal
7957
7958
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
7958
7959
  */
7959
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$ {
7960
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema` instead. */
7960
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$ {
7961
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema` instead. */
7961
7962
  export const inboundSchema =
7962
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema;
7963
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema` instead. */
7963
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema;
7964
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema` instead. */
7964
7965
  export const outboundSchema =
7965
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema;
7966
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound` instead. */
7966
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema;
7967
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound` instead. */
7967
7968
  export type Outbound =
7968
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound;
7969
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound;
7969
7970
  }
7970
7971
 
7971
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558ToJSON(
7972
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558:
7973
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558,
7972
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684ToJSON(
7973
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684:
7974
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684,
7974
7975
  ): string {
7975
7976
  return JSON.stringify(
7976
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema
7977
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema
7977
7978
  .parse(
7978
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558,
7979
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684,
7979
7980
  ),
7980
7981
  );
7981
7982
  }
7982
7983
 
7983
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558FromJSON(
7984
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684FromJSON(
7984
7985
  jsonString: string,
7985
7986
  ): SafeParseResult<
7986
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558,
7987
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684,
7987
7988
  SDKValidationError
7988
7989
  > {
7989
7990
  return safeParse(
7990
7991
  jsonString,
7991
7992
  (x) =>
7992
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema
7993
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema
7993
7994
  .parse(JSON.parse(x)),
7994
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558' from JSON`,
7995
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684' from JSON`,
7995
7996
  );
7996
7997
  }
7997
7998
 
@@ -8002,20 +8003,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
8002
8003
  z.ZodTypeDef,
8003
8004
  unknown
8004
8005
  > = z.object({
8005
- "__@BRAND@8558": z.lazy(() =>
8006
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema
8006
+ "__@BRAND@8684": z.lazy(() =>
8007
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema
8007
8008
  ),
8008
8009
  }).transform((v) => {
8009
8010
  return remap$(v, {
8010
- "__@BRAND@8558": "atBRANDAt8558",
8011
+ "__@BRAND@8684": "atBRANDAt8684",
8011
8012
  });
8012
8013
  });
8013
8014
 
8014
8015
  /** @internal */
8015
8016
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$Outbound =
8016
8017
  {
8017
- "__@BRAND@8558":
8018
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$Outbound;
8018
+ "__@BRAND@8684":
8019
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$Outbound;
8019
8020
  };
8020
8021
 
8021
8022
  /** @internal */
@@ -8025,12 +8026,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
8025
8026
  z.ZodTypeDef,
8026
8027
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength
8027
8028
  > = z.object({
8028
- atBRANDAt8558: z.lazy(() =>
8029
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema
8029
+ atBRANDAt8684: z.lazy(() =>
8030
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema
8030
8031
  ),
8031
8032
  }).transform((v) => {
8032
8033
  return remap$(v, {
8033
- atBRANDAt8558: "__@BRAND@8558",
8034
+ atBRANDAt8684: "__@BRAND@8684",
8034
8035
  });
8035
8036
  });
8036
8037
 
@@ -8078,65 +8079,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
8078
8079
  }
8079
8080
 
8080
8081
  /** @internal */
8081
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema:
8082
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema:
8082
8083
  z.ZodType<
8083
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558,
8084
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684,
8084
8085
  z.ZodTypeDef,
8085
8086
  unknown
8086
8087
  > = z.object({});
8087
8088
 
8088
8089
  /** @internal */
8089
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound =
8090
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound =
8090
8091
  {};
8091
8092
 
8092
8093
  /** @internal */
8093
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema:
8094
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema:
8094
8095
  z.ZodType<
8095
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound,
8096
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound,
8096
8097
  z.ZodTypeDef,
8097
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558
8098
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684
8098
8099
  > = z.object({});
8099
8100
 
8100
8101
  /**
8101
8102
  * @internal
8102
8103
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
8103
8104
  */
8104
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$ {
8105
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema` instead. */
8105
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$ {
8106
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema` instead. */
8106
8107
  export const inboundSchema =
8107
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema;
8108
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema` instead. */
8108
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema;
8109
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema` instead. */
8109
8110
  export const outboundSchema =
8110
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema;
8111
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound` instead. */
8111
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema;
8112
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound` instead. */
8112
8113
  export type Outbound =
8113
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound;
8114
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound;
8114
8115
  }
8115
8116
 
8116
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558ToJSON(
8117
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558:
8118
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558,
8117
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684ToJSON(
8118
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684:
8119
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684,
8119
8120
  ): string {
8120
8121
  return JSON.stringify(
8121
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema
8122
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema
8122
8123
  .parse(
8123
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558,
8124
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684,
8124
8125
  ),
8125
8126
  );
8126
8127
  }
8127
8128
 
8128
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558FromJSON(
8129
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684FromJSON(
8129
8130
  jsonString: string,
8130
8131
  ): SafeParseResult<
8131
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558,
8132
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684,
8132
8133
  SDKValidationError
8133
8134
  > {
8134
8135
  return safeParse(
8135
8136
  jsonString,
8136
8137
  (x) =>
8137
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema
8138
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema
8138
8139
  .parse(JSON.parse(x)),
8139
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558' from JSON`,
8140
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684' from JSON`,
8140
8141
  );
8141
8142
  }
8142
8143
 
@@ -8147,20 +8148,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
8147
8148
  z.ZodTypeDef,
8148
8149
  unknown
8149
8150
  > = z.object({
8150
- "__@BRAND@8558": z.lazy(() =>
8151
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema
8151
+ "__@BRAND@8684": z.lazy(() =>
8152
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema
8152
8153
  ),
8153
8154
  }).transform((v) => {
8154
8155
  return remap$(v, {
8155
- "__@BRAND@8558": "atBRANDAt8558",
8156
+ "__@BRAND@8684": "atBRANDAt8684",
8156
8157
  });
8157
8158
  });
8158
8159
 
8159
8160
  /** @internal */
8160
8161
  export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$Outbound =
8161
8162
  {
8162
- "__@BRAND@8558":
8163
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$Outbound;
8163
+ "__@BRAND@8684":
8164
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$Outbound;
8164
8165
  };
8165
8166
 
8166
8167
  /** @internal */
@@ -8170,12 +8171,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applic
8170
8171
  z.ZodTypeDef,
8171
8172
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern
8172
8173
  > = z.object({
8173
- atBRANDAt8558: z.lazy(() =>
8174
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema
8174
+ atBRANDAt8684: z.lazy(() =>
8175
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema
8175
8176
  ),
8176
8177
  }).transform((v) => {
8177
8178
  return remap$(v, {
8178
- atBRANDAt8558: "__@BRAND@8558",
8179
+ atBRANDAt8684: "__@BRAND@8684",
8179
8180
  });
8180
8181
  });
8181
8182
 
@@ -10246,63 +10247,63 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(
10246
10247
  }
10247
10248
 
10248
10249
  /** @internal */
10249
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema:
10250
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema:
10250
10251
  z.ZodType<
10251
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558,
10252
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684,
10252
10253
  z.ZodTypeDef,
10253
10254
  unknown
10254
10255
  > = z.object({});
10255
10256
 
10256
10257
  /** @internal */
10257
- export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound =
10258
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound =
10258
10259
  {};
10259
10260
 
10260
10261
  /** @internal */
10261
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema:
10262
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema:
10262
10263
  z.ZodType<
10263
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound,
10264
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound,
10264
10265
  z.ZodTypeDef,
10265
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558
10266
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684
10266
10267
  > = z.object({});
10267
10268
 
10268
10269
  /**
10269
10270
  * @internal
10270
10271
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10271
10272
  */
10272
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$ {
10273
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema` instead. */
10273
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$ {
10274
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema` instead. */
10274
10275
  export const inboundSchema =
10275
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema;
10276
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema` instead. */
10276
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema;
10277
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema` instead. */
10277
10278
  export const outboundSchema =
10278
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema;
10279
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound` instead. */
10279
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema;
10280
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound` instead. */
10280
10281
  export type Outbound =
10281
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound;
10282
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound;
10282
10283
  }
10283
10284
 
10284
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558ToJSON(
10285
- createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558:
10286
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558,
10285
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684ToJSON(
10286
+ createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684:
10287
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684,
10287
10288
  ): string {
10288
10289
  return JSON.stringify(
10289
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema
10290
- .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558),
10290
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema
10291
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684),
10291
10292
  );
10292
10293
  }
10293
10294
 
10294
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558FromJSON(
10295
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684FromJSON(
10295
10296
  jsonString: string,
10296
10297
  ): SafeParseResult<
10297
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558,
10298
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684,
10298
10299
  SDKValidationError
10299
10300
  > {
10300
10301
  return safeParse(
10301
10302
  jsonString,
10302
10303
  (x) =>
10303
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema
10304
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema
10304
10305
  .parse(JSON.parse(x)),
10305
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558' from JSON`,
10306
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684' from JSON`,
10306
10307
  );
10307
10308
  }
10308
10309
 
@@ -10313,20 +10314,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inbound
10313
10314
  z.ZodTypeDef,
10314
10315
  unknown
10315
10316
  > = z.object({
10316
- "__@BRAND@8558": z.lazy(() =>
10317
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema
10317
+ "__@BRAND@8684": z.lazy(() =>
10318
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema
10318
10319
  ),
10319
10320
  }).transform((v) => {
10320
10321
  return remap$(v, {
10321
- "__@BRAND@8558": "atBRANDAt8558",
10322
+ "__@BRAND@8684": "atBRANDAt8684",
10322
10323
  });
10323
10324
  });
10324
10325
 
10325
10326
  /** @internal */
10326
10327
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$Outbound =
10327
10328
  {
10328
- "__@BRAND@8558":
10329
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$Outbound;
10329
+ "__@BRAND@8684":
10330
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$Outbound;
10330
10331
  };
10331
10332
 
10332
10333
  /** @internal */
@@ -10336,12 +10337,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboun
10336
10337
  z.ZodTypeDef,
10337
10338
  CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength
10338
10339
  > = z.object({
10339
- atBRANDAt8558: z.lazy(() =>
10340
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema
10340
+ atBRANDAt8684: z.lazy(() =>
10341
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema
10341
10342
  ),
10342
10343
  }).transform((v) => {
10343
10344
  return remap$(v, {
10344
- atBRANDAt8558: "__@BRAND@8558",
10345
+ atBRANDAt8684: "__@BRAND@8684",
10345
10346
  });
10346
10347
  });
10347
10348
 
@@ -10387,65 +10388,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
10387
10388
  }
10388
10389
 
10389
10390
  /** @internal */
10390
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema:
10391
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema:
10391
10392
  z.ZodType<
10392
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558,
10393
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684,
10393
10394
  z.ZodTypeDef,
10394
10395
  unknown
10395
10396
  > = z.object({});
10396
10397
 
10397
10398
  /** @internal */
10398
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound =
10399
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound =
10399
10400
  {};
10400
10401
 
10401
10402
  /** @internal */
10402
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema:
10403
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema:
10403
10404
  z.ZodType<
10404
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound,
10405
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound,
10405
10406
  z.ZodTypeDef,
10406
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558
10407
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684
10407
10408
  > = z.object({});
10408
10409
 
10409
10410
  /**
10410
10411
  * @internal
10411
10412
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10412
10413
  */
10413
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$ {
10414
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema` instead. */
10414
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$ {
10415
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema` instead. */
10415
10416
  export const inboundSchema =
10416
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema;
10417
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema` instead. */
10417
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema;
10418
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema` instead. */
10418
10419
  export const outboundSchema =
10419
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema;
10420
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound` instead. */
10420
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema;
10421
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound` instead. */
10421
10422
  export type Outbound =
10422
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound;
10423
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound;
10423
10424
  }
10424
10425
 
10425
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558ToJSON(
10426
- createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558:
10427
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558,
10426
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684ToJSON(
10427
+ createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684:
10428
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684,
10428
10429
  ): string {
10429
10430
  return JSON.stringify(
10430
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema
10431
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema
10431
10432
  .parse(
10432
- createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558,
10433
+ createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684,
10433
10434
  ),
10434
10435
  );
10435
10436
  }
10436
10437
 
10437
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558FromJSON(
10438
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684FromJSON(
10438
10439
  jsonString: string,
10439
10440
  ): SafeParseResult<
10440
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558,
10441
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684,
10441
10442
  SDKValidationError
10442
10443
  > {
10443
10444
  return safeParse(
10444
10445
  jsonString,
10445
10446
  (x) =>
10446
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema
10447
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema
10447
10448
  .parse(JSON.parse(x)),
10448
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558' from JSON`,
10449
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684' from JSON`,
10449
10450
  );
10450
10451
  }
10451
10452
 
@@ -10456,20 +10457,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inbound
10456
10457
  z.ZodTypeDef,
10457
10458
  unknown
10458
10459
  > = z.object({
10459
- "__@BRAND@8558": z.lazy(() =>
10460
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema
10460
+ "__@BRAND@8684": z.lazy(() =>
10461
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema
10461
10462
  ),
10462
10463
  }).transform((v) => {
10463
10464
  return remap$(v, {
10464
- "__@BRAND@8558": "atBRANDAt8558",
10465
+ "__@BRAND@8684": "atBRANDAt8684",
10465
10466
  });
10466
10467
  });
10467
10468
 
10468
10469
  /** @internal */
10469
10470
  export type CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$Outbound =
10470
10471
  {
10471
- "__@BRAND@8558":
10472
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$Outbound;
10472
+ "__@BRAND@8684":
10473
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$Outbound;
10473
10474
  };
10474
10475
 
10475
10476
  /** @internal */
@@ -10479,12 +10480,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboun
10479
10480
  z.ZodTypeDef,
10480
10481
  CreateIntegrationStoreDirectPropertiesIntegrationsMinLength
10481
10482
  > = z.object({
10482
- atBRANDAt8558: z.lazy(() =>
10483
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema
10483
+ atBRANDAt8684: z.lazy(() =>
10484
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema
10484
10485
  ),
10485
10486
  }).transform((v) => {
10486
10487
  return remap$(v, {
10487
- atBRANDAt8558: "__@BRAND@8558",
10488
+ atBRANDAt8684: "__@BRAND@8684",
10488
10489
  });
10489
10490
  });
10490
10491
 
@@ -10530,65 +10531,65 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
10530
10531
  }
10531
10532
 
10532
10533
  /** @internal */
10533
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema:
10534
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema:
10534
10535
  z.ZodType<
10535
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558,
10536
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684,
10536
10537
  z.ZodTypeDef,
10537
10538
  unknown
10538
10539
  > = z.object({});
10539
10540
 
10540
10541
  /** @internal */
10541
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound =
10542
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound =
10542
10543
  {};
10543
10544
 
10544
10545
  /** @internal */
10545
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema:
10546
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema:
10546
10547
  z.ZodType<
10547
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound,
10548
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound,
10548
10549
  z.ZodTypeDef,
10549
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558
10550
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684
10550
10551
  > = z.object({});
10551
10552
 
10552
10553
  /**
10553
10554
  * @internal
10554
10555
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
10555
10556
  */
10556
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$ {
10557
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema` instead. */
10557
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$ {
10558
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema` instead. */
10558
10559
  export const inboundSchema =
10559
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema;
10560
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema` instead. */
10560
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema;
10561
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema` instead. */
10561
10562
  export const outboundSchema =
10562
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema;
10563
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound` instead. */
10563
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema;
10564
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound` instead. */
10564
10565
  export type Outbound =
10565
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound;
10566
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound;
10566
10567
  }
10567
10568
 
10568
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558ToJSON(
10569
- createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558:
10570
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558,
10569
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684ToJSON(
10570
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684:
10571
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684,
10571
10572
  ): string {
10572
10573
  return JSON.stringify(
10573
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema
10574
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema
10574
10575
  .parse(
10575
- createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558,
10576
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684,
10576
10577
  ),
10577
10578
  );
10578
10579
  }
10579
10580
 
10580
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558FromJSON(
10581
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684FromJSON(
10581
10582
  jsonString: string,
10582
10583
  ): SafeParseResult<
10583
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558,
10584
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684,
10584
10585
  SDKValidationError
10585
10586
  > {
10586
10587
  return safeParse(
10587
10588
  jsonString,
10588
10589
  (x) =>
10589
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema
10590
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema
10590
10591
  .parse(JSON.parse(x)),
10591
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558' from JSON`,
10592
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684' from JSON`,
10592
10593
  );
10593
10594
  }
10594
10595
 
@@ -10599,20 +10600,20 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSc
10599
10600
  z.ZodTypeDef,
10600
10601
  unknown
10601
10602
  > = z.object({
10602
- "__@BRAND@8558": z.lazy(() =>
10603
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema
10603
+ "__@BRAND@8684": z.lazy(() =>
10604
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema
10604
10605
  ),
10605
10606
  }).transform((v) => {
10606
10607
  return remap$(v, {
10607
- "__@BRAND@8558": "atBRANDAt8558",
10608
+ "__@BRAND@8684": "atBRANDAt8684",
10608
10609
  });
10609
10610
  });
10610
10611
 
10611
10612
  /** @internal */
10612
10613
  export type CreateIntegrationStoreDirectPropertiesIntegrationsPattern$Outbound =
10613
10614
  {
10614
- "__@BRAND@8558":
10615
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$Outbound;
10615
+ "__@BRAND@8684":
10616
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$Outbound;
10616
10617
  };
10617
10618
 
10618
10619
  /** @internal */
@@ -10622,12 +10623,12 @@ export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundS
10622
10623
  z.ZodTypeDef,
10623
10624
  CreateIntegrationStoreDirectPropertiesIntegrationsPattern
10624
10625
  > = z.object({
10625
- atBRANDAt8558: z.lazy(() =>
10626
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema
10626
+ atBRANDAt8684: z.lazy(() =>
10627
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema
10627
10628
  ),
10628
10629
  }).transform((v) => {
10629
10630
  return remap$(v, {
10630
- atBRANDAt8558: "__@BRAND@8558",
10631
+ atBRANDAt8684: "__@BRAND@8684",
10631
10632
  });
10632
10633
  });
10633
10634
 
@@ -14690,65 +14691,65 @@ export namespace CreateIntegrationStoreDirectPropertiesUiControl$ {
14690
14691
  }
14691
14692
 
14692
14693
  /** @internal */
14693
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema:
14694
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema:
14694
14695
  z.ZodType<
14695
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558,
14696
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684,
14696
14697
  z.ZodTypeDef,
14697
14698
  unknown
14698
14699
  > = z.object({});
14699
14700
 
14700
14701
  /** @internal */
14701
- export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound =
14702
+ export type CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound =
14702
14703
  {};
14703
14704
 
14704
14705
  /** @internal */
14705
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema:
14706
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema:
14706
14707
  z.ZodType<
14707
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound,
14708
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound,
14708
14709
  z.ZodTypeDef,
14709
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558
14710
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684
14710
14711
  > = z.object({});
14711
14712
 
14712
14713
  /**
14713
14714
  * @internal
14714
14715
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
14715
14716
  */
14716
- export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$ {
14717
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema` instead. */
14717
+ export namespace CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$ {
14718
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema` instead. */
14718
14719
  export const inboundSchema =
14719
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema;
14720
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema` instead. */
14720
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema;
14721
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema` instead. */
14721
14722
  export const outboundSchema =
14722
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema;
14723
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound` instead. */
14723
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema;
14724
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound` instead. */
14724
14725
  export type Outbound =
14725
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound;
14726
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound;
14726
14727
  }
14727
14728
 
14728
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558ToJSON(
14729
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558:
14730
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558,
14729
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684ToJSON(
14730
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684:
14731
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684,
14731
14732
  ): string {
14732
14733
  return JSON.stringify(
14733
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema
14734
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema
14734
14735
  .parse(
14735
- createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558,
14736
+ createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684,
14736
14737
  ),
14737
14738
  );
14738
14739
  }
14739
14740
 
14740
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558FromJSON(
14741
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684FromJSON(
14741
14742
  jsonString: string,
14742
14743
  ): SafeParseResult<
14743
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558,
14744
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684,
14744
14745
  SDKValidationError
14745
14746
  > {
14746
14747
  return safeParse(
14747
14748
  jsonString,
14748
14749
  (x) =>
14749
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema
14750
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema
14750
14751
  .parse(JSON.parse(x)),
14751
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558' from JSON`,
14752
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684' from JSON`,
14752
14753
  );
14753
14754
  }
14754
14755
 
@@ -14759,19 +14760,19 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema:
14759
14760
  z.ZodTypeDef,
14760
14761
  unknown
14761
14762
  > = z.object({
14762
- "__@BRAND@8558": z.lazy(() =>
14763
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema
14763
+ "__@BRAND@8684": z.lazy(() =>
14764
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema
14764
14765
  ),
14765
14766
  }).transform((v) => {
14766
14767
  return remap$(v, {
14767
- "__@BRAND@8558": "atBRANDAt8558",
14768
+ "__@BRAND@8684": "atBRANDAt8684",
14768
14769
  });
14769
14770
  });
14770
14771
 
14771
14772
  /** @internal */
14772
14773
  export type CreateIntegrationStoreDirectPropertiesMaxLength$Outbound = {
14773
- "__@BRAND@8558":
14774
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$Outbound;
14774
+ "__@BRAND@8684":
14775
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$Outbound;
14775
14776
  };
14776
14777
 
14777
14778
  /** @internal */
@@ -14781,12 +14782,12 @@ export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema:
14781
14782
  z.ZodTypeDef,
14782
14783
  CreateIntegrationStoreDirectPropertiesMaxLength
14783
14784
  > = z.object({
14784
- atBRANDAt8558: z.lazy(() =>
14785
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema
14785
+ atBRANDAt8684: z.lazy(() =>
14786
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema
14786
14787
  ),
14787
14788
  }).transform((v) => {
14788
14789
  return remap$(v, {
14789
- atBRANDAt8558: "__@BRAND@8558",
14790
+ atBRANDAt8684: "__@BRAND@8684",
14790
14791
  });
14791
14792
  });
14792
14793
 
@@ -14834,50 +14835,50 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(
14834
14835
  }
14835
14836
 
14836
14837
  /** @internal */
14837
- export const PropertiesAtBRANDAt8558$inboundSchema: z.ZodType<
14838
- PropertiesAtBRANDAt8558,
14838
+ export const PropertiesAtBRANDAt8684$inboundSchema: z.ZodType<
14839
+ PropertiesAtBRANDAt8684,
14839
14840
  z.ZodTypeDef,
14840
14841
  unknown
14841
14842
  > = z.object({});
14842
14843
 
14843
14844
  /** @internal */
14844
- export type PropertiesAtBRANDAt8558$Outbound = {};
14845
+ export type PropertiesAtBRANDAt8684$Outbound = {};
14845
14846
 
14846
14847
  /** @internal */
14847
- export const PropertiesAtBRANDAt8558$outboundSchema: z.ZodType<
14848
- PropertiesAtBRANDAt8558$Outbound,
14848
+ export const PropertiesAtBRANDAt8684$outboundSchema: z.ZodType<
14849
+ PropertiesAtBRANDAt8684$Outbound,
14849
14850
  z.ZodTypeDef,
14850
- PropertiesAtBRANDAt8558
14851
+ PropertiesAtBRANDAt8684
14851
14852
  > = z.object({});
14852
14853
 
14853
14854
  /**
14854
14855
  * @internal
14855
14856
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
14856
14857
  */
14857
- export namespace PropertiesAtBRANDAt8558$ {
14858
- /** @deprecated use `PropertiesAtBRANDAt8558$inboundSchema` instead. */
14859
- export const inboundSchema = PropertiesAtBRANDAt8558$inboundSchema;
14860
- /** @deprecated use `PropertiesAtBRANDAt8558$outboundSchema` instead. */
14861
- export const outboundSchema = PropertiesAtBRANDAt8558$outboundSchema;
14862
- /** @deprecated use `PropertiesAtBRANDAt8558$Outbound` instead. */
14863
- export type Outbound = PropertiesAtBRANDAt8558$Outbound;
14858
+ export namespace PropertiesAtBRANDAt8684$ {
14859
+ /** @deprecated use `PropertiesAtBRANDAt8684$inboundSchema` instead. */
14860
+ export const inboundSchema = PropertiesAtBRANDAt8684$inboundSchema;
14861
+ /** @deprecated use `PropertiesAtBRANDAt8684$outboundSchema` instead. */
14862
+ export const outboundSchema = PropertiesAtBRANDAt8684$outboundSchema;
14863
+ /** @deprecated use `PropertiesAtBRANDAt8684$Outbound` instead. */
14864
+ export type Outbound = PropertiesAtBRANDAt8684$Outbound;
14864
14865
  }
14865
14866
 
14866
- export function propertiesAtBRANDAt8558ToJSON(
14867
- propertiesAtBRANDAt8558: PropertiesAtBRANDAt8558,
14867
+ export function propertiesAtBRANDAt8684ToJSON(
14868
+ propertiesAtBRANDAt8684: PropertiesAtBRANDAt8684,
14868
14869
  ): string {
14869
14870
  return JSON.stringify(
14870
- PropertiesAtBRANDAt8558$outboundSchema.parse(propertiesAtBRANDAt8558),
14871
+ PropertiesAtBRANDAt8684$outboundSchema.parse(propertiesAtBRANDAt8684),
14871
14872
  );
14872
14873
  }
14873
14874
 
14874
- export function propertiesAtBRANDAt8558FromJSON(
14875
+ export function propertiesAtBRANDAt8684FromJSON(
14875
14876
  jsonString: string,
14876
- ): SafeParseResult<PropertiesAtBRANDAt8558, SDKValidationError> {
14877
+ ): SafeParseResult<PropertiesAtBRANDAt8684, SDKValidationError> {
14877
14878
  return safeParse(
14878
14879
  jsonString,
14879
- (x) => PropertiesAtBRANDAt8558$inboundSchema.parse(JSON.parse(x)),
14880
- `Failed to parse 'PropertiesAtBRANDAt8558' from JSON`,
14880
+ (x) => PropertiesAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)),
14881
+ `Failed to parse 'PropertiesAtBRANDAt8684' from JSON`,
14881
14882
  );
14882
14883
  }
14883
14884
 
@@ -14888,16 +14889,16 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema:
14888
14889
  z.ZodTypeDef,
14889
14890
  unknown
14890
14891
  > = z.object({
14891
- "__@BRAND@8558": z.lazy(() => PropertiesAtBRANDAt8558$inboundSchema),
14892
+ "__@BRAND@8684": z.lazy(() => PropertiesAtBRANDAt8684$inboundSchema),
14892
14893
  }).transform((v) => {
14893
14894
  return remap$(v, {
14894
- "__@BRAND@8558": "atBRANDAt8558",
14895
+ "__@BRAND@8684": "atBRANDAt8684",
14895
14896
  });
14896
14897
  });
14897
14898
 
14898
14899
  /** @internal */
14899
14900
  export type CreateIntegrationStoreDirectPropertiesMinLength$Outbound = {
14900
- "__@BRAND@8558": PropertiesAtBRANDAt8558$Outbound;
14901
+ "__@BRAND@8684": PropertiesAtBRANDAt8684$Outbound;
14901
14902
  };
14902
14903
 
14903
14904
  /** @internal */
@@ -14907,10 +14908,10 @@ export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema:
14907
14908
  z.ZodTypeDef,
14908
14909
  CreateIntegrationStoreDirectPropertiesMinLength
14909
14910
  > = z.object({
14910
- atBRANDAt8558: z.lazy(() => PropertiesAtBRANDAt8558$outboundSchema),
14911
+ atBRANDAt8684: z.lazy(() => PropertiesAtBRANDAt8684$outboundSchema),
14911
14912
  }).transform((v) => {
14912
14913
  return remap$(v, {
14913
- atBRANDAt8558: "__@BRAND@8558",
14914
+ atBRANDAt8684: "__@BRAND@8684",
14914
14915
  });
14915
14916
  });
14916
14917
 
@@ -14958,64 +14959,64 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(
14958
14959
  }
14959
14960
 
14960
14961
  /** @internal */
14961
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema:
14962
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema:
14962
14963
  z.ZodType<
14963
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558,
14964
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684,
14964
14965
  z.ZodTypeDef,
14965
14966
  unknown
14966
14967
  > = z.object({});
14967
14968
 
14968
14969
  /** @internal */
14969
- export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound = {};
14970
+ export type CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound = {};
14970
14971
 
14971
14972
  /** @internal */
14972
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema:
14973
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema:
14973
14974
  z.ZodType<
14974
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound,
14975
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound,
14975
14976
  z.ZodTypeDef,
14976
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558
14977
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684
14977
14978
  > = z.object({});
14978
14979
 
14979
14980
  /**
14980
14981
  * @internal
14981
14982
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
14982
14983
  */
14983
- export namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$ {
14984
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema` instead. */
14984
+ export namespace CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$ {
14985
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema` instead. */
14985
14986
  export const inboundSchema =
14986
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema;
14987
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema` instead. */
14987
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema;
14988
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema` instead. */
14988
14989
  export const outboundSchema =
14989
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema;
14990
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound` instead. */
14990
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema;
14991
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound` instead. */
14991
14992
  export type Outbound =
14992
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound;
14993
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound;
14993
14994
  }
14994
14995
 
14995
- export function createIntegrationStoreDirectPropertiesAtBRANDAt8558ToJSON(
14996
- createIntegrationStoreDirectPropertiesAtBRANDAt8558:
14997
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558,
14996
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt8684ToJSON(
14997
+ createIntegrationStoreDirectPropertiesAtBRANDAt8684:
14998
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684,
14998
14999
  ): string {
14999
15000
  return JSON.stringify(
15000
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema.parse(
15001
- createIntegrationStoreDirectPropertiesAtBRANDAt8558,
15001
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema.parse(
15002
+ createIntegrationStoreDirectPropertiesAtBRANDAt8684,
15002
15003
  ),
15003
15004
  );
15004
15005
  }
15005
15006
 
15006
- export function createIntegrationStoreDirectPropertiesAtBRANDAt8558FromJSON(
15007
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt8684FromJSON(
15007
15008
  jsonString: string,
15008
15009
  ): SafeParseResult<
15009
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558,
15010
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684,
15010
15011
  SDKValidationError
15011
15012
  > {
15012
15013
  return safeParse(
15013
15014
  jsonString,
15014
15015
  (x) =>
15015
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema.parse(
15016
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema.parse(
15016
15017
  JSON.parse(x),
15017
15018
  ),
15018
- `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8558' from JSON`,
15019
+ `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8684' from JSON`,
15019
15020
  );
15020
15021
  }
15021
15022
 
@@ -15026,18 +15027,18 @@ export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema:
15026
15027
  z.ZodTypeDef,
15027
15028
  unknown
15028
15029
  > = z.object({
15029
- "__@BRAND@8558": z.lazy(() =>
15030
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema
15030
+ "__@BRAND@8684": z.lazy(() =>
15031
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema
15031
15032
  ),
15032
15033
  }).transform((v) => {
15033
15034
  return remap$(v, {
15034
- "__@BRAND@8558": "atBRANDAt8558",
15035
+ "__@BRAND@8684": "atBRANDAt8684",
15035
15036
  });
15036
15037
  });
15037
15038
 
15038
15039
  /** @internal */
15039
15040
  export type CreateIntegrationStoreDirectPropertiesPattern$Outbound = {
15040
- "__@BRAND@8558": CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$Outbound;
15041
+ "__@BRAND@8684": CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$Outbound;
15041
15042
  };
15042
15043
 
15043
15044
  /** @internal */
@@ -15047,12 +15048,12 @@ export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema:
15047
15048
  z.ZodTypeDef,
15048
15049
  CreateIntegrationStoreDirectPropertiesPattern
15049
15050
  > = z.object({
15050
- atBRANDAt8558: z.lazy(() =>
15051
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema
15051
+ atBRANDAt8684: z.lazy(() =>
15052
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema
15052
15053
  ),
15053
15054
  }).transform((v) => {
15054
15055
  return remap$(v, {
15055
- atBRANDAt8558: "__@BRAND@8558",
15056
+ atBRANDAt8684: "__@BRAND@8684",
15056
15057
  });
15057
15058
  });
15058
15059
 
@@ -16514,46 +16515,46 @@ export function guidesFromJSON(
16514
16515
  }
16515
16516
 
16516
16517
  /** @internal */
16517
- export const AtBRANDAt8558$inboundSchema: z.ZodType<
16518
- AtBRANDAt8558,
16518
+ export const AtBRANDAt8684$inboundSchema: z.ZodType<
16519
+ AtBRANDAt8684,
16519
16520
  z.ZodTypeDef,
16520
16521
  unknown
16521
16522
  > = z.object({});
16522
16523
 
16523
16524
  /** @internal */
16524
- export type AtBRANDAt8558$Outbound = {};
16525
+ export type AtBRANDAt8684$Outbound = {};
16525
16526
 
16526
16527
  /** @internal */
16527
- export const AtBRANDAt8558$outboundSchema: z.ZodType<
16528
- AtBRANDAt8558$Outbound,
16528
+ export const AtBRANDAt8684$outboundSchema: z.ZodType<
16529
+ AtBRANDAt8684$Outbound,
16529
16530
  z.ZodTypeDef,
16530
- AtBRANDAt8558
16531
+ AtBRANDAt8684
16531
16532
  > = z.object({});
16532
16533
 
16533
16534
  /**
16534
16535
  * @internal
16535
16536
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
16536
16537
  */
16537
- export namespace AtBRANDAt8558$ {
16538
- /** @deprecated use `AtBRANDAt8558$inboundSchema` instead. */
16539
- export const inboundSchema = AtBRANDAt8558$inboundSchema;
16540
- /** @deprecated use `AtBRANDAt8558$outboundSchema` instead. */
16541
- export const outboundSchema = AtBRANDAt8558$outboundSchema;
16542
- /** @deprecated use `AtBRANDAt8558$Outbound` instead. */
16543
- export type Outbound = AtBRANDAt8558$Outbound;
16538
+ export namespace AtBRANDAt8684$ {
16539
+ /** @deprecated use `AtBRANDAt8684$inboundSchema` instead. */
16540
+ export const inboundSchema = AtBRANDAt8684$inboundSchema;
16541
+ /** @deprecated use `AtBRANDAt8684$outboundSchema` instead. */
16542
+ export const outboundSchema = AtBRANDAt8684$outboundSchema;
16543
+ /** @deprecated use `AtBRANDAt8684$Outbound` instead. */
16544
+ export type Outbound = AtBRANDAt8684$Outbound;
16544
16545
  }
16545
16546
 
16546
- export function atBRANDAt8558ToJSON(atBRANDAt8558: AtBRANDAt8558): string {
16547
- return JSON.stringify(AtBRANDAt8558$outboundSchema.parse(atBRANDAt8558));
16547
+ export function atBRANDAt8684ToJSON(atBRANDAt8684: AtBRANDAt8684): string {
16548
+ return JSON.stringify(AtBRANDAt8684$outboundSchema.parse(atBRANDAt8684));
16548
16549
  }
16549
16550
 
16550
- export function atBRANDAt8558FromJSON(
16551
+ export function atBRANDAt8684FromJSON(
16551
16552
  jsonString: string,
16552
- ): SafeParseResult<AtBRANDAt8558, SDKValidationError> {
16553
+ ): SafeParseResult<AtBRANDAt8684, SDKValidationError> {
16553
16554
  return safeParse(
16554
16555
  jsonString,
16555
- (x) => AtBRANDAt8558$inboundSchema.parse(JSON.parse(x)),
16556
- `Failed to parse 'AtBRANDAt8558' from JSON`,
16556
+ (x) => AtBRANDAt8684$inboundSchema.parse(JSON.parse(x)),
16557
+ `Failed to parse 'AtBRANDAt8684' from JSON`,
16557
16558
  );
16558
16559
  }
16559
16560
 
@@ -16563,16 +16564,16 @@ export const CreateIntegrationStoreDirectValue$inboundSchema: z.ZodType<
16563
16564
  z.ZodTypeDef,
16564
16565
  unknown
16565
16566
  > = z.object({
16566
- "__@BRAND@8558": z.lazy(() => AtBRANDAt8558$inboundSchema),
16567
+ "__@BRAND@8684": z.lazy(() => AtBRANDAt8684$inboundSchema),
16567
16568
  }).transform((v) => {
16568
16569
  return remap$(v, {
16569
- "__@BRAND@8558": "atBRANDAt8558",
16570
+ "__@BRAND@8684": "atBRANDAt8684",
16570
16571
  });
16571
16572
  });
16572
16573
 
16573
16574
  /** @internal */
16574
16575
  export type CreateIntegrationStoreDirectValue$Outbound = {
16575
- "__@BRAND@8558": AtBRANDAt8558$Outbound;
16576
+ "__@BRAND@8684": AtBRANDAt8684$Outbound;
16576
16577
  };
16577
16578
 
16578
16579
  /** @internal */
@@ -16581,10 +16582,10 @@ export const CreateIntegrationStoreDirectValue$outboundSchema: z.ZodType<
16581
16582
  z.ZodTypeDef,
16582
16583
  CreateIntegrationStoreDirectValue
16583
16584
  > = z.object({
16584
- atBRANDAt8558: z.lazy(() => AtBRANDAt8558$outboundSchema),
16585
+ atBRANDAt8684: z.lazy(() => AtBRANDAt8684$outboundSchema),
16585
16586
  }).transform((v) => {
16586
16587
  return remap$(v, {
16587
- atBRANDAt8558: "__@BRAND@8558",
16588
+ atBRANDAt8684: "__@BRAND@8684",
16588
16589
  });
16589
16590
  });
16590
16591