@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
@@ -58,6 +58,7 @@ export const CreateIntegrationStoreDirectFramework = {
58
58
  Express: "express",
59
59
  H3: "h3",
60
60
  Nestjs: "nestjs",
61
+ Fastify: "fastify",
61
62
  Xmcp: "xmcp",
62
63
  };
63
64
  export const CreateIntegrationStoreDirectEnvironments = {
@@ -940,42 +941,42 @@ export var CreateIntegrationStoreDirectIntegrationsType$;
940
941
  CreateIntegrationStoreDirectIntegrationsType$.outboundSchema = CreateIntegrationStoreDirectIntegrationsType$outboundSchema;
941
942
  })(CreateIntegrationStoreDirectIntegrationsType$ || (CreateIntegrationStoreDirectIntegrationsType$ = {}));
942
943
  /** @internal */
943
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema = z.object({});
944
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema = z.object({});
944
945
  /** @internal */
945
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema = z.object({});
946
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema = z.object({});
946
947
  /**
947
948
  * @internal
948
949
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
949
950
  */
950
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$;
951
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$) {
952
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema` instead. */
953
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema;
954
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema` instead. */
955
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema;
956
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$ = {}));
957
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558) {
958
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema
959
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558));
951
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$;
952
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$) {
953
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema` instead. */
954
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema;
955
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema` instead. */
956
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema;
957
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$ = {}));
958
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684) {
959
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema
960
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684));
960
961
  }
961
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558FromJSON(jsonString) {
962
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema
963
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558' from JSON`);
962
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684FromJSON(jsonString) {
963
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema
964
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684' from JSON`);
964
965
  }
965
966
  /** @internal */
966
967
  export const CreateIntegrationStoreDirectPropertiesValue$inboundSchema = z.object({
967
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$inboundSchema),
968
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$inboundSchema),
968
969
  }).transform((v) => {
969
970
  return remap$(v, {
970
- "__@BRAND@8558": "atBRANDAt8558",
971
+ "__@BRAND@8684": "atBRANDAt8684",
971
972
  });
972
973
  });
973
974
  /** @internal */
974
975
  export const CreateIntegrationStoreDirectPropertiesValue$outboundSchema = z.object({
975
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8558$outboundSchema),
976
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8684$outboundSchema),
976
977
  }).transform((v) => {
977
978
  return remap$(v, {
978
- atBRANDAt8558: "__@BRAND@8558",
979
+ atBRANDAt8684: "__@BRAND@8684",
979
980
  });
980
981
  });
981
982
  /**
@@ -1209,42 +1210,42 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
1209
1210
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema;
1210
1211
  })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$ = {}));
1211
1212
  /** @internal */
1212
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema = z.object({});
1213
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema = z.object({});
1213
1214
  /** @internal */
1214
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema = z.object({});
1215
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema = z.object({});
1215
1216
  /**
1216
1217
  * @internal
1217
1218
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1218
1219
  */
1219
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$;
1220
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$) {
1221
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema` instead. */
1222
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema;
1223
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema` instead. */
1224
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema;
1225
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$ = {}));
1226
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558) {
1227
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema
1228
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558));
1220
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$;
1221
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$) {
1222
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema` instead. */
1223
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema;
1224
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema` instead. */
1225
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema;
1226
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$ = {}));
1227
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684) {
1228
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema
1229
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684));
1229
1230
  }
1230
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558FromJSON(jsonString) {
1231
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema
1232
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558' from JSON`);
1231
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684FromJSON(jsonString) {
1232
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema
1233
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684' from JSON`);
1233
1234
  }
1234
1235
  /** @internal */
1235
1236
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema = z.object({
1236
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$inboundSchema),
1237
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$inboundSchema),
1237
1238
  }).transform((v) => {
1238
1239
  return remap$(v, {
1239
- "__@BRAND@8558": "atBRANDAt8558",
1240
+ "__@BRAND@8684": "atBRANDAt8684",
1240
1241
  });
1241
1242
  });
1242
1243
  /** @internal */
1243
1244
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema = z.object({
1244
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8558$outboundSchema),
1245
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8684$outboundSchema),
1245
1246
  }).transform((v) => {
1246
1247
  return remap$(v, {
1247
- atBRANDAt8558: "__@BRAND@8558",
1248
+ atBRANDAt8684: "__@BRAND@8684",
1248
1249
  });
1249
1250
  });
1250
1251
  /**
@@ -1267,42 +1268,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Max
1267
1268
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength' from JSON`);
1268
1269
  }
1269
1270
  /** @internal */
1270
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema = z.object({});
1271
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema = z.object({});
1271
1272
  /** @internal */
1272
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema = z.object({});
1273
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema = z.object({});
1273
1274
  /**
1274
1275
  * @internal
1275
1276
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1276
1277
  */
1277
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$;
1278
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$) {
1279
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema` instead. */
1280
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema;
1281
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema` instead. */
1282
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema;
1283
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$ = {}));
1284
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558) {
1285
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema
1286
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558));
1278
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$;
1279
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$) {
1280
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema` instead. */
1281
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema;
1282
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema` instead. */
1283
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema;
1284
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$ = {}));
1285
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684) {
1286
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema
1287
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684));
1287
1288
  }
1288
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558FromJSON(jsonString) {
1289
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema
1290
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558' from JSON`);
1289
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684FromJSON(jsonString) {
1290
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema
1291
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684' from JSON`);
1291
1292
  }
1292
1293
  /** @internal */
1293
1294
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema = z.object({
1294
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$inboundSchema),
1295
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$inboundSchema),
1295
1296
  }).transform((v) => {
1296
1297
  return remap$(v, {
1297
- "__@BRAND@8558": "atBRANDAt8558",
1298
+ "__@BRAND@8684": "atBRANDAt8684",
1298
1299
  });
1299
1300
  });
