@vercel/sdk 1.9.0 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (251) hide show
  1. package/README.md +11 -7
  2. package/bin/mcp-server.js +3307 -2453
  3. package/bin/mcp-server.js.map +46 -41
  4. package/docs/sdks/deployments/README.md +2 -0
  5. package/docs/sdks/logdrains/README.md +0 -80
  6. package/docs/sdks/marketplace/README.md +310 -78
  7. package/esm/__tests__/deployments.test.js.map +1 -1
  8. package/esm/__tests__/domains.test.js.map +1 -1
  9. package/esm/__tests__/logdrains.test.js +3 -13
  10. package/esm/__tests__/logdrains.test.js.map +1 -1
  11. package/esm/__tests__/marketplace.test.js +41 -0
  12. package/esm/__tests__/marketplace.test.js.map +1 -1
  13. package/esm/__tests__/projects.test.js +13 -15
  14. package/esm/__tests__/projects.test.js.map +1 -1
  15. package/esm/__tests__/rollingrelease.test.js +5 -2
  16. package/esm/__tests__/rollingrelease.test.js.map +1 -1
  17. package/esm/funcs/deploymentsCreateDeployment.js +2 -2
  18. package/esm/funcs/deploymentsCreateDeployment.js.map +1 -1
  19. package/esm/funcs/{logDrainsDeleteConfigurableLogDrain.d.ts → marketplaceDeleteIntegrationResource.d.ts} +5 -5
  20. package/esm/funcs/marketplaceDeleteIntegrationResource.d.ts.map +1 -0
  21. package/esm/funcs/{logDrainsDeleteConfigurableLogDrain.js → marketplaceDeleteIntegrationResource.js} +11 -15
  22. package/esm/funcs/marketplaceDeleteIntegrationResource.js.map +1 -0
  23. package/esm/funcs/marketplaceGetIntegrationResource.d.ts +20 -0
  24. package/esm/funcs/marketplaceGetIntegrationResource.d.ts.map +1 -0
  25. package/esm/funcs/marketplaceGetIntegrationResource.js +90 -0
  26. package/esm/funcs/marketplaceGetIntegrationResource.js.map +1 -0
  27. package/esm/funcs/marketplaceGetIntegrationResources.d.ts +20 -0
  28. package/esm/funcs/marketplaceGetIntegrationResources.d.ts.map +1 -0
  29. package/esm/funcs/marketplaceGetIntegrationResources.js +86 -0
  30. package/esm/funcs/marketplaceGetIntegrationResources.js.map +1 -0
  31. package/esm/lib/config.d.ts +3 -3
  32. package/esm/lib/config.js +3 -3
  33. package/esm/lib/config.js.map +1 -1
  34. package/esm/mcp-server/cli/start/command.d.ts.map +1 -1
  35. package/esm/mcp-server/cli/start/command.js +0 -12
  36. package/esm/mcp-server/cli/start/command.js.map +1 -1
  37. package/esm/mcp-server/cli/start/impl.d.ts +0 -2
  38. package/esm/mcp-server/cli/start/impl.d.ts.map +1 -1
  39. package/esm/mcp-server/cli/start/impl.js +0 -2
  40. package/esm/mcp-server/cli/start/impl.js.map +1 -1
  41. package/esm/mcp-server/mcp-server.js +1 -1
  42. package/esm/mcp-server/mcp-server.js.map +1 -1
  43. package/esm/mcp-server/server.d.ts.map +1 -1
  44. package/esm/mcp-server/server.js +11 -7
  45. package/esm/mcp-server/server.js.map +1 -1
  46. package/esm/mcp-server/tools/marketplaceDeleteIntegrationResource.d.ts +7 -0
  47. package/esm/mcp-server/tools/marketplaceDeleteIntegrationResource.d.ts.map +1 -0
  48. package/esm/mcp-server/tools/marketplaceDeleteIntegrationResource.js +27 -0
  49. package/esm/mcp-server/tools/marketplaceDeleteIntegrationResource.js.map +1 -0
  50. package/esm/mcp-server/tools/marketplaceGetIntegrationResource.d.ts +7 -0
  51. package/esm/mcp-server/tools/marketplaceGetIntegrationResource.d.ts.map +1 -0
  52. package/esm/mcp-server/tools/marketplaceGetIntegrationResource.js +28 -0
  53. package/esm/mcp-server/tools/marketplaceGetIntegrationResource.js.map +1 -0
  54. package/esm/mcp-server/tools/marketplaceGetIntegrationResources.d.ts +7 -0
  55. package/esm/mcp-server/tools/marketplaceGetIntegrationResources.d.ts.map +1 -0
  56. package/esm/mcp-server/tools/marketplaceGetIntegrationResources.js +28 -0
  57. package/esm/mcp-server/tools/marketplaceGetIntegrationResources.js.map +1 -0
  58. package/esm/models/authuser.d.ts +5 -27
  59. package/esm/models/authuser.d.ts.map +1 -1
  60. package/esm/models/authuser.js +2 -9
  61. package/esm/models/authuser.js.map +1 -1
  62. package/esm/models/canceldeploymentop.d.ts +335 -6
  63. package/esm/models/canceldeploymentop.d.ts.map +1 -1
  64. package/esm/models/canceldeploymentop.js +274 -2
  65. package/esm/models/canceldeploymentop.js.map +1 -1
  66. package/esm/models/createdeploymentop.d.ts +434 -97
  67. package/esm/models/createdeploymentop.d.ts.map +1 -1
  68. package/esm/models/createdeploymentop.js +362 -83
  69. package/esm/models/createdeploymentop.js.map +1 -1
  70. package/esm/models/createprojectop.d.ts +102 -25
  71. package/esm/models/createprojectop.d.ts.map +1 -1
  72. package/esm/models/createprojectop.js +80 -29
  73. package/esm/models/createprojectop.js.map +1 -1
  74. package/esm/models/createwebhookop.d.ts +6 -0
  75. package/esm/models/createwebhookop.d.ts.map +1 -1
  76. package/esm/models/createwebhookop.js +2 -0
  77. package/esm/models/createwebhookop.js.map +1 -1
  78. package/esm/models/deleteintegrationresourceop.d.ts +31 -0
  79. package/esm/models/deleteintegrationresourceop.d.ts.map +1 -0
  80. package/esm/models/deleteintegrationresourceop.js +33 -0
  81. package/esm/models/deleteintegrationresourceop.js.map +1 -0
  82. package/esm/models/getconfigurationop.d.ts +3 -3
  83. package/esm/models/getconfigurationop.js +1 -1
  84. package/esm/models/getconfigurationop.js.map +1 -1
  85. package/esm/models/getdeploymentop.d.ts +338 -9
  86. package/esm/models/getdeploymentop.d.ts.map +1 -1
  87. package/esm/models/getdeploymentop.js +276 -3
  88. package/esm/models/getdeploymentop.js.map +1 -1
  89. package/esm/models/getdeploymentsop.d.ts +8 -2
  90. package/esm/models/getdeploymentsop.d.ts.map +1 -1
  91. package/esm/models/getdeploymentsop.js +3 -2
  92. package/esm/models/getdeploymentsop.js.map +1 -1
  93. package/esm/models/getedgeconfigbackupop.d.ts +15 -15
  94. package/esm/models/getedgeconfigbackupop.d.ts.map +1 -1
  95. package/esm/models/getedgeconfigbackupop.js +15 -15
  96. package/esm/models/getedgeconfigbackupop.js.map +1 -1
  97. package/esm/models/getintegrationresourceop.d.ts +293 -0
  98. package/esm/models/getintegrationresourceop.d.ts.map +1 -0
  99. package/esm/models/getintegrationresourceop.js +252 -0
  100. package/esm/models/getintegrationresourceop.js.map +1 -0
  101. package/esm/models/getintegrationresourcesop.d.ts +310 -0
  102. package/esm/models/getintegrationresourcesop.d.ts.map +1 -0
  103. package/esm/models/getintegrationresourcesop.js +275 -0
  104. package/esm/models/getintegrationresourcesop.js.map +1 -0
  105. package/esm/models/getprojectsop.d.ts +12 -2
  106. package/esm/models/getprojectsop.d.ts.map +1 -1
  107. package/esm/models/getprojectsop.js +4 -2
  108. package/esm/models/getprojectsop.js.map +1 -1
  109. package/esm/models/getrollingreleasebillingstatusop.d.ts +21 -13
  110. package/esm/models/getrollingreleasebillingstatusop.d.ts.map +1 -1
  111. package/esm/models/getrollingreleasebillingstatusop.js +17 -9
  112. package/esm/models/getrollingreleasebillingstatusop.js.map +1 -1
  113. package/esm/models/getteamaccessrequestop.d.ts +3 -3
  114. package/esm/models/getteamaccessrequestop.js +1 -1
  115. package/esm/models/getv9projectsidornamecustomenvironmentsop.d.ts +3 -3
  116. package/esm/models/getv9projectsidornamecustomenvironmentsop.js +1 -1
  117. package/esm/models/getv9projectsidornamecustomenvironmentsop.js.map +1 -1
  118. package/esm/models/getwebhookop.d.ts +3 -0
  119. package/esm/models/getwebhookop.d.ts.map +1 -1
  120. package/esm/models/getwebhookop.js +1 -0
  121. package/esm/models/getwebhookop.js.map +1 -1
  122. package/esm/models/getwebhooksop.d.ts +9 -0
  123. package/esm/models/getwebhooksop.d.ts.map +1 -1
  124. package/esm/models/getwebhooksop.js +3 -0
  125. package/esm/models/getwebhooksop.js.map +1 -1
  126. package/esm/models/importresourceop.d.ts +15 -15
  127. package/esm/models/importresourceop.d.ts.map +1 -1
  128. package/esm/models/importresourceop.js +17 -15
  129. package/esm/models/importresourceop.js.map +1 -1
  130. package/esm/models/requestaccesstoteamop.d.ts +3 -3
  131. package/esm/models/requestaccesstoteamop.js +1 -1
  132. package/esm/models/sdkerror.d.ts.map +1 -1
  133. package/esm/models/sdkerror.js +8 -2
  134. package/esm/models/sdkerror.js.map +1 -1
  135. package/esm/models/team.d.ts +8 -3
  136. package/esm/models/team.d.ts.map +1 -1
  137. package/esm/models/team.js +3 -1
  138. package/esm/models/team.js.map +1 -1
  139. package/esm/models/teamlimited.d.ts +3 -3
  140. package/esm/models/teamlimited.js +1 -1
  141. package/esm/models/updateprojectdatacacheop.d.ts +12 -2
  142. package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
  143. package/esm/models/updateprojectdatacacheop.js +4 -2
  144. package/esm/models/updateprojectdatacacheop.js.map +1 -1
  145. package/esm/models/updateprojectop.d.ts +24 -2
  146. package/esm/models/updateprojectop.d.ts.map +1 -1
  147. package/esm/models/updateprojectop.js +8 -2
  148. package/esm/models/updateprojectop.js.map +1 -1
  149. package/esm/models/updateresourcesecretsop.d.ts +15 -15
  150. package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
  151. package/esm/models/updateresourcesecretsop.js +15 -17
  152. package/esm/models/updateresourcesecretsop.js.map +1 -1
  153. package/esm/models/userevent.d.ts +1622 -1824
  154. package/esm/models/userevent.d.ts.map +1 -1
  155. package/esm/models/userevent.js +2049 -2225
  156. package/esm/models/userevent.js.map +1 -1
  157. package/esm/models/vercelbadrequesterror.d.ts.map +1 -1
  158. package/esm/models/vercelbadrequesterror.js +2 -3
  159. package/esm/models/vercelbadrequesterror.js.map +1 -1
  160. package/esm/models/vercelforbiddenerror.d.ts.map +1 -1
  161. package/esm/models/vercelforbiddenerror.js +2 -3
  162. package/esm/models/vercelforbiddenerror.js.map +1 -1
  163. package/esm/models/vercelnotfounderror.d.ts.map +1 -1
  164. package/esm/models/vercelnotfounderror.js +2 -3
  165. package/esm/models/vercelnotfounderror.js.map +1 -1
  166. package/esm/models/vercelratelimiterror.d.ts.map +1 -1
  167. package/esm/models/vercelratelimiterror.js +2 -3
  168. package/esm/models/vercelratelimiterror.js.map +1 -1
  169. package/esm/sdk/logdrains.d.ts +0 -8
  170. package/esm/sdk/logdrains.d.ts.map +1 -1
  171. package/esm/sdk/logdrains.js +0 -10
  172. package/esm/sdk/logdrains.js.map +1 -1
  173. package/esm/sdk/marketplace.d.ts +31 -7
  174. package/esm/sdk/marketplace.d.ts.map +1 -1
  175. package/esm/sdk/marketplace.js +39 -9
  176. package/esm/sdk/marketplace.js.map +1 -1
  177. package/esm/sdk/sdk.d.ts +2 -2
  178. package/esm/sdk/sdk.d.ts.map +1 -1
  179. package/esm/sdk/sdk.js +3 -3
  180. package/esm/sdk/sdk.js.map +1 -1
  181. package/examples/README.md +26 -0
  182. package/examples/package-lock.json +628 -0
  183. package/examples/package.json +18 -0
  184. package/examples/projectsUpdateProject.example.ts +31 -0
  185. package/jsr.json +1 -1
  186. package/package.json +4 -4
  187. package/src/__tests__/deployments.test.ts +2 -1
  188. package/src/__tests__/domains.test.ts +2 -1
  189. package/src/__tests__/logdrains.test.ts +5 -15
  190. package/src/__tests__/marketplace.test.ts +47 -0
  191. package/src/__tests__/projects.test.ts +13 -15
  192. package/src/__tests__/rollingrelease.test.ts +5 -2
  193. package/src/funcs/deploymentsCreateDeployment.ts +2 -2
  194. package/src/funcs/{logDrainsDeleteConfigurableLogDrain.ts → marketplaceDeleteIntegrationResource.ts} +20 -19
  195. package/src/funcs/marketplaceGetIntegrationResource.ts +206 -0
  196. package/src/funcs/marketplaceGetIntegrationResources.ts +202 -0
  197. package/src/lib/config.ts +3 -3
  198. package/src/mcp-server/cli/start/command.ts +0 -13
  199. package/src/mcp-server/cli/start/impl.ts +0 -4
  200. package/src/mcp-server/mcp-server.ts +1 -1
  201. package/src/mcp-server/server.ts +11 -7
  202. package/src/mcp-server/tools/marketplaceDeleteIntegrationResource.ts +37 -0
  203. package/src/mcp-server/tools/marketplaceGetIntegrationResource.ts +39 -0
  204. package/src/mcp-server/tools/marketplaceGetIntegrationResources.ts +39 -0
  205. package/src/models/authuser.ts +7 -10
  206. package/src/models/canceldeploymentop.ts +607 -2
  207. package/src/models/createdeploymentop.ts +855 -289
  208. package/src/models/createprojectop.ts +159 -46
  209. package/src/models/createwebhookop.ts +2 -0
  210. package/src/models/deleteintegrationresourceop.ts +72 -0
  211. package/src/models/getconfigurationop.ts +1 -1
  212. package/src/models/getdeploymentop.ts +620 -3
  213. package/src/models/getdeploymentsop.ts +8 -4
  214. package/src/models/getedgeconfigbackupop.ts +41 -24
  215. package/src/models/getintegrationresourceop.ts +561 -0
  216. package/src/models/getintegrationresourcesop.ts +642 -0
  217. package/src/models/getprojectsop.ts +4 -4
  218. package/src/models/getrollingreleasebillingstatusop.ts +31 -15
  219. package/src/models/getteamaccessrequestop.ts +1 -1
  220. package/src/models/getv9projectsidornamecustomenvironmentsop.ts +1 -1
  221. package/src/models/getwebhookop.ts +1 -0
  222. package/src/models/getwebhooksop.ts +3 -0
  223. package/src/models/importresourceop.ts +27 -35
  224. package/src/models/requestaccesstoteamop.ts +1 -1
  225. package/src/models/sdkerror.ts +8 -2
  226. package/src/models/team.ts +8 -1
  227. package/src/models/teamlimited.ts +1 -1
  228. package/src/models/updateprojectdatacacheop.ts +4 -4
  229. package/src/models/updateprojectop.ts +8 -4
  230. package/src/models/updateresourcesecretsop.ts +49 -33
  231. package/src/models/userevent.ts +4781 -5205
  232. package/src/models/vercelbadrequesterror.ts +2 -3
  233. package/src/models/vercelforbiddenerror.ts +2 -3
  234. package/src/models/vercelnotfounderror.ts +2 -3
  235. package/src/models/vercelratelimiterror.ts +2 -3
  236. package/src/sdk/logdrains.ts +0 -19
  237. package/src/sdk/marketplace.ts +80 -17
  238. package/src/sdk/sdk.ts +5 -5
  239. package/vercel-spec.json +1641 -828
  240. package/esm/funcs/logDrainsDeleteConfigurableLogDrain.d.ts.map +0 -1
  241. package/esm/funcs/logDrainsDeleteConfigurableLogDrain.js.map +0 -1
  242. package/esm/mcp-server/tools/logDrainsDeleteConfigurableLogDrain.d.ts +0 -7
  243. package/esm/mcp-server/tools/logDrainsDeleteConfigurableLogDrain.d.ts.map +0 -1
  244. package/esm/mcp-server/tools/logDrainsDeleteConfigurableLogDrain.js +0 -27
  245. package/esm/mcp-server/tools/logDrainsDeleteConfigurableLogDrain.js.map +0 -1
  246. package/esm/models/deleteconfigurablelogdrainop.d.ts +0 -39
  247. package/esm/models/deleteconfigurablelogdrainop.d.ts.map +0 -1
  248. package/esm/models/deleteconfigurablelogdrainop.js +0 -35
  249. package/esm/models/deleteconfigurablelogdrainop.js.map +0 -1
  250. package/src/mcp-server/tools/logDrainsDeleteConfigurableLogDrain.ts +0 -37
  251. package/src/models/deleteconfigurablelogdrainop.ts +0 -83
