@vercel/sdk 1.17.4 → 1.17.5

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 (87) hide show
  1. package/bin/mcp-server.js +331 -369
  2. package/bin/mcp-server.js.map +14 -14
  3. package/esm/__tests__/accessgroups.test.js +2 -6
  4. package/esm/__tests__/accessgroups.test.js.map +1 -1
  5. package/esm/__tests__/checks.test.js +1 -1
  6. package/esm/__tests__/checks.test.js.map +1 -1
  7. package/esm/__tests__/domains.test.js +1 -1
  8. package/esm/__tests__/domains.test.js.map +1 -1
  9. package/esm/__tests__/integrations.test.js +1 -1
  10. package/esm/__tests__/logdrains.test.js +1 -3
  11. package/esm/__tests__/logdrains.test.js.map +1 -1
  12. package/esm/__tests__/rollingrelease.test.js +2 -2
  13. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  14. package/esm/__tests__/security.test.js +4 -4
  15. package/esm/__tests__/security.test.js.map +1 -1
  16. package/esm/__tests__/teams.test.js +2 -2
  17. package/esm/__tests__/teams.test.js.map +1 -1
  18. package/esm/lib/config.d.ts +3 -3
  19. package/esm/lib/config.js +3 -3
  20. package/esm/mcp-server/mcp-server.js +1 -1
  21. package/esm/mcp-server/server.js +1 -1
  22. package/esm/models/canceldeploymentop.d.ts +0 -37
  23. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  24. package/esm/models/canceldeploymentop.js +0 -23
  25. package/esm/models/canceldeploymentop.js.map +1 -1
  26. package/esm/models/createdeploymentop.d.ts +0 -37
  27. package/esm/models/createdeploymentop.d.ts.map +1 -1
  28. package/esm/models/createdeploymentop.js +0 -22
  29. package/esm/models/createdeploymentop.js.map +1 -1
  30. package/esm/models/createintegrationstoredirectop.d.ts +152 -152
  31. package/esm/models/createintegrationstoredirectop.js +218 -218
  32. package/esm/models/createprojectop.d.ts +18 -18
  33. package/esm/models/createprojectop.d.ts.map +1 -1
  34. package/esm/models/createprojectop.js +18 -18
  35. package/esm/models/createprojectop.js.map +1 -1
  36. package/esm/models/getconfigurationproductsop.d.ts +200 -200
  37. package/esm/models/getconfigurationproductsop.js +290 -290
  38. package/esm/models/getdeploymentop.d.ts +0 -37
  39. package/esm/models/getdeploymentop.d.ts.map +1 -1
  40. package/esm/models/getdeploymentop.js +0 -22
  41. package/esm/models/getdeploymentop.js.map +1 -1
  42. package/esm/models/getmemberop.d.ts +4 -0
  43. package/esm/models/getmemberop.d.ts.map +1 -1
  44. package/esm/models/getmemberop.js +4 -0
  45. package/esm/models/getmemberop.js.map +1 -1
  46. package/esm/models/team.d.ts +11 -11
  47. package/esm/models/team.d.ts.map +1 -1
  48. package/esm/models/team.js +8 -8
  49. package/esm/models/team.js.map +1 -1
  50. package/esm/models/updateprojectop.d.ts +18 -18
  51. package/esm/models/updateprojectop.d.ts.map +1 -1
  52. package/esm/models/updateprojectop.js +18 -18
  53. package/esm/models/updateprojectop.js.map +1 -1
  54. package/esm/types/enums.d.ts +1 -8
  55. package/esm/types/enums.d.ts.map +1 -1
  56. package/esm/types/enums.js +1 -18
  57. package/esm/types/enums.js.map +1 -1
  58. package/esm/types/unrecognized.d.ts +10 -0
  59. package/esm/types/unrecognized.d.ts.map +1 -0
  60. package/esm/types/unrecognized.js +23 -0
  61. package/esm/types/unrecognized.js.map +1 -0
  62. package/examples/package-lock.json +1 -1
  63. package/jsr.json +1 -1
  64. package/package.json +1 -1
  65. package/src/__tests__/accessgroups.test.ts +2 -6
  66. package/src/__tests__/checks.test.ts +1 -1
  67. package/src/__tests__/domains.test.ts +1 -1
  68. package/src/__tests__/integrations.test.ts +1 -1
  69. package/src/__tests__/logdrains.test.ts +1 -3
  70. package/src/__tests__/rollingrelease.test.ts +2 -2
  71. package/src/__tests__/security.test.ts +4 -4
  72. package/src/__tests__/teams.test.ts +2 -2
  73. package/src/lib/config.ts +3 -3
  74. package/src/mcp-server/mcp-server.ts +1 -1
  75. package/src/mcp-server/server.ts +1 -1
  76. package/src/models/canceldeploymentop.ts +0 -76
  77. package/src/models/createdeploymentop.ts +0 -87
  78. package/src/models/createintegrationstoredirectop.ts +471 -471
  79. package/src/models/createprojectop.ts +30 -30
  80. package/src/models/getconfigurationproductsop.ts +627 -627
  81. package/src/models/getdeploymentop.ts +0 -88
  82. package/src/models/getmemberop.ts +8 -0
  83. package/src/models/team.ts +15 -15
  84. package/src/models/updateprojectop.ts +30 -30
  85. package/src/types/enums.ts +1 -21
  86. package/src/types/unrecognized.ts +27 -0
  87. package/vercel-spec.json +155 -230
package/bin/mcp-server.js CHANGED
@@ -34234,9 +34234,9 @@ var init_config = __esm(() => {
34234
34234
  SDK_METADATA = {
34235
34235
  language: "typescript",
34236
34236
  openapiDocVersion: "0.0.1",
34237
- sdkVersion: "1.17.4",
34238
- genVersion: "2.755.9",
34239
- userAgent: "speakeasy-sdk/typescript 1.17.4 2.755.9 0.0.1 @vercel/sdk"
34237
+ sdkVersion: "1.17.5",
34238
+ genVersion: "2.760.2",
34239
+ userAgent: "speakeasy-sdk/typescript 1.17.5 2.760.2 0.0.1 @vercel/sdk"
34240
34240
  };
34241
34241
  });
34242
34242
 
@@ -42883,7 +42883,7 @@ var init_flagjsonvalue = __esm(() => {
42883
42883
  });
42884
42884
 
42885
42885
  // src/models/canceldeploymentop.ts