1300
1301
  /** @internal */
1301
1302
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema = z.object({
1302
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8558$outboundSchema),
1303
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8684$outboundSchema),
1303
1304
  }).transform((v) => {
1304
1305
  return remap$(v, {
1305
- atBRANDAt8558: "__@BRAND@8558",
1306
+ atBRANDAt8684: "__@BRAND@8684",
1306
1307
  });
1307
1308
  });
1308
1309
  /**
@@ -1325,42 +1326,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200Min
1325
1326
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength' from JSON`);
1326
1327
  }
1327
1328
  /** @internal */
1328
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema = z.object({});
1329
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema = z.object({});
1329
1330
  /** @internal */
1330
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema = z.object({});
1331
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema = z.object({});
1331
1332
  /**
1332
1333
  * @internal
1333
1334
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1334
1335
  */
1335
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$;
1336
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$) {
1337
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema` instead. */
1338
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema;
1339
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema` instead. */
1340
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema;
1341
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$ = {}));
1342
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558) {
1343
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema
1344
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558));
1336
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$;
1337
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$) {
1338
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema` instead. */
1339
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema;
1340
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema` instead. */
1341
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema;
1342
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$ = {}));
1343
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684) {
1344
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema
1345
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684));
1345
1346
  }
1346
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558FromJSON(jsonString) {
1347
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema
1348
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558' from JSON`);
1347
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684FromJSON(jsonString) {
1348
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema
1349
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684' from JSON`);
1349
1350
  }
1350
1351
  /** @internal */
1351
1352
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema = z.object({
1352
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$inboundSchema),
1353
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$inboundSchema),
1353
1354
  }).transform((v) => {
1354
1355
  return remap$(v, {
1355
- "__@BRAND@8558": "atBRANDAt8558",
1356
+ "__@BRAND@8684": "atBRANDAt8684",
1356
1357
  });
1357
1358
  });
1358
1359
  /** @internal */
1359
1360
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema = z.object({
1360
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8558$outboundSchema),
1361
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8684$outboundSchema),
1361
1362
  }).transform((v) => {
1362
1363
  return remap$(v, {
1363
- atBRANDAt8558: "__@BRAND@8558",
1364
+ atBRANDAt8684: "__@BRAND@8684",
1364
1365
  });
1365
1366
  });
1366
1367
  /**
@@ -1820,40 +1821,40 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
1820
1821
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema;
1821
1822
  })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$ = {}));
1822
1823
  /** @internal */
1823
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema = z.object({});
1824
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema = z.object({});
1824
1825
  /** @internal */
1825
- export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema = z.object({});
1826
+ export const CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema = z.object({});
1826
1827
  /**
1827
1828
  * @internal
1828
1829
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
1829
1830
  */
1830
- export var CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$;
1831
- (function (CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$) {
1832
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema` instead. */
1833
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema;
1834
- /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema` instead. */
1835
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema;
1836
- })(CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$ || (CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$ = {}));
1837
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt8558ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt8558) {
1838
- return JSON.stringify(CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema.parse(createIntegrationStoreDirectUiOptionsAtBRANDAt8558));
1831
+ export var CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$;
1832
+ (function (CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$) {
1833
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema` instead. */
1834
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema;
1835
+ /** @deprecated use `CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema` instead. */
1836
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema;
1837
+ })(CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$ || (CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$ = {}));
1838
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8684ToJSON(createIntegrationStoreDirectUiOptionsAtBRANDAt8684) {
1839
+ return JSON.stringify(CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema.parse(createIntegrationStoreDirectUiOptionsAtBRANDAt8684));
1839
1840
  }
1840
- export function createIntegrationStoreDirectUiOptionsAtBRANDAt8558FromJSON(jsonString) {
1841
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558' from JSON`);
1841
+ export function createIntegrationStoreDirectUiOptionsAtBRANDAt8684FromJSON(jsonString) {
1842
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684' from JSON`);
1842
1843
  }
1843
1844
  /** @internal */
1844
1845
  export const CreateIntegrationStoreDirectUiOptionsValue$inboundSchema = z.object({
1845
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$inboundSchema),
1846
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$inboundSchema),
1846
1847
  }).transform((v) => {
1847
1848
  return remap$(v, {
1848
- "__@BRAND@8558": "atBRANDAt8558",
1849
+ "__@BRAND@8684": "atBRANDAt8684",
1849
1850
  });
1850
1851
  });
1851
1852
  /** @internal */
1852
1853
  export const CreateIntegrationStoreDirectUiOptionsValue$outboundSchema = z.object({
1853
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8558$outboundSchema),
1854
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8684$outboundSchema),
1854
1855
  }).transform((v) => {
1855
1856
  return remap$(v, {
1856
- atBRANDAt8558: "__@BRAND@8558",
1857
+ atBRANDAt8684: "__@BRAND@8684",
1857
1858
  });
1858
1859
  });
1859
1860
  /**
@@ -2065,40 +2066,40 @@ export function createIntegrationStoreDirectUiOptions3FromJSON(jsonString) {
2065
2066
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectUiOptions3$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectUiOptions3' from JSON`);
2066
2067
  }
2067
2068
  /** @internal */
2068
- export const UiOptionsAtBRANDAt8558$inboundSchema = z.object({});
2069
+ export const UiOptionsAtBRANDAt8684$inboundSchema = z.object({});
2069
2070
  /** @internal */
2070
- export const UiOptionsAtBRANDAt8558$outboundSchema = z.object({});
2071
+ export const UiOptionsAtBRANDAt8684$outboundSchema = z.object({});
2071
2072
  /**
2072
2073
  * @internal
2073
2074
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2074
2075
  */