@@ -0,0 +1,310 @@
1
+ import * as z from "zod";
2
+ import { ClosedEnum } from "../types/enums.js";
3
+ import { Result as SafeParseResult } from "../types/fp.js";
4
+ import { SDKValidationError } from "./sdkvalidationerror.js";
5
+ export type GetIntegrationResourcesRequest = {
6
+ integrationConfigurationId: string;
7
+ };
8
+ /**
9
+ * The current status of the resource
10
+ */
11
+ export declare const GetIntegrationResourcesStatus: {
12
+ readonly Ready: "ready";
13
+ readonly Pending: "pending";
14
+ readonly Suspended: "suspended";
15
+ readonly Resumed: "resumed";
16
+ readonly Uninstalled: "uninstalled";
17
+ readonly Error: "error";
18
+ };
19
+ /**
20
+ * The current status of the resource
21
+ */
22
+ export type GetIntegrationResourcesStatus = ClosedEnum<typeof GetIntegrationResourcesStatus>;
23
+ export type GetIntegrationResourcesExperimentation = {
24
+ edgeConfigSyncingEnabled?: boolean | undefined;
25
+ edgeConfigId?: string | undefined;
26
+ edgeConfigTokenId?: string | undefined;
27
+ };
28
+ /**
29
+ * Any settings provided for the resource to support its product's protocols
30
+ */
31
+ export type GetIntegrationResourcesProtocolSettings = {
32
+ experimentation?: GetIntegrationResourcesExperimentation | undefined;
33
+ };
34
+ export declare const GetIntegrationResourcesLevel: {
35
+ readonly Error: "error";
36
+ readonly Info: "info";
37
+ readonly Warn: "warn";
38
+ };
39
+ export type GetIntegrationResourcesLevel = ClosedEnum<typeof GetIntegrationResourcesLevel>;
40
+ /**
41
+ * The notification, if set, displayed to the user when viewing the resource in Vercel
42
+ */
43
+ export type GetIntegrationResourcesNotification = {
44
+ level: GetIntegrationResourcesLevel;
45
+ title: string;
46
+ message?: string | undefined;
47
+ href?: string | undefined;
48
+ };
49
+ export type GetIntegrationResourcesMetadata = string | number | boolean | Array<string> | Array<number>;
50
+ export type Resources = {
51
+ /**
52
+ * The ID provided by the partner for the given resource
53
+ */
54
+ partnerId: string;
55
+ /**
56
+ * The ID assigned by Vercel for the given resource
57
+ */
58
+ internalId: string;
59
+ /**
60
+ * The name of the resource as it is recorded in Vercel
61
+ */
62
+ name: string;
63
+ /**
64
+ * The current status of the resource
65
+ */
66
+ status?: GetIntegrationResourcesStatus | undefined;
67
+ /**
68
+ * The ID of the product the resource is derived from
69
+ */
70
+ productId: string;
71
+ /**
72
+ * Any settings provided for the resource to support its product's protocols
73
+ */
74
+ protocolSettings?: GetIntegrationResourcesProtocolSettings | undefined;
75
+ /**
76
+ * The notification, if set, displayed to the user when viewing the resource in Vercel
77
+ */
78
+ notification?: GetIntegrationResourcesNotification | undefined;
79
+ /**
80
+ * The ID of the billing plan the resource is subscribed to, if applicable
81
+ */
82
+ billingPlanId?: string | undefined;
83
+ /**
84
+ * The configured metadata for the resource as defined by its product's Metadata Schema
85
+ */
86
+ metadata?: {
87
+ [k: string]: string | number | boolean | Array<string> | Array<number>;
88
+ } | undefined;
89
+ };
90
+ export type GetIntegrationResourcesResponseBody = {
91
+ resources: Array<Resources>;
92
+ };
93
+ /** @internal */
94
+ export declare const GetIntegrationResourcesRequest$inboundSchema: z.ZodType<GetIntegrationResourcesRequest, z.ZodTypeDef, unknown>;
95
+ /** @internal */
96
+ export type GetIntegrationResourcesRequest$Outbound = {
97
+ integrationConfigurationId: string;
98
+ };
99
+ /** @internal */
100
+ export declare const GetIntegrationResourcesRequest$outboundSchema: z.ZodType<GetIntegrationResourcesRequest$Outbound, z.ZodTypeDef, GetIntegrationResourcesRequest>;
101
+ /**
102
+ * @internal
103
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
104
+ */
105
+ export declare namespace GetIntegrationResourcesRequest$ {
106
+ /** @deprecated use `GetIntegrationResourcesRequest$inboundSchema` instead. */
107
+ const inboundSchema: z.ZodType<GetIntegrationResourcesRequest, z.ZodTypeDef, unknown>;
108
+ /** @deprecated use `GetIntegrationResourcesRequest$outboundSchema` instead. */
109
+ const outboundSchema: z.ZodType<GetIntegrationResourcesRequest$Outbound, z.ZodTypeDef, GetIntegrationResourcesRequest>;
110
+ /** @deprecated use `GetIntegrationResourcesRequest$Outbound` instead. */
111
+ type Outbound = GetIntegrationResourcesRequest$Outbound;
112
+ }
113
+ export declare function getIntegrationResourcesRequestToJSON(getIntegrationResourcesRequest: GetIntegrationResourcesRequest): string;
114
+ export declare function getIntegrationResourcesRequestFromJSON(jsonString: string): SafeParseResult<GetIntegrationResourcesRequest, SDKValidationError>;
115
+ /** @internal */
116
+ export declare const GetIntegrationResourcesStatus$inboundSchema: z.ZodNativeEnum<typeof GetIntegrationResourcesStatus>;
117
+ /** @internal */
118
+ export declare const GetIntegrationResourcesStatus$outboundSchema: z.ZodNativeEnum<typeof GetIntegrationResourcesStatus>;
119
+ /**
120
+ * @internal
121
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
122
+ */
123
+ export declare namespace GetIntegrationResourcesStatus$ {
124
+ /** @deprecated use `GetIntegrationResourcesStatus$inboundSchema` instead. */
125
+ const inboundSchema: z.ZodNativeEnum<{
126
+ readonly Ready: "ready";
127
+ readonly Pending: "pending";
128
+ readonly Suspended: "suspended";
129
+ readonly Resumed: "resumed";
130
+ readonly Uninstalled: "uninstalled";
131
+ readonly Error: "error";
132
+ }>;
133
+ /** @deprecated use `GetIntegrationResourcesStatus$outboundSchema` instead. */
134
+ const outboundSchema: z.ZodNativeEnum<{
135
+ readonly Ready: "ready";
136
+ readonly Pending: "pending";
137
+ readonly Suspended: "suspended";
138
+ readonly Resumed: "resumed";
139
+ readonly Uninstalled: "uninstalled";
140
+ readonly Error: "error";
141
+ }>;
142
+ }
143
+ /** @internal */
144
+ export declare const GetIntegrationResourcesExperimentation$inboundSchema: z.ZodType<GetIntegrationResourcesExperimentation, z.ZodTypeDef, unknown>;
145
+ /** @internal */
146
+ export type GetIntegrationResourcesExperimentation$Outbound = {
147
+ edgeConfigSyncingEnabled?: boolean | undefined;
148
+ edgeConfigId?: string | undefined;
149
+ edgeConfigTokenId?: string | undefined;
150
+ };
151
+ /** @internal */
152
+ export declare const GetIntegrationResourcesExperimentation$outboundSchema: z.ZodType<GetIntegrationResourcesExperimentation$Outbound, z.ZodTypeDef, GetIntegrationResourcesExperimentation>;
153
+ /**
154
+ * @internal
155
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
156
+ */
157
+ export declare namespace GetIntegrationResourcesExperimentation$ {
158
+ /** @deprecated use `GetIntegrationResourcesExperimentation$inboundSchema` instead. */
159
+ const inboundSchema: z.ZodType<GetIntegrationResourcesExperimentation, z.ZodTypeDef, unknown>;
160
+ /** @deprecated use `GetIntegrationResourcesExperimentation$outboundSchema` instead. */
161
+ const outboundSchema: z.ZodType<GetIntegrationResourcesExperimentation$Outbound, z.ZodTypeDef, GetIntegrationResourcesExperimentation>;
162
+ /** @deprecated use `GetIntegrationResourcesExperimentation$Outbound` instead. */
163
+ type Outbound = GetIntegrationResourcesExperimentation$Outbound;
164
+ }
165
+ export declare function getIntegrationResourcesExperimentationToJSON(getIntegrationResourcesExperimentation: GetIntegrationResourcesExperimentation): string;
166
+ export declare function getIntegrationResourcesExperimentationFromJSON(jsonString: string): SafeParseResult<GetIntegrationResourcesExperimentation, SDKValidationError>;
167
+ /** @internal */
168
+ export declare const GetIntegrationResourcesProtocolSettings$inboundSchema: z.ZodType<GetIntegrationResourcesProtocolSettings, z.ZodTypeDef, unknown>;
169
+ /** @internal */
170
+ export type GetIntegrationResourcesProtocolSettings$Outbound = {
171
+ experimentation?: GetIntegrationResourcesExperimentation$Outbound | undefined;
172
+ };
173
+ /** @internal */
174
+ export declare const GetIntegrationResourcesProtocolSettings$outboundSchema: z.ZodType<GetIntegrationResourcesProtocolSettings$Outbound, z.ZodTypeDef, GetIntegrationResourcesProtocolSettings>;
175
+ /**
176
+ * @internal
177
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
178
+ */
179
+ export declare namespace GetIntegrationResourcesProtocolSettings$ {
180
+ /** @deprecated use `GetIntegrationResourcesProtocolSettings$inboundSchema` instead. */
181
+ const inboundSchema: z.ZodType<GetIntegrationResourcesProtocolSettings, z.ZodTypeDef, unknown>;
182
+ /** @deprecated use `GetIntegrationResourcesProtocolSettings$outboundSchema` instead. */
183
+ const outboundSchema: z.ZodType<GetIntegrationResourcesProtocolSettings$Outbound, z.ZodTypeDef, GetIntegrationResourcesProtocolSettings>;
184
+ /** @deprecated use `GetIntegrationResourcesProtocolSettings$Outbound` instead. */
185
+ type Outbound = GetIntegrationResourcesProtocolSettings$Outbound;
186
+ }
187
+ export declare function getIntegrationResourcesProtocolSettingsToJSON(getIntegrationResourcesProtocolSettings: GetIntegrationResourcesProtocolSettings): string;
188
+ export declare function getIntegrationResourcesProtocolSettingsFromJSON(jsonString: string): SafeParseResult<GetIntegrationResourcesProtocolSettings, SDKValidationError>;
189
+ /** @internal */
190
+ export declare const GetIntegrationResourcesLevel$inboundSchema: z.ZodNativeEnum<typeof GetIntegrationResourcesLevel>;
191
+ /** @internal */
192
+ export declare const GetIntegrationResourcesLevel$outboundSchema: z.ZodNativeEnum<typeof GetIntegrationResourcesLevel>;
193
+ /**
194
+ * @internal
195
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
196
+ */
197
+ export declare namespace GetIntegrationResourcesLevel$ {
198
+ /** @deprecated use `GetIntegrationResourcesLevel$inboundSchema` instead. */
199
+ const inboundSchema: z.ZodNativeEnum<{
200
+ readonly Error: "error";
201
+ readonly Info: "info";
202
+ readonly Warn: "warn";
203
+ }>;
204
+ /** @deprecated use `GetIntegrationResourcesLevel$outboundSchema` instead. */
205
+ const outboundSchema: z.ZodNativeEnum<{
206
+ readonly Error: "error";
207
+ readonly Info: "info";
208
+ readonly Warn: "warn";
209
+ }>;
210
+ }
211
+ /** @internal */
212
+ export declare const GetIntegrationResourcesNotification$inboundSchema: z.ZodType<GetIntegrationResourcesNotification, z.ZodTypeDef, unknown>;
213
+ /** @internal */
214
+ export type GetIntegrationResourcesNotification$Outbound = {
215
+ level: string;
216
+ title: string;
217
+ message?: string | undefined;
218
+ href?: string | undefined;
219
+ };
220
+ /** @internal */
221
+ export declare const GetIntegrationResourcesNotification$outboundSchema: z.ZodType<GetIntegrationResourcesNotification$Outbound, z.ZodTypeDef, GetIntegrationResourcesNotification>;
222
+ /**
223
+ * @internal
224
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
225
+ */
226
+ export declare namespace GetIntegrationResourcesNotification$ {
227
+ /** @deprecated use `GetIntegrationResourcesNotification$inboundSchema` instead. */
228
+ const inboundSchema: z.ZodType<GetIntegrationResourcesNotification, z.ZodTypeDef, unknown>;
229
+ /** @deprecated use `GetIntegrationResourcesNotification$outboundSchema` instead. */
230
+ const outboundSchema: z.ZodType<GetIntegrationResourcesNotification$Outbound, z.ZodTypeDef, GetIntegrationResourcesNotification>;
231
+ /** @deprecated use `GetIntegrationResourcesNotification$Outbound` instead. */
232
+ type Outbound = GetIntegrationResourcesNotification$Outbound;
233
+ }
234
+ export declare function getIntegrationResourcesNotificationToJSON(getIntegrationResourcesNotification: GetIntegrationResourcesNotification): string;
235
+ export declare function getIntegrationResourcesNotificationFromJSON(jsonString: string): SafeParseResult<GetIntegrationResourcesNotification, SDKValidationError>;
236
+ /** @internal */
237
+ export declare const GetIntegrationResourcesMetadata$inboundSchema: z.ZodType<GetIntegrationResourcesMetadata, z.ZodTypeDef, unknown>;
238
+ /** @internal */
239
+ export type GetIntegrationResourcesMetadata$Outbound = string | number | boolean | Array<string> | Array<number>;
240
+ /** @internal */
241
+ export declare const GetIntegrationResourcesMetadata$outboundSchema: z.ZodType<GetIntegrationResourcesMetadata$Outbound, z.ZodTypeDef, GetIntegrationResourcesMetadata>;
242
+ /**
243
+ * @internal
244
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
245
+ */
246
+ export declare namespace GetIntegrationResourcesMetadata$ {
247
+ /** @deprecated use `GetIntegrationResourcesMetadata$inboundSchema` instead. */
248
+ const inboundSchema: z.ZodType<GetIntegrationResourcesMetadata, z.ZodTypeDef, unknown>;
249
+ /** @deprecated use `GetIntegrationResourcesMetadata$outboundSchema` instead. */
250
+ const outboundSchema: z.ZodType<GetIntegrationResourcesMetadata$Outbound, z.ZodTypeDef, GetIntegrationResourcesMetadata>;
251
+ /** @deprecated use `GetIntegrationResourcesMetadata$Outbound` instead. */
252
+ type Outbound = GetIntegrationResourcesMetadata$Outbound;
253
+ }
254
+ export declare function getIntegrationResourcesMetadataToJSON(getIntegrationResourcesMetadata: GetIntegrationResourcesMetadata): string;
255
+ export declare function getIntegrationResourcesMetadataFromJSON(jsonString: string): SafeParseResult<GetIntegrationResourcesMetadata, SDKValidationError>;
256
+ /** @internal */
257
+ export declare const Resources$inboundSchema: z.ZodType<Resources, z.ZodTypeDef, unknown>;
258
+ /** @internal */
259
+ export type Resources$Outbound = {
260
+ partnerId: string;
261
+ internalId: string;
262
+ name: string;
263
+ status?: string | undefined;
264
+ productId: string;
265
+ protocolSettings?: GetIntegrationResourcesProtocolSettings$Outbound | undefined;
266
+ notification?: GetIntegrationResourcesNotification$Outbound | undefined;
267
+ billingPlanId?: string | undefined;
268
+ metadata?: {
269
+ [k: string]: string | number | boolean | Array<string> | Array<number>;
270
+ } | undefined;
271
+ };
272
+ /** @internal */
273
+ export declare const Resources$outboundSchema: z.ZodType<Resources$Outbound, z.ZodTypeDef, Resources>;
274
+ /**
275
+ * @internal
276
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
277
+ */
278
+ export declare namespace Resources$ {
279
+ /** @deprecated use `Resources$inboundSchema` instead. */
280
+ const inboundSchema: z.ZodType<Resources, z.ZodTypeDef, unknown>;
281
+ /** @deprecated use `Resources$outboundSchema` instead. */
282
+ const outboundSchema: z.ZodType<Resources$Outbound, z.ZodTypeDef, Resources>;
283
+ /** @deprecated use `Resources$Outbound` instead. */
284
+ type Outbound = Resources$Outbound;
285
+ }
286
+ export declare function resourcesToJSON(resources: Resources): string;
287
+ export declare function resourcesFromJSON(jsonString: string): SafeParseResult<Resources, SDKValidationError>;
288
+ /** @internal */
289
+ export declare const GetIntegrationResourcesResponseBody$inboundSchema: z.ZodType<GetIntegrationResourcesResponseBody, z.ZodTypeDef, unknown>;
290
+ /** @internal */
291
+ export type GetIntegrationResourcesResponseBody$Outbound = {
292
+ resources: Array<Resources$Outbound>;
293
+ };
294
+ /** @internal */
295
+ export declare const GetIntegrationResourcesResponseBody$outboundSchema: z.ZodType<GetIntegrationResourcesResponseBody$Outbound, z.ZodTypeDef, GetIntegrationResourcesResponseBody>;
296
+ /**
297
+ * @internal
298
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
299
+ */
300
+ export declare namespace GetIntegrationResourcesResponseBody$ {
301
+ /** @deprecated use `GetIntegrationResourcesResponseBody$inboundSchema` instead. */
302
+ const inboundSchema: z.ZodType<GetIntegrationResourcesResponseBody, z.ZodTypeDef, unknown>;
303
+ /** @deprecated use `GetIntegrationResourcesResponseBody$outboundSchema` instead. */
304
+ const outboundSchema: z.ZodType<GetIntegrationResourcesResponseBody$Outbound, z.ZodTypeDef, GetIntegrationResourcesResponseBody>;
305
+ /** @deprecated use `GetIntegrationResourcesResponseBody$Outbound` instead. */
306
+ type Outbound = GetIntegrationResourcesResponseBody$Outbound;
307
+ }
308
+ export declare function getIntegrationResourcesResponseBodyToJSON(getIntegrationResourcesResponseBody: GetIntegrationResourcesResponseBody): string;
309
+ export declare function getIntegrationResourcesResponseBodyFromJSON(jsonString: string): SafeParseResult<GetIntegrationResourcesResponseBody, SDKValidationError>;
310
+ //# sourceMappingURL=getintegrationresourcesop.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getintegrationresourcesop.d.ts","sourceRoot":"","sources":["../../src/models/getintegrationresourcesop.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,275 @@
1
+ /*
2
+ * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
3
+ */
4
+ import * as z from "zod";
5
+ import { safeParse } from "../lib/schemas.js";
6
+ /**
7
+ * The current status of the resource
8
+ */
9
+ export const GetIntegrationResourcesStatus = {
10
+ Ready: "ready",
11
+ Pending: "pending",
12
+ Suspended: "suspended",
13
+ Resumed: "resumed",
14
+ Uninstalled: "uninstalled",
15
+ Error: "error",
16
+ };
17
+ export const GetIntegrationResourcesLevel = {
18
+ Error: "error",
19
+ Info: "info",
20
+ Warn: "warn",
21
+ };
22
+ /** @internal */
23
+ export const GetIntegrationResourcesRequest$inboundSchema = z.object({
24
+ integrationConfigurationId: z.string(),
25
+ });
26
+ /** @internal */
27
+ export const GetIntegrationResourcesRequest$outboundSchema = z.object({
28
+ integrationConfigurationId: z.string(),
29
+ });
30
+ /**
31
+ * @internal
32
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
33
+ */
34
+ export var GetIntegrationResourcesRequest$;
35
+ (function (GetIntegrationResourcesRequest$) {
36
+ /** @deprecated use `GetIntegrationResourcesRequest$inboundSchema` instead. */
37
+ GetIntegrationResourcesRequest$.inboundSchema = GetIntegrationResourcesRequest$inboundSchema;
38
+ /** @deprecated use `GetIntegrationResourcesRequest$outboundSchema` instead. */
39
+ GetIntegrationResourcesRequest$.outboundSchema = GetIntegrationResourcesRequest$outboundSchema;
40
+ })(GetIntegrationResourcesRequest$ || (GetIntegrationResourcesRequest$ = {}));
41
+ export function getIntegrationResourcesRequestToJSON(getIntegrationResourcesRequest) {
42
+ return JSON.stringify(GetIntegrationResourcesRequest$outboundSchema.parse(getIntegrationResourcesRequest));
43
+ }
44
+ export function getIntegrationResourcesRequestFromJSON(jsonString) {
45
+ return safeParse(jsonString, (x) => GetIntegrationResourcesRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetIntegrationResourcesRequest' from JSON`);
46
+ }
47
+ /** @internal */
48
+ export const GetIntegrationResourcesStatus$inboundSchema = z.nativeEnum(GetIntegrationResourcesStatus);
49
+ /** @internal */
50
+ export const GetIntegrationResourcesStatus$outboundSchema = GetIntegrationResourcesStatus$inboundSchema;
51
+ /**
52
+ * @internal
53
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
54
+ */
55
+ export var GetIntegrationResourcesStatus$;
56
+ (function (GetIntegrationResourcesStatus$) {
57
+ /** @deprecated use `GetIntegrationResourcesStatus$inboundSchema` instead. */
58
+ GetIntegrationResourcesStatus$.inboundSchema = GetIntegrationResourcesStatus$inboundSchema;
59
+ /** @deprecated use `GetIntegrationResourcesStatus$outboundSchema` instead. */
60
+ GetIntegrationResourcesStatus$.outboundSchema = GetIntegrationResourcesStatus$outboundSchema;
61
+ })(GetIntegrationResourcesStatus$ || (GetIntegrationResourcesStatus$ = {}));
62
+ /** @internal */
63
+ export const GetIntegrationResourcesExperimentation$inboundSchema = z.object({
64
+ edgeConfigSyncingEnabled: z.boolean().optional(),
65
+ edgeConfigId: z.string().optional(),
66
+ edgeConfigTokenId: z.string().optional(),
67
+ });
68
+ /** @internal */
69
+ export const GetIntegrationResourcesExperimentation$outboundSchema = z.object({
70
+ edgeConfigSyncingEnabled: z.boolean().optional(),
71
+ edgeConfigId: z.string().optional(),
72
+ edgeConfigTokenId: z.string().optional(),
73
+ });
74
+ /**
75
+ * @internal
76
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
77
+ */
78
+ export var GetIntegrationResourcesExperimentation$;
79
+ (function (GetIntegrationResourcesExperimentation$) {
80
+ /** @deprecated use `GetIntegrationResourcesExperimentation$inboundSchema` instead. */
81
+ GetIntegrationResourcesExperimentation$.inboundSchema = GetIntegrationResourcesExperimentation$inboundSchema;
82
+ /** @deprecated use `GetIntegrationResourcesExperimentation$outboundSchema` instead. */
83
+ GetIntegrationResourcesExperimentation$.outboundSchema = GetIntegrationResourcesExperimentation$outboundSchema;
84
+ })(GetIntegrationResourcesExperimentation$ || (GetIntegrationResourcesExperimentation$ = {}));
85
+ export function getIntegrationResourcesExperimentationToJSON(getIntegrationResourcesExperimentation) {
86
+ return JSON.stringify(GetIntegrationResourcesExperimentation$outboundSchema.parse(getIntegrationResourcesExperimentation));
87
+ }
88
+ export function getIntegrationResourcesExperimentationFromJSON(jsonString) {
89
+ return safeParse(jsonString, (x) => GetIntegrationResourcesExperimentation$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetIntegrationResourcesExperimentation' from JSON`);
90
+ }
91
+ /** @internal */
92
+ export const GetIntegrationResourcesProtocolSettings$inboundSchema = z.object({
93
+ experimentation: z.lazy(() => GetIntegrationResourcesExperimentation$inboundSchema).optional(),
94
+ });
95
+ /** @internal */
96
+ export const GetIntegrationResourcesProtocolSettings$outboundSchema = z.object({
97
+ experimentation: z.lazy(() => GetIntegrationResourcesExperimentation$outboundSchema).optional(),
98
+ });
99
+ /**
100
+ * @internal
101
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
102
+ */
103
+ export var GetIntegrationResourcesProtocolSettings$;
104
+ (function (GetIntegrationResourcesProtocolSettings$) {
105
+ /** @deprecated use `GetIntegrationResourcesProtocolSettings$inboundSchema` instead. */
106
+ GetIntegrationResourcesProtocolSettings$.inboundSchema = GetIntegrationResourcesProtocolSettings$inboundSchema;
107
+ /** @deprecated use `GetIntegrationResourcesProtocolSettings$outboundSchema` instead. */
108
+ GetIntegrationResourcesProtocolSettings$.outboundSchema = GetIntegrationResourcesProtocolSettings$outboundSchema;
109
+ })(GetIntegrationResourcesProtocolSettings$ || (GetIntegrationResourcesProtocolSettings$ = {}));
110
+ export function getIntegrationResourcesProtocolSettingsToJSON(getIntegrationResourcesProtocolSettings) {
111
+ return JSON.stringify(GetIntegrationResourcesProtocolSettings$outboundSchema.parse(getIntegrationResourcesProtocolSettings));
112
+ }
113
+ export function getIntegrationResourcesProtocolSettingsFromJSON(jsonString) {
114
+ return safeParse(jsonString, (x) => GetIntegrationResourcesProtocolSettings$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetIntegrationResourcesProtocolSettings' from JSON`);
115
+ }
116
+ /** @internal */
117
+ export const GetIntegrationResourcesLevel$inboundSchema = z.nativeEnum(GetIntegrationResourcesLevel);
118
+ /** @internal */
119
+ export const GetIntegrationResourcesLevel$outboundSchema = GetIntegrationResourcesLevel$inboundSchema;
120
+ /**
121
+ * @internal
122
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
123
+ */
124
+ export var GetIntegrationResourcesLevel$;
125
+ (function (GetIntegrationResourcesLevel$) {
126
+ /** @deprecated use `GetIntegrationResourcesLevel$inboundSchema` instead. */
127
+ GetIntegrationResourcesLevel$.inboundSchema = GetIntegrationResourcesLevel$inboundSchema;
128
+ /** @deprecated use `GetIntegrationResourcesLevel$outboundSchema` instead. */
129
+ GetIntegrationResourcesLevel$.outboundSchema = GetIntegrationResourcesLevel$outboundSchema;
130
+ })(GetIntegrationResourcesLevel$ || (GetIntegrationResourcesLevel$ = {}));
131
+ /** @internal */
132
+ export const GetIntegrationResourcesNotification$inboundSchema = z.object({
133
+ level: GetIntegrationResourcesLevel$inboundSchema,
134
+ title: z.string(),
135
+ message: z.string().optional(),
136
+ href: z.string().optional(),
137
+ });
138
+ /** @internal */
139
+ export const GetIntegrationResourcesNotification$outboundSchema = z.object({
140
+ level: GetIntegrationResourcesLevel$outboundSchema,
141
+ title: z.string(),
142
+ message: z.string().optional(),
143
+ href: z.string().optional(),
144
+ });
145
+ /**
146
+ * @internal
147
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
148
+ */
149
+ export var GetIntegrationResourcesNotification$;
150
+ (function (GetIntegrationResourcesNotification$) {
151
+ /** @deprecated use `GetIntegrationResourcesNotification$inboundSchema` instead. */
152
+ GetIntegrationResourcesNotification$.inboundSchema = GetIntegrationResourcesNotification$inboundSchema;
153
+ /** @deprecated use `GetIntegrationResourcesNotification$outboundSchema` instead. */
154
+ GetIntegrationResourcesNotification$.outboundSchema = GetIntegrationResourcesNotification$outboundSchema;
155
+ })(GetIntegrationResourcesNotification$ || (GetIntegrationResourcesNotification$ = {}));
156
+ export function getIntegrationResourcesNotificationToJSON(getIntegrationResourcesNotification) {
157
+ return JSON.stringify(GetIntegrationResourcesNotification$outboundSchema.parse(getIntegrationResourcesNotification));
158
+ }
159
+ export function getIntegrationResourcesNotificationFromJSON(jsonString) {
160
+ return safeParse(jsonString, (x) => GetIntegrationResourcesNotification$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetIntegrationResourcesNotification' from JSON`);
161
+ }
162
+ /** @internal */
163
+ export const GetIntegrationResourcesMetadata$inboundSchema = z.union([
164
+ z.string(),
165
+ z.number(),
166
+ z.boolean(),
167
+ z.array(z.string()),
168
+ z.array(z.number()),
169
+ ]);
170
+ /** @internal */
171
+ export const GetIntegrationResourcesMetadata$outboundSchema = z.union([
172
+ z.string(),
173
+ z.number(),
174
+ z.boolean(),
175
+ z.array(z.string()),
176
+ z.array(z.number()),
177
+ ]);
178
+ /**
179
+ * @internal
180
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
181
+ */
182
+ export var GetIntegrationResourcesMetadata$;
183
+ (function (GetIntegrationResourcesMetadata$) {
184
+ /** @deprecated use `GetIntegrationResourcesMetadata$inboundSchema` instead. */
185
+ GetIntegrationResourcesMetadata$.inboundSchema = GetIntegrationResourcesMetadata$inboundSchema;
186
+ /** @deprecated use `GetIntegrationResourcesMetadata$outboundSchema` instead. */
187
+ GetIntegrationResourcesMetadata$.outboundSchema = GetIntegrationResourcesMetadata$outboundSchema;
188
+ })(GetIntegrationResourcesMetadata$ || (GetIntegrationResourcesMetadata$ = {}));
189
+ export function getIntegrationResourcesMetadataToJSON(getIntegrationResourcesMetadata) {
190
+ return JSON.stringify(GetIntegrationResourcesMetadata$outboundSchema.parse(getIntegrationResourcesMetadata));
191
+ }
192
+ export function getIntegrationResourcesMetadataFromJSON(jsonString) {
193
+ return safeParse(jsonString, (x) => GetIntegrationResourcesMetadata$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetIntegrationResourcesMetadata' from JSON`);
194
+ }
195
+ /** @internal */
196
+ export const Resources$inboundSchema = z.object({
197
+ partnerId: z.string(),
198
+ internalId: z.string(),
199
+ name: z.string(),
200
+ status: GetIntegrationResourcesStatus$inboundSchema.optional(),
201
+ productId: z.string(),
202
+ protocolSettings: z.lazy(() => GetIntegrationResourcesProtocolSettings$inboundSchema).optional(),
203
+ notification: z.lazy(() => GetIntegrationResourcesNotification$inboundSchema)
204
+ .optional(),
205
+ billingPlanId: z.string().optional(),
206
+ metadata: z.record(z.union([
207
+ z.string(),
208
+ z.number(),
209
+ z.boolean(),
210
+ z.array(z.string()),
211
+ z.array(z.number()),
212
+ ])).optional(),
213
+ });
214
+ /** @internal */
215
+ export const Resources$outboundSchema = z.object({
216
+ partnerId: z.string(),
217
+ internalId: z.string(),
218
+ name: z.string(),
219
+ status: GetIntegrationResourcesStatus$outboundSchema.optional(),
220
+ productId: z.string(),
221
+ protocolSettings: z.lazy(() => GetIntegrationResourcesProtocolSettings$outboundSchema).optional(),
222
+ notification: z.lazy(() => GetIntegrationResourcesNotification$outboundSchema)
223
+ .optional(),
224
+ billingPlanId: z.string().optional(),
225
+ metadata: z.record(z.union([
226
+ z.string(),
227
+ z.number(),
228
+ z.boolean(),
229
+ z.array(z.string()),
230
+ z.array(z.number()),
231
+ ])).optional(),
232
+ });
233
+ /**
234
+ * @internal
235
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
236
+ */
237
+ export var Resources$;
238
+ (function (Resources$) {
239
+ /** @deprecated use `Resources$inboundSchema` instead. */
240
+ Resources$.inboundSchema = Resources$inboundSchema;
241
+ /** @deprecated use `Resources$outboundSchema` instead. */
242
+ Resources$.outboundSchema = Resources$outboundSchema;
243
+ })(Resources$ || (Resources$ = {}));
244
+ export function resourcesToJSON(resources) {
245
+ return JSON.stringify(Resources$outboundSchema.parse(resources));
246
+ }
247
+ export function resourcesFromJSON(jsonString) {
248
+ return safeParse(jsonString, (x) => Resources$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Resources' from JSON`);
249
+ }
250
+ /** @internal */
251
+ export const GetIntegrationResourcesResponseBody$inboundSchema = z.object({
252
+ resources: z.array(z.lazy(() => Resources$inboundSchema)),
253
+ });
254
+ /** @internal */
255
+ export const GetIntegrationResourcesResponseBody$outboundSchema = z.object({
256
+ resources: z.array(z.lazy(() => Resources$outboundSchema)),
257
+ });
258
+ /**
259
+ * @internal
260
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
261
+ */
262
+ export var GetIntegrationResourcesResponseBody$;
263
+ (function (GetIntegrationResourcesResponseBody$) {
264
+ /** @deprecated use `GetIntegrationResourcesResponseBody$inboundSchema` instead. */
265
+ GetIntegrationResourcesResponseBody$.inboundSchema = GetIntegrationResourcesResponseBody$inboundSchema;
266
+ /** @deprecated use `GetIntegrationResourcesResponseBody$outboundSchema` instead. */
267
+ GetIntegrationResourcesResponseBody$.outboundSchema = GetIntegrationResourcesResponseBody$outboundSchema;
268
+ })(GetIntegrationResourcesResponseBody$ || (GetIntegrationResourcesResponseBody$ = {}));
269
+ export function getIntegrationResourcesResponseBodyToJSON(getIntegrationResourcesResponseBody) {
270
+ return JSON.stringify(GetIntegrationResourcesResponseBody$outboundSchema.parse(getIntegrationResourcesResponseBody));
271
+ }
272
+ export function getIntegrationResourcesResponseBodyFromJSON(jsonString) {
273
+ return safeParse(jsonString, (x) => GetIntegrationResourcesResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetIntegrationResourcesResponseBody' from JSON`);
274
+ }
275
+ //# sourceMappingURL=getintegrationresourcesop.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getintegrationresourcesop.js","sourceRoot":"","sources":["../../src/models/getintegrationresourcesop.ts"],"names":[],"mappings":"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"}