42886
- var CancelDeploymentFramework, CancelDeploymentDeploymentsStatus, CancelDeploymentProtocol, CancelDeploymentFormats, CancelDeploymentContentDispositionType, CancelDeploymentDeploymentsReadyState, CancelDeploymentStatus, CancelDeploymentCustomEnvironmentType, CancelDeploymentCustomEnvironmentDeploymentsType, CancelDeploymentOomReport, CancelDeploymentChecksState, CancelDeploymentChecksConclusion, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType, CancelDeploymentGitSourceDeploymentsResponse200Type, CancelDeploymentGitSourceDeploymentsResponseType, CancelDeploymentGitSourceDeploymentsType, CancelDeploymentGitSourceType, CancelDeploymentNodeVersion, CancelDeploymentReadyState, CancelDeploymentReadySubstate, CancelDeploymentSource, CancelDeploymentTarget, CancelDeploymentType, CancelDeploymentArchitecture, CancelDeploymentDeploymentsType, CancelDeploymentPlan, RoutesHandle, CancelDeploymentHasDeploymentsType, CancelDeploymentHasType, CancelDeploymentMissingDeploymentsType, CancelDeploymentMissingType, CancelDeploymentRoutesAction, CancelDeploymentRoutesType, RoutesOp, CancelDeploymentGitRepoDeploymentsResponseType, CancelDeploymentGitRepoDeploymentsResponseOwnerType, CancelDeploymentGitRepoDeploymentsType, CancelDeploymentGitRepoDeploymentsOwnerType, CancelDeploymentGitRepoType, CancelDeploymentGitRepoOwnerType, MicrofrontendsMfeConfigUploadState, CancelDeploymentFunctionType, CancelDeploymentFunctionMemoryType, CancelDeploymentState, CancelDeploymentRequest$inboundSchema, CancelDeploymentRequest$outboundSchema, CancelDeploymentAliasAssignedAt$inboundSchema, CancelDeploymentAliasAssignedAt$outboundSchema, CancelDeploymentBuild$inboundSchema, CancelDeploymentBuild$outboundSchema, CancelDeploymentBuilds$inboundSchema, CancelDeploymentBuilds$outboundSchema, CancelDeploymentFramework$inboundSchema, CancelDeploymentFramework$outboundSchema, CancelDeploymentSpeedInsights$inboundSchema, CancelDeploymentSpeedInsights$outboundSchema, CancelDeploymentWebAnalytics$inboundSchema, CancelDeploymentWebAnalytics$outboundSchema, CancelDeploymentProjectSettings$inboundSchema, CancelDeploymentProjectSettings$outboundSchema, CancelDeploymentDeploymentsStatus$inboundSchema, CancelDeploymentDeploymentsStatus$outboundSchema, CancelDeploymentIntegrations$inboundSchema, CancelDeploymentIntegrations$outboundSchema, CancelDeploymentProtocol$inboundSchema, CancelDeploymentProtocol$outboundSchema, CancelDeploymentRemotePatterns$inboundSchema, CancelDeploymentRemotePatterns$outboundSchema, CancelDeploymentLocalPatterns$inboundSchema, CancelDeploymentLocalPatterns$outboundSchema, CancelDeploymentFormats$inboundSchema, CancelDeploymentFormats$outboundSchema, CancelDeploymentContentDispositionType$inboundSchema, CancelDeploymentContentDispositionType$outboundSchema, CancelDeploymentImages$inboundSchema, CancelDeploymentImages$outboundSchema, CancelDeploymentCreator$inboundSchema, CancelDeploymentCreator$outboundSchema, CancelDeploymentDeploymentsReadyState$inboundSchema, CancelDeploymentDeploymentsReadyState$outboundSchema, CancelDeploymentOutput$inboundSchema, CancelDeploymentOutput$outboundSchema, CancelDeploymentLambdas$inboundSchema, CancelDeploymentLambdas$outboundSchema, CancelDeploymentStatus$inboundSchema, CancelDeploymentStatus$outboundSchema, CancelDeploymentTeam$inboundSchema, CancelDeploymentTeam$outboundSchema, CancelDeploymentCustomEnvironment2$inboundSchema, CancelDeploymentCustomEnvironment2$outboundSchema, CancelDeploymentCustomEnvironmentType$inboundSchema, CancelDeploymentCustomEnvironmentType$outboundSchema, CancelDeploymentCustomEnvironmentDeploymentsType$inboundSchema, CancelDeploymentCustomEnvironmentDeploymentsType$outboundSchema, CancelDeploymentCustomEnvironmentBranchMatcher$inboundSchema, CancelDeploymentCustomEnvironmentBranchMatcher$outboundSchema, CancelDeploymentCustomEnvironmentVerification$inboundSchema, CancelDeploymentCustomEnvironmentVerification$outboundSchema, CancelDeploymentCustomEnvironmentDomains$inboundSchema, CancelDeploymentCustomEnvironmentDomains$outboundSchema, CancelDeploymentCustomEnvironment1$inboundSchema, CancelDeploymentCustomEnvironment1$outboundSchema, CancelDeploymentCustomEnvironment$inboundSchema, CancelDeploymentCustomEnvironment$outboundSchema, CancelDeploymentOomReport$inboundSchema, CancelDeploymentOomReport$outboundSchema, CancelDeploymentAliasError$inboundSchema, CancelDeploymentAliasError$outboundSchema, CancelDeploymentAliasWarning$inboundSchema, CancelDeploymentAliasWarning$outboundSchema, CancelDeploymentChecksState$inboundSchema, CancelDeploymentChecksState$outboundSchema, CancelDeploymentChecksConclusion$inboundSchema, CancelDeploymentChecksConclusion$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema, GitSource15$inboundSchema, GitSource15$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema, GitSource14$inboundSchema, GitSource14$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema, GitSource13$inboundSchema, GitSource13$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$outboundSchema, GitSource12$inboundSchema, GitSource12$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema, GitSource11$inboundSchema, GitSource11$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$outboundSchema, GitSource10$inboundSchema, GitSource10$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$outboundSchema, GitSource9$inboundSchema, GitSource9$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$outboundSchema, GitSource8$inboundSchema, GitSource8$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$outboundSchema, CancelDeploymentGitSourceProjectId$inboundSchema, CancelDeploymentGitSourceProjectId$outboundSchema, CancelDeploymentGitSource7$inboundSchema, CancelDeploymentGitSource7$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema, CancelDeploymentGitSource6$inboundSchema, CancelDeploymentGitSource6$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema, CancelDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema, CancelDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema, CancelDeploymentGitSource5$inboundSchema, CancelDeploymentGitSource5$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200Type$outboundSchema, CancelDeploymentGitSource4$inboundSchema, CancelDeploymentGitSource4$outboundSchema, CancelDeploymentGitSourceDeploymentsResponseType$inboundSchema, CancelDeploymentGitSourceDeploymentsResponseType$outboundSchema, CancelDeploymentGitSourceDeploymentsRepoId$inboundSchema, CancelDeploymentGitSourceDeploymentsRepoId$outboundSchema, CancelDeploymentGitSource3$inboundSchema, CancelDeploymentGitSource3$outboundSchema, CancelDeploymentGitSourceDeploymentsType$inboundSchema, CancelDeploymentGitSourceDeploymentsType$outboundSchema, CancelDeploymentGitSource2$inboundSchema, CancelDeploymentGitSource2$outboundSchema, CancelDeploymentGitSourceType$inboundSchema, CancelDeploymentGitSourceType$outboundSchema, CancelDeploymentGitSourceRepoId$inboundSchema, CancelDeploymentGitSourceRepoId$outboundSchema, CancelDeploymentGitSource1$inboundSchema, CancelDeploymentGitSource1$outboundSchema, CancelDeploymentGitSource$inboundSchema, CancelDeploymentGitSource$outboundSchema, CancelDeploymentNodeVersion$inboundSchema, CancelDeploymentNodeVersion$outboundSchema, CancelDeploymentProject$inboundSchema, CancelDeploymentProject$outboundSchema, CancelDeploymentReadyState$inboundSchema, CancelDeploymentReadyState$outboundSchema, CancelDeploymentReadySubstate$inboundSchema, CancelDeploymentReadySubstate$outboundSchema, CancelDeploymentSource$inboundSchema, CancelDeploymentSource$outboundSchema, CancelDeploymentTarget$inboundSchema, CancelDeploymentTarget$outboundSchema, CancelDeploymentType$inboundSchema, CancelDeploymentType$outboundSchema, CancelDeploymentOidcTokenClaims$inboundSchema, CancelDeploymentOidcTokenClaims$outboundSchema, CancelDeploymentCrons$inboundSchema, CancelDeploymentCrons$outboundSchema, CancelDeploymentArchitecture$inboundSchema, CancelDeploymentArchitecture$outboundSchema, CancelDeploymentDeploymentsType$inboundSchema, CancelDeploymentDeploymentsType$outboundSchema, CancelDeploymentExperimentalTriggers$inboundSchema, CancelDeploymentExperimentalTriggers$outboundSchema, CancelDeploymentFunctions$inboundSchema, CancelDeploymentFunctions$outboundSchema, CancelDeploymentPlan$inboundSchema, CancelDeploymentPlan$outboundSchema, CancelDeploymentRoutes3$inboundSchema, CancelDeploymentRoutes3$outboundSchema, RoutesHandle$inboundSchema, RoutesHandle$outboundSchema, CancelDeploymentRoutes2$inboundSchema, CancelDeploymentRoutes2$outboundSchema, CancelDeploymentHasDeploymentsType$inboundSchema, CancelDeploymentHasDeploymentsType$outboundSchema, CancelDeploymentValueDeploymentsEq$inboundSchema, CancelDeploymentValueDeploymentsEq$outboundSchema, CancelDeploymentValueDeployments2$inboundSchema, CancelDeploymentValueDeployments2$outboundSchema, CancelDeploymentHasDeploymentsValue$inboundSchema, CancelDeploymentHasDeploymentsValue$outboundSchema, CancelDeploymentHas2$inboundSchema, CancelDeploymentHas2$outboundSchema, CancelDeploymentHasType$inboundSchema, CancelDeploymentHasType$outboundSchema, CancelDeploymentValueEq$inboundSchema, CancelDeploymentValueEq$outboundSchema, CancelDeploymentValue2$inboundSchema, CancelDeploymentValue2$outboundSchema, CancelDeploymentHasValue$inboundSchema, CancelDeploymentHasValue$outboundSchema, CancelDeploymentHas1$inboundSchema, CancelDeploymentHas1$outboundSchema, CancelDeploymentRoutesHas$inboundSchema, CancelDeploymentRoutesHas$outboundSchema, CancelDeploymentMissingDeploymentsType$inboundSchema, CancelDeploymentMissingDeploymentsType$outboundSchema, CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema, CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema, CancelDeploymentValueDeploymentsResponse2002$inboundSchema, CancelDeploymentValueDeploymentsResponse2002$outboundSchema, CancelDeploymentMissingDeploymentsValue$inboundSchema, CancelDeploymentMissingDeploymentsValue$outboundSchema, CancelDeploymentMissing2$inboundSchema, CancelDeploymentMissing2$outboundSchema, CancelDeploymentMissingType$inboundSchema, CancelDeploymentMissingType$outboundSchema, CancelDeploymentValueDeploymentsResponseEq$inboundSchema, CancelDeploymentValueDeploymentsResponseEq$outboundSchema, CancelDeploymentValueDeploymentsResponse2$inboundSchema, CancelDeploymentValueDeploymentsResponse2$outboundSchema, CancelDeploymentMissingValue$inboundSchema, CancelDeploymentMissingValue$outboundSchema, CancelDeploymentMissing1$inboundSchema, CancelDeploymentMissing1$outboundSchema, RoutesMissing$inboundSchema, RoutesMissing$outboundSchema, CancelDeploymentRoutesAction$inboundSchema, CancelDeploymentRoutesAction$outboundSchema, CancelDeploymentRoutesMitigate$inboundSchema, CancelDeploymentRoutesMitigate$outboundSchema, CancelDeploymentRoutesType$inboundSchema, CancelDeploymentRoutesType$outboundSchema, RoutesOp$inboundSchema, RoutesOp$outboundSchema, CancelDeploymentKeyEq$inboundSchema, CancelDeploymentKeyEq$outboundSchema, CancelDeploymentKey2$inboundSchema, CancelDeploymentKey2$outboundSchema, CancelDeploymentRoutesKey$inboundSchema, CancelDeploymentRoutesKey$outboundSchema, CancelDeploymentRoutesTarget$inboundSchema, CancelDeploymentRoutesTarget$outboundSchema, RoutesArgs$inboundSchema, RoutesArgs$outboundSchema, RoutesTransforms$inboundSchema, RoutesTransforms$outboundSchema, RoutesLocale$inboundSchema, RoutesLocale$outboundSchema, CancelDeploymentRoutes1$inboundSchema, CancelDeploymentRoutes1$outboundSchema, CancelDeploymentRoutes$inboundSchema, CancelDeploymentRoutes$outboundSchema, CancelDeploymentGitRepoDeploymentsResponseType$inboundSchema, CancelDeploymentGitRepoDeploymentsResponseType$outboundSchema, CancelDeploymentGitRepoDeploymentsResponseOwnerType$inboundSchema, CancelDeploymentGitRepoDeploymentsResponseOwnerType$outboundSchema, CancelDeploymentGitRepo3$inboundSchema, CancelDeploymentGitRepo3$outboundSchema, CancelDeploymentGitRepoDeploymentsType$inboundSchema, CancelDeploymentGitRepoDeploymentsType$outboundSchema, CancelDeploymentGitRepoDeploymentsOwnerType$inboundSchema, CancelDeploymentGitRepoDeploymentsOwnerType$outboundSchema, CancelDeploymentGitRepo2$inboundSchema, CancelDeploymentGitRepo2$outboundSchema, CancelDeploymentGitRepoType$inboundSchema, CancelDeploymentGitRepoType$outboundSchema, CancelDeploymentGitRepoOwnerType$inboundSchema, CancelDeploymentGitRepoOwnerType$outboundSchema, CancelDeploymentGitRepo1$inboundSchema, CancelDeploymentGitRepo1$outboundSchema, CancelDeploymentGitRepo$inboundSchema, CancelDeploymentGitRepo$outboundSchema, CancelDeploymentFlags2$inboundSchema, CancelDeploymentFlags2$outboundSchema, FlagsOptions$inboundSchema, FlagsOptions$outboundSchema, CancelDeploymentFlagsDefinitions$inboundSchema, CancelDeploymentFlagsDefinitions$outboundSchema, CancelDeploymentFlags1$inboundSchema, CancelDeploymentFlags1$outboundSchema, CancelDeploymentFlags$inboundSchema, CancelDeploymentFlags$outboundSchema, MicrofrontendsApplications$inboundSchema, MicrofrontendsApplications$outboundSchema, MicrofrontendsMfeConfigUploadState$inboundSchema, MicrofrontendsMfeConfigUploadState$outboundSchema, CancelDeploymentMicrofrontends2$inboundSchema, CancelDeploymentMicrofrontends2$outboundSchema, CancelDeploymentMicrofrontends1$inboundSchema, CancelDeploymentMicrofrontends1$outboundSchema, CancelDeploymentMicrofrontends$inboundSchema, CancelDeploymentMicrofrontends$outboundSchema, CancelDeploymentFunctionType$inboundSchema, CancelDeploymentFunctionType$outboundSchema, CancelDeploymentFunctionMemoryType$inboundSchema, CancelDeploymentFunctionMemoryType$outboundSchema, CancelDeploymentConfig$inboundSchema, CancelDeploymentConfig$outboundSchema, CancelDeploymentState$inboundSchema, CancelDeploymentState$outboundSchema, CancelDeploymentDeploymentAlias$inboundSchema, CancelDeploymentDeploymentAlias$outboundSchema, CancelDeploymentChecks$inboundSchema, CancelDeploymentChecks$outboundSchema, CancelDeploymentResponseBody$inboundSchema, CancelDeploymentResponseBody$outboundSchema;
42886
+ var CancelDeploymentFramework, CancelDeploymentDeploymentsStatus, CancelDeploymentProtocol, CancelDeploymentFormats, CancelDeploymentContentDispositionType, CancelDeploymentDeploymentsReadyState, CancelDeploymentStatus, CancelDeploymentCustomEnvironmentType, CancelDeploymentCustomEnvironmentDeploymentsType, CancelDeploymentOomReport, CancelDeploymentChecksState, CancelDeploymentChecksConclusion, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType, CancelDeploymentGitSourceDeploymentsResponse200Type, CancelDeploymentGitSourceDeploymentsResponseType, CancelDeploymentGitSourceDeploymentsType, CancelDeploymentGitSourceType, CancelDeploymentNodeVersion, CancelDeploymentReadyState, CancelDeploymentReadySubstate, CancelDeploymentSource, CancelDeploymentTarget, CancelDeploymentType, CancelDeploymentArchitecture, CancelDeploymentDeploymentsType, CancelDeploymentPlan, RoutesHandle, CancelDeploymentHasDeploymentsType, CancelDeploymentHasType, CancelDeploymentMissingDeploymentsType, CancelDeploymentMissingType, CancelDeploymentRoutesAction, CancelDeploymentRoutesType, RoutesOp, CancelDeploymentGitRepoDeploymentsResponseType, CancelDeploymentGitRepoDeploymentsResponseOwnerType, CancelDeploymentGitRepoDeploymentsType, CancelDeploymentGitRepoDeploymentsOwnerType, CancelDeploymentGitRepoType, CancelDeploymentGitRepoOwnerType, MicrofrontendsMfeConfigUploadState, CancelDeploymentFunctionType, CancelDeploymentFunctionMemoryType, CancelDeploymentState, CancelDeploymentRequest$inboundSchema, CancelDeploymentRequest$outboundSchema, CancelDeploymentAliasAssignedAt$inboundSchema, CancelDeploymentAliasAssignedAt$outboundSchema, CancelDeploymentBuild$inboundSchema, CancelDeploymentBuild$outboundSchema, CancelDeploymentBuilds$inboundSchema, CancelDeploymentBuilds$outboundSchema, CancelDeploymentFramework$inboundSchema, CancelDeploymentFramework$outboundSchema, CancelDeploymentSpeedInsights$inboundSchema, CancelDeploymentSpeedInsights$outboundSchema, CancelDeploymentWebAnalytics$inboundSchema, CancelDeploymentWebAnalytics$outboundSchema, CancelDeploymentProjectSettings$inboundSchema, CancelDeploymentProjectSettings$outboundSchema, CancelDeploymentDeploymentsStatus$inboundSchema, CancelDeploymentDeploymentsStatus$outboundSchema, CancelDeploymentIntegrations$inboundSchema, CancelDeploymentIntegrations$outboundSchema, CancelDeploymentProtocol$inboundSchema, CancelDeploymentProtocol$outboundSchema, CancelDeploymentRemotePatterns$inboundSchema, CancelDeploymentRemotePatterns$outboundSchema, CancelDeploymentLocalPatterns$inboundSchema, CancelDeploymentLocalPatterns$outboundSchema, CancelDeploymentFormats$inboundSchema, CancelDeploymentFormats$outboundSchema, CancelDeploymentContentDispositionType$inboundSchema, CancelDeploymentContentDispositionType$outboundSchema, CancelDeploymentImages$inboundSchema, CancelDeploymentImages$outboundSchema, CancelDeploymentCreator$inboundSchema, CancelDeploymentCreator$outboundSchema, CancelDeploymentDeploymentsReadyState$inboundSchema, CancelDeploymentDeploymentsReadyState$outboundSchema, CancelDeploymentOutput$inboundSchema, CancelDeploymentOutput$outboundSchema, CancelDeploymentLambdas$inboundSchema, CancelDeploymentLambdas$outboundSchema, CancelDeploymentStatus$inboundSchema, CancelDeploymentStatus$outboundSchema, CancelDeploymentTeam$inboundSchema, CancelDeploymentTeam$outboundSchema, CancelDeploymentCustomEnvironment2$inboundSchema, CancelDeploymentCustomEnvironment2$outboundSchema, CancelDeploymentCustomEnvironmentType$inboundSchema, CancelDeploymentCustomEnvironmentType$outboundSchema, CancelDeploymentCustomEnvironmentDeploymentsType$inboundSchema, CancelDeploymentCustomEnvironmentDeploymentsType$outboundSchema, CancelDeploymentCustomEnvironmentBranchMatcher$inboundSchema, CancelDeploymentCustomEnvironmentBranchMatcher$outboundSchema, CancelDeploymentCustomEnvironmentVerification$inboundSchema, CancelDeploymentCustomEnvironmentVerification$outboundSchema, CancelDeploymentCustomEnvironmentDomains$inboundSchema, CancelDeploymentCustomEnvironmentDomains$outboundSchema, CancelDeploymentCustomEnvironment1$inboundSchema, CancelDeploymentCustomEnvironment1$outboundSchema, CancelDeploymentCustomEnvironment$inboundSchema, CancelDeploymentCustomEnvironment$outboundSchema, CancelDeploymentOomReport$inboundSchema, CancelDeploymentOomReport$outboundSchema, CancelDeploymentAliasError$inboundSchema, CancelDeploymentAliasError$outboundSchema, CancelDeploymentAliasWarning$inboundSchema, CancelDeploymentAliasWarning$outboundSchema, CancelDeploymentChecksState$inboundSchema, CancelDeploymentChecksState$outboundSchema, CancelDeploymentChecksConclusion$inboundSchema, CancelDeploymentChecksConclusion$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema, GitSource15$inboundSchema, GitSource15$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema, GitSource14$inboundSchema, GitSource14$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema, GitSource13$inboundSchema, GitSource13$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$outboundSchema, GitSource12$inboundSchema, GitSource12$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema, GitSource11$inboundSchema, GitSource11$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$outboundSchema, GitSource10$inboundSchema, GitSource10$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$outboundSchema, GitSource9$inboundSchema, GitSource9$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$outboundSchema, GitSource8$inboundSchema, GitSource8$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$outboundSchema, CancelDeploymentGitSourceProjectId$inboundSchema, CancelDeploymentGitSourceProjectId$outboundSchema, CancelDeploymentGitSource7$inboundSchema, CancelDeploymentGitSource7$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema, CancelDeploymentGitSource6$inboundSchema, CancelDeploymentGitSource6$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema, CancelDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema, CancelDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema, CancelDeploymentGitSource5$inboundSchema, CancelDeploymentGitSource5$outboundSchema, CancelDeploymentGitSourceDeploymentsResponse200Type$inboundSchema, CancelDeploymentGitSourceDeploymentsResponse200Type$outboundSchema, CancelDeploymentGitSource4$inboundSchema, CancelDeploymentGitSource4$outboundSchema, CancelDeploymentGitSourceDeploymentsResponseType$inboundSchema, CancelDeploymentGitSourceDeploymentsResponseType$outboundSchema, CancelDeploymentGitSourceDeploymentsRepoId$inboundSchema, CancelDeploymentGitSourceDeploymentsRepoId$outboundSchema, CancelDeploymentGitSource3$inboundSchema, CancelDeploymentGitSource3$outboundSchema, CancelDeploymentGitSourceDeploymentsType$inboundSchema, CancelDeploymentGitSourceDeploymentsType$outboundSchema, CancelDeploymentGitSource2$inboundSchema, CancelDeploymentGitSource2$outboundSchema, CancelDeploymentGitSourceType$inboundSchema, CancelDeploymentGitSourceType$outboundSchema, CancelDeploymentGitSourceRepoId$inboundSchema, CancelDeploymentGitSourceRepoId$outboundSchema, CancelDeploymentGitSource1$inboundSchema, CancelDeploymentGitSource1$outboundSchema, CancelDeploymentGitSource$inboundSchema, CancelDeploymentGitSource$outboundSchema, CancelDeploymentNodeVersion$inboundSchema, CancelDeploymentNodeVersion$outboundSchema, CancelDeploymentProject$inboundSchema, CancelDeploymentProject$outboundSchema, CancelDeploymentReadyState$inboundSchema, CancelDeploymentReadyState$outboundSchema, CancelDeploymentReadySubstate$inboundSchema, CancelDeploymentReadySubstate$outboundSchema, CancelDeploymentSource$inboundSchema, CancelDeploymentSource$outboundSchema, CancelDeploymentTarget$inboundSchema, CancelDeploymentTarget$outboundSchema, CancelDeploymentType$inboundSchema, CancelDeploymentType$outboundSchema, CancelDeploymentOidcTokenClaims$inboundSchema, CancelDeploymentOidcTokenClaims$outboundSchema, CancelDeploymentCrons$inboundSchema, CancelDeploymentCrons$outboundSchema, CancelDeploymentArchitecture$inboundSchema, CancelDeploymentArchitecture$outboundSchema, CancelDeploymentDeploymentsType$inboundSchema, CancelDeploymentDeploymentsType$outboundSchema, CancelDeploymentExperimentalTriggers$inboundSchema, CancelDeploymentExperimentalTriggers$outboundSchema, CancelDeploymentFunctions$inboundSchema, CancelDeploymentFunctions$outboundSchema, CancelDeploymentPlan$inboundSchema, CancelDeploymentPlan$outboundSchema, CancelDeploymentRoutes3$inboundSchema, CancelDeploymentRoutes3$outboundSchema, RoutesHandle$inboundSchema, RoutesHandle$outboundSchema, CancelDeploymentRoutes2$inboundSchema, CancelDeploymentRoutes2$outboundSchema, CancelDeploymentHasDeploymentsType$inboundSchema, CancelDeploymentHasDeploymentsType$outboundSchema, CancelDeploymentValueDeploymentsEq$inboundSchema, CancelDeploymentValueDeploymentsEq$outboundSchema, CancelDeploymentValueDeployments2$inboundSchema, CancelDeploymentValueDeployments2$outboundSchema, CancelDeploymentHasDeploymentsValue$inboundSchema, CancelDeploymentHasDeploymentsValue$outboundSchema, CancelDeploymentHas2$inboundSchema, CancelDeploymentHas2$outboundSchema, CancelDeploymentHasType$inboundSchema, CancelDeploymentHasType$outboundSchema, CancelDeploymentValueEq$inboundSchema, CancelDeploymentValueEq$outboundSchema, CancelDeploymentValue2$inboundSchema, CancelDeploymentValue2$outboundSchema, CancelDeploymentHasValue$inboundSchema, CancelDeploymentHasValue$outboundSchema, CancelDeploymentHas1$inboundSchema, CancelDeploymentHas1$outboundSchema, CancelDeploymentRoutesHas$inboundSchema, CancelDeploymentRoutesHas$outboundSchema, CancelDeploymentMissingDeploymentsType$inboundSchema, CancelDeploymentMissingDeploymentsType$outboundSchema, CancelDeploymentValueDeploymentsResponse200Eq$inboundSchema, CancelDeploymentValueDeploymentsResponse200Eq$outboundSchema, CancelDeploymentValueDeploymentsResponse2002$inboundSchema, CancelDeploymentValueDeploymentsResponse2002$outboundSchema, CancelDeploymentMissingDeploymentsValue$inboundSchema, CancelDeploymentMissingDeploymentsValue$outboundSchema, CancelDeploymentMissing2$inboundSchema, CancelDeploymentMissing2$outboundSchema, CancelDeploymentMissingType$inboundSchema, CancelDeploymentMissingType$outboundSchema, CancelDeploymentValueDeploymentsResponseEq$inboundSchema, CancelDeploymentValueDeploymentsResponseEq$outboundSchema, CancelDeploymentValueDeploymentsResponse2$inboundSchema, CancelDeploymentValueDeploymentsResponse2$outboundSchema, CancelDeploymentMissingValue$inboundSchema, CancelDeploymentMissingValue$outboundSchema, CancelDeploymentMissing1$inboundSchema, CancelDeploymentMissing1$outboundSchema, RoutesMissing$inboundSchema, RoutesMissing$outboundSchema, CancelDeploymentRoutesAction$inboundSchema, CancelDeploymentRoutesAction$outboundSchema, CancelDeploymentRoutesMitigate$inboundSchema, CancelDeploymentRoutesMitigate$outboundSchema, CancelDeploymentRoutesType$inboundSchema, CancelDeploymentRoutesType$outboundSchema, RoutesOp$inboundSchema, RoutesOp$outboundSchema, CancelDeploymentKeyEq$inboundSchema, CancelDeploymentKeyEq$outboundSchema, CancelDeploymentKey2$inboundSchema, CancelDeploymentKey2$outboundSchema, CancelDeploymentRoutesKey$inboundSchema, CancelDeploymentRoutesKey$outboundSchema, CancelDeploymentRoutesTarget$inboundSchema, CancelDeploymentRoutesTarget$outboundSchema, RoutesArgs$inboundSchema, RoutesArgs$outboundSchema, RoutesTransforms$inboundSchema, RoutesTransforms$outboundSchema, RoutesLocale$inboundSchema, RoutesLocale$outboundSchema, CancelDeploymentRoutes1$inboundSchema, CancelDeploymentRoutes1$outboundSchema, CancelDeploymentRoutes$inboundSchema, CancelDeploymentRoutes$outboundSchema, CancelDeploymentGitRepoDeploymentsResponseType$inboundSchema, CancelDeploymentGitRepoDeploymentsResponseType$outboundSchema, CancelDeploymentGitRepoDeploymentsResponseOwnerType$inboundSchema, CancelDeploymentGitRepoDeploymentsResponseOwnerType$outboundSchema, CancelDeploymentGitRepo3$inboundSchema, CancelDeploymentGitRepo3$outboundSchema, CancelDeploymentGitRepoDeploymentsType$inboundSchema, CancelDeploymentGitRepoDeploymentsType$outboundSchema, CancelDeploymentGitRepoDeploymentsOwnerType$inboundSchema, CancelDeploymentGitRepoDeploymentsOwnerType$outboundSchema, CancelDeploymentGitRepo2$inboundSchema, CancelDeploymentGitRepo2$outboundSchema, CancelDeploymentGitRepoType$inboundSchema, CancelDeploymentGitRepoType$outboundSchema, CancelDeploymentGitRepoOwnerType$inboundSchema, CancelDeploymentGitRepoOwnerType$outboundSchema, CancelDeploymentGitRepo1$inboundSchema, CancelDeploymentGitRepo1$outboundSchema, CancelDeploymentGitRepo$inboundSchema, CancelDeploymentGitRepo$outboundSchema, CancelDeploymentFlags2$inboundSchema, CancelDeploymentFlags2$outboundSchema, FlagsOptions$inboundSchema, FlagsOptions$outboundSchema, CancelDeploymentFlagsDefinitions$inboundSchema, CancelDeploymentFlagsDefinitions$outboundSchema, CancelDeploymentFlags1$inboundSchema, CancelDeploymentFlags1$outboundSchema, CancelDeploymentFlags$inboundSchema, CancelDeploymentFlags$outboundSchema, MicrofrontendsMfeConfigUploadState$inboundSchema, MicrofrontendsMfeConfigUploadState$outboundSchema, CancelDeploymentMicrofrontends2$inboundSchema, CancelDeploymentMicrofrontends2$outboundSchema, CancelDeploymentMicrofrontends1$inboundSchema, CancelDeploymentMicrofrontends1$outboundSchema, CancelDeploymentMicrofrontends$inboundSchema, CancelDeploymentMicrofrontends$outboundSchema, CancelDeploymentFunctionType$inboundSchema, CancelDeploymentFunctionType$outboundSchema, CancelDeploymentFunctionMemoryType$inboundSchema, CancelDeploymentFunctionMemoryType$outboundSchema, CancelDeploymentConfig$inboundSchema, CancelDeploymentConfig$outboundSchema, CancelDeploymentState$inboundSchema, CancelDeploymentState$outboundSchema, CancelDeploymentDeploymentAlias$inboundSchema, CancelDeploymentDeploymentAlias$outboundSchema, CancelDeploymentChecks$inboundSchema, CancelDeploymentChecks$outboundSchema, CancelDeploymentResponseBody$inboundSchema, CancelDeploymentResponseBody$outboundSchema;
42887
42887
  var init_canceldeploymentop = __esm(() => {
42888
42888
  init_esm();
42889
42889
  init_primitives();
@@ -44402,23 +44402,10 @@ var init_canceldeploymentop = __esm(() => {
44402
44402
  lazyType(() => CancelDeploymentFlags1$outboundSchema),
44403
44403
  arrayType(lazyType(() => CancelDeploymentFlags2$outboundSchema))
44404
44404
  ]);
44405
- MicrofrontendsApplications$inboundSchema = objectType({
44406
- isDefaultApp: booleanType().optional(),
44407
- productionHost: stringType(),
44408
- deploymentAlias: stringType().optional(),
44409
- deploymentHost: stringType().optional()
44410
- });
44411
- MicrofrontendsApplications$outboundSchema = objectType({
44412
- isDefaultApp: booleanType().optional(),
44413
- productionHost: stringType(),
44414
- deploymentAlias: stringType().optional(),
44415
- deploymentHost: stringType().optional()
44416
- });
44417
44405
  MicrofrontendsMfeConfigUploadState$inboundSchema = nativeEnumType(MicrofrontendsMfeConfigUploadState);
44418
44406
  MicrofrontendsMfeConfigUploadState$outboundSchema = MicrofrontendsMfeConfigUploadState$inboundSchema;
44419
44407
  CancelDeploymentMicrofrontends2$inboundSchema = objectType({
44420
44408
  isDefaultApp: booleanType(),
44421
- applications: recordType(lazyType(() => MicrofrontendsApplications$inboundSchema)).optional(),
44422
44409
  mfeConfigUploadState: MicrofrontendsMfeConfigUploadState$inboundSchema.optional(),
44423
44410
  defaultAppProjectName: stringType(),
44424
44411
  defaultRoute: stringType().optional(),
@@ -44426,7 +44413,6 @@ var init_canceldeploymentop = __esm(() => {
44426
44413
  });
44427
44414
  CancelDeploymentMicrofrontends2$outboundSchema = objectType({
44428
44415
  isDefaultApp: booleanType(),
44429
- applications: recordType(lazyType(() => MicrofrontendsApplications$outboundSchema)).optional(),
44430
44416
  mfeConfigUploadState: MicrofrontendsMfeConfigUploadState$outboundSchema.optional(),
44431
44417
  defaultAppProjectName: stringType(),
44432
44418
  defaultRoute: stringType().optional(),
@@ -44850,7 +44836,7 @@ This endpoint allows you to cancel a deployment which is currently building, by
44850
44836
  });
44851
44837
 
44852
44838
  // src/models/createdeploymentop.ts
44853
- var ForceNew, SkipAutoDetectionConfirmation, Encoding, CreateDeploymentGitSourceDeploymentsRequestRequestBody7Type, CreateDeploymentGitSourceDeploymentsRequestRequestBodyType, CreateDeploymentGitSourceDeploymentsRequestType, CreateDeploymentGitSourceDeploymentsType, CreateDeploymentGitSourceType, GitSourceType, CreateDeploymentGitSourceDeploymentsRequestRequestBody1Type, Framework, NodeVersion, CreateDeploymentFramework, CreateDeploymentDeploymentsStatus, Protocol2, Formats, ContentDispositionType, CreateDeploymentReadyState, CreateDeploymentStatus, CustomEnvironmentType, CreateDeploymentCustomEnvironmentType, OomReport, ReadyState, CreateDeploymentType, ChecksState, ChecksConclusion, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody6Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody5Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONType, CreateDeploymentGitSourceDeploymentsResponse200Type, CreateDeploymentGitSourceDeploymentsResponseType, CreateDeploymentNodeVersion, ReadySubstate, CreateDeploymentSource, CreateDeploymentTarget, CreateDeploymentPlan, Architecture, CreateDeploymentDeploymentsType, Handle, CreateDeploymentHasDeploymentsType, CreateDeploymentHasType, CreateDeploymentMissingType, MissingType, RoutesAction, RoutesType, CreateDeploymentRoutesOp, CreateDeploymentGitRepoDeploymentsType, CreateDeploymentGitRepoOwnerType, CreateDeploymentGitRepoType, GitRepoOwnerType, GitRepoType, OwnerType, MfeConfigUploadState, FunctionType, FunctionMemoryType, CreateDeploymentState, ForceNew$inboundSchema, ForceNew$outboundSchema, SkipAutoDetectionConfirmation$inboundSchema, SkipAutoDetectionConfirmation$outboundSchema, UploadedFile$inboundSchema, UploadedFile$outboundSchema, Encoding$inboundSchema, Encoding$outboundSchema, InlinedFile$inboundSchema, InlinedFile$outboundSchema, Files$inboundSchema, Files$outboundSchema, GitMetadata$inboundSchema, GitMetadata$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody7Type$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody7Type$outboundSchema, GitSource7$inboundSchema, GitSource7$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBodyType$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBodyType$outboundSchema, GitSource6$inboundSchema, GitSource6$outboundSchema, ProjectId$inboundSchema, ProjectId$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestType$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestType$outboundSchema, GitSource5$inboundSchema, GitSource5$outboundSchema, CreateDeploymentGitSourceDeploymentsType$inboundSchema, CreateDeploymentGitSourceDeploymentsType$outboundSchema, GitSource4$inboundSchema, GitSource4$outboundSchema, GitSourceRepoId$inboundSchema, GitSourceRepoId$outboundSchema, CreateDeploymentGitSourceType$inboundSchema, CreateDeploymentGitSourceType$outboundSchema, GitSource3$inboundSchema, GitSource3$outboundSchema, GitSourceType$inboundSchema, GitSourceType$outboundSchema, GitSource2$inboundSchema, GitSource2$outboundSchema, RepoId$inboundSchema, RepoId$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody1Type$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody1Type$outboundSchema, GitSource1$inboundSchema, GitSource1$outboundSchema, GitSource$inboundSchema, GitSource$outboundSchema, Framework$inboundSchema, Framework$outboundSchema, NodeVersion$inboundSchema, NodeVersion$outboundSchema, ProjectSettings$inboundSchema, ProjectSettings$outboundSchema, CreateDeploymentRequestBody$inboundSchema, CreateDeploymentRequestBody$outboundSchema, CreateDeploymentRequest$inboundSchema, CreateDeploymentRequest$outboundSchema, AliasAssignedAt$inboundSchema, AliasAssignedAt$outboundSchema, Build$inboundSchema, Build$outboundSchema, Builds$inboundSchema, Builds$outboundSchema, CreateDeploymentFramework$inboundSchema, CreateDeploymentFramework$outboundSchema, CreateDeploymentSpeedInsights$inboundSchema, CreateDeploymentSpeedInsights$outboundSchema, CreateDeploymentWebAnalytics$inboundSchema, CreateDeploymentWebAnalytics$outboundSchema, CreateDeploymentProjectSettings$inboundSchema, CreateDeploymentProjectSettings$outboundSchema, CreateDeploymentDeploymentsStatus$inboundSchema, CreateDeploymentDeploymentsStatus$outboundSchema, Integrations$inboundSchema, Integrations$outboundSchema, Protocol$inboundSchema, Protocol$outboundSchema, RemotePatterns$inboundSchema, RemotePatterns$outboundSchema, LocalPatterns$inboundSchema, LocalPatterns$outboundSchema, Formats$inboundSchema, Formats$outboundSchema, ContentDispositionType$inboundSchema, ContentDispositionType$outboundSchema, Images$inboundSchema, Images$outboundSchema, Creator$inboundSchema, Creator$outboundSchema, CreateDeploymentReadyState$inboundSchema, CreateDeploymentReadyState$outboundSchema, CreateDeploymentOutput$inboundSchema, CreateDeploymentOutput$outboundSchema, Lambdas$inboundSchema, Lambdas$outboundSchema, CreateDeploymentStatus$inboundSchema, CreateDeploymentStatus$outboundSchema, CreateDeploymentTeam$inboundSchema, CreateDeploymentTeam$outboundSchema, CustomEnvironment2$inboundSchema, CustomEnvironment2$outboundSchema, CustomEnvironmentType$inboundSchema, CustomEnvironmentType$outboundSchema, CreateDeploymentCustomEnvironmentType$inboundSchema, CreateDeploymentCustomEnvironmentType$outboundSchema, CustomEnvironmentBranchMatcher$inboundSchema, CustomEnvironmentBranchMatcher$outboundSchema, CustomEnvironmentVerification$inboundSchema, CustomEnvironmentVerification$outboundSchema, CustomEnvironmentDomains$inboundSchema, CustomEnvironmentDomains$outboundSchema, CustomEnvironment1$inboundSchema, CustomEnvironment1$outboundSchema, CustomEnvironment$inboundSchema, CustomEnvironment$outboundSchema, OomReport$inboundSchema, OomReport$outboundSchema, AliasWarning$inboundSchema, AliasWarning$outboundSchema, ReadyState$inboundSchema, ReadyState$outboundSchema, CreateDeploymentType$inboundSchema, CreateDeploymentType$outboundSchema, AliasError$inboundSchema, AliasError$outboundSchema, ChecksState$inboundSchema, ChecksState$outboundSchema, ChecksConclusion$inboundSchema, ChecksConclusion$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema, CreateDeploymentGitSource15$inboundSchema, CreateDeploymentGitSource15$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema, CreateDeploymentGitSource14$inboundSchema, CreateDeploymentGitSource14$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema, CreateDeploymentGitSource13$inboundSchema, CreateDeploymentGitSource13$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$outboundSchema, CreateDeploymentGitSource12$inboundSchema, CreateDeploymentGitSource12$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema, CreateDeploymentGitSource11$inboundSchema, CreateDeploymentGitSource11$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$outboundSchema, CreateDeploymentGitSource10$inboundSchema, CreateDeploymentGitSource10$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$outboundSchema, CreateDeploymentGitSource9$inboundSchema, CreateDeploymentGitSource9$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$outboundSchema, CreateDeploymentGitSource8$inboundSchema, CreateDeploymentGitSource8$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$outboundSchema, GitSourceProjectId$inboundSchema, GitSourceProjectId$outboundSchema, CreateDeploymentGitSource7$inboundSchema, CreateDeploymentGitSource7$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody6Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody6Type$outboundSchema, CreateDeploymentGitSource6$inboundSchema, CreateDeploymentGitSource6$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody5Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody5Type$outboundSchema, CreateDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema, CreateDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema, CreateDeploymentGitSource5$inboundSchema, CreateDeploymentGitSource5$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema, CreateDeploymentGitSource4$inboundSchema, CreateDeploymentGitSource4$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema, CreateDeploymentGitSourceDeploymentsRepoId$inboundSchema, CreateDeploymentGitSourceDeploymentsRepoId$outboundSchema, CreateDeploymentGitSource3$inboundSchema, CreateDeploymentGitSource3$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200Type$outboundSchema, CreateDeploymentGitSource2$inboundSchema, CreateDeploymentGitSource2$outboundSchema, CreateDeploymentGitSourceDeploymentsResponseType$inboundSchema, CreateDeploymentGitSourceDeploymentsResponseType$outboundSchema, CreateDeploymentGitSourceRepoId$inboundSchema, CreateDeploymentGitSourceRepoId$outboundSchema, CreateDeploymentGitSource1$inboundSchema, CreateDeploymentGitSource1$outboundSchema, CreateDeploymentGitSource$inboundSchema, CreateDeploymentGitSource$outboundSchema, CreateDeploymentNodeVersion$inboundSchema, CreateDeploymentNodeVersion$outboundSchema, CreateDeploymentProject$inboundSchema, CreateDeploymentProject$outboundSchema, ReadySubstate$inboundSchema, ReadySubstate$outboundSchema, CreateDeploymentSource$inboundSchema, CreateDeploymentSource$outboundSchema, CreateDeploymentTarget$inboundSchema, CreateDeploymentTarget$outboundSchema, OidcTokenClaims$inboundSchema, OidcTokenClaims$outboundSchema, CreateDeploymentPlan$inboundSchema, CreateDeploymentPlan$outboundSchema, CreateDeploymentCrons$inboundSchema, CreateDeploymentCrons$outboundSchema, Architecture$inboundSchema, Architecture$outboundSchema, CreateDeploymentDeploymentsType$inboundSchema, CreateDeploymentDeploymentsType$outboundSchema, ExperimentalTriggers$inboundSchema, ExperimentalTriggers$outboundSchema, Functions$inboundSchema, Functions$outboundSchema, Routes3$inboundSchema, Routes3$outboundSchema, Handle$inboundSchema, Handle$outboundSchema, Routes2$inboundSchema, Routes2$outboundSchema, CreateDeploymentHasDeploymentsType$inboundSchema, CreateDeploymentHasDeploymentsType$outboundSchema, ValueEq$inboundSchema, ValueEq$outboundSchema, CreateDeploymentValue2$inboundSchema, CreateDeploymentValue2$outboundSchema, CreateDeploymentHasDeploymentsValue$inboundSchema, CreateDeploymentHasDeploymentsValue$outboundSchema, CreateDeploymentHas2$inboundSchema, CreateDeploymentHas2$outboundSchema, CreateDeploymentHasType$inboundSchema, CreateDeploymentHasType$outboundSchema, Eq$inboundSchema, Eq$outboundSchema, CreateDeploymentValueDeploymentsResponse2002$inboundSchema, CreateDeploymentValueDeploymentsResponse2002$outboundSchema, CreateDeploymentHasValue$inboundSchema, CreateDeploymentHasValue$outboundSchema, CreateDeploymentHas1$inboundSchema, CreateDeploymentHas1$outboundSchema, RoutesHas$inboundSchema, RoutesHas$outboundSchema, CreateDeploymentMissingType$inboundSchema, CreateDeploymentMissingType$outboundSchema, CreateDeploymentValueDeploymentsEq$inboundSchema, CreateDeploymentValueDeploymentsEq$outboundSchema, CreateDeploymentValueDeploymentsResponse2$inboundSchema, CreateDeploymentValueDeploymentsResponse2$outboundSchema, CreateDeploymentMissingValue$inboundSchema, CreateDeploymentMissingValue$outboundSchema, Missing2$inboundSchema, Missing2$outboundSchema, MissingType$inboundSchema, MissingType$outboundSchema, CreateDeploymentValueEq$inboundSchema, CreateDeploymentValueEq$outboundSchema, CreateDeploymentValueDeployments2$inboundSchema, CreateDeploymentValueDeployments2$outboundSchema, MissingValue$inboundSchema, MissingValue$outboundSchema, Missing1$inboundSchema, Missing1$outboundSchema, Missing$inboundSchema, Missing$outboundSchema, RoutesAction$inboundSchema, RoutesAction$outboundSchema, RoutesMitigate$inboundSchema, RoutesMitigate$outboundSchema, RoutesType$inboundSchema, RoutesType$outboundSchema, CreateDeploymentRoutesOp$inboundSchema, CreateDeploymentRoutesOp$outboundSchema, KeyEq$inboundSchema, KeyEq$outboundSchema, Key2$inboundSchema, Key2$outboundSchema, RoutesKey$inboundSchema, RoutesKey$outboundSchema, RoutesTarget$inboundSchema, RoutesTarget$outboundSchema, Args$inboundSchema, Args$outboundSchema, CreateDeploymentRoutesTransforms$inboundSchema, CreateDeploymentRoutesTransforms$outboundSchema, Locale$inboundSchema, Locale$outboundSchema, Routes1$inboundSchema, Routes1$outboundSchema, Routes$inboundSchema, Routes$outboundSchema, CreateDeploymentGitRepoDeploymentsType$inboundSchema, CreateDeploymentGitRepoDeploymentsType$outboundSchema, CreateDeploymentGitRepoOwnerType$inboundSchema, CreateDeploymentGitRepoOwnerType$outboundSchema, GitRepo3$inboundSchema, GitRepo3$outboundSchema, CreateDeploymentGitRepoType$inboundSchema, CreateDeploymentGitRepoType$outboundSchema, GitRepoOwnerType$inboundSchema, GitRepoOwnerType$outboundSchema, GitRepo2$inboundSchema, GitRepo2$outboundSchema, GitRepoType$inboundSchema, GitRepoType$outboundSchema, OwnerType$inboundSchema, OwnerType$outboundSchema, GitRepo1$inboundSchema, GitRepo1$outboundSchema, GitRepo$inboundSchema, GitRepo$outboundSchema, Flags2$inboundSchema, Flags2$outboundSchema, Options$inboundSchema, Options$outboundSchema, FlagsDefinitions$inboundSchema, FlagsDefinitions$outboundSchema, Flags1$inboundSchema, Flags1$outboundSchema, Flags$inboundSchema, Flags$outboundSchema, CreateDeploymentMicrofrontendsApplications$inboundSchema, CreateDeploymentMicrofrontendsApplications$outboundSchema, MfeConfigUploadState$inboundSchema, MfeConfigUploadState$outboundSchema, CreateDeploymentMicrofrontends2$inboundSchema, CreateDeploymentMicrofrontends2$outboundSchema, CreateDeploymentMicrofrontends1$inboundSchema, CreateDeploymentMicrofrontends1$outboundSchema, CreateDeploymentMicrofrontends$inboundSchema, CreateDeploymentMicrofrontends$outboundSchema, FunctionType$inboundSchema, FunctionType$outboundSchema, FunctionMemoryType$inboundSchema, FunctionMemoryType$outboundSchema, Config$inboundSchema, Config$outboundSchema, CreateDeploymentState$inboundSchema, CreateDeploymentState$outboundSchema, DeploymentAlias$inboundSchema, DeploymentAlias$outboundSchema, CreateDeploymentChecks$inboundSchema, CreateDeploymentChecks$outboundSchema, CreateDeploymentResponseBody$inboundSchema, CreateDeploymentResponseBody$outboundSchema;
44839
+ var ForceNew, SkipAutoDetectionConfirmation, Encoding, CreateDeploymentGitSourceDeploymentsRequestRequestBody7Type, CreateDeploymentGitSourceDeploymentsRequestRequestBodyType, CreateDeploymentGitSourceDeploymentsRequestType, CreateDeploymentGitSourceDeploymentsType, CreateDeploymentGitSourceType, GitSourceType, CreateDeploymentGitSourceDeploymentsRequestRequestBody1Type, Framework, NodeVersion, CreateDeploymentFramework, CreateDeploymentDeploymentsStatus, Protocol2, Formats, ContentDispositionType, CreateDeploymentReadyState, CreateDeploymentStatus, CustomEnvironmentType, CreateDeploymentCustomEnvironmentType, OomReport, ReadyState, CreateDeploymentType, ChecksState, ChecksConclusion, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody6Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody5Type, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONType, CreateDeploymentGitSourceDeploymentsResponse200Type, CreateDeploymentGitSourceDeploymentsResponseType, CreateDeploymentNodeVersion, ReadySubstate, CreateDeploymentSource, CreateDeploymentTarget, CreateDeploymentPlan, Architecture, CreateDeploymentDeploymentsType, Handle, CreateDeploymentHasDeploymentsType, CreateDeploymentHasType, CreateDeploymentMissingType, MissingType, RoutesAction, RoutesType, CreateDeploymentRoutesOp, CreateDeploymentGitRepoDeploymentsType, CreateDeploymentGitRepoOwnerType, CreateDeploymentGitRepoType, GitRepoOwnerType, GitRepoType, OwnerType, MfeConfigUploadState, FunctionType, FunctionMemoryType, CreateDeploymentState, ForceNew$inboundSchema, ForceNew$outboundSchema, SkipAutoDetectionConfirmation$inboundSchema, SkipAutoDetectionConfirmation$outboundSchema, UploadedFile$inboundSchema, UploadedFile$outboundSchema, Encoding$inboundSchema, Encoding$outboundSchema, InlinedFile$inboundSchema, InlinedFile$outboundSchema, Files$inboundSchema, Files$outboundSchema, GitMetadata$inboundSchema, GitMetadata$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody7Type$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody7Type$outboundSchema, GitSource7$inboundSchema, GitSource7$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBodyType$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBodyType$outboundSchema, GitSource6$inboundSchema, GitSource6$outboundSchema, ProjectId$inboundSchema, ProjectId$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestType$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestType$outboundSchema, GitSource5$inboundSchema, GitSource5$outboundSchema, CreateDeploymentGitSourceDeploymentsType$inboundSchema, CreateDeploymentGitSourceDeploymentsType$outboundSchema, GitSource4$inboundSchema, GitSource4$outboundSchema, GitSourceRepoId$inboundSchema, GitSourceRepoId$outboundSchema, CreateDeploymentGitSourceType$inboundSchema, CreateDeploymentGitSourceType$outboundSchema, GitSource3$inboundSchema, GitSource3$outboundSchema, GitSourceType$inboundSchema, GitSourceType$outboundSchema, GitSource2$inboundSchema, GitSource2$outboundSchema, RepoId$inboundSchema, RepoId$outboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody1Type$inboundSchema, CreateDeploymentGitSourceDeploymentsRequestRequestBody1Type$outboundSchema, GitSource1$inboundSchema, GitSource1$outboundSchema, GitSource$inboundSchema, GitSource$outboundSchema, Framework$inboundSchema, Framework$outboundSchema, NodeVersion$inboundSchema, NodeVersion$outboundSchema, ProjectSettings$inboundSchema, ProjectSettings$outboundSchema, CreateDeploymentRequestBody$inboundSchema, CreateDeploymentRequestBody$outboundSchema, CreateDeploymentRequest$inboundSchema, CreateDeploymentRequest$outboundSchema, AliasAssignedAt$inboundSchema, AliasAssignedAt$outboundSchema, Build$inboundSchema, Build$outboundSchema, Builds$inboundSchema, Builds$outboundSchema, CreateDeploymentFramework$inboundSchema, CreateDeploymentFramework$outboundSchema, CreateDeploymentSpeedInsights$inboundSchema, CreateDeploymentSpeedInsights$outboundSchema, CreateDeploymentWebAnalytics$inboundSchema, CreateDeploymentWebAnalytics$outboundSchema, CreateDeploymentProjectSettings$inboundSchema, CreateDeploymentProjectSettings$outboundSchema, CreateDeploymentDeploymentsStatus$inboundSchema, CreateDeploymentDeploymentsStatus$outboundSchema, Integrations$inboundSchema, Integrations$outboundSchema, Protocol$inboundSchema, Protocol$outboundSchema, RemotePatterns$inboundSchema, RemotePatterns$outboundSchema, LocalPatterns$inboundSchema, LocalPatterns$outboundSchema, Formats$inboundSchema, Formats$outboundSchema, ContentDispositionType$inboundSchema, ContentDispositionType$outboundSchema, Images$inboundSchema, Images$outboundSchema, Creator$inboundSchema, Creator$outboundSchema, CreateDeploymentReadyState$inboundSchema, CreateDeploymentReadyState$outboundSchema, CreateDeploymentOutput$inboundSchema, CreateDeploymentOutput$outboundSchema, Lambdas$inboundSchema, Lambdas$outboundSchema, CreateDeploymentStatus$inboundSchema, CreateDeploymentStatus$outboundSchema, CreateDeploymentTeam$inboundSchema, CreateDeploymentTeam$outboundSchema, CustomEnvironment2$inboundSchema, CustomEnvironment2$outboundSchema, CustomEnvironmentType$inboundSchema, CustomEnvironmentType$outboundSchema, CreateDeploymentCustomEnvironmentType$inboundSchema, CreateDeploymentCustomEnvironmentType$outboundSchema, CustomEnvironmentBranchMatcher$inboundSchema, CustomEnvironmentBranchMatcher$outboundSchema, CustomEnvironmentVerification$inboundSchema, CustomEnvironmentVerification$outboundSchema, CustomEnvironmentDomains$inboundSchema, CustomEnvironmentDomains$outboundSchema, CustomEnvironment1$inboundSchema, CustomEnvironment1$outboundSchema, CustomEnvironment$inboundSchema, CustomEnvironment$outboundSchema, OomReport$inboundSchema, OomReport$outboundSchema, AliasWarning$inboundSchema, AliasWarning$outboundSchema, ReadyState$inboundSchema, ReadyState$outboundSchema, CreateDeploymentType$inboundSchema, CreateDeploymentType$outboundSchema, AliasError$inboundSchema, AliasError$outboundSchema, ChecksState$inboundSchema, ChecksState$outboundSchema, ChecksConclusion$inboundSchema, ChecksConclusion$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody15Type$outboundSchema, CreateDeploymentGitSource15$inboundSchema, CreateDeploymentGitSource15$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody14Type$outboundSchema, CreateDeploymentGitSource14$inboundSchema, CreateDeploymentGitSource14$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody13Type$outboundSchema, CreateDeploymentGitSource13$inboundSchema, CreateDeploymentGitSource13$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody12Type$outboundSchema, CreateDeploymentGitSource12$inboundSchema, CreateDeploymentGitSource12$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema, CreateDeploymentGitSource11$inboundSchema, CreateDeploymentGitSource11$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody10Type$outboundSchema, CreateDeploymentGitSource10$inboundSchema, CreateDeploymentGitSource10$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody9Type$outboundSchema, CreateDeploymentGitSource9$inboundSchema, CreateDeploymentGitSource9$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody8Type$outboundSchema, CreateDeploymentGitSource8$inboundSchema, CreateDeploymentGitSource8$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody7Type$outboundSchema, GitSourceProjectId$inboundSchema, GitSourceProjectId$outboundSchema, CreateDeploymentGitSource7$inboundSchema, CreateDeploymentGitSource7$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody6Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody6Type$outboundSchema, CreateDeploymentGitSource6$inboundSchema, CreateDeploymentGitSource6$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody5Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody5Type$outboundSchema, CreateDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema, CreateDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema, CreateDeploymentGitSource5$inboundSchema, CreateDeploymentGitSource5$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema, CreateDeploymentGitSource4$inboundSchema, CreateDeploymentGitSource4$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema, CreateDeploymentGitSourceDeploymentsRepoId$inboundSchema, CreateDeploymentGitSourceDeploymentsRepoId$outboundSchema, CreateDeploymentGitSource3$inboundSchema, CreateDeploymentGitSource3$outboundSchema, CreateDeploymentGitSourceDeploymentsResponse200Type$inboundSchema, CreateDeploymentGitSourceDeploymentsResponse200Type$outboundSchema, CreateDeploymentGitSource2$inboundSchema, CreateDeploymentGitSource2$outboundSchema, CreateDeploymentGitSourceDeploymentsResponseType$inboundSchema, CreateDeploymentGitSourceDeploymentsResponseType$outboundSchema, CreateDeploymentGitSourceRepoId$inboundSchema, CreateDeploymentGitSourceRepoId$outboundSchema, CreateDeploymentGitSource1$inboundSchema, CreateDeploymentGitSource1$outboundSchema, CreateDeploymentGitSource$inboundSchema, CreateDeploymentGitSource$outboundSchema, CreateDeploymentNodeVersion$inboundSchema, CreateDeploymentNodeVersion$outboundSchema, CreateDeploymentProject$inboundSchema, CreateDeploymentProject$outboundSchema, ReadySubstate$inboundSchema, ReadySubstate$outboundSchema, CreateDeploymentSource$inboundSchema, CreateDeploymentSource$outboundSchema, CreateDeploymentTarget$inboundSchema, CreateDeploymentTarget$outboundSchema, OidcTokenClaims$inboundSchema, OidcTokenClaims$outboundSchema, CreateDeploymentPlan$inboundSchema, CreateDeploymentPlan$outboundSchema, CreateDeploymentCrons$inboundSchema, CreateDeploymentCrons$outboundSchema, Architecture$inboundSchema, Architecture$outboundSchema, CreateDeploymentDeploymentsType$inboundSchema, CreateDeploymentDeploymentsType$outboundSchema, ExperimentalTriggers$inboundSchema, ExperimentalTriggers$outboundSchema, Functions$inboundSchema, Functions$outboundSchema, Routes3$inboundSchema, Routes3$outboundSchema, Handle$inboundSchema, Handle$outboundSchema, Routes2$inboundSchema, Routes2$outboundSchema, CreateDeploymentHasDeploymentsType$inboundSchema, CreateDeploymentHasDeploymentsType$outboundSchema, ValueEq$inboundSchema, ValueEq$outboundSchema, CreateDeploymentValue2$inboundSchema, CreateDeploymentValue2$outboundSchema, CreateDeploymentHasDeploymentsValue$inboundSchema, CreateDeploymentHasDeploymentsValue$outboundSchema, CreateDeploymentHas2$inboundSchema, CreateDeploymentHas2$outboundSchema, CreateDeploymentHasType$inboundSchema, CreateDeploymentHasType$outboundSchema, Eq$inboundSchema, Eq$outboundSchema, CreateDeploymentValueDeploymentsResponse2002$inboundSchema, CreateDeploymentValueDeploymentsResponse2002$outboundSchema, CreateDeploymentHasValue$inboundSchema, CreateDeploymentHasValue$outboundSchema, CreateDeploymentHas1$inboundSchema, CreateDeploymentHas1$outboundSchema, RoutesHas$inboundSchema, RoutesHas$outboundSchema, CreateDeploymentMissingType$inboundSchema, CreateDeploymentMissingType$outboundSchema, CreateDeploymentValueDeploymentsEq$inboundSchema, CreateDeploymentValueDeploymentsEq$outboundSchema, CreateDeploymentValueDeploymentsResponse2$inboundSchema, CreateDeploymentValueDeploymentsResponse2$outboundSchema, CreateDeploymentMissingValue$inboundSchema, CreateDeploymentMissingValue$outboundSchema, Missing2$inboundSchema, Missing2$outboundSchema, MissingType$inboundSchema, MissingType$outboundSchema, CreateDeploymentValueEq$inboundSchema, CreateDeploymentValueEq$outboundSchema, CreateDeploymentValueDeployments2$inboundSchema, CreateDeploymentValueDeployments2$outboundSchema, MissingValue$inboundSchema, MissingValue$outboundSchema, Missing1$inboundSchema, Missing1$outboundSchema, Missing$inboundSchema, Missing$outboundSchema, RoutesAction$inboundSchema, RoutesAction$outboundSchema, RoutesMitigate$inboundSchema, RoutesMitigate$outboundSchema, RoutesType$inboundSchema, RoutesType$outboundSchema, CreateDeploymentRoutesOp$inboundSchema, CreateDeploymentRoutesOp$outboundSchema, KeyEq$inboundSchema, KeyEq$outboundSchema, Key2$inboundSchema, Key2$outboundSchema, RoutesKey$inboundSchema, RoutesKey$outboundSchema, RoutesTarget$inboundSchema, RoutesTarget$outboundSchema, Args$inboundSchema, Args$outboundSchema, CreateDeploymentRoutesTransforms$inboundSchema, CreateDeploymentRoutesTransforms$outboundSchema, Locale$inboundSchema, Locale$outboundSchema, Routes1$inboundSchema, Routes1$outboundSchema, Routes$inboundSchema, Routes$outboundSchema, CreateDeploymentGitRepoDeploymentsType$inboundSchema, CreateDeploymentGitRepoDeploymentsType$outboundSchema, CreateDeploymentGitRepoOwnerType$inboundSchema, CreateDeploymentGitRepoOwnerType$outboundSchema, GitRepo3$inboundSchema, GitRepo3$outboundSchema, CreateDeploymentGitRepoType$inboundSchema, CreateDeploymentGitRepoType$outboundSchema, GitRepoOwnerType$inboundSchema, GitRepoOwnerType$outboundSchema, GitRepo2$inboundSchema, GitRepo2$outboundSchema, GitRepoType$inboundSchema, GitRepoType$outboundSchema, OwnerType$inboundSchema, OwnerType$outboundSchema, GitRepo1$inboundSchema, GitRepo1$outboundSchema, GitRepo$inboundSchema, GitRepo$outboundSchema, Flags2$inboundSchema, Flags2$outboundSchema, Options$inboundSchema, Options$outboundSchema, FlagsDefinitions$inboundSchema, FlagsDefinitions$outboundSchema, Flags1$inboundSchema, Flags1$outboundSchema, Flags$inboundSchema, Flags$outboundSchema, MfeConfigUploadState$inboundSchema, MfeConfigUploadState$outboundSchema, CreateDeploymentMicrofrontends2$inboundSchema, CreateDeploymentMicrofrontends2$outboundSchema, CreateDeploymentMicrofrontends1$inboundSchema, CreateDeploymentMicrofrontends1$outboundSchema, CreateDeploymentMicrofrontends$inboundSchema, CreateDeploymentMicrofrontends$outboundSchema, FunctionType$inboundSchema, FunctionType$outboundSchema, FunctionMemoryType$inboundSchema, FunctionMemoryType$outboundSchema, Config$inboundSchema, Config$outboundSchema, CreateDeploymentState$inboundSchema, CreateDeploymentState$outboundSchema, DeploymentAlias$inboundSchema, DeploymentAlias$outboundSchema, CreateDeploymentChecks$inboundSchema, CreateDeploymentChecks$outboundSchema, CreateDeploymentResponseBody$inboundSchema, CreateDeploymentResponseBody$outboundSchema;
44854
44840
  var init_createdeploymentop = __esm(() => {
44855
44841
  init_esm();
44856
44842
  init_primitives();
@@ -46757,23 +46743,10 @@ var init_createdeploymentop = __esm(() => {
46757
46743
  lazyType(() => Flags1$outboundSchema),
46758
46744
  arrayType(lazyType(() => Flags2$outboundSchema))
46759
46745
  ]);
46760
- CreateDeploymentMicrofrontendsApplications$inboundSchema = objectType({
46761
- isDefaultApp: booleanType().optional(),
46762
- productionHost: stringType(),
46763
- deploymentAlias: stringType().optional(),
46764
- deploymentHost: stringType().optional()
46765
- });
46766
- CreateDeploymentMicrofrontendsApplications$outboundSchema = objectType({
46767
- isDefaultApp: booleanType().optional(),
46768
- productionHost: stringType(),
46769
- deploymentAlias: stringType().optional(),
46770
- deploymentHost: stringType().optional()
46771
- });
46772
46746
  MfeConfigUploadState$inboundSchema = nativeEnumType(MfeConfigUploadState);
46773
46747
  MfeConfigUploadState$outboundSchema = MfeConfigUploadState$inboundSchema;
46774
46748
  CreateDeploymentMicrofrontends2$inboundSchema = objectType({
46775
46749
  isDefaultApp: booleanType(),
46776
- applications: recordType(lazyType(() => CreateDeploymentMicrofrontendsApplications$inboundSchema)).optional(),
46777
46750
  mfeConfigUploadState: MfeConfigUploadState$inboundSchema.optional(),
46778
46751
  defaultAppProjectName: stringType(),
46779
46752
  defaultRoute: stringType().optional(),
@@ -46781,7 +46754,6 @@ var init_createdeploymentop = __esm(() => {
46781
46754
  });
46782
46755
  CreateDeploymentMicrofrontends2$outboundSchema = objectType({
46783
46756
  isDefaultApp: booleanType(),
46784
- applications: recordType(lazyType(() => CreateDeploymentMicrofrontendsApplications$outboundSchema)).optional(),
46785
46757
  mfeConfigUploadState: MfeConfigUploadState$outboundSchema.optional(),
46786
46758
  defaultAppProjectName: stringType(),
46787
46759
  defaultRoute: stringType().optional(),
@@ -47343,7 +47315,7 @@ This API allows you to delete a deployment, either by supplying its \`id\` in th
47343
47315
  });
47344
47316
 
47345
47317
  // src/models/getdeploymentop.ts
47346
- var GetDeploymentResponseBodyDeploymentsReadyState, GetDeploymentResponseBodyStatus, GetDeploymentCustomEnvironmentType, GetDeploymentCustomEnvironmentDeploymentsResponseType, ResponseBodyOomReport, GetDeploymentResponseBodyReadyState, GetDeploymentResponseBodyDeploymentsType, GetDeploymentResponseBodyChecksState, GetDeploymentResponseBodyChecksConclusion, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody24Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody22Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type, GetDeploymentResponseBodyNodeVersion, GetDeploymentResponseBodyReadySubstate, GetDeploymentResponseBodySource, GetDeploymentResponseBodyTarget, ResponseBodyFramework, GetDeploymentResponseBodyDeploymentsStatus, ResponseBodyProtocol, ResponseBodyFormats, ResponseBodyContentDispositionType, GetDeploymentResponseBodyDeploymentsResponseReadyState, ResponseBodyStatus, GetDeploymentCustomEnvironmentDeploymentsType, GetDeploymentCustomEnvironmentDeploymentsResponse200Type, GetDeploymentResponseBodyOomReport, ResponseBodyReadyState, GetDeploymentResponseBodyType, ResponseBodyChecksState, ResponseBodyChecksConclusion, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType, GetDeploymentGitSourceDeploymentsResponse200Type, GetDeploymentGitSourceDeploymentsResponseType, GetDeploymentGitSourceDeploymentsType, GetDeploymentGitSourceType, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type, ResponseBodyNodeVersion, ResponseBodyReadySubstate, ResponseBodySource, ResponseBodyTarget, ResponseBodyPlan, ResponseBodyArchitecture, GetDeploymentResponseBodyDeploymentsResponseType, GetDeploymentRoutesHandle, GetDeploymentHasDeploymentsType, GetDeploymentHasType, GetDeploymentMissingType, GetDeploymentMissingDeploymentsType, GetDeploymentRoutesAction, GetDeploymentRoutesType, GetDeploymentRoutesOp, GetDeploymentGitRepoDeploymentsType, GetDeploymentGitRepoOwnerType, GetDeploymentGitRepoType, GetDeploymentGitRepoDeploymentsResponseOwnerType, GetDeploymentGitRepoDeploymentsResponseType, GetDeploymentGitRepoDeploymentsOwnerType, GetDeploymentMicrofrontendsMfeConfigUploadState, ResponseBodyFunctionType, ResponseBodyFunctionMemoryType, ResponseBodyState, GetDeploymentRequest$inboundSchema, GetDeploymentRequest$outboundSchema, GetDeploymentResponseBodyCreator$inboundSchema, GetDeploymentResponseBodyCreator$outboundSchema, GetDeploymentResponseBodyDeploymentsReadyState$inboundSchema, GetDeploymentResponseBodyDeploymentsReadyState$outboundSchema, GetDeploymentResponseBodyOutput$inboundSchema, GetDeploymentResponseBodyOutput$outboundSchema, ResponseBodyLambdas$inboundSchema, ResponseBodyLambdas$outboundSchema, GetDeploymentResponseBodyStatus$inboundSchema, GetDeploymentResponseBodyStatus$outboundSchema, ResponseBodyTeam$inboundSchema, ResponseBodyTeam$outboundSchema, GetDeploymentCustomEnvironment2$inboundSchema, GetDeploymentCustomEnvironment2$outboundSchema, GetDeploymentCustomEnvironmentType$inboundSchema, GetDeploymentCustomEnvironmentType$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponseType$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponseType$outboundSchema, GetDeploymentCustomEnvironmentBranchMatcher$inboundSchema, GetDeploymentCustomEnvironmentBranchMatcher$outboundSchema, GetDeploymentCustomEnvironmentVerification$inboundSchema, GetDeploymentCustomEnvironmentVerification$outboundSchema, GetDeploymentCustomEnvironmentDomains$inboundSchema, GetDeploymentCustomEnvironmentDomains$outboundSchema, GetDeploymentCustomEnvironment1$inboundSchema, GetDeploymentCustomEnvironment1$outboundSchema, ResponseBodyCustomEnvironment$inboundSchema, ResponseBodyCustomEnvironment$outboundSchema, ResponseBodyOomReport$inboundSchema, ResponseBodyOomReport$outboundSchema, ResponseBodyAliasWarning$inboundSchema, ResponseBodyAliasWarning$outboundSchema, GetDeploymentResponseBodyReadyState$inboundSchema, GetDeploymentResponseBodyReadyState$outboundSchema, GetDeploymentResponseBodyDeploymentsType$inboundSchema, GetDeploymentResponseBodyDeploymentsType$outboundSchema, GetDeploymentResponseBodyAliasError$inboundSchema, GetDeploymentResponseBodyAliasError$outboundSchema, GetDeploymentResponseBodyChecksState$inboundSchema, GetDeploymentResponseBodyChecksState$outboundSchema, GetDeploymentResponseBodyChecksConclusion$inboundSchema, GetDeploymentResponseBodyChecksConclusion$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema, GetDeploymentGitSource15$inboundSchema, GetDeploymentGitSource15$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema, GetDeploymentGitSource14$inboundSchema, GetDeploymentGitSource14$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema, GetDeploymentGitSource13$inboundSchema, GetDeploymentGitSource13$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema, GetDeploymentGitSource12$inboundSchema, GetDeploymentGitSource12$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema, GetDeploymentGitSource11$inboundSchema, GetDeploymentGitSource11$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema, GetDeploymentGitSource10$inboundSchema, GetDeploymentGitSource10$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema, GetDeploymentGitSource9$inboundSchema, GetDeploymentGitSource9$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema, GetDeploymentGitSource8$inboundSchema, GetDeploymentGitSource8$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema, GetDeploymentGitSourceDeploymentsProjectId$inboundSchema, GetDeploymentGitSourceDeploymentsProjectId$outboundSchema, GetDeploymentGitSource7$inboundSchema, GetDeploymentGitSource7$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$outboundSchema, GetDeploymentGitSource6$inboundSchema, GetDeploymentGitSource6$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema, GetDeploymentGitSource5$inboundSchema, GetDeploymentGitSource5$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody24Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody24Type$outboundSchema, GetDeploymentGitSource4$inboundSchema, GetDeploymentGitSource4$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$outboundSchema, GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema, GetDeploymentGitSource3$inboundSchema, GetDeploymentGitSource3$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody22Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody22Type$outboundSchema, GetDeploymentGitSource2$inboundSchema, GetDeploymentGitSource2$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$outboundSchema, GetDeploymentGitSourceDeploymentsRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsRepoId$outboundSchema, GetDeploymentGitSource1$inboundSchema, GetDeploymentGitSource1$outboundSchema, ResponseBodyGitSource$inboundSchema, ResponseBodyGitSource$outboundSchema, GetDeploymentResponseBodyNodeVersion$inboundSchema, GetDeploymentResponseBodyNodeVersion$outboundSchema, GetDeploymentResponseBodyProject$inboundSchema, GetDeploymentResponseBodyProject$outboundSchema, GetDeploymentResponseBodyReadySubstate$inboundSchema, GetDeploymentResponseBodyReadySubstate$outboundSchema, GetDeploymentResponseBodySource$inboundSchema, GetDeploymentResponseBodySource$outboundSchema, GetDeploymentResponseBodyTarget$inboundSchema, GetDeploymentResponseBodyTarget$outboundSchema, GetDeploymentResponseBodyOidcTokenClaims$inboundSchema, GetDeploymentResponseBodyOidcTokenClaims$outboundSchema, GetDeploymentResponseBody2$inboundSchema, GetDeploymentResponseBody2$outboundSchema, ResponseBodyAliasAssignedAt$inboundSchema, ResponseBodyAliasAssignedAt$outboundSchema, ResponseBodyBuild$inboundSchema, ResponseBodyBuild$outboundSchema, ResponseBodyBuilds$inboundSchema, ResponseBodyBuilds$outboundSchema, ResponseBodyFramework$inboundSchema, ResponseBodyFramework$outboundSchema, ResponseBodySpeedInsights$inboundSchema, ResponseBodySpeedInsights$outboundSchema, ResponseBodyWebAnalytics$inboundSchema, ResponseBodyWebAnalytics$outboundSchema, ResponseBodyProjectSettings$inboundSchema, ResponseBodyProjectSettings$outboundSchema, GetDeploymentResponseBodyDeploymentsStatus$inboundSchema, GetDeploymentResponseBodyDeploymentsStatus$outboundSchema, ResponseBodyIntegrations$inboundSchema, ResponseBodyIntegrations$outboundSchema, ResponseBodyProtocol$inboundSchema, ResponseBodyProtocol$outboundSchema, ResponseBodyRemotePatterns$inboundSchema, ResponseBodyRemotePatterns$outboundSchema, ResponseBodyLocalPatterns$inboundSchema, ResponseBodyLocalPatterns$outboundSchema, ResponseBodyFormats$inboundSchema, ResponseBodyFormats$outboundSchema, ResponseBodyContentDispositionType$inboundSchema, ResponseBodyContentDispositionType$outboundSchema, ResponseBodyImages$inboundSchema, ResponseBodyImages$outboundSchema, ResponseBodyCreator$inboundSchema, ResponseBodyCreator$outboundSchema, GetDeploymentResponseBodyDeploymentsResponseReadyState$inboundSchema, GetDeploymentResponseBodyDeploymentsResponseReadyState$outboundSchema, ResponseBodyOutput$inboundSchema, ResponseBodyOutput$outboundSchema, GetDeploymentResponseBodyLambdas$inboundSchema, GetDeploymentResponseBodyLambdas$outboundSchema, ResponseBodyStatus$inboundSchema, ResponseBodyStatus$outboundSchema, GetDeploymentResponseBodyTeam$inboundSchema, GetDeploymentResponseBodyTeam$outboundSchema, GetDeploymentCustomEnvironmentDeployments2$inboundSchema, GetDeploymentCustomEnvironmentDeployments2$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsType$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsType$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponse200Type$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponse200Type$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsBranchMatcher$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsBranchMatcher$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsVerification$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsVerification$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsDomains$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsDomains$outboundSchema, GetDeploymentCustomEnvironmentDeployments1$inboundSchema, GetDeploymentCustomEnvironmentDeployments1$outboundSchema, GetDeploymentResponseBodyCustomEnvironment$inboundSchema, GetDeploymentResponseBodyCustomEnvironment$outboundSchema, GetDeploymentResponseBodyOomReport$inboundSchema, GetDeploymentResponseBodyOomReport$outboundSchema, GetDeploymentResponseBodyAliasWarning$inboundSchema, GetDeploymentResponseBodyAliasWarning$outboundSchema, ResponseBodyReadyState$inboundSchema, ResponseBodyReadyState$outboundSchema, GetDeploymentResponseBodyType$inboundSchema, GetDeploymentResponseBodyType$outboundSchema, ResponseBodyAliasError$inboundSchema, ResponseBodyAliasError$outboundSchema, ResponseBodyChecksState$inboundSchema, ResponseBodyChecksState$outboundSchema, ResponseBodyChecksConclusion$inboundSchema, ResponseBodyChecksConclusion$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema, GetDeploymentGitSourceDeployments15$inboundSchema, GetDeploymentGitSourceDeployments15$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema, GetDeploymentGitSourceDeployments14$inboundSchema, GetDeploymentGitSourceDeployments14$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema, GetDeploymentGitSourceDeployments13$inboundSchema, GetDeploymentGitSourceDeployments13$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$outboundSchema, GetDeploymentGitSourceDeployments12$inboundSchema, GetDeploymentGitSourceDeployments12$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$outboundSchema, GetDeploymentGitSourceDeployments11$inboundSchema, GetDeploymentGitSourceDeployments11$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$outboundSchema, GetDeploymentGitSourceDeployments10$inboundSchema, GetDeploymentGitSourceDeployments10$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$outboundSchema, GetDeploymentGitSourceDeployments9$inboundSchema, GetDeploymentGitSourceDeployments9$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$outboundSchema, GetDeploymentGitSourceDeployments8$inboundSchema, GetDeploymentGitSourceDeployments8$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema, GetDeploymentGitSourceProjectId$inboundSchema, GetDeploymentGitSourceProjectId$outboundSchema, GetDeploymentGitSourceDeployments7$inboundSchema, GetDeploymentGitSourceDeployments7$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema, GetDeploymentGitSourceDeployments6$inboundSchema, GetDeploymentGitSourceDeployments6$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200Type$outboundSchema, GetDeploymentGitSourceRepoId$inboundSchema, GetDeploymentGitSourceRepoId$outboundSchema, GetDeploymentGitSourceDeployments5$inboundSchema, GetDeploymentGitSourceDeployments5$outboundSchema, GetDeploymentGitSourceDeploymentsResponseType$inboundSchema, GetDeploymentGitSourceDeploymentsResponseType$outboundSchema, GetDeploymentGitSourceDeployments4$inboundSchema, GetDeploymentGitSourceDeployments4$outboundSchema, GetDeploymentGitSourceDeploymentsType$inboundSchema, GetDeploymentGitSourceDeploymentsType$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema, GetDeploymentGitSourceDeployments3$inboundSchema, GetDeploymentGitSourceDeployments3$outboundSchema, GetDeploymentGitSourceType$inboundSchema, GetDeploymentGitSourceType$outboundSchema, GetDeploymentGitSourceDeployments2$inboundSchema, GetDeploymentGitSourceDeployments2$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema, GetDeploymentGitSourceDeployments1$inboundSchema, GetDeploymentGitSourceDeployments1$outboundSchema, GetDeploymentResponseBodyGitSource$inboundSchema, GetDeploymentResponseBodyGitSource$outboundSchema, ResponseBodyNodeVersion$inboundSchema, ResponseBodyNodeVersion$outboundSchema, ResponseBodyProject$inboundSchema, ResponseBodyProject$outboundSchema, ResponseBodyReadySubstate$inboundSchema, ResponseBodyReadySubstate$outboundSchema, ResponseBodySource$inboundSchema, ResponseBodySource$outboundSchema, ResponseBodyTarget$inboundSchema, ResponseBodyTarget$outboundSchema, ResponseBodyOidcTokenClaims$inboundSchema, ResponseBodyOidcTokenClaims$outboundSchema, ResponseBodyPlan$inboundSchema, ResponseBodyPlan$outboundSchema, ResponseBodyCrons$inboundSchema, ResponseBodyCrons$outboundSchema, ResponseBodyArchitecture$inboundSchema, ResponseBodyArchitecture$outboundSchema, GetDeploymentResponseBodyDeploymentsResponseType$inboundSchema, GetDeploymentResponseBodyDeploymentsResponseType$outboundSchema, ResponseBodyExperimentalTriggers$inboundSchema, ResponseBodyExperimentalTriggers$outboundSchema, ResponseBodyFunctions$inboundSchema, ResponseBodyFunctions$outboundSchema, GetDeploymentRoutes3$inboundSchema, GetDeploymentRoutes3$outboundSchema, GetDeploymentRoutesHandle$inboundSchema, GetDeploymentRoutesHandle$outboundSchema, GetDeploymentRoutes2$inboundSchema, GetDeploymentRoutes2$outboundSchema, GetDeploymentHasDeploymentsType$inboundSchema, GetDeploymentHasDeploymentsType$outboundSchema, GetDeploymentValueDeploymentsResponse200Eq$inboundSchema, GetDeploymentValueDeploymentsResponse200Eq$outboundSchema, GetDeploymentValue2$inboundSchema, GetDeploymentValue2$outboundSchema, GetDeploymentHasDeploymentsValue$inboundSchema, GetDeploymentHasDeploymentsValue$outboundSchema, GetDeploymentHas2$inboundSchema, GetDeploymentHas2$outboundSchema, GetDeploymentHasType$inboundSchema, GetDeploymentHasType$outboundSchema, GetDeploymentValueDeploymentsResponseEq$inboundSchema, GetDeploymentValueDeploymentsResponseEq$outboundSchema, GetDeploymentValueDeploymentsResponse2002$inboundSchema, GetDeploymentValueDeploymentsResponse2002$outboundSchema, GetDeploymentHasValue$inboundSchema, GetDeploymentHasValue$outboundSchema, GetDeploymentHas1$inboundSchema, GetDeploymentHas1$outboundSchema, GetDeploymentRoutesHas$inboundSchema, GetDeploymentRoutesHas$outboundSchema, GetDeploymentMissingType$inboundSchema, GetDeploymentMissingType$outboundSchema, GetDeploymentValueDeploymentsEq$inboundSchema, GetDeploymentValueDeploymentsEq$outboundSchema, GetDeploymentValueDeploymentsResponse2$inboundSchema, GetDeploymentValueDeploymentsResponse2$outboundSchema, GetDeploymentMissingValue$inboundSchema, GetDeploymentMissingValue$outboundSchema, GetDeploymentMissing2$inboundSchema, GetDeploymentMissing2$outboundSchema, GetDeploymentMissingDeploymentsType$inboundSchema, GetDeploymentMissingDeploymentsType$outboundSchema, GetDeploymentValueEq$inboundSchema, GetDeploymentValueEq$outboundSchema, GetDeploymentValueDeployments2$inboundSchema, GetDeploymentValueDeployments2$outboundSchema, GetDeploymentMissingDeploymentsValue$inboundSchema, GetDeploymentMissingDeploymentsValue$outboundSchema, GetDeploymentMissing1$inboundSchema, GetDeploymentMissing1$outboundSchema, GetDeploymentRoutesMissing$inboundSchema, GetDeploymentRoutesMissing$outboundSchema, GetDeploymentRoutesAction$inboundSchema, GetDeploymentRoutesAction$outboundSchema, GetDeploymentRoutesMitigate$inboundSchema, GetDeploymentRoutesMitigate$outboundSchema, GetDeploymentRoutesType$inboundSchema, GetDeploymentRoutesType$outboundSchema, GetDeploymentRoutesOp$inboundSchema, GetDeploymentRoutesOp$outboundSchema, GetDeploymentKeyEq$inboundSchema, GetDeploymentKeyEq$outboundSchema, GetDeploymentKey2$inboundSchema, GetDeploymentKey2$outboundSchema, GetDeploymentRoutesKey$inboundSchema, GetDeploymentRoutesKey$outboundSchema, GetDeploymentRoutesTarget$inboundSchema, GetDeploymentRoutesTarget$outboundSchema, GetDeploymentRoutesArgs$inboundSchema, GetDeploymentRoutesArgs$outboundSchema, GetDeploymentRoutesTransforms$inboundSchema, GetDeploymentRoutesTransforms$outboundSchema, GetDeploymentRoutesLocale$inboundSchema, GetDeploymentRoutesLocale$outboundSchema, GetDeploymentRoutes1$inboundSchema, GetDeploymentRoutes1$outboundSchema, ResponseBodyRoutes$inboundSchema, ResponseBodyRoutes$outboundSchema, GetDeploymentGitRepoDeploymentsType$inboundSchema, GetDeploymentGitRepoDeploymentsType$outboundSchema, GetDeploymentGitRepoOwnerType$inboundSchema, GetDeploymentGitRepoOwnerType$outboundSchema, GetDeploymentGitRepo3$inboundSchema, GetDeploymentGitRepo3$outboundSchema, GetDeploymentGitRepoType$inboundSchema, GetDeploymentGitRepoType$outboundSchema, GetDeploymentGitRepoDeploymentsResponseOwnerType$inboundSchema, GetDeploymentGitRepoDeploymentsResponseOwnerType$outboundSchema, GetDeploymentGitRepo2$inboundSchema, GetDeploymentGitRepo2$outboundSchema, GetDeploymentGitRepoDeploymentsResponseType$inboundSchema, GetDeploymentGitRepoDeploymentsResponseType$outboundSchema, GetDeploymentGitRepoDeploymentsOwnerType$inboundSchema, GetDeploymentGitRepoDeploymentsOwnerType$outboundSchema, GetDeploymentGitRepo1$inboundSchema, GetDeploymentGitRepo1$outboundSchema, ResponseBodyGitRepo$inboundSchema, ResponseBodyGitRepo$outboundSchema, GetDeploymentFlags2$inboundSchema, GetDeploymentFlags2$outboundSchema, GetDeploymentFlagsOptions$inboundSchema, GetDeploymentFlagsOptions$outboundSchema, GetDeploymentFlagsDefinitions$inboundSchema, GetDeploymentFlagsDefinitions$outboundSchema, GetDeploymentFlags1$inboundSchema, GetDeploymentFlags1$outboundSchema, ResponseBodyFlags$inboundSchema, ResponseBodyFlags$outboundSchema, GetDeploymentMicrofrontendsApplications$inboundSchema, GetDeploymentMicrofrontendsApplications$outboundSchema, GetDeploymentMicrofrontendsMfeConfigUploadState$inboundSchema, GetDeploymentMicrofrontendsMfeConfigUploadState$outboundSchema, GetDeploymentMicrofrontends2$inboundSchema, GetDeploymentMicrofrontends2$outboundSchema, GetDeploymentMicrofrontends1$inboundSchema, GetDeploymentMicrofrontends1$outboundSchema, ResponseBodyMicrofrontends$inboundSchema, ResponseBodyMicrofrontends$outboundSchema, ResponseBodyFunctionType$inboundSchema, ResponseBodyFunctionType$outboundSchema, ResponseBodyFunctionMemoryType$inboundSchema, ResponseBodyFunctionMemoryType$outboundSchema, ResponseBodyConfig$inboundSchema, ResponseBodyConfig$outboundSchema, ResponseBodyState$inboundSchema, ResponseBodyState$outboundSchema, ResponseBodyDeploymentAlias$inboundSchema, ResponseBodyDeploymentAlias$outboundSchema, ResponseBodyChecks$inboundSchema, ResponseBodyChecks$outboundSchema, GetDeploymentResponseBody1$inboundSchema, GetDeploymentResponseBody1$outboundSchema, GetDeploymentResponseBody$inboundSchema, GetDeploymentResponseBody$outboundSchema;
47318
+ var GetDeploymentResponseBodyDeploymentsReadyState, GetDeploymentResponseBodyStatus, GetDeploymentCustomEnvironmentType, GetDeploymentCustomEnvironmentDeploymentsResponseType, ResponseBodyOomReport, GetDeploymentResponseBodyReadyState, GetDeploymentResponseBodyDeploymentsType, GetDeploymentResponseBodyChecksState, GetDeploymentResponseBodyChecksConclusion, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody24Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody22Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type, GetDeploymentResponseBodyNodeVersion, GetDeploymentResponseBodyReadySubstate, GetDeploymentResponseBodySource, GetDeploymentResponseBodyTarget, ResponseBodyFramework, GetDeploymentResponseBodyDeploymentsStatus, ResponseBodyProtocol, ResponseBodyFormats, ResponseBodyContentDispositionType, GetDeploymentResponseBodyDeploymentsResponseReadyState, ResponseBodyStatus, GetDeploymentCustomEnvironmentDeploymentsType, GetDeploymentCustomEnvironmentDeploymentsResponse200Type, GetDeploymentResponseBodyOomReport, ResponseBodyReadyState, GetDeploymentResponseBodyType, ResponseBodyChecksState, ResponseBodyChecksConclusion, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType, GetDeploymentGitSourceDeploymentsResponse200Type, GetDeploymentGitSourceDeploymentsResponseType, GetDeploymentGitSourceDeploymentsType, GetDeploymentGitSourceType, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type, ResponseBodyNodeVersion, ResponseBodyReadySubstate, ResponseBodySource, ResponseBodyTarget, ResponseBodyPlan, ResponseBodyArchitecture, GetDeploymentResponseBodyDeploymentsResponseType, GetDeploymentRoutesHandle, GetDeploymentHasDeploymentsType, GetDeploymentHasType, GetDeploymentMissingType, GetDeploymentMissingDeploymentsType, GetDeploymentRoutesAction, GetDeploymentRoutesType, GetDeploymentRoutesOp, GetDeploymentGitRepoDeploymentsType, GetDeploymentGitRepoOwnerType, GetDeploymentGitRepoType, GetDeploymentGitRepoDeploymentsResponseOwnerType, GetDeploymentGitRepoDeploymentsResponseType, GetDeploymentGitRepoDeploymentsOwnerType, GetDeploymentMicrofrontendsMfeConfigUploadState, ResponseBodyFunctionType, ResponseBodyFunctionMemoryType, ResponseBodyState, GetDeploymentRequest$inboundSchema, GetDeploymentRequest$outboundSchema, GetDeploymentResponseBodyCreator$inboundSchema, GetDeploymentResponseBodyCreator$outboundSchema, GetDeploymentResponseBodyDeploymentsReadyState$inboundSchema, GetDeploymentResponseBodyDeploymentsReadyState$outboundSchema, GetDeploymentResponseBodyOutput$inboundSchema, GetDeploymentResponseBodyOutput$outboundSchema, ResponseBodyLambdas$inboundSchema, ResponseBodyLambdas$outboundSchema, GetDeploymentResponseBodyStatus$inboundSchema, GetDeploymentResponseBodyStatus$outboundSchema, ResponseBodyTeam$inboundSchema, ResponseBodyTeam$outboundSchema, GetDeploymentCustomEnvironment2$inboundSchema, GetDeploymentCustomEnvironment2$outboundSchema, GetDeploymentCustomEnvironmentType$inboundSchema, GetDeploymentCustomEnvironmentType$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponseType$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponseType$outboundSchema, GetDeploymentCustomEnvironmentBranchMatcher$inboundSchema, GetDeploymentCustomEnvironmentBranchMatcher$outboundSchema, GetDeploymentCustomEnvironmentVerification$inboundSchema, GetDeploymentCustomEnvironmentVerification$outboundSchema, GetDeploymentCustomEnvironmentDomains$inboundSchema, GetDeploymentCustomEnvironmentDomains$outboundSchema, GetDeploymentCustomEnvironment1$inboundSchema, GetDeploymentCustomEnvironment1$outboundSchema, ResponseBodyCustomEnvironment$inboundSchema, ResponseBodyCustomEnvironment$outboundSchema, ResponseBodyOomReport$inboundSchema, ResponseBodyOomReport$outboundSchema, ResponseBodyAliasWarning$inboundSchema, ResponseBodyAliasWarning$outboundSchema, GetDeploymentResponseBodyReadyState$inboundSchema, GetDeploymentResponseBodyReadyState$outboundSchema, GetDeploymentResponseBodyDeploymentsType$inboundSchema, GetDeploymentResponseBodyDeploymentsType$outboundSchema, GetDeploymentResponseBodyAliasError$inboundSchema, GetDeploymentResponseBodyAliasError$outboundSchema, GetDeploymentResponseBodyChecksState$inboundSchema, GetDeploymentResponseBodyChecksState$outboundSchema, GetDeploymentResponseBodyChecksConclusion$inboundSchema, GetDeploymentResponseBodyChecksConclusion$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody215Type$outboundSchema, GetDeploymentGitSource15$inboundSchema, GetDeploymentGitSource15$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody214Type$outboundSchema, GetDeploymentGitSource14$inboundSchema, GetDeploymentGitSource14$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody213Type$outboundSchema, GetDeploymentGitSource13$inboundSchema, GetDeploymentGitSource13$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody212Type$outboundSchema, GetDeploymentGitSource12$inboundSchema, GetDeploymentGitSource12$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody211Type$outboundSchema, GetDeploymentGitSource11$inboundSchema, GetDeploymentGitSource11$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody210Type$outboundSchema, GetDeploymentGitSource10$inboundSchema, GetDeploymentGitSource10$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody29Type$outboundSchema, GetDeploymentGitSource9$inboundSchema, GetDeploymentGitSource9$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody28Type$outboundSchema, GetDeploymentGitSource8$inboundSchema, GetDeploymentGitSource8$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody27Type$outboundSchema, GetDeploymentGitSourceDeploymentsProjectId$inboundSchema, GetDeploymentGitSourceDeploymentsProjectId$outboundSchema, GetDeploymentGitSource7$inboundSchema, GetDeploymentGitSource7$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody26Type$outboundSchema, GetDeploymentGitSource6$inboundSchema, GetDeploymentGitSource6$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody25Type$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200RepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200RepoId$outboundSchema, GetDeploymentGitSource5$inboundSchema, GetDeploymentGitSource5$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody24Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody24Type$outboundSchema, GetDeploymentGitSource4$inboundSchema, GetDeploymentGitSource4$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody23Type$outboundSchema, GetDeploymentGitSourceDeploymentsResponseRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponseRepoId$outboundSchema, GetDeploymentGitSource3$inboundSchema, GetDeploymentGitSource3$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody22Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody22Type$outboundSchema, GetDeploymentGitSource2$inboundSchema, GetDeploymentGitSource2$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody2Type$outboundSchema, GetDeploymentGitSourceDeploymentsRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsRepoId$outboundSchema, GetDeploymentGitSource1$inboundSchema, GetDeploymentGitSource1$outboundSchema, ResponseBodyGitSource$inboundSchema, ResponseBodyGitSource$outboundSchema, GetDeploymentResponseBodyNodeVersion$inboundSchema, GetDeploymentResponseBodyNodeVersion$outboundSchema, GetDeploymentResponseBodyProject$inboundSchema, GetDeploymentResponseBodyProject$outboundSchema, GetDeploymentResponseBodyReadySubstate$inboundSchema, GetDeploymentResponseBodyReadySubstate$outboundSchema, GetDeploymentResponseBodySource$inboundSchema, GetDeploymentResponseBodySource$outboundSchema, GetDeploymentResponseBodyTarget$inboundSchema, GetDeploymentResponseBodyTarget$outboundSchema, GetDeploymentResponseBodyOidcTokenClaims$inboundSchema, GetDeploymentResponseBodyOidcTokenClaims$outboundSchema, GetDeploymentResponseBody2$inboundSchema, GetDeploymentResponseBody2$outboundSchema, ResponseBodyAliasAssignedAt$inboundSchema, ResponseBodyAliasAssignedAt$outboundSchema, ResponseBodyBuild$inboundSchema, ResponseBodyBuild$outboundSchema, ResponseBodyBuilds$inboundSchema, ResponseBodyBuilds$outboundSchema, ResponseBodyFramework$inboundSchema, ResponseBodyFramework$outboundSchema, ResponseBodySpeedInsights$inboundSchema, ResponseBodySpeedInsights$outboundSchema, ResponseBodyWebAnalytics$inboundSchema, ResponseBodyWebAnalytics$outboundSchema, ResponseBodyProjectSettings$inboundSchema, ResponseBodyProjectSettings$outboundSchema, GetDeploymentResponseBodyDeploymentsStatus$inboundSchema, GetDeploymentResponseBodyDeploymentsStatus$outboundSchema, ResponseBodyIntegrations$inboundSchema, ResponseBodyIntegrations$outboundSchema, ResponseBodyProtocol$inboundSchema, ResponseBodyProtocol$outboundSchema, ResponseBodyRemotePatterns$inboundSchema, ResponseBodyRemotePatterns$outboundSchema, ResponseBodyLocalPatterns$inboundSchema, ResponseBodyLocalPatterns$outboundSchema, ResponseBodyFormats$inboundSchema, ResponseBodyFormats$outboundSchema, ResponseBodyContentDispositionType$inboundSchema, ResponseBodyContentDispositionType$outboundSchema, ResponseBodyImages$inboundSchema, ResponseBodyImages$outboundSchema, ResponseBodyCreator$inboundSchema, ResponseBodyCreator$outboundSchema, GetDeploymentResponseBodyDeploymentsResponseReadyState$inboundSchema, GetDeploymentResponseBodyDeploymentsResponseReadyState$outboundSchema, ResponseBodyOutput$inboundSchema, ResponseBodyOutput$outboundSchema, GetDeploymentResponseBodyLambdas$inboundSchema, GetDeploymentResponseBodyLambdas$outboundSchema, ResponseBodyStatus$inboundSchema, ResponseBodyStatus$outboundSchema, GetDeploymentResponseBodyTeam$inboundSchema, GetDeploymentResponseBodyTeam$outboundSchema, GetDeploymentCustomEnvironmentDeployments2$inboundSchema, GetDeploymentCustomEnvironmentDeployments2$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsType$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsType$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponse200Type$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsResponse200Type$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsBranchMatcher$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsBranchMatcher$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsVerification$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsVerification$outboundSchema, GetDeploymentCustomEnvironmentDeploymentsDomains$inboundSchema, GetDeploymentCustomEnvironmentDeploymentsDomains$outboundSchema, GetDeploymentCustomEnvironmentDeployments1$inboundSchema, GetDeploymentCustomEnvironmentDeployments1$outboundSchema, GetDeploymentResponseBodyCustomEnvironment$inboundSchema, GetDeploymentResponseBodyCustomEnvironment$outboundSchema, GetDeploymentResponseBodyOomReport$inboundSchema, GetDeploymentResponseBodyOomReport$outboundSchema, GetDeploymentResponseBodyAliasWarning$inboundSchema, GetDeploymentResponseBodyAliasWarning$outboundSchema, ResponseBodyReadyState$inboundSchema, ResponseBodyReadyState$outboundSchema, GetDeploymentResponseBodyType$inboundSchema, GetDeploymentResponseBodyType$outboundSchema, ResponseBodyAliasError$inboundSchema, ResponseBodyAliasError$outboundSchema, ResponseBodyChecksState$inboundSchema, ResponseBodyChecksState$outboundSchema, ResponseBodyChecksConclusion$inboundSchema, ResponseBodyChecksConclusion$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody115Type$outboundSchema, GetDeploymentGitSourceDeployments15$inboundSchema, GetDeploymentGitSourceDeployments15$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody114Type$outboundSchema, GetDeploymentGitSourceDeployments14$inboundSchema, GetDeploymentGitSourceDeployments14$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody113Type$outboundSchema, GetDeploymentGitSourceDeployments13$inboundSchema, GetDeploymentGitSourceDeployments13$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody112Type$outboundSchema, GetDeploymentGitSourceDeployments12$inboundSchema, GetDeploymentGitSourceDeployments12$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody111Type$outboundSchema, GetDeploymentGitSourceDeployments11$inboundSchema, GetDeploymentGitSourceDeployments11$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody110Type$outboundSchema, GetDeploymentGitSourceDeployments10$inboundSchema, GetDeploymentGitSourceDeployments10$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody19Type$outboundSchema, GetDeploymentGitSourceDeployments9$inboundSchema, GetDeploymentGitSourceDeployments9$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody1Type$outboundSchema, GetDeploymentGitSourceDeployments8$inboundSchema, GetDeploymentGitSourceDeployments8$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyType$outboundSchema, GetDeploymentGitSourceProjectId$inboundSchema, GetDeploymentGitSourceProjectId$outboundSchema, GetDeploymentGitSourceDeployments7$inboundSchema, GetDeploymentGitSourceDeployments7$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONType$outboundSchema, GetDeploymentGitSourceDeployments6$inboundSchema, GetDeploymentGitSourceDeployments6$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200Type$outboundSchema, GetDeploymentGitSourceRepoId$inboundSchema, GetDeploymentGitSourceRepoId$outboundSchema, GetDeploymentGitSourceDeployments5$inboundSchema, GetDeploymentGitSourceDeployments5$outboundSchema, GetDeploymentGitSourceDeploymentsResponseType$inboundSchema, GetDeploymentGitSourceDeploymentsResponseType$outboundSchema, GetDeploymentGitSourceDeployments4$inboundSchema, GetDeploymentGitSourceDeployments4$outboundSchema, GetDeploymentGitSourceDeploymentsType$inboundSchema, GetDeploymentGitSourceDeploymentsType$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBodyRepoId$outboundSchema, GetDeploymentGitSourceDeployments3$inboundSchema, GetDeploymentGitSourceDeployments3$outboundSchema, GetDeploymentGitSourceType$inboundSchema, GetDeploymentGitSourceType$outboundSchema, GetDeploymentGitSourceDeployments2$inboundSchema, GetDeploymentGitSourceDeployments2$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONResponseBody11Type$outboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$inboundSchema, GetDeploymentGitSourceDeploymentsResponse200ApplicationJSONRepoId$outboundSchema, GetDeploymentGitSourceDeployments1$inboundSchema, GetDeploymentGitSourceDeployments1$outboundSchema, GetDeploymentResponseBodyGitSource$inboundSchema, GetDeploymentResponseBodyGitSource$outboundSchema, ResponseBodyNodeVersion$inboundSchema, ResponseBodyNodeVersion$outboundSchema, ResponseBodyProject$inboundSchema, ResponseBodyProject$outboundSchema, ResponseBodyReadySubstate$inboundSchema, ResponseBodyReadySubstate$outboundSchema, ResponseBodySource$inboundSchema, ResponseBodySource$outboundSchema, ResponseBodyTarget$inboundSchema, ResponseBodyTarget$outboundSchema, ResponseBodyOidcTokenClaims$inboundSchema, ResponseBodyOidcTokenClaims$outboundSchema, ResponseBodyPlan$inboundSchema, ResponseBodyPlan$outboundSchema, ResponseBodyCrons$inboundSchema, ResponseBodyCrons$outboundSchema, ResponseBodyArchitecture$inboundSchema, ResponseBodyArchitecture$outboundSchema, GetDeploymentResponseBodyDeploymentsResponseType$inboundSchema, GetDeploymentResponseBodyDeploymentsResponseType$outboundSchema, ResponseBodyExperimentalTriggers$inboundSchema, ResponseBodyExperimentalTriggers$outboundSchema, ResponseBodyFunctions$inboundSchema, ResponseBodyFunctions$outboundSchema, GetDeploymentRoutes3$inboundSchema, GetDeploymentRoutes3$outboundSchema, GetDeploymentRoutesHandle$inboundSchema, GetDeploymentRoutesHandle$outboundSchema, GetDeploymentRoutes2$inboundSchema, GetDeploymentRoutes2$outboundSchema, GetDeploymentHasDeploymentsType$inboundSchema, GetDeploymentHasDeploymentsType$outboundSchema, GetDeploymentValueDeploymentsResponse200Eq$inboundSchema, GetDeploymentValueDeploymentsResponse200Eq$outboundSchema, GetDeploymentValue2$inboundSchema, GetDeploymentValue2$outboundSchema, GetDeploymentHasDeploymentsValue$inboundSchema, GetDeploymentHasDeploymentsValue$outboundSchema, GetDeploymentHas2$inboundSchema, GetDeploymentHas2$outboundSchema, GetDeploymentHasType$inboundSchema, GetDeploymentHasType$outboundSchema, GetDeploymentValueDeploymentsResponseEq$inboundSchema, GetDeploymentValueDeploymentsResponseEq$outboundSchema, GetDeploymentValueDeploymentsResponse2002$inboundSchema, GetDeploymentValueDeploymentsResponse2002$outboundSchema, GetDeploymentHasValue$inboundSchema, GetDeploymentHasValue$outboundSchema, GetDeploymentHas1$inboundSchema, GetDeploymentHas1$outboundSchema, GetDeploymentRoutesHas$inboundSchema, GetDeploymentRoutesHas$outboundSchema, GetDeploymentMissingType$inboundSchema, GetDeploymentMissingType$outboundSchema, GetDeploymentValueDeploymentsEq$inboundSchema, GetDeploymentValueDeploymentsEq$outboundSchema, GetDeploymentValueDeploymentsResponse2$inboundSchema, GetDeploymentValueDeploymentsResponse2$outboundSchema, GetDeploymentMissingValue$inboundSchema, GetDeploymentMissingValue$outboundSchema, GetDeploymentMissing2$inboundSchema, GetDeploymentMissing2$outboundSchema, GetDeploymentMissingDeploymentsType$inboundSchema, GetDeploymentMissingDeploymentsType$outboundSchema, GetDeploymentValueEq$inboundSchema, GetDeploymentValueEq$outboundSchema, GetDeploymentValueDeployments2$inboundSchema, GetDeploymentValueDeployments2$outboundSchema, GetDeploymentMissingDeploymentsValue$inboundSchema, GetDeploymentMissingDeploymentsValue$outboundSchema, GetDeploymentMissing1$inboundSchema, GetDeploymentMissing1$outboundSchema, GetDeploymentRoutesMissing$inboundSchema, GetDeploymentRoutesMissing$outboundSchema, GetDeploymentRoutesAction$inboundSchema, GetDeploymentRoutesAction$outboundSchema, GetDeploymentRoutesMitigate$inboundSchema, GetDeploymentRoutesMitigate$outboundSchema, GetDeploymentRoutesType$inboundSchema, GetDeploymentRoutesType$outboundSchema, GetDeploymentRoutesOp$inboundSchema, GetDeploymentRoutesOp$outboundSchema, GetDeploymentKeyEq$inboundSchema, GetDeploymentKeyEq$outboundSchema, GetDeploymentKey2$inboundSchema, GetDeploymentKey2$outboundSchema, GetDeploymentRoutesKey$inboundSchema, GetDeploymentRoutesKey$outboundSchema, GetDeploymentRoutesTarget$inboundSchema, GetDeploymentRoutesTarget$outboundSchema, GetDeploymentRoutesArgs$inboundSchema, GetDeploymentRoutesArgs$outboundSchema, GetDeploymentRoutesTransforms$inboundSchema, GetDeploymentRoutesTransforms$outboundSchema, GetDeploymentRoutesLocale$inboundSchema, GetDeploymentRoutesLocale$outboundSchema, GetDeploymentRoutes1$inboundSchema, GetDeploymentRoutes1$outboundSchema, ResponseBodyRoutes$inboundSchema, ResponseBodyRoutes$outboundSchema, GetDeploymentGitRepoDeploymentsType$inboundSchema, GetDeploymentGitRepoDeploymentsType$outboundSchema, GetDeploymentGitRepoOwnerType$inboundSchema, GetDeploymentGitRepoOwnerType$outboundSchema, GetDeploymentGitRepo3$inboundSchema, GetDeploymentGitRepo3$outboundSchema, GetDeploymentGitRepoType$inboundSchema, GetDeploymentGitRepoType$outboundSchema, GetDeploymentGitRepoDeploymentsResponseOwnerType$inboundSchema, GetDeploymentGitRepoDeploymentsResponseOwnerType$outboundSchema, GetDeploymentGitRepo2$inboundSchema, GetDeploymentGitRepo2$outboundSchema, GetDeploymentGitRepoDeploymentsResponseType$inboundSchema, GetDeploymentGitRepoDeploymentsResponseType$outboundSchema, GetDeploymentGitRepoDeploymentsOwnerType$inboundSchema, GetDeploymentGitRepoDeploymentsOwnerType$outboundSchema, GetDeploymentGitRepo1$inboundSchema, GetDeploymentGitRepo1$outboundSchema, ResponseBodyGitRepo$inboundSchema, ResponseBodyGitRepo$outboundSchema, GetDeploymentFlags2$inboundSchema, GetDeploymentFlags2$outboundSchema, GetDeploymentFlagsOptions$inboundSchema, GetDeploymentFlagsOptions$outboundSchema, GetDeploymentFlagsDefinitions$inboundSchema, GetDeploymentFlagsDefinitions$outboundSchema, GetDeploymentFlags1$inboundSchema, GetDeploymentFlags1$outboundSchema, ResponseBodyFlags$inboundSchema, ResponseBodyFlags$outboundSchema, GetDeploymentMicrofrontendsMfeConfigUploadState$inboundSchema, GetDeploymentMicrofrontendsMfeConfigUploadState$outboundSchema, GetDeploymentMicrofrontends2$inboundSchema, GetDeploymentMicrofrontends2$outboundSchema, GetDeploymentMicrofrontends1$inboundSchema, GetDeploymentMicrofrontends1$outboundSchema, ResponseBodyMicrofrontends$inboundSchema, ResponseBodyMicrofrontends$outboundSchema, ResponseBodyFunctionType$inboundSchema, ResponseBodyFunctionType$outboundSchema, ResponseBodyFunctionMemoryType$inboundSchema, ResponseBodyFunctionMemoryType$outboundSchema, ResponseBodyConfig$inboundSchema, ResponseBodyConfig$outboundSchema, ResponseBodyState$inboundSchema, ResponseBodyState$outboundSchema, ResponseBodyDeploymentAlias$inboundSchema, ResponseBodyDeploymentAlias$outboundSchema, ResponseBodyChecks$inboundSchema, ResponseBodyChecks$outboundSchema, GetDeploymentResponseBody1$inboundSchema, GetDeploymentResponseBody1$outboundSchema, GetDeploymentResponseBody$inboundSchema, GetDeploymentResponseBody$outboundSchema;
47347
47319
  var init_getdeploymentop = __esm(() => {
47348
47320
  init_esm();
47349
47321
  init_primitives();
@@ -49656,23 +49628,10 @@ var init_getdeploymentop = __esm(() => {
49656
49628
  lazyType(() => GetDeploymentFlags1$outboundSchema),
49657
49629
  arrayType(lazyType(() => GetDeploymentFlags2$outboundSchema))
49658
49630
  ]);
49659
- GetDeploymentMicrofrontendsApplications$inboundSchema = objectType({
49660
- isDefaultApp: booleanType().optional(),
49661
- productionHost: stringType(),
49662
- deploymentAlias: stringType().optional(),
49663
- deploymentHost: stringType().optional()
49664
- });
49665
- GetDeploymentMicrofrontendsApplications$outboundSchema = objectType({
49666
- isDefaultApp: booleanType().optional(),
49667
- productionHost: stringType(),
49668
- deploymentAlias: stringType().optional(),
49669
- deploymentHost: stringType().optional()
49670
- });
49671
49631
  GetDeploymentMicrofrontendsMfeConfigUploadState$inboundSchema = nativeEnumType(GetDeploymentMicrofrontendsMfeConfigUploadState);
49672
49632
  GetDeploymentMicrofrontendsMfeConfigUploadState$outboundSchema = GetDeploymentMicrofrontendsMfeConfigUploadState$inboundSchema;
49673
49633
  GetDeploymentMicrofrontends2$inboundSchema = objectType({
49674
49634
  isDefaultApp: booleanType(),
49675
- applications: recordType(lazyType(() => GetDeploymentMicrofrontendsApplications$inboundSchema)).optional(),
49676
49635
  mfeConfigUploadState: GetDeploymentMicrofrontendsMfeConfigUploadState$inboundSchema.optional(),
49677
49636
  defaultAppProjectName: stringType(),
49678
49637
  defaultRoute: stringType().optional(),
@@ -49680,7 +49639,6 @@ var init_getdeploymentop = __esm(() => {
49680
49639
  });
49681
49640
  GetDeploymentMicrofrontends2$outboundSchema = objectType({
49682
49641
  isDefaultApp: booleanType(),
49683
- applications: recordType(lazyType(() => GetDeploymentMicrofrontendsApplications$outboundSchema)).optional(),
49684
49642
  mfeConfigUploadState: GetDeploymentMicrofrontendsMfeConfigUploadState$outboundSchema.optional(),
49685
49643
  defaultAppProjectName: stringType(),
49686
49644
  defaultRoute: stringType().optional(),
@@ -70427,7 +70385,7 @@ Connects an integration resource to a Vercel project. This endpoint establishes
70427
70385
  });
70428
70386
 
70429
70387
  // src/models/createintegrationstoredirectop.ts
70430
- var CreateIntegrationStoreDirectFramework, CreateIntegrationStoreDirectEnvironments, CreateIntegrationStoreDirectIntegrationsEnvironments, Providers2, Providers1, CreateIntegrationStoreDirectStatus, CreateIntegrationStoreDirectOwnership, ExternalResourceStatus, CreateIntegrationStoreDirectIntegrationsType, CreateIntegrationStoreDirectDisabled3, CreateIntegrationStoreDirectHidden3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl, CreateIntegrationStoreDirectDisabledIntegrationsResponse2003, CreateIntegrationStoreDirectHiddenIntegrationsResponse2003, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl, CreateIntegrationStoreDirectDisabledIntegrations3, CreateIntegrationStoreDirectHiddenIntegrations3, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl, CreateIntegrationStoreDirectDisabledIntegrationsResponse3, CreateIntegrationStoreDirectHiddenIntegrationsResponse3, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2003, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2003, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2003, CreateIntegrationStoreDirectPropertiesIntegrationsResponseType, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse3, CreateIntegrationStoreDirectPropertiesIntegrationsType, CreateIntegrationStoreDirectPropertiesIntegrationsUiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrations3, CreateIntegrationStoreDirectUiHiddenIntegrations3, CreateIntegrationStoreDirectUiDisabledIntegrations3, CreateIntegrationStoreDirectPropertiesType, CreateIntegrationStoreDirectPropertiesUiControl, CreateIntegrationStoreDirectUiReadOnly3, CreateIntegrationStoreDirectUiHidden3, CreateIntegrationStoreDirectUiDisabled3, CreateIntegrationStoreDirectTags, ProjectConnectionScopes, CreateIntegrationStoreDirectIntegrationsResponseType, Disabled3, Hidden3, CreateIntegrationStoreDirectLevel, CreateIntegrationStoreDirectType, CreateIntegrationStoreDirectScope, Metadata$inboundSchema, Metadata$outboundSchema, CreateIntegrationStoreDirectRequestBody$inboundSchema, CreateIntegrationStoreDirectRequestBody$outboundSchema, CreateIntegrationStoreDirectRequest$inboundSchema, CreateIntegrationStoreDirectRequest$outboundSchema, CreateIntegrationStoreDirectFramework$inboundSchema, CreateIntegrationStoreDirectFramework$outboundSchema, CreateIntegrationStoreDirectEnvironments$inboundSchema, CreateIntegrationStoreDirectEnvironments$outboundSchema, CreateIntegrationStoreDirectIntegrationsEnvironments$inboundSchema, CreateIntegrationStoreDirectIntegrationsEnvironments$outboundSchema, CreateIntegrationStoreDirectActions$inboundSchema, CreateIntegrationStoreDirectActions$outboundSchema, CreateIntegrationStoreDirectDeployments$inboundSchema, CreateIntegrationStoreDirectDeployments$outboundSchema, CreateIntegrationStoreDirectProjectsMetadata$inboundSchema, CreateIntegrationStoreDirectProjectsMetadata$outboundSchema, Providers2$inboundSchema, Providers2$outboundSchema, Providers1$inboundSchema, Providers1$outboundSchema, Providers$inboundSchema, Providers$outboundSchema, Git$inboundSchema, Git$outboundSchema, ProjectFilter$inboundSchema, ProjectFilter$outboundSchema, CreateIntegrationStoreDirectStatus$inboundSchema, CreateIntegrationStoreDirectStatus$outboundSchema, CreateIntegrationStoreDirectOwnership$inboundSchema, CreateIntegrationStoreDirectOwnership$outboundSchema, Capabilities$inboundSchema, Capabilities$outboundSchema, CreateIntegrationStoreDirectMetadata$inboundSchema, CreateIntegrationStoreDirectMetadata$outboundSchema, ExternalResourceStatus$inboundSchema, ExternalResourceStatus$outboundSchema, CreateIntegrationStoreDirectCapabilities$inboundSchema, CreateIntegrationStoreDirectCapabilities$outboundSchema, CreateIntegrationStoreDirectIntegrationsType$inboundSchema, CreateIntegrationStoreDirectIntegrationsType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesValue$inboundSchema, CreateIntegrationStoreDirectPropertiesValue$outboundSchema, CreateIntegrationStoreDirectDisabled3$inboundSchema, CreateIntegrationStoreDirectDisabled3$outboundSchema, CreateIntegrationStoreDirectDisabled2$inboundSchema, CreateIntegrationStoreDirectDisabled2$outboundSchema, CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema, CreateIntegrationStoreDirectHidden3$inboundSchema, CreateIntegrationStoreDirectHidden3$outboundSchema, CreateIntegrationStoreDirectHidden2$inboundSchema, CreateIntegrationStoreDirectHidden2$outboundSchema, CreateIntegrationStoreDirectPropertiesHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesHidden$outboundSchema, CreateIntegrationStoreDirectProperties9$inboundSchema, CreateIntegrationStoreDirectProperties9$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties8$inboundSchema, CreateIntegrationStoreDirectProperties8$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectUiOptionsValue$inboundSchema, CreateIntegrationStoreDirectUiOptionsValue$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled$inboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsHidden$inboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsHidden$outboundSchema, CreateIntegrationStoreDirectUiOptions3$inboundSchema, CreateIntegrationStoreDirectUiOptions3$outboundSchema, UiOptionsAtBRANDAt8805$inboundSchema, UiOptionsAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectUiOptions2$inboundSchema, CreateIntegrationStoreDirectUiOptions2$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema, CreateIntegrationStoreDirectUiOptionsDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectUiOptionsHidden$inboundSchema, CreateIntegrationStoreDirectUiOptionsHidden$outboundSchema, CreateIntegrationStoreDirectUiOptions1$inboundSchema, CreateIntegrationStoreDirectUiOptions1$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties7$inboundSchema, CreateIntegrationStoreDirectProperties7$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsItems$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsItems$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrations3$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrations3$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrations2$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrations3$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrations3$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrations2$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsHidden$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiOptions$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiOptions$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties6$inboundSchema, CreateIntegrationStoreDirectProperties6$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$outboundSchema, CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema, CreateIntegrationStoreDirectPropertiesUiOptions$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties5$inboundSchema, CreateIntegrationStoreDirectProperties5$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema, CreateIntegrationStoreDirectPropertiesItems$inboundSchema, CreateIntegrationStoreDirectPropertiesItems$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiControl$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties4$inboundSchema, CreateIntegrationStoreDirectProperties4$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiControl$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties3$inboundSchema, CreateIntegrationStoreDirectProperties3$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiControl$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties2$inboundSchema, CreateIntegrationStoreDirectProperties2$outboundSchema, CreateIntegrationStoreDirectPropertiesType$inboundSchema, CreateIntegrationStoreDirectPropertiesType$outboundSchema, CreateIntegrationStoreDirectPropertiesUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema, PropertiesAtBRANDAt8805$inboundSchema, PropertiesAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesAtBRANDAt8805$inboundSchema, CreateIntegrationStoreDirectPropertiesAtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectPropertiesPattern$inboundSchema, CreateIntegrationStoreDirectPropertiesPattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnly3$inboundSchema, CreateIntegrationStoreDirectUiReadOnly3$outboundSchema, CreateIntegrationStoreDirectUiReadOnly2$inboundSchema, CreateIntegrationStoreDirectUiReadOnly2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHidden3$inboundSchema, CreateIntegrationStoreDirectUiHidden3$outboundSchema, CreateIntegrationStoreDirectUiHidden2$inboundSchema, CreateIntegrationStoreDirectUiHidden2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabled3$inboundSchema, CreateIntegrationStoreDirectUiDisabled3$outboundSchema, CreateIntegrationStoreDirectUiDisabled2$inboundSchema, CreateIntegrationStoreDirectUiDisabled2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescription2$inboundSchema, CreateIntegrationStoreDirectUiDescription2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties1$inboundSchema, CreateIntegrationStoreDirectProperties1$outboundSchema, CreateIntegrationStoreDirectProperties$inboundSchema, CreateIntegrationStoreDirectProperties$outboundSchema, CreateIntegrationStoreDirectMetadataSchema$inboundSchema, CreateIntegrationStoreDirectMetadataSchema$outboundSchema, ResourceLinks$inboundSchema, ResourceLinks$outboundSchema, CreateIntegrationStoreDirectTags$inboundSchema, CreateIntegrationStoreDirectTags$outboundSchema, ProjectConnectionScopes$inboundSchema, ProjectConnectionScopes$outboundSchema, Repl$inboundSchema, Repl$outboundSchema, CreateIntegrationStoreDirectIntegrationsResponseType$inboundSchema, CreateIntegrationStoreDirectIntegrationsResponseType$outboundSchema, CreateIntegrationStoreDirectIntegrationsActions$inboundSchema, CreateIntegrationStoreDirectIntegrationsActions$outboundSchema, Steps$inboundSchema, Steps$outboundSchema, Guides$inboundSchema, Guides$outboundSchema, AtBRANDAt8805$inboundSchema, AtBRANDAt8805$outboundSchema, CreateIntegrationStoreDirectValue$inboundSchema, CreateIntegrationStoreDirectValue$outboundSchema, Disabled3$inboundSchema, Disabled3$outboundSchema, Disabled2$inboundSchema, Disabled2$outboundSchema, Disabled$inboundSchema, Disabled$outboundSchema, Hidden3$inboundSchema, Hidden3$outboundSchema, Hidden2$inboundSchema, Hidden2$outboundSchema, Hidden$inboundSchema, Hidden$outboundSchema, Product$inboundSchema, Product$outboundSchema, CreateIntegrationStoreDirectExperimentation$inboundSchema, CreateIntegrationStoreDirectExperimentation$outboundSchema, CreateIntegrationStoreDirectProtocolSettings$inboundSchema, CreateIntegrationStoreDirectProtocolSettings$outboundSchema, CreateIntegrationStoreDirectLevel$inboundSchema, CreateIntegrationStoreDirectLevel$outboundSchema, CreateIntegrationStoreDirectNotification$inboundSchema, CreateIntegrationStoreDirectNotification$outboundSchema, CreateIntegrationStoreDirectSecrets$inboundSchema, CreateIntegrationStoreDirectSecrets$outboundSchema, CreateIntegrationStoreDirectType$inboundSchema, CreateIntegrationStoreDirectType$outboundSchema, CreateIntegrationStoreDirectScope$inboundSchema, CreateIntegrationStoreDirectScope$outboundSchema, CreateIntegrationStoreDirectDetails$inboundSchema, CreateIntegrationStoreDirectDetails$outboundSchema, CreateIntegrationStoreDirectHighlightedDetails$inboundSchema, CreateIntegrationStoreDirectHighlightedDetails$outboundSchema, CreateIntegrationStoreDirectQuote$inboundSchema, CreateIntegrationStoreDirectQuote$outboundSchema, CreateIntegrationStoreDirectBillingPlan$inboundSchema, CreateIntegrationStoreDirectBillingPlan$outboundSchema, CreateIntegrationStoreDirectStore$inboundSchema, CreateIntegrationStoreDirectStore$outboundSchema, CreateIntegrationStoreDirectResponseBody$inboundSchema, CreateIntegrationStoreDirectResponseBody$outboundSchema;
70388
+ var CreateIntegrationStoreDirectFramework, CreateIntegrationStoreDirectEnvironments, CreateIntegrationStoreDirectIntegrationsEnvironments, Providers2, Providers1, CreateIntegrationStoreDirectStatus, CreateIntegrationStoreDirectOwnership, ExternalResourceStatus, CreateIntegrationStoreDirectIntegrationsType, CreateIntegrationStoreDirectDisabled3, CreateIntegrationStoreDirectHidden3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl, CreateIntegrationStoreDirectDisabledIntegrationsResponse2003, CreateIntegrationStoreDirectHiddenIntegrationsResponse2003, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl, CreateIntegrationStoreDirectDisabledIntegrations3, CreateIntegrationStoreDirectHiddenIntegrations3, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl, CreateIntegrationStoreDirectDisabledIntegrationsResponse3, CreateIntegrationStoreDirectHiddenIntegrationsResponse3, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson3, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2003, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2003, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2003, CreateIntegrationStoreDirectPropertiesIntegrationsResponseType, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse3, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse3, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse3, CreateIntegrationStoreDirectPropertiesIntegrationsType, CreateIntegrationStoreDirectPropertiesIntegrationsUiControl, CreateIntegrationStoreDirectUiReadOnlyIntegrations3, CreateIntegrationStoreDirectUiHiddenIntegrations3, CreateIntegrationStoreDirectUiDisabledIntegrations3, CreateIntegrationStoreDirectPropertiesType, CreateIntegrationStoreDirectPropertiesUiControl, CreateIntegrationStoreDirectUiReadOnly3, CreateIntegrationStoreDirectUiHidden3, CreateIntegrationStoreDirectUiDisabled3, CreateIntegrationStoreDirectTags, ProjectConnectionScopes, CreateIntegrationStoreDirectIntegrationsResponseType, Disabled3, Hidden3, CreateIntegrationStoreDirectLevel, CreateIntegrationStoreDirectType, CreateIntegrationStoreDirectScope, Metadata$inboundSchema, Metadata$outboundSchema, CreateIntegrationStoreDirectRequestBody$inboundSchema, CreateIntegrationStoreDirectRequestBody$outboundSchema, CreateIntegrationStoreDirectRequest$inboundSchema, CreateIntegrationStoreDirectRequest$outboundSchema, CreateIntegrationStoreDirectFramework$inboundSchema, CreateIntegrationStoreDirectFramework$outboundSchema, CreateIntegrationStoreDirectEnvironments$inboundSchema, CreateIntegrationStoreDirectEnvironments$outboundSchema, CreateIntegrationStoreDirectIntegrationsEnvironments$inboundSchema, CreateIntegrationStoreDirectIntegrationsEnvironments$outboundSchema, CreateIntegrationStoreDirectActions$inboundSchema, CreateIntegrationStoreDirectActions$outboundSchema, CreateIntegrationStoreDirectDeployments$inboundSchema, CreateIntegrationStoreDirectDeployments$outboundSchema, CreateIntegrationStoreDirectProjectsMetadata$inboundSchema, CreateIntegrationStoreDirectProjectsMetadata$outboundSchema, Providers2$inboundSchema, Providers2$outboundSchema, Providers1$inboundSchema, Providers1$outboundSchema, Providers$inboundSchema, Providers$outboundSchema, Git$inboundSchema, Git$outboundSchema, ProjectFilter$inboundSchema, ProjectFilter$outboundSchema, CreateIntegrationStoreDirectStatus$inboundSchema, CreateIntegrationStoreDirectStatus$outboundSchema, CreateIntegrationStoreDirectOwnership$inboundSchema, CreateIntegrationStoreDirectOwnership$outboundSchema, Capabilities$inboundSchema, Capabilities$outboundSchema, CreateIntegrationStoreDirectMetadata$inboundSchema, CreateIntegrationStoreDirectMetadata$outboundSchema, ExternalResourceStatus$inboundSchema, ExternalResourceStatus$outboundSchema, CreateIntegrationStoreDirectCapabilities$inboundSchema, CreateIntegrationStoreDirectCapabilities$outboundSchema, CreateIntegrationStoreDirectIntegrationsType$inboundSchema, CreateIntegrationStoreDirectIntegrationsType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesValue$inboundSchema, CreateIntegrationStoreDirectPropertiesValue$outboundSchema, CreateIntegrationStoreDirectDisabled3$inboundSchema, CreateIntegrationStoreDirectDisabled3$outboundSchema, CreateIntegrationStoreDirectDisabled2$inboundSchema, CreateIntegrationStoreDirectDisabled2$outboundSchema, CreateIntegrationStoreDirectPropertiesDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesDisabled$outboundSchema, CreateIntegrationStoreDirectHidden3$inboundSchema, CreateIntegrationStoreDirectHidden3$outboundSchema, CreateIntegrationStoreDirectHidden2$inboundSchema, CreateIntegrationStoreDirectHidden2$outboundSchema, CreateIntegrationStoreDirectPropertiesHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesHidden$outboundSchema, CreateIntegrationStoreDirectProperties9$inboundSchema, CreateIntegrationStoreDirectProperties9$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties8$inboundSchema, CreateIntegrationStoreDirectProperties8$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectUiOptionsAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectUiOptionsValue$inboundSchema, CreateIntegrationStoreDirectUiOptionsValue$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled$inboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsHidden$inboundSchema, CreateIntegrationStoreDirectUiOptionsIntegrationsHidden$outboundSchema, CreateIntegrationStoreDirectUiOptions3$inboundSchema, CreateIntegrationStoreDirectUiOptions3$outboundSchema, UiOptionsAtBRANDAt8878$inboundSchema, UiOptionsAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectUiOptions2$inboundSchema, CreateIntegrationStoreDirectUiOptions2$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectUiOptionsDisabled$inboundSchema, CreateIntegrationStoreDirectUiOptionsDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectUiOptionsHidden$inboundSchema, CreateIntegrationStoreDirectUiOptionsHidden$outboundSchema, CreateIntegrationStoreDirectUiOptions1$inboundSchema, CreateIntegrationStoreDirectUiOptions1$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiOptions$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStore2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyStore2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties7$inboundSchema, CreateIntegrationStoreDirectProperties7$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsItems$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsItems$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrations3$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrations3$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrations2$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrations3$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrations3$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrations2$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsHidden$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiOptions$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiOptions$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties6$inboundSchema, CreateIntegrationStoreDirectProperties6$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectDisabledIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseDisabled$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectHiddenIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseHidden$outboundSchema, CreateIntegrationStoreDirectPropertiesUiOptions$inboundSchema, CreateIntegrationStoreDirectPropertiesUiOptions$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJson2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse200ApplicationJson2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties5$inboundSchema, CreateIntegrationStoreDirectProperties5$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Type$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaType$outboundSchema, CreateIntegrationStoreDirectPropertiesItems$inboundSchema, CreateIntegrationStoreDirectPropertiesItems$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiControl$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2003$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2003$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2002$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2002$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200UiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties4$inboundSchema, CreateIntegrationStoreDirectProperties4$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiControl$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrationsResponse2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponseUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties3$inboundSchema, CreateIntegrationStoreDirectProperties3$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsType$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsType$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiControl$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations3$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations3$outboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiReadOnlyIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations3$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations3$outboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiHiddenIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations3$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations3$outboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiDisabledIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrations2$inboundSchema, CreateIntegrationStoreDirectUiDescriptionIntegrations2$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties2$inboundSchema, CreateIntegrationStoreDirectProperties2$outboundSchema, CreateIntegrationStoreDirectPropertiesType$inboundSchema, CreateIntegrationStoreDirectPropertiesType$outboundSchema, CreateIntegrationStoreDirectPropertiesUiControl$inboundSchema, CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema, CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema, PropertiesAtBRANDAt8878$inboundSchema, PropertiesAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema, CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema, CreateIntegrationStoreDirectPropertiesAtBRANDAt8878$inboundSchema, CreateIntegrationStoreDirectPropertiesAtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectPropertiesPattern$inboundSchema, CreateIntegrationStoreDirectPropertiesPattern$outboundSchema, CreateIntegrationStoreDirectUiReadOnly3$inboundSchema, CreateIntegrationStoreDirectUiReadOnly3$outboundSchema, CreateIntegrationStoreDirectUiReadOnly2$inboundSchema, CreateIntegrationStoreDirectUiReadOnly2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiReadOnly$inboundSchema, CreateIntegrationStoreDirectPropertiesUiReadOnly$outboundSchema, CreateIntegrationStoreDirectUiHidden3$inboundSchema, CreateIntegrationStoreDirectUiHidden3$outboundSchema, CreateIntegrationStoreDirectUiHidden2$inboundSchema, CreateIntegrationStoreDirectUiHidden2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiHidden$inboundSchema, CreateIntegrationStoreDirectPropertiesUiHidden$outboundSchema, CreateIntegrationStoreDirectUiDisabled3$inboundSchema, CreateIntegrationStoreDirectUiDisabled3$outboundSchema, CreateIntegrationStoreDirectUiDisabled2$inboundSchema, CreateIntegrationStoreDirectUiDisabled2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiDisabled$inboundSchema, CreateIntegrationStoreDirectPropertiesUiDisabled$outboundSchema, CreateIntegrationStoreDirectUiDescription2$inboundSchema, CreateIntegrationStoreDirectUiDescription2$outboundSchema, CreateIntegrationStoreDirectPropertiesUiDescription$inboundSchema, CreateIntegrationStoreDirectPropertiesUiDescription$outboundSchema, CreateIntegrationStoreDirectPropertiesUiFormattedValue$inboundSchema, CreateIntegrationStoreDirectPropertiesUiFormattedValue$outboundSchema, CreateIntegrationStoreDirectProperties1$inboundSchema, CreateIntegrationStoreDirectProperties1$outboundSchema, CreateIntegrationStoreDirectProperties$inboundSchema, CreateIntegrationStoreDirectProperties$outboundSchema, CreateIntegrationStoreDirectMetadataSchema$inboundSchema, CreateIntegrationStoreDirectMetadataSchema$outboundSchema, ResourceLinks$inboundSchema, ResourceLinks$outboundSchema, CreateIntegrationStoreDirectTags$inboundSchema, CreateIntegrationStoreDirectTags$outboundSchema, ProjectConnectionScopes$inboundSchema, ProjectConnectionScopes$outboundSchema, Repl$inboundSchema, Repl$outboundSchema, CreateIntegrationStoreDirectIntegrationsResponseType$inboundSchema, CreateIntegrationStoreDirectIntegrationsResponseType$outboundSchema, CreateIntegrationStoreDirectIntegrationsActions$inboundSchema, CreateIntegrationStoreDirectIntegrationsActions$outboundSchema, Steps$inboundSchema, Steps$outboundSchema, Guides$inboundSchema, Guides$outboundSchema, AtBRANDAt8878$inboundSchema, AtBRANDAt8878$outboundSchema, CreateIntegrationStoreDirectValue$inboundSchema, CreateIntegrationStoreDirectValue$outboundSchema, Disabled3$inboundSchema, Disabled3$outboundSchema, Disabled2$inboundSchema, Disabled2$outboundSchema, Disabled$inboundSchema, Disabled$outboundSchema, Hidden3$inboundSchema, Hidden3$outboundSchema, Hidden2$inboundSchema, Hidden2$outboundSchema, Hidden$inboundSchema, Hidden$outboundSchema, Product$inboundSchema, Product$outboundSchema, CreateIntegrationStoreDirectExperimentation$inboundSchema, CreateIntegrationStoreDirectExperimentation$outboundSchema, CreateIntegrationStoreDirectProtocolSettings$inboundSchema, CreateIntegrationStoreDirectProtocolSettings$outboundSchema, CreateIntegrationStoreDirectLevel$inboundSchema, CreateIntegrationStoreDirectLevel$outboundSchema, CreateIntegrationStoreDirectNotification$inboundSchema, CreateIntegrationStoreDirectNotification$outboundSchema, CreateIntegrationStoreDirectSecrets$inboundSchema, CreateIntegrationStoreDirectSecrets$outboundSchema, CreateIntegrationStoreDirectType$inboundSchema, CreateIntegrationStoreDirectType$outboundSchema, CreateIntegrationStoreDirectScope$inboundSchema, CreateIntegrationStoreDirectScope$outboundSchema, CreateIntegrationStoreDirectDetails$inboundSchema, CreateIntegrationStoreDirectDetails$outboundSchema, CreateIntegrationStoreDirectHighlightedDetails$inboundSchema, CreateIntegrationStoreDirectHighlightedDetails$outboundSchema, CreateIntegrationStoreDirectQuote$inboundSchema, CreateIntegrationStoreDirectQuote$outboundSchema, CreateIntegrationStoreDirectBillingPlan$inboundSchema, CreateIntegrationStoreDirectBillingPlan$outboundSchema, CreateIntegrationStoreDirectStore$inboundSchema, CreateIntegrationStoreDirectStore$outboundSchema, CreateIntegrationStoreDirectResponseBody$inboundSchema, CreateIntegrationStoreDirectResponseBody$outboundSchema;
70431
70389
  var init_createintegrationstoredirectop = __esm(() => {
70432
70390
  init_esm();
70433
70391
  init_primitives();
@@ -71020,20 +70978,20 @@ var init_createintegrationstoredirectop = __esm(() => {
71020
70978
  });
71021
70979
  CreateIntegrationStoreDirectIntegrationsType$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectIntegrationsType);
71022
70980
  CreateIntegrationStoreDirectIntegrationsType$outboundSchema = CreateIntegrationStoreDirectIntegrationsType$inboundSchema;
71023
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8805$inboundSchema = objectType({});
71024
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8805$outboundSchema = objectType({});
70981
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8878$inboundSchema = objectType({});
70982
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8878$outboundSchema = objectType({});
71025
70983
  CreateIntegrationStoreDirectPropertiesValue$inboundSchema = objectType({
71026
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8805$inboundSchema)
70984
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8878$inboundSchema)
71027
70985
  }).transform((v2) => {
71028
70986
  return remap(v2, {
71029
- "__@BRAND@8805": "atBRANDAt8805"
70987
+ "__@BRAND@8878": "atBRANDAt8878"
71030
70988
  });
71031
70989
  });
71032
70990
  CreateIntegrationStoreDirectPropertiesValue$outboundSchema = objectType({
71033
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8805$outboundSchema)
70991
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema9AtBRANDAt8878$outboundSchema)
71034
70992
  }).transform((v2) => {
71035
70993
  return remap(v2, {
71036
- atBRANDAt8805: "__@BRAND@8805"
70994
+ atBRANDAt8878: "__@BRAND@8878"
71037
70995
  });
71038
70996
  });
71039
70997
  CreateIntegrationStoreDirectDisabled3$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectDisabled3);
@@ -71102,52 +71060,52 @@ var init_createintegrationstoredirectop = __esm(() => {
71102
71060
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductType$inboundSchema;
71103
71061
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl);
71104
71062
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductUiControl$inboundSchema;
71105
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8805$inboundSchema = objectType({});
71106
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8805$outboundSchema = objectType({});
71063
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8878$inboundSchema = objectType({});
71064
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8878$outboundSchema = objectType({});
71107
71065
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$inboundSchema = objectType({
71108
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8805$inboundSchema)
71066
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8878$inboundSchema)
71109
71067
  }).transform((v2) => {
71110
71068
  return remap(v2, {
71111
- "__@BRAND@8805": "atBRANDAt8805"
71069
+ "__@BRAND@8878": "atBRANDAt8878"
71112
71070
  });
71113
71071
  });
71114
71072
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MaxLength$outboundSchema = objectType({
71115
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8805$outboundSchema)
71073
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductAtBRANDAt8878$outboundSchema)
71116
71074
  }).transform((v2) => {
71117
71075
  return remap(v2, {
71118
- atBRANDAt8805: "__@BRAND@8805"
71076
+ atBRANDAt8878: "__@BRAND@8878"
71119
71077
  });
71120
71078
  });
71121
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8805$inboundSchema = objectType({});
71122
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8805$outboundSchema = objectType({});
71079
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8878$inboundSchema = objectType({});
71080
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8878$outboundSchema = objectType({});
71123
71081
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$inboundSchema = objectType({
71124
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8805$inboundSchema)
71082
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8878$inboundSchema)
71125
71083
  }).transform((v2) => {
71126
71084
  return remap(v2, {
71127
- "__@BRAND@8805": "atBRANDAt8805"
71085
+ "__@BRAND@8878": "atBRANDAt8878"
71128
71086
  });
71129
71087
  });
71130
71088
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200MinLength$outboundSchema = objectType({
71131
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8805$outboundSchema)
71089
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchemaAtBRANDAt8878$outboundSchema)
71132
71090
  }).transform((v2) => {
71133
71091
  return remap(v2, {
71134
- atBRANDAt8805: "__@BRAND@8805"
71092
+ atBRANDAt8878: "__@BRAND@8878"
71135
71093
  });
71136
71094
  });
71137
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8805$inboundSchema = objectType({});
71138
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8805$outboundSchema = objectType({});
71095
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8878$inboundSchema = objectType({});
71096
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8878$outboundSchema = objectType({});
71139
71097
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$inboundSchema = objectType({
71140
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8805$inboundSchema)
71098
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8878$inboundSchema)
71141
71099
  }).transform((v2) => {
71142
71100
  return remap(v2, {
71143
- "__@BRAND@8805": "atBRANDAt8805"
71101
+ "__@BRAND@8878": "atBRANDAt8878"
71144
71102
  });
71145
71103
  });
71146
71104
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200Pattern$outboundSchema = objectType({
71147
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8805$outboundSchema)
71105
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema8AtBRANDAt8878$outboundSchema)
71148
71106
  }).transform((v2) => {
71149
71107
  return remap(v2, {
71150
- atBRANDAt8805: "__@BRAND@8805"
71108
+ atBRANDAt8878: "__@BRAND@8878"
71151
71109
  });
71152
71110
  });
71153
71111
  CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStoreProduct3);
@@ -71314,20 +71272,20 @@ var init_createintegrationstoredirectop = __esm(() => {
71314
71272
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreType$inboundSchema;
71315
71273
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl);
71316
71274
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreUiControl$inboundSchema;
71317
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8805$inboundSchema = objectType({});
71318
- CreateIntegrationStoreDirectUiOptionsAtBRANDAt8805$outboundSchema = objectType({});
71275
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8878$inboundSchema = objectType({});
71276
+ CreateIntegrationStoreDirectUiOptionsAtBRANDAt8878$outboundSchema = objectType({});
71319
71277
  CreateIntegrationStoreDirectUiOptionsValue$inboundSchema = objectType({
71320
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8805$inboundSchema)
71278
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8878$inboundSchema)
71321
71279
  }).transform((v2) => {
71322
71280
  return remap(v2, {
71323
- "__@BRAND@8805": "atBRANDAt8805"
71281
+ "__@BRAND@8878": "atBRANDAt8878"
71324
71282
  });
71325
71283
  });
71326
71284
  CreateIntegrationStoreDirectUiOptionsValue$outboundSchema = objectType({
71327
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8805$outboundSchema)
71285
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectUiOptionsAtBRANDAt8878$outboundSchema)
71328
71286
  }).transform((v2) => {
71329
71287
  return remap(v2, {
71330
- atBRANDAt8805: "__@BRAND@8805"
71288
+ atBRANDAt8878: "__@BRAND@8878"
71331
71289
  });
71332
71290
  });
71333
71291
  CreateIntegrationStoreDirectDisabledIntegrationsResponse2003$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectDisabledIntegrationsResponse2003);
@@ -71392,20 +71350,20 @@ var init_createintegrationstoredirectop = __esm(() => {
71392
71350
  CreateIntegrationStoreDirectHiddenIntegrationsResponse2003$outboundSchema
71393
71351
  ]).optional()
71394
71352
  });
71395
- UiOptionsAtBRANDAt8805$inboundSchema = objectType({});
71396
- UiOptionsAtBRANDAt8805$outboundSchema = objectType({});
71353
+ UiOptionsAtBRANDAt8878$inboundSchema = objectType({});
71354
+ UiOptionsAtBRANDAt8878$outboundSchema = objectType({});
71397
71355
  CreateIntegrationStoreDirectUiOptions2$inboundSchema = objectType({
71398
- "__@BRAND@8805": lazyType(() => UiOptionsAtBRANDAt8805$inboundSchema)
71356
+ "__@BRAND@8878": lazyType(() => UiOptionsAtBRANDAt8878$inboundSchema)
71399
71357
  }).transform((v2) => {
71400
71358
  return remap(v2, {
71401
- "__@BRAND@8805": "atBRANDAt8805"
71359
+ "__@BRAND@8878": "atBRANDAt8878"
71402
71360
  });
71403
71361
  });
71404
71362
  CreateIntegrationStoreDirectUiOptions2$outboundSchema = objectType({
71405
- atBRANDAt8805: lazyType(() => UiOptionsAtBRANDAt8805$outboundSchema)
71363
+ atBRANDAt8878: lazyType(() => UiOptionsAtBRANDAt8878$outboundSchema)
71406
71364
  }).transform((v2) => {
71407
71365
  return remap(v2, {
71408
- atBRANDAt8805: "__@BRAND@8805"
71366
+ atBRANDAt8878: "__@BRAND@8878"
71409
71367
  });
71410
71368
  });
71411
71369
  CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectDisabledIntegrationsResponse200ApplicationJson3);
@@ -71482,52 +71440,52 @@ var init_createintegrationstoredirectop = __esm(() => {
71482
71440
  lazyType(() => CreateIntegrationStoreDirectUiOptions2$outboundSchema),
71483
71441
  lazyType(() => CreateIntegrationStoreDirectUiOptions3$outboundSchema)
71484
71442
  ]);
71485
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8805$inboundSchema = objectType({});
71486
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8805$outboundSchema = objectType({});
71443
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8878$inboundSchema = objectType({});
71444
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8878$outboundSchema = objectType({});
71487
71445
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$inboundSchema = objectType({
71488
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8805$inboundSchema)
71446
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8878$inboundSchema)
71489
71447
  }).transform((v2) => {
71490
71448
  return remap(v2, {
71491
- "__@BRAND@8805": "atBRANDAt8805"
71449
+ "__@BRAND@8878": "atBRANDAt8878"
71492
71450
  });
71493
71451
  });
71494
71452
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMaxLength$outboundSchema = objectType({
71495
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8805$outboundSchema)
71453
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt8878$outboundSchema)
71496
71454
  }).transform((v2) => {
71497
71455
  return remap(v2, {
71498
- atBRANDAt8805: "__@BRAND@8805"
71456
+ atBRANDAt8878: "__@BRAND@8878"
71499
71457
  });
71500
71458
  });
71501
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8805$inboundSchema = objectType({});
71502
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8805$outboundSchema = objectType({});
71459
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8878$inboundSchema = objectType({});
71460
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8878$outboundSchema = objectType({});
71503
71461
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$inboundSchema = objectType({
71504
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8805$inboundSchema)
71462
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8878$inboundSchema)
71505
71463
  }).transform((v2) => {
71506
71464
  return remap(v2, {
71507
- "__@BRAND@8805": "atBRANDAt8805"
71465
+ "__@BRAND@8878": "atBRANDAt8878"
71508
71466
  });
71509
71467
  });
71510
71468
  CreateIntegrationStoreDirectPropertiesIntegrationsResponseMinLength$outboundSchema = objectType({
71511
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8805$outboundSchema)
71469
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt8878$outboundSchema)
71512
71470
  }).transform((v2) => {
71513
71471
  return remap(v2, {
71514
- atBRANDAt8805: "__@BRAND@8805"
71472
+ atBRANDAt8878: "__@BRAND@8878"
71515
71473
  });
71516
71474
  });
71517
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8805$inboundSchema = objectType({});
71518
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8805$outboundSchema = objectType({});
71475
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8878$inboundSchema = objectType({});
71476
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8878$outboundSchema = objectType({});
71519
71477
  CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$inboundSchema = objectType({
71520
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8805$inboundSchema)
71478
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8878$inboundSchema)
71521
71479
  }).transform((v2) => {
71522
71480
  return remap(v2, {
71523
- "__@BRAND@8805": "atBRANDAt8805"
71481
+ "__@BRAND@8878": "atBRANDAt8878"
71524
71482
  });
71525
71483
  });
71526
71484
  CreateIntegrationStoreDirectPropertiesIntegrationsResponsePattern$outboundSchema = objectType({
71527
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8805$outboundSchema)
71485
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreAtBRANDAt8878$outboundSchema)
71528
71486
  }).transform((v2) => {
71529
71487
  return remap(v2, {
71530
- atBRANDAt8805: "__@BRAND@8805"
71488
+ atBRANDAt8878: "__@BRAND@8878"
71531
71489
  });
71532
71490
  });
71533
71491
  CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyStore3);
@@ -71706,52 +71664,52 @@ var init_createintegrationstoredirectop = __esm(() => {
71706
71664
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$inboundSchema;
71707
71665
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type);
71708
71666
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$outboundSchema = CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6Type$inboundSchema;
71709
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8805$inboundSchema = objectType({});
71710
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8805$outboundSchema = objectType({});
71667
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8878$inboundSchema = objectType({});
71668
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8878$outboundSchema = objectType({});
71711
71669
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$inboundSchema = objectType({
71712
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8805$inboundSchema)
71670
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8878$inboundSchema)
71713
71671
  }).transform((v2) => {
71714
71672
  return remap(v2, {
71715
- "__@BRAND@8805": "atBRANDAt8805"
71673
+ "__@BRAND@8878": "atBRANDAt8878"
71716
71674
  });
71717
71675
  });
71718
71676
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMinLength$outboundSchema = objectType({
71719
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8805$outboundSchema)
71677
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsAtBRANDAt8878$outboundSchema)
71720
71678
  }).transform((v2) => {
71721
71679
  return remap(v2, {
71722
- atBRANDAt8805: "__@BRAND@8805"
71680
+ atBRANDAt8878: "__@BRAND@8878"
71723
71681
  });
71724
71682
  });
71725
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8805$inboundSchema = objectType({});
71726
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8805$outboundSchema = objectType({});
71683
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8878$inboundSchema = objectType({});
71684
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8878$outboundSchema = objectType({});
71727
71685
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$inboundSchema = objectType({
71728
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8805$inboundSchema)
71686
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8878$inboundSchema)
71729
71687
  }).transform((v2) => {
71730
71688
  return remap(v2, {
71731
- "__@BRAND@8805": "atBRANDAt8805"
71689
+ "__@BRAND@8878": "atBRANDAt8878"
71732
71690
  });
71733
71691
  });
71734
71692
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONMaxLength$outboundSchema = objectType({
71735
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8805$outboundSchema)
71693
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6ItemsMaxLengthAtBRANDAt8878$outboundSchema)
71736
71694
  }).transform((v2) => {
71737
71695
  return remap(v2, {
71738
- atBRANDAt8805: "__@BRAND@8805"
71696
+ atBRANDAt8878: "__@BRAND@8878"
71739
71697
  });
71740
71698
  });
71741
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8805$inboundSchema = objectType({});
71742
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8805$outboundSchema = objectType({});
71699
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8878$inboundSchema = objectType({});
71700
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8878$outboundSchema = objectType({});
71743
71701
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$inboundSchema = objectType({
71744
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8805$inboundSchema)
71702
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8878$inboundSchema)
71745
71703
  }).transform((v2) => {
71746
71704
  return remap(v2, {
71747
- "__@BRAND@8805": "atBRANDAt8805"
71705
+ "__@BRAND@8878": "atBRANDAt8878"
71748
71706
  });
71749
71707
  });
71750
71708
  CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONPattern$outboundSchema = objectType({
71751
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8805$outboundSchema)
71709
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema6AtBRANDAt8878$outboundSchema)
71752
71710
  }).transform((v2) => {
71753
71711
  return remap(v2, {
71754
- atBRANDAt8805: "__@BRAND@8805"
71712
+ atBRANDAt8878: "__@BRAND@8878"
71755
71713
  });
71756
71714
  });
71757
71715
  CreateIntegrationStoreDirectPropertiesIntegrationsItems$inboundSchema = objectType({
@@ -72070,52 +72028,52 @@ var init_createintegrationstoredirectop = __esm(() => {
72070
72028
  CreateIntegrationStoreDirectHiddenIntegrationsResponse3$outboundSchema
72071
72029
  ]).optional()
72072
72030
  });
72073
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8805$inboundSchema = objectType({});
72074
- CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8805$outboundSchema = objectType({});
72031
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8878$inboundSchema = objectType({});
72032
+ CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8878$outboundSchema = objectType({});
72075
72033
  CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$inboundSchema = objectType({
72076
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8805$inboundSchema)
72034
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8878$inboundSchema)
72077
72035
  }).transform((v2) => {
72078
72036
  return remap(v2, {
72079
- "__@BRAND@8805": "atBRANDAt8805"
72037
+ "__@BRAND@8878": "atBRANDAt8878"
72080
72038
  });
72081
72039
  });
72082
72040
  CreateIntegrationStoreDirectPropertiesIntegrationsMaxLength$outboundSchema = objectType({
72083
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8805$outboundSchema)
72041
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsAtBRANDAt8878$outboundSchema)
72084
72042
  }).transform((v2) => {
72085
72043
  return remap(v2, {
72086
- atBRANDAt8805: "__@BRAND@8805"
72044
+ atBRANDAt8878: "__@BRAND@8878"
72087
72045
  });
72088
72046
  });
72089
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8805$inboundSchema = objectType({});
72090
- CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8805$outboundSchema = objectType({});
72047
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8878$inboundSchema = objectType({});
72048
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8878$outboundSchema = objectType({});
72091
72049
  CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$inboundSchema = objectType({
72092
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8805$inboundSchema)
72050
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8878$inboundSchema)
72093
72051
  }).transform((v2) => {
72094
72052
  return remap(v2, {
72095
- "__@BRAND@8805": "atBRANDAt8805"
72053
+ "__@BRAND@8878": "atBRANDAt8878"
72096
72054
  });
72097
72055
  });
72098
72056
  CreateIntegrationStoreDirectPropertiesIntegrationsMinLength$outboundSchema = objectType({
72099
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8805$outboundSchema)
72057
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponseAtBRANDAt8878$outboundSchema)
72100
72058
  }).transform((v2) => {
72101
72059
  return remap(v2, {
72102
- atBRANDAt8805: "__@BRAND@8805"
72060
+ atBRANDAt8878: "__@BRAND@8878"
72103
72061
  });
72104
72062
  });
72105
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8805$inboundSchema = objectType({});
72106
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8805$outboundSchema = objectType({});
72063
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8878$inboundSchema = objectType({});
72064
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8878$outboundSchema = objectType({});
72107
72065
  CreateIntegrationStoreDirectPropertiesIntegrationsPattern$inboundSchema = objectType({
72108
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8805$inboundSchema)
72066
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8878$inboundSchema)
72109
72067
  }).transform((v2) => {
72110
72068
  return remap(v2, {
72111
- "__@BRAND@8805": "atBRANDAt8805"
72069
+ "__@BRAND@8878": "atBRANDAt8878"
72112
72070
  });
72113
72071
  });
72114
72072
  CreateIntegrationStoreDirectPropertiesIntegrationsPattern$outboundSchema = objectType({
72115
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8805$outboundSchema)
72073
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200AtBRANDAt8878$outboundSchema)
72116
72074
  }).transform((v2) => {
72117
72075
  return remap(v2, {
72118
- atBRANDAt8805: "__@BRAND@8805"
72076
+ atBRANDAt8878: "__@BRAND@8878"
72119
72077
  });
72120
72078
  });
72121
72079
  CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectUiReadOnlyIntegrationsResponse200ApplicationJson3);
@@ -72784,52 +72742,52 @@ var init_createintegrationstoredirectop = __esm(() => {
72784
72742
  CreateIntegrationStoreDirectPropertiesType$outboundSchema = CreateIntegrationStoreDirectPropertiesType$inboundSchema;
72785
72743
  CreateIntegrationStoreDirectPropertiesUiControl$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectPropertiesUiControl);
72786
72744
  CreateIntegrationStoreDirectPropertiesUiControl$outboundSchema = CreateIntegrationStoreDirectPropertiesUiControl$inboundSchema;
72787
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8805$inboundSchema = objectType({});
72788
- CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8805$outboundSchema = objectType({});
72745
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8878$inboundSchema = objectType({});
72746
+ CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8878$outboundSchema = objectType({});
72789
72747
  CreateIntegrationStoreDirectPropertiesMaxLength$inboundSchema = objectType({
72790
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8805$inboundSchema)
72748
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8878$inboundSchema)
72791
72749
  }).transform((v2) => {
72792
72750
  return remap(v2, {
72793
- "__@BRAND@8805": "atBRANDAt8805"
72751
+ "__@BRAND@8878": "atBRANDAt8878"
72794
72752
  });
72795
72753
  });
72796
72754
  CreateIntegrationStoreDirectPropertiesMaxLength$outboundSchema = objectType({
72797
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8805$outboundSchema)
72755
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesIntegrationsResponse200ApplicationJSONResponseBodyStoreProductMetadataSchema1AtBRANDAt8878$outboundSchema)
72798
72756
  }).transform((v2) => {
72799
72757
  return remap(v2, {
72800
- atBRANDAt8805: "__@BRAND@8805"
72758
+ atBRANDAt8878: "__@BRAND@8878"
72801
72759
  });
72802
72760
  });
72803
- PropertiesAtBRANDAt8805$inboundSchema = objectType({});
72804
- PropertiesAtBRANDAt8805$outboundSchema = objectType({});
72761
+ PropertiesAtBRANDAt8878$inboundSchema = objectType({});
72762
+ PropertiesAtBRANDAt8878$outboundSchema = objectType({});
72805
72763
  CreateIntegrationStoreDirectPropertiesMinLength$inboundSchema = objectType({
72806
- "__@BRAND@8805": lazyType(() => PropertiesAtBRANDAt8805$inboundSchema)
72764
+ "__@BRAND@8878": lazyType(() => PropertiesAtBRANDAt8878$inboundSchema)
72807
72765
  }).transform((v2) => {
72808
72766
  return remap(v2, {
72809
- "__@BRAND@8805": "atBRANDAt8805"
72767
+ "__@BRAND@8878": "atBRANDAt8878"
72810
72768
  });
72811
72769
  });
72812
72770
  CreateIntegrationStoreDirectPropertiesMinLength$outboundSchema = objectType({
72813
- atBRANDAt8805: lazyType(() => PropertiesAtBRANDAt8805$outboundSchema)
72771
+ atBRANDAt8878: lazyType(() => PropertiesAtBRANDAt8878$outboundSchema)
72814
72772
  }).transform((v2) => {
72815
72773
  return remap(v2, {
72816
- atBRANDAt8805: "__@BRAND@8805"
72774
+ atBRANDAt8878: "__@BRAND@8878"
72817
72775
  });
72818
72776
  });
72819
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8805$inboundSchema = objectType({});
72820
- CreateIntegrationStoreDirectPropertiesAtBRANDAt8805$outboundSchema = objectType({});
72777
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8878$inboundSchema = objectType({});
72778
+ CreateIntegrationStoreDirectPropertiesAtBRANDAt8878$outboundSchema = objectType({});
72821
72779
  CreateIntegrationStoreDirectPropertiesPattern$inboundSchema = objectType({
72822
- "__@BRAND@8805": lazyType(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8805$inboundSchema)
72780
+ "__@BRAND@8878": lazyType(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8878$inboundSchema)
72823
72781
  }).transform((v2) => {
72824
72782
  return remap(v2, {
72825
- "__@BRAND@8805": "atBRANDAt8805"
72783
+ "__@BRAND@8878": "atBRANDAt8878"
72826
72784
  });
72827
72785
  });
72828
72786
  CreateIntegrationStoreDirectPropertiesPattern$outboundSchema = objectType({
72829
- atBRANDAt8805: lazyType(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8805$outboundSchema)
72787
+ atBRANDAt8878: lazyType(() => CreateIntegrationStoreDirectPropertiesAtBRANDAt8878$outboundSchema)
72830
72788
  }).transform((v2) => {
72831
72789
  return remap(v2, {
72832
- atBRANDAt8805: "__@BRAND@8805"
72790
+ atBRANDAt8878: "__@BRAND@8878"
72833
72791
  });
72834
72792
  });
72835
72793
  CreateIntegrationStoreDirectUiReadOnly3$inboundSchema = nativeEnumType(CreateIntegrationStoreDirectUiReadOnly3);
@@ -73094,20 +73052,20 @@ var init_createintegrationstoredirectop = __esm(() => {
73094
73052
  title: stringType(),
73095
73053
  steps: arrayType(lazyType(() => Steps$outboundSchema))
73096
73054
  });
73097
- AtBRANDAt8805$inboundSchema = objectType({});
73098
- AtBRANDAt8805$outboundSchema = objectType({});
73055
+ AtBRANDAt8878$inboundSchema = objectType({});
73056
+ AtBRANDAt8878$outboundSchema = objectType({});
73099
73057
  CreateIntegrationStoreDirectValue$inboundSchema = objectType({
73100
- "__@BRAND@8805": lazyType(() => AtBRANDAt8805$inboundSchema)
73058
+ "__@BRAND@8878": lazyType(() => AtBRANDAt8878$inboundSchema)
73101
73059
  }).transform((v2) => {
73102
73060
  return remap(v2, {
73103
- "__@BRAND@8805": "atBRANDAt8805"
73061
+ "__@BRAND@8878": "atBRANDAt8878"
73104
73062
  });
73105
73063
  });
73106
73064
  CreateIntegrationStoreDirectValue$outboundSchema = objectType({
73107
- atBRANDAt8805: lazyType(() => AtBRANDAt8805$outboundSchema)
73065
+ atBRANDAt8878: lazyType(() => AtBRANDAt8878$outboundSchema)
73108
73066
  }).transform((v2) => {
73109
73067
  return remap(v2, {
73110
- atBRANDAt8805: "__@BRAND@8805"
73068
+ atBRANDAt8878: "__@BRAND@8878"
73111
73069
  });
73112
73070
  });
73113
73071
  Disabled3$inboundSchema = nativeEnumType(Disabled3);
@@ -74242,7 +74200,7 @@ Allows to retrieve a the configuration with the provided id in case it exists. T
74242
74200
  });
74243
74201
 
74244
74202
  // src/models/getconfigurationproductsop.ts
74245
- var GetConfigurationProductsStatus, GetConfigurationProductsIntegrationsStatus, GetConfigurationProductsIntegrationsResponseStatus, GetConfigurationProductsIntegrationsResponse200Status, GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus, Format, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus, GetConfigurationProductsFormat, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus, PrimaryProtocol, GetConfigurationProductsType, GetConfigurationProductsDisabled3, GetConfigurationProductsHidden3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3, GetConfigurationProductsDisabledIntegrationsResponse2003, GetConfigurationProductsHiddenIntegrationsResponse2003, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType, GetConfigurationProductsPropertiesIntegrationsResponse200UiControl, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type, GetConfigurationProductsDisabledIntegrationsResponse3, GetConfigurationProductsHiddenIntegrationsResponse3, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson3, GetConfigurationProductsPropertiesIntegrationsResponse200Type, GetConfigurationProductsPropertiesIntegrationsResponseUiControl, GetConfigurationProductsDisabledIntegrations3, GetConfigurationProductsHiddenIntegrations3, GetConfigurationProductsUiReadOnlyIntegrationsResponse2003, GetConfigurationProductsUiHiddenIntegrationsResponse2003, GetConfigurationProductsUiDisabledIntegrationsResponse2003, GetConfigurationProductsPropertiesIntegrationsResponseType, GetConfigurationProductsPropertiesIntegrationsUiControl, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type, GetConfigurationProductsUiReadOnlyIntegrationsResponse3, GetConfigurationProductsUiHiddenIntegrationsResponse3, GetConfigurationProductsUiDisabledIntegrationsResponse3, GetConfigurationProductsPropertiesIntegrationsType, GetConfigurationProductsPropertiesUiControl, GetConfigurationProductsUiReadOnlyIntegrations3, GetConfigurationProductsUiHiddenIntegrations3, GetConfigurationProductsUiDisabledIntegrations3, GetConfigurationProductsPropertiesType, PropertiesUiControl, GetConfigurationProductsUiReadOnly3, GetConfigurationProductsUiHidden3, GetConfigurationProductsUiDisabled3, PropertiesType, UiControl, UiReadOnly3, UiHidden3, UiDisabled3, GetConfigurationProductsRequest$inboundSchema, GetConfigurationProductsRequest$outboundSchema, GetConfigurationProductsStatus$inboundSchema, GetConfigurationProductsStatus$outboundSchema, GetConfigurationProductsRepl$inboundSchema, GetConfigurationProductsRepl$outboundSchema, Storage$inboundSchema, Storage$outboundSchema, GetConfigurationProductsIntegrationsStatus$inboundSchema, GetConfigurationProductsIntegrationsStatus$outboundSchema, GetConfigurationProductsExperimentation$inboundSchema, GetConfigurationProductsExperimentation$outboundSchema, GetConfigurationProductsIntegrationsResponseStatus$inboundSchema, GetConfigurationProductsIntegrationsResponseStatus$outboundSchema, Ai$inboundSchema, Ai$outboundSchema, GetConfigurationProductsIntegrationsResponse200Status$inboundSchema, GetConfigurationProductsIntegrationsResponse200Status$outboundSchema, Authentication$inboundSchema, Authentication$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus$outboundSchema, Observability$inboundSchema, Observability$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus$outboundSchema, Video$inboundSchema, Video$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus$outboundSchema, Workflow$inboundSchema, Workflow$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus$outboundSchema, GetConfigurationProductsChecks$inboundSchema, GetConfigurationProductsChecks$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus$outboundSchema, Format$inboundSchema, Format$outboundSchema, LogDrain$inboundSchema, LogDrain$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus$outboundSchema, GetConfigurationProductsFormat$inboundSchema, GetConfigurationProductsFormat$outboundSchema, TraceDrain$inboundSchema, TraceDrain$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus$outboundSchema, Messaging$inboundSchema, Messaging$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus$outboundSchema, Other$inboundSchema, Other$outboundSchema, Protocols$inboundSchema, Protocols$outboundSchema, PrimaryProtocol$inboundSchema, PrimaryProtocol$outboundSchema, GetConfigurationProductsType$inboundSchema, GetConfigurationProductsType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt666792$outboundSchema, PropertiesValue$inboundSchema, PropertiesValue$outboundSchema, GetConfigurationProductsDisabled3$inboundSchema, GetConfigurationProductsDisabled3$outboundSchema, GetConfigurationProductsDisabled2$inboundSchema, GetConfigurationProductsDisabled2$outboundSchema, PropertiesDisabled$inboundSchema, PropertiesDisabled$outboundSchema, GetConfigurationProductsHidden3$inboundSchema, GetConfigurationProductsHidden3$outboundSchema, GetConfigurationProductsHidden2$inboundSchema, GetConfigurationProductsHidden2$outboundSchema, PropertiesHidden$inboundSchema, PropertiesHidden$outboundSchema, Properties10$inboundSchema, Properties10$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema, GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue$outboundSchema, Properties9$inboundSchema, Properties9$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponsePattern$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponsePattern$outboundSchema, GetConfigurationProductsPropertiesIntegrationsItems$inboundSchema, GetConfigurationProductsPropertiesIntegrationsItems$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt666792$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt666792$outboundSchema, GetConfigurationProductsUiOptionsValue$inboundSchema, GetConfigurationProductsUiOptionsValue$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseDisabled$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseHidden$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseHidden$outboundSchema, GetConfigurationProductsUiOptions3$inboundSchema, GetConfigurationProductsUiOptions3$outboundSchema, GetConfigurationProductsUiOptionsAtBRANDAt666792$inboundSchema, GetConfigurationProductsUiOptionsAtBRANDAt666792$outboundSchema, GetConfigurationProductsUiOptions2$inboundSchema, GetConfigurationProductsUiOptions2$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2003$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2003$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2002$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2002$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsDisabled$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2003$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2003$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2002$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2002$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsHidden$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsHidden$outboundSchema, GetConfigurationProductsUiOptions1$inboundSchema, GetConfigurationProductsUiOptions1$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiOptions$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiOptions$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt666792$outboundSchema, Default$inboundSchema, Default$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt666792$outboundSchema, Example$inboundSchema, Example$outboundSchema, Properties8$inboundSchema, Properties8$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt666792$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt666792$outboundSchema, UiOptionsValue$inboundSchema, UiOptionsValue$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsUiOptionsDisabled$inboundSchema, GetConfigurationProductsUiOptionsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsUiOptionsHidden$inboundSchema, GetConfigurationProductsUiOptionsHidden$outboundSchema, UiOptions3$inboundSchema, UiOptions3$outboundSchema, UiOptionsAtBRANDAt666792$inboundSchema, UiOptionsAtBRANDAt666792$outboundSchema, UiOptions2$inboundSchema, UiOptions2$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, UiOptionsDisabled$inboundSchema, UiOptionsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, UiOptionsHidden$inboundSchema, UiOptionsHidden$outboundSchema, UiOptions1$inboundSchema, UiOptions1$outboundSchema, GetConfigurationProductsPropertiesUiOptions$inboundSchema, GetConfigurationProductsPropertiesUiOptions$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesMinLength$inboundSchema, GetConfigurationProductsPropertiesMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesMaxLength$inboundSchema, GetConfigurationProductsPropertiesMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesPattern$inboundSchema, GetConfigurationProductsPropertiesPattern$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$outboundSchema, Properties7$inboundSchema, Properties7$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt666792$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$outboundSchema, GetConfigurationProductsPropertiesItems$inboundSchema, GetConfigurationProductsPropertiesItems$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsHidden$outboundSchema, PropertiesUiOptions$inboundSchema, PropertiesUiOptions$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiFormattedValue$outboundSchema, Properties6$inboundSchema, Properties6$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Type$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiControl$outboundSchema, GetConfigurationProductsDisabledIntegrations3$inboundSchema, GetConfigurationProductsDisabledIntegrations3$outboundSchema, GetConfigurationProductsDisabledIntegrations2$inboundSchema, GetConfigurationProductsDisabledIntegrations2$outboundSchema, GetConfigurationProductsPropertiesDisabled$inboundSchema, GetConfigurationProductsPropertiesDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrations3$inboundSchema, GetConfigurationProductsHiddenIntegrations3$outboundSchema, GetConfigurationProductsHiddenIntegrations2$inboundSchema, GetConfigurationProductsHiddenIntegrations2$outboundSchema, GetConfigurationProductsPropertiesHidden$inboundSchema, GetConfigurationProductsPropertiesHidden$outboundSchema, UiOptions$inboundSchema, UiOptions$outboundSchema, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt666792$outboundSchema, PropertiesMinLength$inboundSchema, PropertiesMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt666792$outboundSchema, PropertiesMaxLength$inboundSchema, PropertiesMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt666792$outboundSchema, PropertiesPattern$inboundSchema, PropertiesPattern$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2003$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2003$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2003$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2003$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2003$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2003$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiFormattedValue$outboundSchema, Properties5$inboundSchema, Properties5$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type$outboundSchema, PropertiesItems$inboundSchema, PropertiesItems$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiFormattedValue$outboundSchema, Properties4$inboundSchema, Properties4$outboundSchema, GetConfigurationProductsPropertiesIntegrationsType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsType$outboundSchema, GetConfigurationProductsPropertiesUiControl$inboundSchema, GetConfigurationProductsPropertiesUiControl$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrations3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrations3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrations2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrations3$inboundSchema, GetConfigurationProductsUiHiddenIntegrations3$outboundSchema, GetConfigurationProductsUiHiddenIntegrations2$inboundSchema, GetConfigurationProductsUiHiddenIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiHidden$inboundSchema, GetConfigurationProductsPropertiesUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrations3$inboundSchema, GetConfigurationProductsUiDisabledIntegrations3$outboundSchema, GetConfigurationProductsUiDisabledIntegrations2$inboundSchema, GetConfigurationProductsUiDisabledIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiDisabled$inboundSchema, GetConfigurationProductsPropertiesUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrations2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiDescription$inboundSchema, GetConfigurationProductsPropertiesUiDescription$outboundSchema, GetConfigurationProductsPropertiesUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesUiFormattedValue$outboundSchema, Properties3$inboundSchema, Properties3$outboundSchema, GetConfigurationProductsPropertiesType$inboundSchema, GetConfigurationProductsPropertiesType$outboundSchema, PropertiesUiControl$inboundSchema, PropertiesUiControl$outboundSchema, GetConfigurationProductsUiReadOnly3$inboundSchema, GetConfigurationProductsUiReadOnly3$outboundSchema, GetConfigurationProductsUiReadOnly2$inboundSchema, GetConfigurationProductsUiReadOnly2$outboundSchema, PropertiesUiReadOnly$inboundSchema, PropertiesUiReadOnly$outboundSchema, GetConfigurationProductsUiHidden3$inboundSchema, GetConfigurationProductsUiHidden3$outboundSchema, GetConfigurationProductsUiHidden2$inboundSchema, GetConfigurationProductsUiHidden2$outboundSchema, PropertiesUiHidden$inboundSchema, PropertiesUiHidden$outboundSchema, GetConfigurationProductsUiDisabled3$inboundSchema, GetConfigurationProductsUiDisabled3$outboundSchema, GetConfigurationProductsUiDisabled2$inboundSchema, GetConfigurationProductsUiDisabled2$outboundSchema, PropertiesUiDisabled$inboundSchema, PropertiesUiDisabled$outboundSchema, GetConfigurationProductsUiDescription2$inboundSchema, GetConfigurationProductsUiDescription2$outboundSchema, PropertiesUiDescription$inboundSchema, PropertiesUiDescription$outboundSchema, PropertiesUiFormattedValue$inboundSchema, PropertiesUiFormattedValue$outboundSchema, Properties2$inboundSchema, Properties2$outboundSchema, PropertiesType$inboundSchema, PropertiesType$outboundSchema, UiControl$inboundSchema, UiControl$outboundSchema, AtBRANDAt666792$inboundSchema, AtBRANDAt666792$outboundSchema, MinLength$inboundSchema, MinLength$outboundSchema, PropertiesAtBRANDAt666792$inboundSchema, PropertiesAtBRANDAt666792$outboundSchema, MaxLength$inboundSchema, MaxLength$outboundSchema, GetConfigurationProductsPropertiesAtBRANDAt666792$inboundSchema, GetConfigurationProductsPropertiesAtBRANDAt666792$outboundSchema, Pattern$inboundSchema, Pattern$outboundSchema, UiReadOnly3$inboundSchema, UiReadOnly3$outboundSchema, UiReadOnly2$inboundSchema, UiReadOnly2$outboundSchema, UiReadOnly$inboundSchema, UiReadOnly$outboundSchema, UiHidden3$inboundSchema, UiHidden3$outboundSchema, UiHidden2$inboundSchema, UiHidden2$outboundSchema, UiHidden$inboundSchema, UiHidden$outboundSchema, UiDisabled3$inboundSchema, UiDisabled3$outboundSchema, UiDisabled2$inboundSchema, UiDisabled2$outboundSchema, UiDisabled$inboundSchema, UiDisabled$outboundSchema, UiDescription2$inboundSchema, UiDescription2$outboundSchema, UiDescription$inboundSchema, UiDescription$outboundSchema, UiFormattedValue$inboundSchema, UiFormattedValue$outboundSchema, Properties1$inboundSchema, Properties1$outboundSchema, Properties$inboundSchema, Properties$outboundSchema, MetadataSchema$inboundSchema, MetadataSchema$outboundSchema, Products$inboundSchema, Products$outboundSchema, Integration$inboundSchema, Integration$outboundSchema, GetConfigurationProductsConfiguration$inboundSchema, GetConfigurationProductsConfiguration$outboundSchema, GetConfigurationProductsResponseBody$inboundSchema, GetConfigurationProductsResponseBody$outboundSchema;
74203
+ var GetConfigurationProductsStatus, GetConfigurationProductsIntegrationsStatus, GetConfigurationProductsIntegrationsResponseStatus, GetConfigurationProductsIntegrationsResponse200Status, GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus, Format, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus, GetConfigurationProductsFormat, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus, PrimaryProtocol, GetConfigurationProductsType, GetConfigurationProductsDisabled3, GetConfigurationProductsHidden3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3, GetConfigurationProductsDisabledIntegrationsResponse2003, GetConfigurationProductsHiddenIntegrationsResponse2003, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType, GetConfigurationProductsPropertiesIntegrationsResponse200UiControl, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type, GetConfigurationProductsDisabledIntegrationsResponse3, GetConfigurationProductsHiddenIntegrationsResponse3, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson3, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson3, GetConfigurationProductsPropertiesIntegrationsResponse200Type, GetConfigurationProductsPropertiesIntegrationsResponseUiControl, GetConfigurationProductsDisabledIntegrations3, GetConfigurationProductsHiddenIntegrations3, GetConfigurationProductsUiReadOnlyIntegrationsResponse2003, GetConfigurationProductsUiHiddenIntegrationsResponse2003, GetConfigurationProductsUiDisabledIntegrationsResponse2003, GetConfigurationProductsPropertiesIntegrationsResponseType, GetConfigurationProductsPropertiesIntegrationsUiControl, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type, GetConfigurationProductsUiReadOnlyIntegrationsResponse3, GetConfigurationProductsUiHiddenIntegrationsResponse3, GetConfigurationProductsUiDisabledIntegrationsResponse3, GetConfigurationProductsPropertiesIntegrationsType, GetConfigurationProductsPropertiesUiControl, GetConfigurationProductsUiReadOnlyIntegrations3, GetConfigurationProductsUiHiddenIntegrations3, GetConfigurationProductsUiDisabledIntegrations3, GetConfigurationProductsPropertiesType, PropertiesUiControl, GetConfigurationProductsUiReadOnly3, GetConfigurationProductsUiHidden3, GetConfigurationProductsUiDisabled3, PropertiesType, UiControl, UiReadOnly3, UiHidden3, UiDisabled3, GetConfigurationProductsRequest$inboundSchema, GetConfigurationProductsRequest$outboundSchema, GetConfigurationProductsStatus$inboundSchema, GetConfigurationProductsStatus$outboundSchema, GetConfigurationProductsRepl$inboundSchema, GetConfigurationProductsRepl$outboundSchema, Storage$inboundSchema, Storage$outboundSchema, GetConfigurationProductsIntegrationsStatus$inboundSchema, GetConfigurationProductsIntegrationsStatus$outboundSchema, GetConfigurationProductsExperimentation$inboundSchema, GetConfigurationProductsExperimentation$outboundSchema, GetConfigurationProductsIntegrationsResponseStatus$inboundSchema, GetConfigurationProductsIntegrationsResponseStatus$outboundSchema, Ai$inboundSchema, Ai$outboundSchema, GetConfigurationProductsIntegrationsResponse200Status$inboundSchema, GetConfigurationProductsIntegrationsResponse200Status$outboundSchema, Authentication$inboundSchema, Authentication$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONStatus$outboundSchema, Observability$inboundSchema, Observability$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyStatus$outboundSchema, Video$inboundSchema, Video$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsStatus$outboundSchema, Workflow$inboundSchema, Workflow$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsStatus$outboundSchema, GetConfigurationProductsChecks$inboundSchema, GetConfigurationProductsChecks$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsLogDrainStatus$outboundSchema, Format$inboundSchema, Format$outboundSchema, LogDrain$inboundSchema, LogDrain$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsTraceDrainStatus$outboundSchema, GetConfigurationProductsFormat$inboundSchema, GetConfigurationProductsFormat$outboundSchema, TraceDrain$inboundSchema, TraceDrain$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsMessagingStatus$outboundSchema, Messaging$inboundSchema, Messaging$outboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus$inboundSchema, GetConfigurationProductsIntegrationsResponse200ApplicationJSONResponseBodyProductsProtocolsOtherStatus$outboundSchema, Other$inboundSchema, Other$outboundSchema, Protocols$inboundSchema, Protocols$outboundSchema, PrimaryProtocol$inboundSchema, PrimaryProtocol$outboundSchema, GetConfigurationProductsType$inboundSchema, GetConfigurationProductsType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt670050$outboundSchema, PropertiesValue$inboundSchema, PropertiesValue$outboundSchema, GetConfigurationProductsDisabled3$inboundSchema, GetConfigurationProductsDisabled3$outboundSchema, GetConfigurationProductsDisabled2$inboundSchema, GetConfigurationProductsDisabled2$outboundSchema, PropertiesDisabled$inboundSchema, PropertiesDisabled$outboundSchema, GetConfigurationProductsHidden3$inboundSchema, GetConfigurationProductsHidden3$outboundSchema, GetConfigurationProductsHidden2$inboundSchema, GetConfigurationProductsHidden2$outboundSchema, PropertiesHidden$inboundSchema, PropertiesHidden$outboundSchema, Properties10$inboundSchema, Properties10$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema, GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiFormattedValue$outboundSchema, Properties9$inboundSchema, Properties9$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponsePattern$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponsePattern$outboundSchema, GetConfigurationProductsPropertiesIntegrationsItems$inboundSchema, GetConfigurationProductsPropertiesIntegrationsItems$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt670050$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt670050$outboundSchema, GetConfigurationProductsUiOptionsValue$inboundSchema, GetConfigurationProductsUiOptionsValue$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseDisabled$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseHidden$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsResponseHidden$outboundSchema, GetConfigurationProductsUiOptions3$inboundSchema, GetConfigurationProductsUiOptions3$outboundSchema, GetConfigurationProductsUiOptionsAtBRANDAt670050$inboundSchema, GetConfigurationProductsUiOptionsAtBRANDAt670050$outboundSchema, GetConfigurationProductsUiOptions2$inboundSchema, GetConfigurationProductsUiOptions2$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2003$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2003$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2002$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2002$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsDisabled$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2003$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2003$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2002$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2002$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsHidden$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsHidden$outboundSchema, GetConfigurationProductsUiOptions1$inboundSchema, GetConfigurationProductsUiOptions1$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiOptions$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiOptions$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt670050$outboundSchema, Default$inboundSchema, Default$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt670050$outboundSchema, Example$inboundSchema, Example$outboundSchema, Properties8$inboundSchema, Properties8$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt670050$inboundSchema, GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt670050$outboundSchema, UiOptionsValue$inboundSchema, UiOptionsValue$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsUiOptionsDisabled$inboundSchema, GetConfigurationProductsUiOptionsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts2$outboundSchema, GetConfigurationProductsUiOptionsHidden$inboundSchema, GetConfigurationProductsUiOptionsHidden$outboundSchema, UiOptions3$inboundSchema, UiOptions3$outboundSchema, UiOptionsAtBRANDAt670050$inboundSchema, UiOptionsAtBRANDAt670050$outboundSchema, UiOptions2$inboundSchema, UiOptions2$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, UiOptionsDisabled$inboundSchema, UiOptionsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, UiOptionsHidden$inboundSchema, UiOptionsHidden$outboundSchema, UiOptions1$inboundSchema, UiOptions1$outboundSchema, GetConfigurationProductsPropertiesUiOptions$inboundSchema, GetConfigurationProductsPropertiesUiOptions$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesMinLength$inboundSchema, GetConfigurationProductsPropertiesMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesMaxLength$inboundSchema, GetConfigurationProductsPropertiesMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesPattern$inboundSchema, GetConfigurationProductsPropertiesPattern$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJSONResponseBody2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiFormattedValue$outboundSchema, Properties7$inboundSchema, Properties7$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt670050$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$outboundSchema, GetConfigurationProductsPropertiesItems$inboundSchema, GetConfigurationProductsPropertiesItems$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse3$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse3$outboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2$inboundSchema, GetConfigurationProductsDisabledIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse3$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse3$outboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2$inboundSchema, GetConfigurationProductsHiddenIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsHidden$outboundSchema, PropertiesUiOptions$inboundSchema, PropertiesUiOptions$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJson2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse200ApplicationJson2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200UiFormattedValue$outboundSchema, Properties6$inboundSchema, Properties6$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200Type$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiControl$outboundSchema, GetConfigurationProductsDisabledIntegrations3$inboundSchema, GetConfigurationProductsDisabledIntegrations3$outboundSchema, GetConfigurationProductsDisabledIntegrations2$inboundSchema, GetConfigurationProductsDisabledIntegrations2$outboundSchema, GetConfigurationProductsPropertiesDisabled$inboundSchema, GetConfigurationProductsPropertiesDisabled$outboundSchema, GetConfigurationProductsHiddenIntegrations3$inboundSchema, GetConfigurationProductsHiddenIntegrations3$outboundSchema, GetConfigurationProductsHiddenIntegrations2$inboundSchema, GetConfigurationProductsHiddenIntegrations2$outboundSchema, GetConfigurationProductsPropertiesHidden$inboundSchema, GetConfigurationProductsPropertiesHidden$outboundSchema, UiOptions$inboundSchema, UiOptions$outboundSchema, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsAtBRANDAt670050$outboundSchema, PropertiesMinLength$inboundSchema, PropertiesMinLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt670050$outboundSchema, PropertiesMaxLength$inboundSchema, PropertiesMaxLength$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt670050$outboundSchema, PropertiesPattern$inboundSchema, PropertiesPattern$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2003$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2003$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2003$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2003$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2003$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2003$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2002$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2002$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseUiFormattedValue$outboundSchema, Properties5$inboundSchema, Properties5$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponseType$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiControl$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiControl$outboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type$inboundSchema, GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema4Type$outboundSchema, PropertiesItems$inboundSchema, PropertiesItems$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse3$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse3$outboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiHiddenIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiHidden$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse3$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse3$outboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiDisabledIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDisabled$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrationsResponse2$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDescription$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiDescription$outboundSchema, GetConfigurationProductsPropertiesIntegrationsUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesIntegrationsUiFormattedValue$outboundSchema, Properties4$inboundSchema, Properties4$outboundSchema, GetConfigurationProductsPropertiesIntegrationsType$inboundSchema, GetConfigurationProductsPropertiesIntegrationsType$outboundSchema, GetConfigurationProductsPropertiesUiControl$inboundSchema, GetConfigurationProductsPropertiesUiControl$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrations3$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrations3$outboundSchema, GetConfigurationProductsUiReadOnlyIntegrations2$inboundSchema, GetConfigurationProductsUiReadOnlyIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiReadOnly$inboundSchema, GetConfigurationProductsPropertiesUiReadOnly$outboundSchema, GetConfigurationProductsUiHiddenIntegrations3$inboundSchema, GetConfigurationProductsUiHiddenIntegrations3$outboundSchema, GetConfigurationProductsUiHiddenIntegrations2$inboundSchema, GetConfigurationProductsUiHiddenIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiHidden$inboundSchema, GetConfigurationProductsPropertiesUiHidden$outboundSchema, GetConfigurationProductsUiDisabledIntegrations3$inboundSchema, GetConfigurationProductsUiDisabledIntegrations3$outboundSchema, GetConfigurationProductsUiDisabledIntegrations2$inboundSchema, GetConfigurationProductsUiDisabledIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiDisabled$inboundSchema, GetConfigurationProductsPropertiesUiDisabled$outboundSchema, GetConfigurationProductsUiDescriptionIntegrations2$inboundSchema, GetConfigurationProductsUiDescriptionIntegrations2$outboundSchema, GetConfigurationProductsPropertiesUiDescription$inboundSchema, GetConfigurationProductsPropertiesUiDescription$outboundSchema, GetConfigurationProductsPropertiesUiFormattedValue$inboundSchema, GetConfigurationProductsPropertiesUiFormattedValue$outboundSchema, Properties3$inboundSchema, Properties3$outboundSchema, GetConfigurationProductsPropertiesType$inboundSchema, GetConfigurationProductsPropertiesType$outboundSchema, PropertiesUiControl$inboundSchema, PropertiesUiControl$outboundSchema, GetConfigurationProductsUiReadOnly3$inboundSchema, GetConfigurationProductsUiReadOnly3$outboundSchema, GetConfigurationProductsUiReadOnly2$inboundSchema, GetConfigurationProductsUiReadOnly2$outboundSchema, PropertiesUiReadOnly$inboundSchema, PropertiesUiReadOnly$outboundSchema, GetConfigurationProductsUiHidden3$inboundSchema, GetConfigurationProductsUiHidden3$outboundSchema, GetConfigurationProductsUiHidden2$inboundSchema, GetConfigurationProductsUiHidden2$outboundSchema, PropertiesUiHidden$inboundSchema, PropertiesUiHidden$outboundSchema, GetConfigurationProductsUiDisabled3$inboundSchema, GetConfigurationProductsUiDisabled3$outboundSchema, GetConfigurationProductsUiDisabled2$inboundSchema, GetConfigurationProductsUiDisabled2$outboundSchema, PropertiesUiDisabled$inboundSchema, PropertiesUiDisabled$outboundSchema, GetConfigurationProductsUiDescription2$inboundSchema, GetConfigurationProductsUiDescription2$outboundSchema, PropertiesUiDescription$inboundSchema, PropertiesUiDescription$outboundSchema, PropertiesUiFormattedValue$inboundSchema, PropertiesUiFormattedValue$outboundSchema, Properties2$inboundSchema, Properties2$outboundSchema, PropertiesType$inboundSchema, PropertiesType$outboundSchema, UiControl$inboundSchema, UiControl$outboundSchema, AtBRANDAt670050$inboundSchema, AtBRANDAt670050$outboundSchema, MinLength$inboundSchema, MinLength$outboundSchema, PropertiesAtBRANDAt670050$inboundSchema, PropertiesAtBRANDAt670050$outboundSchema, MaxLength$inboundSchema, MaxLength$outboundSchema, GetConfigurationProductsPropertiesAtBRANDAt670050$inboundSchema, GetConfigurationProductsPropertiesAtBRANDAt670050$outboundSchema, Pattern$inboundSchema, Pattern$outboundSchema, UiReadOnly3$inboundSchema, UiReadOnly3$outboundSchema, UiReadOnly2$inboundSchema, UiReadOnly2$outboundSchema, UiReadOnly$inboundSchema, UiReadOnly$outboundSchema, UiHidden3$inboundSchema, UiHidden3$outboundSchema, UiHidden2$inboundSchema, UiHidden2$outboundSchema, UiHidden$inboundSchema, UiHidden$outboundSchema, UiDisabled3$inboundSchema, UiDisabled3$outboundSchema, UiDisabled2$inboundSchema, UiDisabled2$outboundSchema, UiDisabled$inboundSchema, UiDisabled$outboundSchema, UiDescription2$inboundSchema, UiDescription2$outboundSchema, UiDescription$inboundSchema, UiDescription$outboundSchema, UiFormattedValue$inboundSchema, UiFormattedValue$outboundSchema, Properties1$inboundSchema, Properties1$outboundSchema, Properties$inboundSchema, Properties$outboundSchema, MetadataSchema$inboundSchema, MetadataSchema$outboundSchema, Products$inboundSchema, Products$outboundSchema, Integration$inboundSchema, Integration$outboundSchema, GetConfigurationProductsConfiguration$inboundSchema, GetConfigurationProductsConfiguration$outboundSchema, GetConfigurationProductsResponseBody$inboundSchema, GetConfigurationProductsResponseBody$outboundSchema;
74246
74204
  var init_getconfigurationproductsop = __esm(() => {
74247
74205
  init_esm();
74248
74206
  init_primitives();
@@ -74714,20 +74672,20 @@ var init_getconfigurationproductsop = __esm(() => {
74714
74672
  PrimaryProtocol$outboundSchema = PrimaryProtocol$inboundSchema;
74715
74673
  GetConfigurationProductsType$inboundSchema = nativeEnumType(GetConfigurationProductsType);
74716
74674
  GetConfigurationProductsType$outboundSchema = GetConfigurationProductsType$inboundSchema;
74717
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt666792$inboundSchema = objectType({});
74718
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt666792$outboundSchema = objectType({});
74675
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt670050$inboundSchema = objectType({});
74676
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt670050$outboundSchema = objectType({});
74719
74677
  PropertiesValue$inboundSchema = objectType({
74720
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt666792$inboundSchema)
74678
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt670050$inboundSchema)
74721
74679
  }).transform((v2) => {
74722
74680
  return remap(v2, {
74723
- "__@BRAND@666792": "atBRANDAt666792"
74681
+ "__@BRAND@670050": "atBRANDAt670050"
74724
74682
  });
74725
74683
  });
74726
74684
  PropertiesValue$outboundSchema = objectType({
74727
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt666792$outboundSchema)
74685
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema10AtBRANDAt670050$outboundSchema)
74728
74686
  }).transform((v2) => {
74729
74687
  return remap(v2, {
74730
- atBRANDAt666792: "__@BRAND@666792"
74688
+ atBRANDAt670050: "__@BRAND@670050"
74731
74689
  });
74732
74690
  });
74733
74691
  GetConfigurationProductsDisabled3$inboundSchema = nativeEnumType(GetConfigurationProductsDisabled3);
@@ -74796,52 +74754,52 @@ var init_getconfigurationproductsop = __esm(() => {
74796
74754
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaType$inboundSchema;
74797
74755
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema = nativeEnumType(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl);
74798
74756
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsUiControl$inboundSchema;
74799
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt666792$inboundSchema = objectType({});
74800
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt666792$outboundSchema = objectType({});
74757
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt670050$inboundSchema = objectType({});
74758
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt670050$outboundSchema = objectType({});
74801
74759
  GetConfigurationProductsPropertiesIntegrationsMinLength$inboundSchema = objectType({
74802
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt666792$inboundSchema)
74760
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt670050$inboundSchema)
74803
74761
  }).transform((v2) => {
74804
74762
  return remap(v2, {
74805
- "__@BRAND@666792": "atBRANDAt666792"
74763
+ "__@BRAND@670050": "atBRANDAt670050"
74806
74764
  });
74807
74765
  });
74808
74766
  GetConfigurationProductsPropertiesIntegrationsMinLength$outboundSchema = objectType({
74809
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt666792$outboundSchema)
74767
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9AtBRANDAt670050$outboundSchema)
74810
74768
  }).transform((v2) => {
74811
74769
  return remap(v2, {
74812
- atBRANDAt666792: "__@BRAND@666792"
74770
+ atBRANDAt670050: "__@BRAND@670050"
74813
74771
  });
74814
74772
  });
74815
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt666792$inboundSchema = objectType({});
74816
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt666792$outboundSchema = objectType({});
74773
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt670050$inboundSchema = objectType({});
74774
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt670050$outboundSchema = objectType({});
74817
74775
  GetConfigurationProductsPropertiesIntegrationsMaxLength$inboundSchema = objectType({
74818
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt666792$inboundSchema)
74776
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt670050$inboundSchema)
74819
74777
  }).transform((v2) => {
74820
74778
  return remap(v2, {
74821
- "__@BRAND@666792": "atBRANDAt666792"
74779
+ "__@BRAND@670050": "atBRANDAt670050"
74822
74780
  });
74823
74781
  });
74824
74782
  GetConfigurationProductsPropertiesIntegrationsMaxLength$outboundSchema = objectType({
74825
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt666792$outboundSchema)
74783
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9MaxLengthAtBRANDAt670050$outboundSchema)
74826
74784
  }).transform((v2) => {
74827
74785
  return remap(v2, {
74828
- atBRANDAt666792: "__@BRAND@666792"
74786
+ atBRANDAt670050: "__@BRAND@670050"
74829
74787
  });
74830
74788
  });
74831
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt666792$inboundSchema = objectType({});
74832
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt666792$outboundSchema = objectType({});
74789
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt670050$inboundSchema = objectType({});
74790
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt670050$outboundSchema = objectType({});
74833
74791
  GetConfigurationProductsPropertiesIntegrationsPattern$inboundSchema = objectType({
74834
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt666792$inboundSchema)
74792
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt670050$inboundSchema)
74835
74793
  }).transform((v2) => {
74836
74794
  return remap(v2, {
74837
- "__@BRAND@666792": "atBRANDAt666792"
74795
+ "__@BRAND@670050": "atBRANDAt670050"
74838
74796
  });
74839
74797
  });
74840
74798
  GetConfigurationProductsPropertiesIntegrationsPattern$outboundSchema = objectType({
74841
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt666792$outboundSchema)
74799
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema9PatternAtBRANDAt670050$outboundSchema)
74842
74800
  }).transform((v2) => {
74843
74801
  return remap(v2, {
74844
- atBRANDAt666792: "__@BRAND@666792"
74802
+ atBRANDAt670050: "__@BRAND@670050"
74845
74803
  });
74846
74804
  });
74847
74805
  GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3$inboundSchema = nativeEnumType(GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema3);
@@ -75010,52 +74968,52 @@ var init_getconfigurationproductsop = __esm(() => {
75010
74968
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiControl$inboundSchema;
75011
74969
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$inboundSchema = nativeEnumType(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type);
75012
74970
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8Type$inboundSchema;
75013
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt666792$inboundSchema = objectType({});
75014
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt666792$outboundSchema = objectType({});
74971
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt670050$inboundSchema = objectType({});
74972
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt670050$outboundSchema = objectType({});
75015
74973
  GetConfigurationProductsPropertiesIntegrationsResponseMinLength$inboundSchema = objectType({
75016
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt666792$inboundSchema)
74974
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt670050$inboundSchema)
75017
74975
  }).transform((v2) => {
75018
74976
  return remap(v2, {
75019
- "__@BRAND@666792": "atBRANDAt666792"
74977
+ "__@BRAND@670050": "atBRANDAt670050"
75020
74978
  });
75021
74979
  });
75022
74980
  GetConfigurationProductsPropertiesIntegrationsResponseMinLength$outboundSchema = objectType({
75023
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt666792$outboundSchema)
74981
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsMinLengthAtBRANDAt670050$outboundSchema)
75024
74982
  }).transform((v2) => {
75025
74983
  return remap(v2, {
75026
- atBRANDAt666792: "__@BRAND@666792"
74984
+ atBRANDAt670050: "__@BRAND@670050"
75027
74985
  });
75028
74986
  });
75029
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt666792$inboundSchema = objectType({});
75030
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt666792$outboundSchema = objectType({});
74987
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt670050$inboundSchema = objectType({});
74988
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt670050$outboundSchema = objectType({});
75031
74989
  GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$inboundSchema = objectType({
75032
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt666792$inboundSchema)
74990
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt670050$inboundSchema)
75033
74991
  }).transform((v2) => {
75034
74992
  return remap(v2, {
75035
- "__@BRAND@666792": "atBRANDAt666792"
74993
+ "__@BRAND@670050": "atBRANDAt670050"
75036
74994
  });
75037
74995
  });
75038
74996
  GetConfigurationProductsPropertiesIntegrationsResponseMaxLength$outboundSchema = objectType({
75039
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt666792$outboundSchema)
74997
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsAtBRANDAt670050$outboundSchema)
75040
74998
  }).transform((v2) => {
75041
74999
  return remap(v2, {
75042
- atBRANDAt666792: "__@BRAND@666792"
75000
+ atBRANDAt670050: "__@BRAND@670050"
75043
75001
  });
75044
75002
  });
75045
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt666792$inboundSchema = objectType({});
75046
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt666792$outboundSchema = objectType({});
75003
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt670050$inboundSchema = objectType({});
75004
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt670050$outboundSchema = objectType({});
75047
75005
  GetConfigurationProductsPropertiesIntegrationsResponsePattern$inboundSchema = objectType({
75048
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt666792$inboundSchema)
75006
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt670050$inboundSchema)
75049
75007
  }).transform((v2) => {
75050
75008
  return remap(v2, {
75051
- "__@BRAND@666792": "atBRANDAt666792"
75009
+ "__@BRAND@670050": "atBRANDAt670050"
75052
75010
  });
75053
75011
  });
75054
75012
  GetConfigurationProductsPropertiesIntegrationsResponsePattern$outboundSchema = objectType({
75055
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt666792$outboundSchema)
75013
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8ItemsPatternAtBRANDAt670050$outboundSchema)
75056
75014
  }).transform((v2) => {
75057
75015
  return remap(v2, {
75058
- atBRANDAt666792: "__@BRAND@666792"
75016
+ atBRANDAt670050: "__@BRAND@670050"
75059
75017
  });
75060
75018
  });
75061
75019
  GetConfigurationProductsPropertiesIntegrationsItems$inboundSchema = objectType({
@@ -75076,20 +75034,20 @@ var init_getconfigurationproductsop = __esm(() => {
75076
75034
  default: stringType().optional(),
75077
75035
  enum: arrayType(stringType()).optional()
75078
75036
  });
75079
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt666792$inboundSchema = objectType({});
75080
- GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt666792$outboundSchema = objectType({});
75037
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt670050$inboundSchema = objectType({});
75038
+ GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt670050$outboundSchema = objectType({});
75081
75039
  GetConfigurationProductsUiOptionsValue$inboundSchema = objectType({
75082
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt666792$inboundSchema)
75040
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt670050$inboundSchema)
75083
75041
  }).transform((v2) => {
75084
75042
  return remap(v2, {
75085
- "__@BRAND@666792": "atBRANDAt666792"
75043
+ "__@BRAND@670050": "atBRANDAt670050"
75086
75044
  });
75087
75045
  });
75088
75046
  GetConfigurationProductsUiOptionsValue$outboundSchema = objectType({
75089
- atBRANDAt666792: lazyType(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt666792$outboundSchema)
75047
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsUiOptionsIntegrationsResponseAtBRANDAt670050$outboundSchema)
75090
75048
  }).transform((v2) => {
75091
75049
  return remap(v2, {
75092
- atBRANDAt666792: "__@BRAND@666792"
75050
+ atBRANDAt670050: "__@BRAND@670050"
75093
75051
  });
75094
75052
  });
75095
75053
  GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3$inboundSchema = nativeEnumType(GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJson3);
@@ -75154,20 +75112,20 @@ var init_getconfigurationproductsop = __esm(() => {
75154
75112
  GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJson3$outboundSchema
75155
75113
  ]).optional()
75156
75114
  });
75157
- GetConfigurationProductsUiOptionsAtBRANDAt666792$inboundSchema = objectType({});
75158
- GetConfigurationProductsUiOptionsAtBRANDAt666792$outboundSchema = objectType({});
75115
+ GetConfigurationProductsUiOptionsAtBRANDAt670050$inboundSchema = objectType({});
75116
+ GetConfigurationProductsUiOptionsAtBRANDAt670050$outboundSchema = objectType({});
75159
75117
  GetConfigurationProductsUiOptions2$inboundSchema = objectType({
75160
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsUiOptionsAtBRANDAt666792$inboundSchema)
75118
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsUiOptionsAtBRANDAt670050$inboundSchema)
75161
75119
  }).transform((v2) => {
75162
75120
  return remap(v2, {
75163
- "__@BRAND@666792": "atBRANDAt666792"
75121
+ "__@BRAND@670050": "atBRANDAt670050"
75164
75122
  });
75165
75123
  });
75166
75124
  GetConfigurationProductsUiOptions2$outboundSchema = objectType({
75167
- atBRANDAt666792: lazyType(() => GetConfigurationProductsUiOptionsAtBRANDAt666792$outboundSchema)
75125
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsUiOptionsAtBRANDAt670050$outboundSchema)
75168
75126
  }).transform((v2) => {
75169
75127
  return remap(v2, {
75170
- atBRANDAt666792: "__@BRAND@666792"
75128
+ atBRANDAt670050: "__@BRAND@670050"
75171
75129
  });
75172
75130
  });
75173
75131
  GetConfigurationProductsDisabledIntegrationsResponse2003$inboundSchema = nativeEnumType(GetConfigurationProductsDisabledIntegrationsResponse2003);
@@ -75318,36 +75276,36 @@ var init_getconfigurationproductsop = __esm(() => {
75318
75276
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyUiFormattedValue$outboundSchema = objectType({
75319
75277
  expr: stringType()
75320
75278
  });
75321
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt666792$inboundSchema = objectType({});
75322
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt666792$outboundSchema = objectType({});
75279
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt670050$inboundSchema = objectType({});
75280
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt670050$outboundSchema = objectType({});
75323
75281
  Default$inboundSchema = objectType({
75324
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt666792$inboundSchema)
75282
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt670050$inboundSchema)
75325
75283
  }).transform((v2) => {
75326
75284
  return remap(v2, {
75327
- "__@BRAND@666792": "atBRANDAt666792"
75285
+ "__@BRAND@670050": "atBRANDAt670050"
75328
75286
  });
75329
75287
  });
75330
75288
  Default$outboundSchema = objectType({
75331
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt666792$outboundSchema)
75289
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchemaAtBRANDAt670050$outboundSchema)
75332
75290
  }).transform((v2) => {
75333
75291
  return remap(v2, {
75334
- atBRANDAt666792: "__@BRAND@666792"
75292
+ atBRANDAt670050: "__@BRAND@670050"
75335
75293
  });
75336
75294
  });
75337
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt666792$inboundSchema = objectType({});
75338
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt666792$outboundSchema = objectType({});
75295
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt670050$inboundSchema = objectType({});
75296
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt670050$outboundSchema = objectType({});
75339
75297
  Example$inboundSchema = objectType({
75340
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt666792$inboundSchema)
75298
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt670050$inboundSchema)
75341
75299
  }).transform((v2) => {
75342
75300
  return remap(v2, {
75343
- "__@BRAND@666792": "atBRANDAt666792"
75301
+ "__@BRAND@670050": "atBRANDAt670050"
75344
75302
  });
75345
75303
  });
75346
75304
  Example$outboundSchema = objectType({
75347
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt666792$outboundSchema)
75305
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema8AtBRANDAt670050$outboundSchema)
75348
75306
  }).transform((v2) => {
75349
75307
  return remap(v2, {
75350
- atBRANDAt666792: "__@BRAND@666792"
75308
+ atBRANDAt670050: "__@BRAND@670050"
75351
75309
  });
75352
75310
  });
75353
75311
  Properties8$inboundSchema = objectType({
@@ -75452,20 +75410,20 @@ var init_getconfigurationproductsop = __esm(() => {
75452
75410
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyType$inboundSchema;
75453
75411
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema = nativeEnumType(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl);
75454
75412
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONUiControl$inboundSchema;
75455
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt666792$inboundSchema = objectType({});
75456
- GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt666792$outboundSchema = objectType({});
75413
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt670050$inboundSchema = objectType({});
75414
+ GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt670050$outboundSchema = objectType({});
75457
75415
  UiOptionsValue$inboundSchema = objectType({
75458
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt666792$inboundSchema)
75416
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt670050$inboundSchema)
75459
75417
  }).transform((v2) => {
75460
75418
  return remap(v2, {
75461
- "__@BRAND@666792": "atBRANDAt666792"
75419
+ "__@BRAND@670050": "atBRANDAt670050"
75462
75420
  });
75463
75421
  });
75464
75422
  UiOptionsValue$outboundSchema = objectType({
75465
- atBRANDAt666792: lazyType(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt666792$outboundSchema)
75423
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsUiOptionsIntegrationsAtBRANDAt670050$outboundSchema)
75466
75424
  }).transform((v2) => {
75467
75425
  return remap(v2, {
75468
- atBRANDAt666792: "__@BRAND@666792"
75426
+ atBRANDAt670050: "__@BRAND@670050"
75469
75427
  });
75470
75428
  });
75471
75429
  GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3$inboundSchema = nativeEnumType(GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBodyProducts3);
@@ -75530,20 +75488,20 @@ var init_getconfigurationproductsop = __esm(() => {
75530
75488
  GetConfigurationProductsHiddenIntegrationsResponse200ApplicationJSONResponseBodyProducts3$outboundSchema
75531
75489
  ]).optional()
75532
75490
  });
75533
- UiOptionsAtBRANDAt666792$inboundSchema = objectType({});
75534
- UiOptionsAtBRANDAt666792$outboundSchema = objectType({});
75491
+ UiOptionsAtBRANDAt670050$inboundSchema = objectType({});
75492
+ UiOptionsAtBRANDAt670050$outboundSchema = objectType({});
75535
75493
  UiOptions2$inboundSchema = objectType({
75536
- "__@BRAND@666792": lazyType(() => UiOptionsAtBRANDAt666792$inboundSchema)
75494
+ "__@BRAND@670050": lazyType(() => UiOptionsAtBRANDAt670050$inboundSchema)
75537
75495
  }).transform((v2) => {
75538
75496
  return remap(v2, {
75539
- "__@BRAND@666792": "atBRANDAt666792"
75497
+ "__@BRAND@670050": "atBRANDAt670050"
75540
75498
  });
75541
75499
  });
75542
75500
  UiOptions2$outboundSchema = objectType({
75543
- atBRANDAt666792: lazyType(() => UiOptionsAtBRANDAt666792$outboundSchema)
75501
+ atBRANDAt670050: lazyType(() => UiOptionsAtBRANDAt670050$outboundSchema)
75544
75502
  }).transform((v2) => {
75545
75503
  return remap(v2, {
75546
- atBRANDAt666792: "__@BRAND@666792"
75504
+ atBRANDAt670050: "__@BRAND@670050"
75547
75505
  });
75548
75506
  });
75549
75507
  GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema = nativeEnumType(GetConfigurationProductsDisabledIntegrationsResponse200ApplicationJSONResponseBody3);
@@ -75620,52 +75578,52 @@ var init_getconfigurationproductsop = __esm(() => {
75620
75578
  lazyType(() => UiOptions2$outboundSchema),
75621
75579
  lazyType(() => UiOptions3$outboundSchema)
75622
75580
  ]);
75623
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt666792$inboundSchema = objectType({});
75624
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt666792$outboundSchema = objectType({});
75581
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt670050$inboundSchema = objectType({});
75582
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt670050$outboundSchema = objectType({});
75625
75583
  GetConfigurationProductsPropertiesMinLength$inboundSchema = objectType({
75626
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt666792$inboundSchema)
75584
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt670050$inboundSchema)
75627
75585
  }).transform((v2) => {
75628
75586
  return remap(v2, {
75629
- "__@BRAND@666792": "atBRANDAt666792"
75587
+ "__@BRAND@670050": "atBRANDAt670050"
75630
75588
  });
75631
75589
  });
75632
75590
  GetConfigurationProductsPropertiesMinLength$outboundSchema = objectType({
75633
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt666792$outboundSchema)
75591
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONAtBRANDAt670050$outboundSchema)
75634
75592
  }).transform((v2) => {
75635
75593
  return remap(v2, {
75636
- atBRANDAt666792: "__@BRAND@666792"
75594
+ atBRANDAt670050: "__@BRAND@670050"
75637
75595
  });
75638
75596
  });
75639
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt666792$inboundSchema = objectType({});
75640
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt666792$outboundSchema = objectType({});
75597
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt670050$inboundSchema = objectType({});
75598
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt670050$outboundSchema = objectType({});
75641
75599
  GetConfigurationProductsPropertiesMaxLength$inboundSchema = objectType({
75642
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt666792$inboundSchema)
75600
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt670050$inboundSchema)
75643
75601
  }).transform((v2) => {
75644
75602
  return remap(v2, {
75645
- "__@BRAND@666792": "atBRANDAt666792"
75603
+ "__@BRAND@670050": "atBRANDAt670050"
75646
75604
  });
75647
75605
  });
75648
75606
  GetConfigurationProductsPropertiesMaxLength$outboundSchema = objectType({
75649
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt666792$outboundSchema)
75607
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyAtBRANDAt670050$outboundSchema)
75650
75608
  }).transform((v2) => {
75651
75609
  return remap(v2, {
75652
- atBRANDAt666792: "__@BRAND@666792"
75610
+ atBRANDAt670050: "__@BRAND@670050"
75653
75611
  });
75654
75612
  });
75655
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt666792$inboundSchema = objectType({});
75656
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt666792$outboundSchema = objectType({});
75613
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt670050$inboundSchema = objectType({});
75614
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt670050$outboundSchema = objectType({});
75657
75615
  GetConfigurationProductsPropertiesPattern$inboundSchema = objectType({
75658
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt666792$inboundSchema)
75616
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt670050$inboundSchema)
75659
75617
  }).transform((v2) => {
75660
75618
  return remap(v2, {
75661
- "__@BRAND@666792": "atBRANDAt666792"
75619
+ "__@BRAND@670050": "atBRANDAt670050"
75662
75620
  });
75663
75621
  });
75664
75622
  GetConfigurationProductsPropertiesPattern$outboundSchema = objectType({
75665
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt666792$outboundSchema)
75623
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsAtBRANDAt670050$outboundSchema)
75666
75624
  }).transform((v2) => {
75667
75625
  return remap(v2, {
75668
- atBRANDAt666792: "__@BRAND@666792"
75626
+ atBRANDAt670050: "__@BRAND@670050"
75669
75627
  });
75670
75628
  });
75671
75629
  GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3$inboundSchema = nativeEnumType(GetConfigurationProductsUiReadOnlyIntegrationsResponse200ApplicationJSONResponseBody3);
@@ -75846,52 +75804,52 @@ var init_getconfigurationproductsop = __esm(() => {
75846
75804
  GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200UiControl$inboundSchema;
75847
75805
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$inboundSchema = nativeEnumType(GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type);
75848
75806
  GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$outboundSchema = GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6Type$inboundSchema;
75849
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt666792$inboundSchema = objectType({});
75850
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt666792$outboundSchema = objectType({});
75807
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt670050$inboundSchema = objectType({});
75808
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt670050$outboundSchema = objectType({});
75851
75809
  GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$inboundSchema = objectType({
75852
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt666792$inboundSchema)
75810
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt670050$inboundSchema)
75853
75811
  }).transform((v2) => {
75854
75812
  return remap(v2, {
75855
- "__@BRAND@666792": "atBRANDAt666792"
75813
+ "__@BRAND@670050": "atBRANDAt670050"
75856
75814
  });
75857
75815
  });
75858
75816
  GetConfigurationProductsPropertiesIntegrationsResponse200MinLength$outboundSchema = objectType({
75859
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt666792$outboundSchema)
75817
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsMinLengthAtBRANDAt670050$outboundSchema)
75860
75818
  }).transform((v2) => {
75861
75819
  return remap(v2, {
75862
- atBRANDAt666792: "__@BRAND@666792"
75820
+ atBRANDAt670050: "__@BRAND@670050"
75863
75821
  });
75864
75822
  });
75865
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt666792$inboundSchema = objectType({});
75866
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt666792$outboundSchema = objectType({});
75823
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt670050$inboundSchema = objectType({});
75824
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt670050$outboundSchema = objectType({});
75867
75825
  GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$inboundSchema = objectType({
75868
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt666792$inboundSchema)
75826
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt670050$inboundSchema)
75869
75827
  }).transform((v2) => {
75870
75828
  return remap(v2, {
75871
- "__@BRAND@666792": "atBRANDAt666792"
75829
+ "__@BRAND@670050": "atBRANDAt670050"
75872
75830
  });
75873
75831
  });
75874
75832
  GetConfigurationProductsPropertiesIntegrationsResponse200MaxLength$outboundSchema = objectType({
75875
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt666792$outboundSchema)
75833
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6AtBRANDAt670050$outboundSchema)
75876
75834
  }).transform((v2) => {
75877
75835
  return remap(v2, {
75878
- atBRANDAt666792: "__@BRAND@666792"
75836
+ atBRANDAt670050: "__@BRAND@670050"
75879
75837
  });
75880
75838
  });
75881
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt666792$inboundSchema = objectType({});
75882
- GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt666792$outboundSchema = objectType({});
75839
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt670050$inboundSchema = objectType({});
75840
+ GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt670050$outboundSchema = objectType({});
75883
75841
  GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$inboundSchema = objectType({
75884
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt666792$inboundSchema)
75842
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt670050$inboundSchema)
75885
75843
  }).transform((v2) => {
75886
75844
  return remap(v2, {
75887
- "__@BRAND@666792": "atBRANDAt666792"
75845
+ "__@BRAND@670050": "atBRANDAt670050"
75888
75846
  });
75889
75847
  });
75890
75848
  GetConfigurationProductsPropertiesIntegrationsResponse200Pattern$outboundSchema = objectType({
75891
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt666792$outboundSchema)
75849
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200ApplicationJSONResponseBodyProductsMetadataSchema6ItemsAtBRANDAt670050$outboundSchema)
75892
75850
  }).transform((v2) => {
75893
75851
  return remap(v2, {
75894
- atBRANDAt666792: "__@BRAND@666792"
75852
+ atBRANDAt670050: "__@BRAND@670050"
75895
75853
  });
75896
75854
  });
75897
75855
  GetConfigurationProductsPropertiesItems$inboundSchema = objectType({
@@ -76208,52 +76166,52 @@ var init_getconfigurationproductsop = __esm(() => {
76208
76166
  GetConfigurationProductsHiddenIntegrations3$outboundSchema
76209
76167
  ]).optional()
76210
76168
  });
76211
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt666792$inboundSchema = objectType({});
76212
- GetConfigurationProductsPropertiesIntegrationsAtBRANDAt666792$outboundSchema = objectType({});
76169
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt670050$inboundSchema = objectType({});
76170
+ GetConfigurationProductsPropertiesIntegrationsAtBRANDAt670050$outboundSchema = objectType({});
76213
76171
  PropertiesMinLength$inboundSchema = objectType({
76214
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt666792$inboundSchema)
76172
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt670050$inboundSchema)
76215
76173
  }).transform((v2) => {
76216
76174
  return remap(v2, {
76217
- "__@BRAND@666792": "atBRANDAt666792"
76175
+ "__@BRAND@670050": "atBRANDAt670050"
76218
76176
  });
76219
76177
  });
76220
76178
  PropertiesMinLength$outboundSchema = objectType({
76221
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt666792$outboundSchema)
76179
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsAtBRANDAt670050$outboundSchema)
76222
76180
  }).transform((v2) => {
76223
76181
  return remap(v2, {
76224
- atBRANDAt666792: "__@BRAND@666792"
76182
+ atBRANDAt670050: "__@BRAND@670050"
76225
76183
  });
76226
76184
  });
76227
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt666792$inboundSchema = objectType({});
76228
- GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt666792$outboundSchema = objectType({});
76185
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt670050$inboundSchema = objectType({});
76186
+ GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt670050$outboundSchema = objectType({});
76229
76187
  PropertiesMaxLength$inboundSchema = objectType({
76230
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt666792$inboundSchema)
76188
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt670050$inboundSchema)
76231
76189
  }).transform((v2) => {
76232
76190
  return remap(v2, {
76233
- "__@BRAND@666792": "atBRANDAt666792"
76191
+ "__@BRAND@670050": "atBRANDAt670050"
76234
76192
  });
76235
76193
  });
76236
76194
  PropertiesMaxLength$outboundSchema = objectType({
76237
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt666792$outboundSchema)
76195
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponseAtBRANDAt670050$outboundSchema)
76238
76196
  }).transform((v2) => {
76239
76197
  return remap(v2, {
76240
- atBRANDAt666792: "__@BRAND@666792"
76198
+ atBRANDAt670050: "__@BRAND@670050"
76241
76199
  });
76242
76200
  });
76243
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt666792$inboundSchema = objectType({});
76244
- GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt666792$outboundSchema = objectType({});
76201
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt670050$inboundSchema = objectType({});
76202
+ GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt670050$outboundSchema = objectType({});
76245
76203
  PropertiesPattern$inboundSchema = objectType({
76246
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt666792$inboundSchema)
76204
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt670050$inboundSchema)
76247
76205
  }).transform((v2) => {
76248
76206
  return remap(v2, {
76249
- "__@BRAND@666792": "atBRANDAt666792"
76207
+ "__@BRAND@670050": "atBRANDAt670050"
76250
76208
  });
76251
76209
  });
76252
76210
  PropertiesPattern$outboundSchema = objectType({
76253
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt666792$outboundSchema)
76211
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesIntegrationsResponse200AtBRANDAt670050$outboundSchema)
76254
76212
  }).transform((v2) => {
76255
76213
  return remap(v2, {
76256
- atBRANDAt666792: "__@BRAND@666792"
76214
+ atBRANDAt670050: "__@BRAND@670050"
76257
76215
  });
76258
76216
  });
76259
76217
  GetConfigurationProductsUiReadOnlyIntegrationsResponse2003$inboundSchema = nativeEnumType(GetConfigurationProductsUiReadOnlyIntegrationsResponse2003);
@@ -76922,52 +76880,52 @@ var init_getconfigurationproductsop = __esm(() => {
76922
76880
  PropertiesType$outboundSchema = PropertiesType$inboundSchema;
76923
76881
  UiControl$inboundSchema = nativeEnumType(UiControl);
76924
76882
  UiControl$outboundSchema = UiControl$inboundSchema;
76925
- AtBRANDAt666792$inboundSchema = objectType({});
76926
- AtBRANDAt666792$outboundSchema = objectType({});
76883
+ AtBRANDAt670050$inboundSchema = objectType({});
76884
+ AtBRANDAt670050$outboundSchema = objectType({});
76927
76885
  MinLength$inboundSchema = objectType({
76928
- "__@BRAND@666792": lazyType(() => AtBRANDAt666792$inboundSchema)
76886
+ "__@BRAND@670050": lazyType(() => AtBRANDAt670050$inboundSchema)
76929
76887
  }).transform((v2) => {
76930
76888
  return remap(v2, {
76931
- "__@BRAND@666792": "atBRANDAt666792"
76889
+ "__@BRAND@670050": "atBRANDAt670050"
76932
76890
  });
76933
76891
  });
76934
76892
  MinLength$outboundSchema = objectType({
76935
- atBRANDAt666792: lazyType(() => AtBRANDAt666792$outboundSchema)
76893
+ atBRANDAt670050: lazyType(() => AtBRANDAt670050$outboundSchema)
76936
76894
  }).transform((v2) => {
76937
76895
  return remap(v2, {
76938
- atBRANDAt666792: "__@BRAND@666792"
76896
+ atBRANDAt670050: "__@BRAND@670050"
76939
76897
  });
76940
76898
  });
76941
- PropertiesAtBRANDAt666792$inboundSchema = objectType({});
76942
- PropertiesAtBRANDAt666792$outboundSchema = objectType({});
76899
+ PropertiesAtBRANDAt670050$inboundSchema = objectType({});
76900
+ PropertiesAtBRANDAt670050$outboundSchema = objectType({});
76943
76901
  MaxLength$inboundSchema = objectType({
76944
- "__@BRAND@666792": lazyType(() => PropertiesAtBRANDAt666792$inboundSchema)
76902
+ "__@BRAND@670050": lazyType(() => PropertiesAtBRANDAt670050$inboundSchema)
76945
76903
  }).transform((v2) => {
76946
76904
  return remap(v2, {
76947
- "__@BRAND@666792": "atBRANDAt666792"
76905
+ "__@BRAND@670050": "atBRANDAt670050"
76948
76906
  });
76949
76907
  });
76950
76908
  MaxLength$outboundSchema = objectType({
76951
- atBRANDAt666792: lazyType(() => PropertiesAtBRANDAt666792$outboundSchema)
76909
+ atBRANDAt670050: lazyType(() => PropertiesAtBRANDAt670050$outboundSchema)
76952
76910
  }).transform((v2) => {
76953
76911
  return remap(v2, {
76954
- atBRANDAt666792: "__@BRAND@666792"
76912
+ atBRANDAt670050: "__@BRAND@670050"
76955
76913
  });
76956
76914
  });
76957
- GetConfigurationProductsPropertiesAtBRANDAt666792$inboundSchema = objectType({});
76958
- GetConfigurationProductsPropertiesAtBRANDAt666792$outboundSchema = objectType({});
76915
+ GetConfigurationProductsPropertiesAtBRANDAt670050$inboundSchema = objectType({});
76916
+ GetConfigurationProductsPropertiesAtBRANDAt670050$outboundSchema = objectType({});
76959
76917
  Pattern$inboundSchema = objectType({
76960
- "__@BRAND@666792": lazyType(() => GetConfigurationProductsPropertiesAtBRANDAt666792$inboundSchema)
76918
+ "__@BRAND@670050": lazyType(() => GetConfigurationProductsPropertiesAtBRANDAt670050$inboundSchema)
76961
76919
  }).transform((v2) => {
76962
76920
  return remap(v2, {
76963
- "__@BRAND@666792": "atBRANDAt666792"
76921
+ "__@BRAND@670050": "atBRANDAt670050"
76964
76922
  });
76965
76923
  });
76966
76924
  Pattern$outboundSchema = objectType({
76967
- atBRANDAt666792: lazyType(() => GetConfigurationProductsPropertiesAtBRANDAt666792$outboundSchema)
76925
+ atBRANDAt670050: lazyType(() => GetConfigurationProductsPropertiesAtBRANDAt670050$outboundSchema)
76968
76926
  }).transform((v2) => {
76969
76927
  return remap(v2, {
76970
- atBRANDAt666792: "__@BRAND@666792"
76928
+ atBRANDAt670050: "__@BRAND@670050"
76971
76929
  });
76972
76930
  });
76973
76931
  UiReadOnly3$inboundSchema = nativeEnumType(UiReadOnly3);
@@ -81851,11 +81809,15 @@ var init_getmemberop = __esm(() => {
81851
81809
  GetMemberRole$outboundSchema = GetMemberRole$inboundSchema;
81852
81810
  GetMemberResponseBody$inboundSchema = objectType({
81853
81811
  id: stringType(),
81854
- role: GetMemberRole$inboundSchema
81812
+ role: GetMemberRole$inboundSchema,
81813
+ globalUserId: stringType().optional(),
81814
+ userEmail: stringType().optional()
81855
81815
  });
81856
81816
  GetMemberResponseBody$outboundSchema = objectType({
81857
81817
  id: stringType(),
81858
- role: GetMemberRole$outboundSchema
81818
+ role: GetMemberRole$outboundSchema,
81819
+ globalUserId: stringType().optional(),
81820
+ userEmail: stringType().optional()
81859
81821
  });
81860
81822
  });
81861
81823
 
@@ -85466,10 +85428,10 @@ var init_createprojectop = __esm(() => {
85466
85428
  };
85467
85429
  CreateProjectProjectsResponseType = {
85468
85430
  System: "system",
85469
- Secret: "secret",
85470
85431
  Encrypted: "encrypted",
85471
85432
  Plain: "plain",
85472
- Sensitive: "sensitive"
85433
+ Sensitive: "sensitive",
85434
+ Secret: "secret"
85473
85435
  };
85474
85436
  CreateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type = {
85475
85437
  FlagsConnectionString: "flags-connection-string"
@@ -85670,8 +85632,8 @@ var init_createprojectop = __esm(() => {
85670
85632
  Turbo: "turbo"
85671
85633
  };
85672
85634
  CreateProjectProjectsDeploymentType = {
85673
- All: "all",
85674
85635
  Preview: "preview",
85636
+ All: "all",
85675
85637
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
85676
85638
  AllExceptCustomDomains: "all_except_custom_domains"
85677
85639
  };
@@ -85730,18 +85692,18 @@ var init_createprojectop = __esm(() => {
85730
85692
  IntegrationAutomationBypass: "integration-automation-bypass"
85731
85693
  };
85732
85694
  CreateProjectTrustedIpsProjectsDeploymentType = {
85733
- All: "all",
85734
85695
  Preview: "preview",
85696
+ Production: "production",
85697
+ All: "all",
85735
85698
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
85736
- AllExceptCustomDomains: "all_except_custom_domains",
85737
- Production: "production"
85699
+ AllExceptCustomDomains: "all_except_custom_domains"
85738
85700
  };
85739
85701
  CreateProjectTrustedIpsDeploymentType = {
85740
- All: "all",
85741
85702
  Preview: "preview",
85703
+ Production: "production",
85704
+ All: "all",
85742
85705
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
85743
- AllExceptCustomDomains: "all_except_custom_domains",
85744
- Production: "production"
85706
+ AllExceptCustomDomains: "all_except_custom_domains"
85745
85707
  };
85746
85708
  TrustedIpsProtectionMode = {
85747
85709
  Additional: "additional",
@@ -86781,28 +86743,28 @@ var init_createprojectop = __esm(() => {
86781
86743
  });
86782
86744
  CreateProjectLink2$inboundSchema = objectType({
86783
86745
  type: CreateProjectLinkProjectsType$inboundSchema,
86784
- updatedAt: numberType().optional(),
86785
- createdAt: numberType().optional(),
86786
86746
  repo: stringType().optional(),
86787
- sourceless: booleanType().optional(),
86747
+ repoId: numberType().optional(),
86748
+ createdAt: numberType().optional(),
86749
+ updatedAt: numberType().optional(),
86788
86750
  org: stringType(),
86789
86751
  repoOwnerId: numberType().optional(),
86790
- repoId: numberType().optional(),
86791
86752
  deployHooks: arrayType(lazyType(() => CreateProjectLinkProjectsDeployHooks$inboundSchema)),
86792
86753
  gitCredentialId: stringType(),
86754
+ sourceless: booleanType().optional(),
86793
86755
  productionBranch: stringType()
86794
86756
  });
86795
86757
  CreateProjectLink2$outboundSchema = objectType({
86796
86758
  type: CreateProjectLinkProjectsType$outboundSchema,
86797
- updatedAt: numberType().optional(),
86798
- createdAt: numberType().optional(),
86799
86759
  repo: stringType().optional(),
86800
- sourceless: booleanType().optional(),
86760
+ repoId: numberType().optional(),
86761
+ createdAt: numberType().optional(),
86762
+ updatedAt: numberType().optional(),
86801
86763
  org: stringType(),
86802
86764
  repoOwnerId: numberType().optional(),
86803
- repoId: numberType().optional(),
86804
86765
  deployHooks: arrayType(lazyType(() => CreateProjectLinkProjectsDeployHooks$outboundSchema)),
86805
86766
  gitCredentialId: stringType(),
86767
+ sourceless: booleanType().optional(),
86806
86768
  productionBranch: stringType()
86807
86769
  });
86808
86770
  CreateProjectLinkType$inboundSchema = nativeEnumType(CreateProjectLinkType);
@@ -86940,22 +86902,22 @@ var init_createprojectop = __esm(() => {
86940
86902
  CreateProjectBuildMachineType$inboundSchema = nativeEnumType(CreateProjectBuildMachineType);
86941
86903
  CreateProjectBuildMachineType$outboundSchema = CreateProjectBuildMachineType$inboundSchema;
86942
86904
  CreateProjectProjectsResourceConfig$inboundSchema = objectType({
86905
+ elasticConcurrencyEnabled: booleanType().optional(),
86943
86906
  fluid: booleanType().optional(),
86944
86907
  functionDefaultRegions: arrayType(stringType()),
86945
86908
  functionDefaultTimeout: numberType().optional(),
86946
86909
  functionDefaultMemoryType: CreateProjectFunctionDefaultMemoryType$inboundSchema.optional(),
86947
86910
  functionZeroConfigFailover: booleanType().optional(),
86948
- elasticConcurrencyEnabled: booleanType().optional(),
86949
86911
  buildMachineType: CreateProjectBuildMachineType$inboundSchema.optional(),
86950
86912
  isNSNBDisabled: booleanType().optional()
86951
86913
  });
86952
86914
  CreateProjectProjectsResourceConfig$outboundSchema = objectType({
86915
+ elasticConcurrencyEnabled: booleanType().optional(),
86953
86916
  fluid: booleanType().optional(),
86954
86917
  functionDefaultRegions: arrayType(stringType()),
86955
86918
  functionDefaultTimeout: numberType().optional(),
86956
86919
  functionDefaultMemoryType: CreateProjectFunctionDefaultMemoryType$outboundSchema.optional(),
86957
86920
  functionZeroConfigFailover: booleanType().optional(),
86958
- elasticConcurrencyEnabled: booleanType().optional(),
86959
86921
  buildMachineType: CreateProjectBuildMachineType$outboundSchema.optional(),
86960
86922
  isNSNBDisabled: booleanType().optional()
86961
86923
  });
@@ -86998,22 +86960,22 @@ var init_createprojectop = __esm(() => {
86998
86960
  CreateProjectProjectsBuildMachineType$inboundSchema = nativeEnumType(CreateProjectProjectsBuildMachineType);
86999
86961
  CreateProjectProjectsBuildMachineType$outboundSchema = CreateProjectProjectsBuildMachineType$inboundSchema;
87000
86962
  CreateProjectDefaultResourceConfig$inboundSchema = objectType({
86963
+ elasticConcurrencyEnabled: booleanType().optional(),
87001
86964
  fluid: booleanType().optional(),
87002
86965
  functionDefaultRegions: arrayType(stringType()),
87003
86966
  functionDefaultTimeout: numberType().optional(),
87004
86967
  functionDefaultMemoryType: CreateProjectProjectsFunctionDefaultMemoryType$inboundSchema.optional(),
87005
86968
  functionZeroConfigFailover: booleanType().optional(),
87006
- elasticConcurrencyEnabled: booleanType().optional(),
87007
86969
  buildMachineType: CreateProjectProjectsBuildMachineType$inboundSchema.optional(),
87008
86970
  isNSNBDisabled: booleanType().optional()
87009
86971
  });
87010
86972
  CreateProjectDefaultResourceConfig$outboundSchema = objectType({
86973
+ elasticConcurrencyEnabled: booleanType().optional(),
87011
86974
  fluid: booleanType().optional(),
87012
86975
  functionDefaultRegions: arrayType(stringType()),
87013
86976
  functionDefaultTimeout: numberType().optional(),
87014
86977
  functionDefaultMemoryType: CreateProjectProjectsFunctionDefaultMemoryType$outboundSchema.optional(),
87015
86978
  functionZeroConfigFailover: booleanType().optional(),
87016
- elasticConcurrencyEnabled: booleanType().optional(),
87017
86979
  buildMachineType: CreateProjectProjectsBuildMachineType$outboundSchema.optional(),
87018
86980
  isNSNBDisabled: booleanType().optional()
87019
86981
  });
@@ -99266,10 +99228,10 @@ var init_updateprojectop = __esm(() => {
99266
99228
  };
99267
99229
  UpdateProjectType = {
99268
99230
  System: "system",
99269
- Secret: "secret",
99270
99231
  Encrypted: "encrypted",
99271
99232
  Plain: "plain",
99272
- Sensitive: "sensitive"
99233
+ Sensitive: "sensitive",
99234
+ Secret: "secret"
99273
99235
  };
99274
99236
  UpdateProjectContentHintProjectsResponse200ApplicationJSONResponseBodyEnv15Type = {
99275
99237
  FlagsConnectionString: "flags-connection-string"
@@ -99470,8 +99432,8 @@ var init_updateprojectop = __esm(() => {
99470
99432
  Turbo: "turbo"
99471
99433
  };
99472
99434
  UpdateProjectProjectsResponseDeploymentType = {
99473
- All: "all",
99474
99435
  Preview: "preview",
99436
+ All: "all",
99475
99437
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
99476
99438
  AllExceptCustomDomains: "all_except_custom_domains"
99477
99439
  };
@@ -99530,18 +99492,18 @@ var init_updateprojectop = __esm(() => {
99530
99492
  IntegrationAutomationBypass: "integration-automation-bypass"
99531
99493
  };
99532
99494
  UpdateProjectTrustedIpsProjectsDeploymentType = {
99533
- All: "all",
99534
99495
  Preview: "preview",
99496
+ Production: "production",
99497
+ All: "all",
99535
99498
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
99536
- AllExceptCustomDomains: "all_except_custom_domains",
99537
- Production: "production"
99499
+ AllExceptCustomDomains: "all_except_custom_domains"
99538
99500
  };
99539
99501
  UpdateProjectTrustedIpsDeploymentType = {
99540
- All: "all",
99541
99502
  Preview: "preview",
99503
+ Production: "production",
99504
+ All: "all",
99542
99505
  ProdDeploymentUrlsAndAllPreviews: "prod_deployment_urls_and_all_previews",
99543
- AllExceptCustomDomains: "all_except_custom_domains",
99544
- Production: "production"
99506
+ AllExceptCustomDomains: "all_except_custom_domains"
99545
99507
  };
99546
99508
  UpdateProjectTrustedIpsProtectionMode = {
99547
99509
  Additional: "additional",
@@ -100661,28 +100623,28 @@ var init_updateprojectop = __esm(() => {
100661
100623
  });
100662
100624
  UpdateProjectLink2$inboundSchema = objectType({
100663
100625
  type: UpdateProjectLinkProjectsType$inboundSchema,
100664
- updatedAt: numberType().optional(),
100665
- createdAt: numberType().optional(),
100666
100626
  repo: stringType().optional(),
100667
- sourceless: booleanType().optional(),
100627
+ repoId: numberType().optional(),
100628
+ createdAt: numberType().optional(),
100629
+ updatedAt: numberType().optional(),
100668
100630
  org: stringType(),
100669
100631
  repoOwnerId: numberType().optional(),
100670
- repoId: numberType().optional(),
100671
100632
  deployHooks: arrayType(lazyType(() => UpdateProjectLinkProjectsDeployHooks$inboundSchema)),
100672
100633
  gitCredentialId: stringType(),
100634
+ sourceless: booleanType().optional(),
100673
100635
  productionBranch: stringType()
100674
100636
  });
100675
100637
  UpdateProjectLink2$outboundSchema = objectType({
100676
100638
  type: UpdateProjectLinkProjectsType$outboundSchema,
100677
- updatedAt: numberType().optional(),
100678
- createdAt: numberType().optional(),
100679
100639
  repo: stringType().optional(),
100680
- sourceless: booleanType().optional(),
100640
+ repoId: numberType().optional(),
100641
+ createdAt: numberType().optional(),
100642
+ updatedAt: numberType().optional(),
100681
100643
  org: stringType(),
100682
100644
  repoOwnerId: numberType().optional(),
100683
- repoId: numberType().optional(),
100684
100645
  deployHooks: arrayType(lazyType(() => UpdateProjectLinkProjectsDeployHooks$outboundSchema)),
100685
100646
  gitCredentialId: stringType(),
100647
+ sourceless: booleanType().optional(),
100686
100648
  productionBranch: stringType()
100687
100649
  });
100688
100650
  UpdateProjectLinkType$inboundSchema = nativeEnumType(UpdateProjectLinkType);
@@ -100820,22 +100782,22 @@ var init_updateprojectop = __esm(() => {
100820
100782
  UpdateProjectProjectsBuildMachineType$inboundSchema = nativeEnumType(UpdateProjectProjectsBuildMachineType);
100821
100783
  UpdateProjectProjectsBuildMachineType$outboundSchema = UpdateProjectProjectsBuildMachineType$inboundSchema;
100822
100784
  UpdateProjectProjectsResourceConfig$inboundSchema = objectType({
100785
+ elasticConcurrencyEnabled: booleanType().optional(),
100823
100786
  fluid: booleanType().optional(),
100824
100787
  functionDefaultRegions: arrayType(stringType()),
100825
100788
  functionDefaultTimeout: numberType().optional(),
100826
100789
  functionDefaultMemoryType: UpdateProjectProjectsFunctionDefaultMemoryType$inboundSchema.optional(),
100827
100790
  functionZeroConfigFailover: booleanType().optional(),
100828
- elasticConcurrencyEnabled: booleanType().optional(),
100829
100791
  buildMachineType: UpdateProjectProjectsBuildMachineType$inboundSchema.optional(),
100830
100792
  isNSNBDisabled: booleanType().optional()
100831
100793
  });
100832
100794
  UpdateProjectProjectsResourceConfig$outboundSchema = objectType({
100795
+ elasticConcurrencyEnabled: booleanType().optional(),
100833
100796
  fluid: booleanType().optional(),
100834
100797
  functionDefaultRegions: arrayType(stringType()),
100835
100798
  functionDefaultTimeout: numberType().optional(),
100836
100799
  functionDefaultMemoryType: UpdateProjectProjectsFunctionDefaultMemoryType$outboundSchema.optional(),
100837
100800
  functionZeroConfigFailover: booleanType().optional(),
100838
- elasticConcurrencyEnabled: booleanType().optional(),
100839
100801
  buildMachineType: UpdateProjectProjectsBuildMachineType$outboundSchema.optional(),
100840
100802
  isNSNBDisabled: booleanType().optional()
100841
100803
  });
@@ -100878,22 +100840,22 @@ var init_updateprojectop = __esm(() => {
100878
100840
  UpdateProjectProjectsResponseBuildMachineType$inboundSchema = nativeEnumType(UpdateProjectProjectsResponseBuildMachineType);
100879
100841
  UpdateProjectProjectsResponseBuildMachineType$outboundSchema = UpdateProjectProjectsResponseBuildMachineType$inboundSchema;
100880
100842
  UpdateProjectDefaultResourceConfig$inboundSchema = objectType({
100843
+ elasticConcurrencyEnabled: booleanType().optional(),
100881
100844
  fluid: booleanType().optional(),
100882
100845
  functionDefaultRegions: arrayType(stringType()),
100883
100846
  functionDefaultTimeout: numberType().optional(),
100884
100847
  functionDefaultMemoryType: UpdateProjectProjectsResponseFunctionDefaultMemoryType$inboundSchema.optional(),
100885
100848
  functionZeroConfigFailover: booleanType().optional(),
100886
- elasticConcurrencyEnabled: booleanType().optional(),
100887
100849
  buildMachineType: UpdateProjectProjectsResponseBuildMachineType$inboundSchema.optional(),
100888
100850
  isNSNBDisabled: booleanType().optional()
100889
100851
  });
100890
100852
  UpdateProjectDefaultResourceConfig$outboundSchema = objectType({
100853
+ elasticConcurrencyEnabled: booleanType().optional(),
100891
100854
  fluid: booleanType().optional(),
100892
100855
  functionDefaultRegions: arrayType(stringType()),
100893
100856
  functionDefaultTimeout: numberType().optional(),
100894
100857
  functionDefaultMemoryType: UpdateProjectProjectsResponseFunctionDefaultMemoryType$outboundSchema.optional(),
100895
100858
  functionZeroConfigFailover: booleanType().optional(),
100896
- elasticConcurrencyEnabled: booleanType().optional(),
100897
100859
  buildMachineType: UpdateProjectProjectsResponseBuildMachineType$outboundSchema.optional(),
100898
100860
  isNSNBDisabled: booleanType().optional()
100899
100861
  });
@@ -112199,14 +112161,14 @@ var init_team = __esm(() => {
112199
112161
  V0Viewer: "V0Viewer"
112200
112162
  };
112201
112163
  Origin = {
112202
- Saml: "saml",
112203
- Gitlab: "gitlab",
112204
- Bitbucket: "bitbucket",
112205
- Github: "github",
112206
112164
  Link: "link",
112165
+ Saml: "saml",
112207
112166
  Mail: "mail",
112208
112167
  Import: "import",
112209
112168
  Teams: "teams",
112169
+ Github: "github",
112170
+ Gitlab: "gitlab",
112171
+ Bitbucket: "bitbucket",
112210
112172
  Dsync: "dsync",
112211
112173
  Feedback: "feedback",
112212
112174
  OrganizationTeams: "organization-teams"
@@ -112218,15 +112180,15 @@ var init_team = __esm(() => {
112218
112180
  enabled: booleanType().optional()
112219
112181
  });
112220
112182
  Connection$inboundSchema = objectType({
112221
- status: stringType(),
112222
112183
  type: stringType(),
112184
+ status: stringType(),
112223
112185
  state: stringType(),
112224
112186
  connectedAt: numberType(),
112225
112187
  lastReceivedWebhookEvent: numberType().optional()
112226
112188
  });
112227
112189
  Connection$outboundSchema = objectType({
112228
- status: stringType(),
112229
112190
  type: stringType(),
112191
+ status: stringType(),
112230
112192
  state: stringType(),
112231
112193
  connectedAt: numberType(),
112232
112194
  lastReceivedWebhookEvent: numberType().optional()
@@ -112408,12 +112370,12 @@ var init_team = __esm(() => {
112408
112370
  Membership$inboundSchema = objectType({
112409
112371
  uid: stringType().optional(),
112410
112372
  entitlements: arrayType(lazyType(() => Entitlements$inboundSchema)).optional(),
112373
+ teamId: stringType().optional(),
112411
112374
  confirmed: booleanType(),
112412
112375
  accessRequestedAt: numberType().optional(),
112413
112376
  role: TeamRole$inboundSchema,
112414
112377
  teamRoles: arrayType(TeamMembershipTeamRoles$inboundSchema).optional(),
112415
112378
  teamPermissions: arrayType(TeamMembershipTeamPermissions$inboundSchema).optional(),
112416
- teamId: stringType().optional(),
112417
112379
  createdAt: numberType(),
112418
112380
  created: numberType(),
112419
112381
  joinedFrom: lazyType(() => JoinedFrom$inboundSchema).optional()
@@ -112421,12 +112383,12 @@ var init_team = __esm(() => {
112421
112383
  Membership$outboundSchema = objectType({
112422
112384
  uid: stringType().optional(),
112423
112385
  entitlements: arrayType(lazyType(() => Entitlements$outboundSchema)).optional(),
112386
+ teamId: stringType().optional(),
112424
112387
  confirmed: booleanType(),
112425
112388
  accessRequestedAt: numberType().optional(),
112426
112389
  role: TeamRole$outboundSchema,
112427
112390
  teamRoles: arrayType(TeamMembershipTeamRoles$outboundSchema).optional(),
112428
112391
  teamPermissions: arrayType(TeamMembershipTeamPermissions$outboundSchema).optional(),
112429
- teamId: stringType().optional(),
112430
112392
  createdAt: numberType(),
112431
112393
  created: numberType(),
112432
112394
  joinedFrom: lazyType(() => JoinedFrom$outboundSchema).optional()
@@ -122829,7 +122791,7 @@ Get a list of webhooks`,
122829
122791
  function createMCPServer(deps) {
122830
122792
  const server = new McpServer({
122831
122793
  name: "Vercel",
122832
- version: "1.17.4"
122794
+ version: "1.17.5"
122833
122795
  });
122834
122796
  const client = new VercelCore({
122835
122797
  bearerToken: deps.bearerToken,
@@ -124460,7 +124422,7 @@ var routes = an({
124460
124422
  var app = He(routes, {
124461
124423
  name: "mcp",
124462
124424
  versionInfo: {
124463
- currentVersion: "1.17.4"
124425
+ currentVersion: "1.17.5"
124464
124426
  }
124465
124427
  });
124466
124428
  zt(app, process3.argv.slice(2), buildContext(process3));
@@ -124468,5 +124430,5 @@ export {
124468
124430
  app
124469
124431
  };
124470
124432
 
124471
- //# debugId=7B2A48E4CDD863BC64756E2164756E21
124433
+ //# debugId=24C687442BDE698B64756E2164756E21
124472
124434
  //# sourceMappingURL=mcp-server.js.map