2075
- export var UiOptionsAtBRANDAt8558$;
2076
- (function (UiOptionsAtBRANDAt8558$) {
2077
- /** @deprecated use `UiOptionsAtBRANDAt8558$inboundSchema` instead. */
2078
- UiOptionsAtBRANDAt8558$.inboundSchema = UiOptionsAtBRANDAt8558$inboundSchema;
2079
- /** @deprecated use `UiOptionsAtBRANDAt8558$outboundSchema` instead. */
2080
- UiOptionsAtBRANDAt8558$.outboundSchema = UiOptionsAtBRANDAt8558$outboundSchema;
2081
- })(UiOptionsAtBRANDAt8558$ || (UiOptionsAtBRANDAt8558$ = {}));
2082
- export function uiOptionsAtBRANDAt8558ToJSON(uiOptionsAtBRANDAt8558) {
2083
- return JSON.stringify(UiOptionsAtBRANDAt8558$outboundSchema.parse(uiOptionsAtBRANDAt8558));
2076
+ export var UiOptionsAtBRANDAt8684$;
2077
+ (function (UiOptionsAtBRANDAt8684$) {
2078
+ /** @deprecated use `UiOptionsAtBRANDAt8684$inboundSchema` instead. */
2079
+ UiOptionsAtBRANDAt8684$.inboundSchema = UiOptionsAtBRANDAt8684$inboundSchema;
2080
+ /** @deprecated use `UiOptionsAtBRANDAt8684$outboundSchema` instead. */
2081
+ UiOptionsAtBRANDAt8684$.outboundSchema = UiOptionsAtBRANDAt8684$outboundSchema;
2082
+ })(UiOptionsAtBRANDAt8684$ || (UiOptionsAtBRANDAt8684$ = {}));
2083
+ export function uiOptionsAtBRANDAt8684ToJSON(uiOptionsAtBRANDAt8684) {
2084
+ return JSON.stringify(UiOptionsAtBRANDAt8684$outboundSchema.parse(uiOptionsAtBRANDAt8684));
2084
2085
  }
2085
- export function uiOptionsAtBRANDAt8558FromJSON(jsonString) {
2086
- return safeParse(jsonString, (x) => UiOptionsAtBRANDAt8558$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt8558' from JSON`);
2086
+ export function uiOptionsAtBRANDAt8684FromJSON(jsonString) {
2087
+ return safeParse(jsonString, (x) => UiOptionsAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'UiOptionsAtBRANDAt8684' from JSON`);
2087
2088
  }
2088
2089
  /** @internal */
2089
2090
  export const CreateIntegrationStoreDirectUiOptions2$inboundSchema = z.object({
2090
- "__@BRAND@8558": z.lazy(() => UiOptionsAtBRANDAt8558$inboundSchema),
2091
+ "__@BRAND@8684": z.lazy(() => UiOptionsAtBRANDAt8684$inboundSchema),
2091
2092
  }).transform((v) => {
2092
2093
  return remap$(v, {
2093
- "__@BRAND@8558": "atBRANDAt8558",
2094
+ "__@BRAND@8684": "atBRANDAt8684",
2094
2095
  });
2095
2096
  });
2096
2097
  /** @internal */
2097
2098
  export const CreateIntegrationStoreDirectUiOptions2$outboundSchema = z.object({
2098
- atBRANDAt8558: z.lazy(() => UiOptionsAtBRANDAt8558$outboundSchema),
2099
+ atBRANDAt8684: z.lazy(() => UiOptionsAtBRANDAt8684$outboundSchema),
2099
2100
  }).transform((v) => {
2100
2101
  return remap$(v, {
2101
- atBRANDAt8558: "__@BRAND@8558",
2102
+ atBRANDAt8684: "__@BRAND@8684",
2102
2103
  });
2103
2104
  });
2104
2105
  /**
@@ -2339,42 +2340,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseUiOpti
2339
2340
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions' from JSON`);
2340
2341
  }
2341
2342
  /** @internal */
2342
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema = z.object({});
2343
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema = z.object({});
2343
2344
  /** @internal */
2344
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema = z.object({});
2345
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema = z.object({});
2345
2346
  /**
2346
2347
  * @internal
2347
2348
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2348
2349
  */
2349
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$;
2350
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$) {
2351
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema` instead. */
2352
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema;
2353
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema` instead. */
2354
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema;
2355
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$ = {}));
2356
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558) {
2357
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema
2358
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558));
2350
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$;
2351
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$) {
2352
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema` instead. */
2353
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema;
2354
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema` instead. */
2355
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema;
2356
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$ = {}));
2357
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684) {
2358
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema
2359
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684));
2359
2360
  }
2360
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558FromJSON(jsonString) {
2361
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema
2362
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558' from JSON`);
2361
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684FromJSON(jsonString) {
2362
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema
2363
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684' from JSON`);
2363
2364
  }
2364
2365
  /** @internal */
2365
2366
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema = z.object({
2366
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$inboundSchema),
2367
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$inboundSchema),
2367
2368
  }).transform((v) => {
2368
2369
  return remap$(v, {
2369
- "__@BRAND@8558": "atBRANDAt8558",
2370
+ "__@BRAND@8684": "atBRANDAt8684",
2370
2371
  });
2371
2372
  });
2372
2373
  /** @internal */
2373
2374
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema = z.object({
2374
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8558$outboundSchema),
2375
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8684$outboundSchema),
2375
2376
  }).transform((v) => {
2376
2377
  return remap$(v, {
2377
- atBRANDAt8558: "__@BRAND@8558",
2378
+ atBRANDAt8684: "__@BRAND@8684",
2378
2379
  });
2379
2380
  });
2380
2381
  /**
@@ -2397,42 +2398,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMaxLen
2397
2398
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength' from JSON`);
2398
2399
  }
2399
2400
  /** @internal */
2400
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema = z.object({});
2401
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema = z.object({});
2401
2402
  /** @internal */
2402
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema = z.object({});
2403
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema = z.object({});
2403
2404
  /**
2404
2405
  * @internal
2405
2406
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2406
2407
  */
2407
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$;
2408
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$) {
2409
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema` instead. */
2410
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema;
2411
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema` instead. */
2412
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema;
2413
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$ = {}));
2414
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558) {
2415
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema
2416
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558));
2408
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$;
2409
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$) {
2410
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema` instead. */
2411
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema;
2412
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema` instead. */
2413
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema;
2414
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$ = {}));
2415
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684) {
2416
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema
2417
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684));
2417
2418
  }
2418
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558FromJSON(jsonString) {
2419
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema
2420
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558' from JSON`);
2419
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684FromJSON(jsonString) {
2420
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema
2421
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684' from JSON`);
2421
2422
  }
2422
2423
  /** @internal */
2423
2424
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema = z.object({
2424
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$inboundSchema),
2425
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$inboundSchema),
2425
2426
  }).transform((v) => {
2426
2427
  return remap$(v, {
2427
- "__@BRAND@8558": "atBRANDAt8558",
2428
+ "__@BRAND@8684": "atBRANDAt8684",
2428
2429
  });
2429
2430
  });
2430
2431
  /** @internal */
2431
2432
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema = z.object({
2432
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8558$outboundSchema),
2433
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8684$outboundSchema),
2433
2434
  }).transform((v) => {
2434
2435
  return remap$(v, {
2435
- atBRANDAt8558: "__@BRAND@8558",
2436
+ atBRANDAt8684: "__@BRAND@8684",
2436
2437
  });
2437
2438
  });
2438
2439
  /**
@@ -2455,42 +2456,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponseMinLen
2455
2456
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength' from JSON`);
2456
2457
  }
2457
2458
  /** @internal */
2458
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema = z.object({});
2459
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema = z.object({});
2459
2460
  /** @internal */
2460
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema = z.object({});
2461
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema = z.object({});
2461
2462
  /**
2462
2463
  * @internal
2463
2464
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2464
2465
  */
2465
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$;
2466
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$) {
2467
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema` instead. */
2468
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema;
2469
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema` instead. */
2470
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema;
2471
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$ = {}));
2472
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558) {
2473
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema
2474
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558));
2466
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$;
2467
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$) {
2468
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema` instead. */
2469
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema;
2470
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema` instead. */
2471
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema;
2472
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$ = {}));
2473
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684) {
2474
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema
2475
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684));
2475
2476
  }
2476
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558FromJSON(jsonString) {
2477
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema
2478
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558' from JSON`);
2477
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684FromJSON(jsonString) {
2478
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema
2479
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684' from JSON`);
2479
2480
  }
2480
2481
  /** @internal */
2481
2482
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema = z.object({
2482
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$inboundSchema),
2483
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$inboundSchema),
2483
2484
  }).transform((v) => {
2484
2485
  return remap$(v, {
2485
- "__@BRAND@8558": "atBRANDAt8558",
2486
+ "__@BRAND@8684": "atBRANDAt8684",
2486
2487
  });
2487
2488
  });
2488
2489
  /** @internal */
2489
2490
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema = z.object({
2490
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8558$outboundSchema),
2491
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8684$outboundSchema),
2491
2492
  }).transform((v) => {
2492
2493
  return remap$(v, {
2493
- atBRANDAt8558: "__@BRAND@8558",
2494
+ atBRANDAt8684: "__@BRAND@8684",
2494
2495
  });
2495
2496
  });
2496
2497
  /**
@@ -2962,42 +2963,42 @@ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Applicat
2962
2963
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$outboundSchema;
2963
2964
  })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$ = {}));
2964
2965
  /** @internal */
2965
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema = z.object({});
2966
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema = z.object({});
2966
2967
  /** @internal */
2967
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema = z.object({});
2968
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema = z.object({});
2968
2969
  /**
2969
2970
  * @internal
2970
2971
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
2971
2972
  */
2972
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$;
2973
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$) {
2974
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema` instead. */
2975
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema;
2976
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema` instead. */
2977
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema;
2978
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$ = {}));
2979
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558) {
2980
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema
2981
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558));
2973
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$;
2974
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$) {
2975
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema` instead. */
2976
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema;
2977
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema` instead. */
2978
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema;
2979
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$ = {}));
2980
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684) {
2981
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema
2982
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684));
2982
2983
  }
2983
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558FromJSON(jsonString) {
2984
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema
2985
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558' from JSON`);
2984
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684FromJSON(jsonString) {
2985
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema
2986
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684' from JSON`);
2986
2987
  }
2987
2988
  /** @internal */
2988
2989
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema = z.object({
2989
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$inboundSchema),
2990
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$inboundSchema),
2990
2991
  }).transform((v) => {
2991
2992
  return remap$(v, {
2992
- "__@BRAND@8558": "atBRANDAt8558",
2993
+ "__@BRAND@8684": "atBRANDAt8684",
2993
2994
  });
2994
2995
  });
2995
2996
  /** @internal */
2996
2997
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema = z.object({
2997
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8558$outboundSchema),
2998
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8684$outboundSchema),
2998
2999
  }).transform((v) => {
2999
3000
  return remap$(v, {
3000
- atBRANDAt8558: "__@BRAND@8558",
3001
+ atBRANDAt8684: "__@BRAND@8684",
3001
3002
  });
3002
3003
  });
3003
3004
  /**
@@ -3020,42 +3021,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
3020
3021
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength' from JSON`);
3021
3022
  }
3022
3023
  /** @internal */
3023
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema = z.object({});
3024
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema = z.object({});
3024
3025
  /** @internal */
3025
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema = z.object({});
3026
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema = z.object({});
3026
3027
  /**
3027
3028
  * @internal
3028
3029
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3029
3030
  */
3030
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$;
3031
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$) {
3032
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema` instead. */
3033
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema;
3034
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema` instead. */
3035
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema;
3036
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$ = {}));
3037
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558) {
3038
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema
3039
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558));
3031
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$;
3032
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$) {
3033
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema` instead. */
3034
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema;
3035
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema` instead. */
3036
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema;
3037
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$ = {}));
3038
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684) {
3039
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema
3040
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684));
3040
3041
  }
3041
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558FromJSON(jsonString) {
3042
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema
3043
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558' from JSON`);
3042
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684FromJSON(jsonString) {
3043
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema
3044
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684' from JSON`);
3044
3045
  }
3045
3046
  /** @internal */
3046
3047
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema = z.object({
3047
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$inboundSchema),
3048
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$inboundSchema),
3048
3049
  }).transform((v) => {
3049
3050
  return remap$(v, {
3050
- "__@BRAND@8558": "atBRANDAt8558",
3051
+ "__@BRAND@8684": "atBRANDAt8684",
3051
3052
  });
3052
3053
  });
3053
3054
  /** @internal */
3054
3055
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema = z.object({
3055
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8558$outboundSchema),
3056
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8684$outboundSchema),
3056
3057
  }).transform((v) => {
3057
3058
  return remap$(v, {
3058
- atBRANDAt8558: "__@BRAND@8558",
3059
+ atBRANDAt8684: "__@BRAND@8684",
3059
3060
  });
3060
3061
  });
3061
3062
  /**
@@ -3078,42 +3079,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200App
3078
3079
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength' from JSON`);
3079
3080
  }
3080
3081
  /** @internal */
3081
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema = z.object({});
3082
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema = z.object({});
3082
3083
  /** @internal */
3083
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema = z.object({});
3084
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema = z.object({});
3084
3085
  /**
3085
3086
  * @internal
3086
3087
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
3087
3088
  */
3088
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$;
3089
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$) {
3090
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema` instead. */
3091
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema;
3092
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema` instead. */
3093
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema;
3094
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$ = {}));
3095
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558) {
3096
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema
3097
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558));
3089
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$;
3090
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$) {
3091
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema` instead. */
3092
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema;
3093
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema` instead. */
3094
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema;
3095
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$ = {}));
3096
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684) {
3097
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema
3098
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684));
3098
3099
  }
3099
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558FromJSON(jsonString) {
3100
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema
3101
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558' from JSON`);
3100
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684FromJSON(jsonString) {
3101
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema
3102
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684' from JSON`);
3102
3103
  }
3103
3104
  /** @internal */
3104
3105
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema = z.object({
3105
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$inboundSchema),
3106
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$inboundSchema),
3106
3107
  }).transform((v) => {
3107
3108
  return remap$(v, {
3108
- "__@BRAND@8558": "atBRANDAt8558",
3109
+ "__@BRAND@8684": "atBRANDAt8684",
3109
3110
  });
3110
3111
  });
3111
3112
  /** @internal */
3112
3113
  export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema = z.object({
3113
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8558$outboundSchema),
3114
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8684$outboundSchema),
3114
3115
  }).transform((v) => {
3115
3116
  return remap$(v, {
3116
- atBRANDAt8558: "__@BRAND@8558",
3117
+ atBRANDAt8684: "__@BRAND@8684",
3117
3118
  });
3118
3119
  });
3119
3120
  /**
@@ -4017,42 +4018,42 @@ export function createIntegrationStoreDirectPropertiesUiOptionsFromJSON(jsonStri
4017
4018
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesUiOptions' from JSON`);
4018
4019
  }
4019
4020
  /** @internal */
4020
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema = z.object({});
4021
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema = z.object({});
4021
4022
  /** @internal */
4022
- export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema = z.object({});
4023
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema = z.object({});
4023
4024
  /**
4024
4025
  * @internal
4025
4026
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4026
4027
  */
4027
- export var CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$;
4028
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$) {
4029
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema` instead. */
4030
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema;
4031
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema` instead. */
4032
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema;
4033
- })(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$ = {}));
4034
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558) {
4035
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema
4036
- .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558));
4028
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$;
4029
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$) {
4030
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema` instead. */
4031
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema;
4032
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema` instead. */
4033
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema;
4034
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$ = {}));
4035
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684) {
4036
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema
4037
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684));
4037
4038
  }
4038
- export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558FromJSON(jsonString) {
4039
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema
4040
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558' from JSON`);
4039
+ export function createIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684FromJSON(jsonString) {
4040
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema
4041
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684' from JSON`);
4041
4042
  }
4042
4043
  /** @internal */
4043
4044
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema = z.object({
4044
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$inboundSchema),
4045
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$inboundSchema),
4045
4046
  }).transform((v) => {
4046
4047
  return remap$(v, {
4047
- "__@BRAND@8558": "atBRANDAt8558",
4048
+ "__@BRAND@8684": "atBRANDAt8684",
4048
4049
  });
4049
4050
  });
4050
4051
  /** @internal */
4051
4052
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema = z.object({
4052
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8558$outboundSchema),
4053
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8684$outboundSchema),
4053
4054
  }).transform((v) => {
4054
4055
  return remap$(v, {
4055
- atBRANDAt8558: "__@BRAND@8558",
4056
+ atBRANDAt8684: "__@BRAND@8684",
4056
4057
  });
4057
4058
  });
4058
4059
  /**
@@ -4075,42 +4076,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMaxLengthFromJ
4075
4076
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength' from JSON`);
4076
4077
  }
4077
4078
  /** @internal */
4078
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema = z.object({});
4079
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema = z.object({});
4079
4080
  /** @internal */
4080
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema = z.object({});
4081
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema = z.object({});
4081
4082
  /**
4082
4083
  * @internal
4083
4084
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4084
4085
  */
4085
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$;
4086
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$) {
4087
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema` instead. */
4088
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema;
4089
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema` instead. */
4090
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema;
4091
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$ = {}));
4092
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558) {
4093
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema
4094
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558));
4086
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$;
4087
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$) {
4088
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema` instead. */
4089
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema;
4090
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema` instead. */
4091
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema;
4092
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$ = {}));
4093
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684) {
4094
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema
4095
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684));
4095
4096
  }
4096
- export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558FromJSON(jsonString) {
4097
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema
4098
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558' from JSON`);
4097
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684FromJSON(jsonString) {
4098
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema
4099
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684' from JSON`);
4099
4100
  }
4100
4101
  /** @internal */
4101
4102
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema = z.object({
4102
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$inboundSchema),
4103
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$inboundSchema),
4103
4104
  }).transform((v) => {
4104
4105
  return remap$(v, {
4105
- "__@BRAND@8558": "atBRANDAt8558",
4106
+ "__@BRAND@8684": "atBRANDAt8684",
4106
4107
  });
4107
4108
  });
4108
4109
  /** @internal */
4109
4110
  export const CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema = z.object({
4110
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8558$outboundSchema),
4111
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8684$outboundSchema),
4111
4112
  }).transform((v) => {
4112
4113
  return remap$(v, {
4113
- atBRANDAt8558: "__@BRAND@8558",
4114
+ atBRANDAt8684: "__@BRAND@8684",
4114
4115
  });
4115
4116
  });
4116
4117
  /**
@@ -4133,42 +4134,42 @@ export function createIntegrationStoreDirectPropertiesIntegrationsMinLengthFromJ
4133
4134
  .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsMinLength' from JSON`);
4134
4135
  }
4135
4136
  /** @internal */
4136
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema = z.object({});
4137
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema = z.object({});
4137
4138
  /** @internal */
4138
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema = z.object({});
4139
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema = z.object({});
4139
4140
  /**
4140
4141
  * @internal
4141
4142
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
4142
4143
  */
4143
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$;
4144
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$) {
4145
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema` instead. */
4146
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema;
4147
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema` instead. */
4148
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema;
4149
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$ = {}));
4150
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558) {
4151
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema
4152
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558));
4144
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$;
4145
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$) {
4146
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema` instead. */
4147
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema;
4148
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema` instead. */
4149
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema;
4150
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$ = {}));
4151
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684) {
4152
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema
4153
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684));
4153
4154
  }
4154
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558FromJSON(jsonString) {
4155
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema
4156
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558' from JSON`);
4155
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684FromJSON(jsonString) {
4156
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema
4157
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684' from JSON`);
4157
4158
  }
4158
4159
  /** @internal */
4159
4160
  export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema = z.object({
4160
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$inboundSchema),
4161
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$inboundSchema),
4161
4162
  }).transform((v) => {
4162
4163
  return remap$(v, {
4163
- "__@BRAND@8558": "atBRANDAt8558",
4164
+ "__@BRAND@8684": "atBRANDAt8684",
4164
4165
  });
4165
4166
  });
4166
4167
  /** @internal */
4167
4168
  export const CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema = z.object({
4168
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8558$outboundSchema),
4169
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8684$outboundSchema),
4169
4170
  }).transform((v) => {
4170
4171
  return remap$(v, {
4171
- atBRANDAt8558: "__@BRAND@8558",
4172
+ atBRANDAt8684: "__@BRAND@8684",
4172
4173
  });
4173
4174
  });
4174
4175
  /**
@@ -5977,42 +5978,42 @@ export var CreateIntegrationStoreDirectPropertiesUiControl$;
5977
5978
  CreateIntegrationStoreDirectPropertiesUiControl$.outboundSchema = CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema;
5978
5979
  })(CreateIntegrationStoreDirectPropertiesUiControl$ || (CreateIntegrationStoreDirectPropertiesUiControl$ = {}));
5979
5980
  /** @internal */
5980
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema = z.object({});
5981
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema = z.object({});
5981
5982
  /** @internal */
5982
- export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema = z.object({});
5983
+ export const CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema = z.object({});
5983
5984
  /**
5984
5985
  * @internal
5985
5986
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
5986
5987
  */
5987
- export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$;
5988
- (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$) {
5989
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema` instead. */
5990
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema;
5991
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema` instead. */
5992
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema;
5993
- })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$ = {}));
5994
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558) {
5995
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema
5996
- .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558));
5988
+ export var CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$;
5989
+ (function (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$) {
5990
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema` instead. */
5991
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema;
5992
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema` instead. */
5993
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema;
5994
+ })(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$ = {}));
5995
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684) {
5996
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema
5997
+ .parse(createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684));
5997
5998
  }
5998
- export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558FromJSON(jsonString) {
5999
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema
6000
- .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558' from JSON`);
5999
+ export function createIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684FromJSON(jsonString) {
6000
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema
6001
+ .parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684' from JSON`);
6001
6002
  }
6002
6003
  /** @internal */
6003
6004
  export const CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema = z.object({
6004
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$inboundSchema),
6005
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$inboundSchema),
6005
6006
  }).transform((v) => {
6006
6007
  return remap$(v, {
6007
- "__@BRAND@8558": "atBRANDAt8558",
6008
+ "__@BRAND@8684": "atBRANDAt8684",
6008
6009
  });
6009
6010
  });
6010
6011
  /** @internal */
6011
6012
  export const CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema = z.object({
6012
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8558$outboundSchema),
6013
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8684$outboundSchema),
6013
6014
  }).transform((v) => {
6014
6015
  return remap$(v, {
6015
- atBRANDAt8558: "__@BRAND@8558",
6016
+ atBRANDAt8684: "__@BRAND@8684",
6016
6017
  });
6017
6018
  });
6018
6019
  /**
@@ -6033,40 +6034,40 @@ export function createIntegrationStoreDirectPropertiesMaxLengthFromJSON(jsonStri
6033
6034
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMaxLength' from JSON`);
6034
6035
  }
6035
6036
  /** @internal */
6036
- export const PropertiesAtBRANDAt8558$inboundSchema = z.object({});
6037
+ export const PropertiesAtBRANDAt8684$inboundSchema = z.object({});
6037
6038
  /** @internal */
6038
- export const PropertiesAtBRANDAt8558$outboundSchema = z.object({});
6039
+ export const PropertiesAtBRANDAt8684$outboundSchema = z.object({});
6039
6040
  /**
6040
6041
  * @internal
6041
6042
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6042
6043
  */
6043
- export var PropertiesAtBRANDAt8558$;
6044
- (function (PropertiesAtBRANDAt8558$) {
6045
- /** @deprecated use `PropertiesAtBRANDAt8558$inboundSchema` instead. */
6046
- PropertiesAtBRANDAt8558$.inboundSchema = PropertiesAtBRANDAt8558$inboundSchema;
6047
- /** @deprecated use `PropertiesAtBRANDAt8558$outboundSchema` instead. */
6048
- PropertiesAtBRANDAt8558$.outboundSchema = PropertiesAtBRANDAt8558$outboundSchema;
6049
- })(PropertiesAtBRANDAt8558$ || (PropertiesAtBRANDAt8558$ = {}));
6050
- export function propertiesAtBRANDAt8558ToJSON(propertiesAtBRANDAt8558) {
6051
- return JSON.stringify(PropertiesAtBRANDAt8558$outboundSchema.parse(propertiesAtBRANDAt8558));
6044
+ export var PropertiesAtBRANDAt8684$;
6045
+ (function (PropertiesAtBRANDAt8684$) {
6046
+ /** @deprecated use `PropertiesAtBRANDAt8684$inboundSchema` instead. */
6047
+ PropertiesAtBRANDAt8684$.inboundSchema = PropertiesAtBRANDAt8684$inboundSchema;
6048
+ /** @deprecated use `PropertiesAtBRANDAt8684$outboundSchema` instead. */
6049
+ PropertiesAtBRANDAt8684$.outboundSchema = PropertiesAtBRANDAt8684$outboundSchema;
6050
+ })(PropertiesAtBRANDAt8684$ || (PropertiesAtBRANDAt8684$ = {}));
6051
+ export function propertiesAtBRANDAt8684ToJSON(propertiesAtBRANDAt8684) {
6052
+ return JSON.stringify(PropertiesAtBRANDAt8684$outboundSchema.parse(propertiesAtBRANDAt8684));
6052
6053
  }
6053
- export function propertiesAtBRANDAt8558FromJSON(jsonString) {
6054
- return safeParse(jsonString, (x) => PropertiesAtBRANDAt8558$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt8558' from JSON`);
6054
+ export function propertiesAtBRANDAt8684FromJSON(jsonString) {
6055
+ return safeParse(jsonString, (x) => PropertiesAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'PropertiesAtBRANDAt8684' from JSON`);
6055
6056
  }
6056
6057
  /** @internal */
6057
6058
  export const CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema = z.object({
6058
- "__@BRAND@8558": z.lazy(() => PropertiesAtBRANDAt8558$inboundSchema),
6059
+ "__@BRAND@8684": z.lazy(() => PropertiesAtBRANDAt8684$inboundSchema),
6059
6060
  }).transform((v) => {
6060
6061
  return remap$(v, {
6061
- "__@BRAND@8558": "atBRANDAt8558",
6062
+ "__@BRAND@8684": "atBRANDAt8684",
6062
6063
  });
6063
6064
  });
6064
6065
  /** @internal */
6065
6066
  export const CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema = z.object({
6066
- atBRANDAt8558: z.lazy(() => PropertiesAtBRANDAt8558$outboundSchema),
6067
+ atBRANDAt8684: z.lazy(() => PropertiesAtBRANDAt8684$outboundSchema),
6067
6068
  }).transform((v) => {
6068
6069
  return remap$(v, {
6069
- atBRANDAt8558: "__@BRAND@8558",
6070
+ atBRANDAt8684: "__@BRAND@8684",
6070
6071
  });
6071
6072
  });
6072
6073
  /**
@@ -6087,40 +6088,40 @@ export function createIntegrationStoreDirectPropertiesMinLengthFromJSON(jsonStri
6087
6088
  return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesMinLength' from JSON`);
6088
6089
  }
6089
6090
  /** @internal */
6090
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema = z.object({});
6091
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema = z.object({});
6091
6092
  /** @internal */
6092
- export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema = z.object({});
6093
+ export const CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema = z.object({});
6093
6094
  /**
6094
6095
  * @internal
6095
6096
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6096
6097
  */
6097
- export var CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$;
6098
- (function (CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$) {
6099
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema` instead. */
6100
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$.inboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema;
6101
- /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema` instead. */
6102
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$.outboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema;
6103
- })(CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$ || (CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$ = {}));
6104
- export function createIntegrationStoreDirectPropertiesAtBRANDAt8558ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt8558) {
6105
- return JSON.stringify(CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema.parse(createIntegrationStoreDirectPropertiesAtBRANDAt8558));
6098
+ export var CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$;
6099
+ (function (CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$) {
6100
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema` instead. */
6101
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$.inboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema;
6102
+ /** @deprecated use `CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema` instead. */
6103
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$.outboundSchema = CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema;
6104
+ })(CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$ || (CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$ = {}));
6105
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt8684ToJSON(createIntegrationStoreDirectPropertiesAtBRANDAt8684) {
6106
+ return JSON.stringify(CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema.parse(createIntegrationStoreDirectPropertiesAtBRANDAt8684));
6106
6107
  }
6107
- export function createIntegrationStoreDirectPropertiesAtBRANDAt8558FromJSON(jsonString) {
6108
- return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8558' from JSON`);
6108
+ export function createIntegrationStoreDirectPropertiesAtBRANDAt8684FromJSON(jsonString) {
6109
+ return safeParse(jsonString, (x) => CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'CreateIntegrationStoreDirectPropertiesAtBRANDAt8684' from JSON`);
6109
6110
  }
6110
6111
  /** @internal */
6111
6112
  export const CreateIntegrationStoreDirectPropertiesPattern$inboundSchema = z.object({
6112
- "__@BRAND@8558": z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$inboundSchema),
6113
+ "__@BRAND@8684": z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$inboundSchema),
6113
6114
  }).transform((v) => {
6114
6115
  return remap$(v, {
6115
- "__@BRAND@8558": "atBRANDAt8558",
6116
+ "__@BRAND@8684": "atBRANDAt8684",
6116
6117
  });
6117
6118
  });
6118
6119
  /** @internal */
6119
6120
  export const CreateIntegrationStoreDirectPropertiesPattern$outboundSchema = z.object({
6120
- atBRANDAt8558: z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8558$outboundSchema),
6121
+ atBRANDAt8684: z.lazy(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8684$outboundSchema),
6121
6122
  }).transform((v) => {
6122
6123
  return remap$(v, {
6123
- atBRANDAt8558: "__@BRAND@8558",
6124
+ atBRANDAt8684: "__@BRAND@8684",
6124
6125
  });
6125
6126
  });
6126
6127
  /**
@@ -6810,40 +6811,40 @@ export function guidesFromJSON(jsonString) {
6810
6811
  return safeParse(jsonString, (x) => Guides$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Guides' from JSON`);
6811
6812
  }
6812
6813
  /** @internal */
6813
- export const AtBRANDAt8558$inboundSchema = z.object({});
6814
+ export const AtBRANDAt8684$inboundSchema = z.object({});
6814
6815
  /** @internal */
6815
- export const AtBRANDAt8558$outboundSchema = z.object({});
6816
+ export const AtBRANDAt8684$outboundSchema = z.object({});
6816
6817
  /**
6817
6818
  * @internal
6818
6819
  * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
6819
6820
  */
6820
- export var AtBRANDAt8558$;
6821
- (function (AtBRANDAt8558$) {
6822
- /** @deprecated use `AtBRANDAt8558$inboundSchema` instead. */
6823
- AtBRANDAt8558$.inboundSchema = AtBRANDAt8558$inboundSchema;
6824
- /** @deprecated use `AtBRANDAt8558$outboundSchema` instead. */
6825
- AtBRANDAt8558$.outboundSchema = AtBRANDAt8558$outboundSchema;
6826
- })(AtBRANDAt8558$ || (AtBRANDAt8558$ = {}));
6827
- export function atBRANDAt8558ToJSON(atBRANDAt8558) {
6828
- return JSON.stringify(AtBRANDAt8558$outboundSchema.parse(atBRANDAt8558));
6821
+ export var AtBRANDAt8684$;
6822
+ (function (AtBRANDAt8684$) {
6823
+ /** @deprecated use `AtBRANDAt8684$inboundSchema` instead. */
6824
+ AtBRANDAt8684$.inboundSchema = AtBRANDAt8684$inboundSchema;
6825
+ /** @deprecated use `AtBRANDAt8684$outboundSchema` instead. */
6826
+ AtBRANDAt8684$.outboundSchema = AtBRANDAt8684$outboundSchema;
6827
+ })(AtBRANDAt8684$ || (AtBRANDAt8684$ = {}));
6828
+ export function atBRANDAt8684ToJSON(atBRANDAt8684) {
6829
+ return JSON.stringify(AtBRANDAt8684$outboundSchema.parse(atBRANDAt8684));
6829
6830
  }
6830
- export function atBRANDAt8558FromJSON(jsonString) {
6831
- return safeParse(jsonString, (x) => AtBRANDAt8558$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt8558' from JSON`);
6831
+ export function atBRANDAt8684FromJSON(jsonString) {
6832
+ return safeParse(jsonString, (x) => AtBRANDAt8684$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'AtBRANDAt8684' from JSON`);
6832
6833
  }
6833
6834
  /** @internal */
6834
6835
  export const CreateIntegrationStoreDirectValue$inboundSchema = z.object({
6835
- "__@BRAND@8558": z.lazy(() => AtBRANDAt8558$inboundSchema),
6836
+ "__@BRAND@8684": z.lazy(() => AtBRANDAt8684$inboundSchema),
6836
6837
  }).transform((v) => {
6837
6838
  return remap$(v, {
6838
- "__@BRAND@8558": "atBRANDAt8558",
6839
+ "__@BRAND@8684": "atBRANDAt8684",
6839
6840
  });
6840
6841
  });
6841
6842
  /** @internal */
6842
6843
  export const CreateIntegrationStoreDirectValue$outboundSchema = z.object({
6843
- atBRANDAt8558: z.lazy(() => AtBRANDAt8558$outboundSchema),
6844
+ atBRANDAt8684: z.lazy(() => AtBRANDAt8684$outboundSchema),
6844
6845
  }).transform((v) => {
6845
6846
  return remap$(v, {
6846
- atBRANDAt8558: "__@BRAND@8558",
6847
+ atBRANDAt8684: "__@BRAND@8684",
6847
6848
  });
6848
6849
  });
6849
6850
  /**