@vercel/sdk 1.8.4 → 1.8.6
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.
- package/README.md +11 -3
- package/bin/mcp-server.js +2697 -1100
- package/bin/mcp-server.js.map +41 -29
- package/docs/sdks/marketplace/README.md +310 -78
- package/docs/sdks/rollingrelease/README.md +80 -0
- package/esm/__tests__/marketplace.test.js +53 -0
- package/esm/__tests__/marketplace.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +15 -13
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +23 -0
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/funcs/domainsCheckDomainStatus.js +2 -2
- package/esm/funcs/domainsCheckDomainStatus.js.map +1 -1
- package/esm/funcs/marketplaceDeleteResource.d.ts +20 -0
- package/esm/funcs/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceDeleteResource.js +91 -0
- package/esm/funcs/marketplaceDeleteResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResource.d.ts +20 -0
- package/esm/funcs/marketplaceGetResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResource.js +90 -0
- package/esm/funcs/marketplaceGetResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResources.d.ts +20 -0
- package/esm/funcs/marketplaceGetResources.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResources.js +86 -0
- package/esm/funcs/marketplaceGetResources.js.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts +20 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js +94 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +10 -2
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js +27 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts +7 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js +28 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- package/esm/models/canceldeploymentop.d.ts +427 -25
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +465 -25
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +459 -114
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +503 -118
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +139 -137
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +137 -135
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +6 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +2 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/deleteresourceop.d.ts +31 -0
- package/esm/models/deleteresourceop.d.ts.map +1 -0
- package/esm/models/deleteresourceop.js +33 -0
- package/esm/models/deleteresourceop.js.map +1 -0
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +410 -8
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +443 -8
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getedgeconfigbackupop.d.ts +15 -15
- package/esm/models/getedgeconfigbackupop.d.ts.map +1 -1
- package/esm/models/getedgeconfigbackupop.js +15 -15
- package/esm/models/getedgeconfigbackupop.js.map +1 -1
- package/esm/models/getfirewallconfigop.d.ts +2 -0
- package/esm/models/getfirewallconfigop.d.ts.map +1 -1
- package/esm/models/getfirewallconfigop.js +2 -0
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/getmemberop.d.ts +9 -0
- package/esm/models/getmemberop.d.ts.map +1 -1
- package/esm/models/getmemberop.js +3 -0
- package/esm/models/getmemberop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +2 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +2 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getresourceop.d.ts +293 -0
- package/esm/models/getresourceop.d.ts.map +1 -0
- package/esm/models/getresourceop.js +250 -0
- package/esm/models/getresourceop.js.map +1 -0
- package/esm/models/getresourcesop.d.ts +310 -0
- package/esm/models/getresourcesop.d.ts.map +1 -0
- package/esm/models/getresourcesop.js +278 -0
- package/esm/models/getresourcesop.js.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts +284 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.js +267 -0
- package/esm/models/getrollingreleasebillingstatusop.js.map +1 -0
- package/esm/models/getwebhookop.d.ts +3 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +1 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +6 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +2 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +15 -15
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +17 -15
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/putfirewallconfigop.d.ts +4 -0
- package/esm/models/putfirewallconfigop.d.ts.map +1 -1
- package/esm/models/putfirewallconfigop.js +4 -0
- package/esm/models/putfirewallconfigop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/updatefirewallconfigop.d.ts +36 -4
- package/esm/models/updatefirewallconfigop.d.ts.map +1 -1
- package/esm/models/updatefirewallconfigop.js +33 -0
- package/esm/models/updatefirewallconfigop.js.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.d.ts +2 -0
- package/esm/models/updateintegrationdeploymentactionop.d.ts.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.js +2 -0
- package/esm/models/updateintegrationdeploymentactionop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +2 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +2 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +139 -137
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +137 -135
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +15 -15
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +15 -17
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/userevent.d.ts +5 -0
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +2 -0
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/marketplace.d.ts +31 -7
- package/esm/sdk/marketplace.d.ts.map +1 -1
- package/esm/sdk/marketplace.js +39 -9
- package/esm/sdk/marketplace.js.map +1 -1
- package/esm/sdk/rollingrelease.d.ts +8 -0
- package/esm/sdk/rollingrelease.d.ts.map +1 -1
- package/esm/sdk/rollingrelease.js +10 -0
- package/esm/sdk/rollingrelease.js.map +1 -1
- package/esm/types/constdatetime.js +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/marketplace.test.ts +62 -0
- package/src/__tests__/projects.test.ts +15 -13
- package/src/__tests__/rollingrelease.test.ts +26 -0
- package/src/funcs/domainsCheckDomainStatus.ts +2 -2
- package/src/funcs/marketplaceDeleteResource.ts +205 -0
- package/src/funcs/marketplaceGetResource.ts +206 -0
- package/src/funcs/marketplaceGetResources.ts +202 -0
- package/src/funcs/rollingReleaseGetRollingReleaseBillingStatus.ts +208 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +10 -2
- package/src/mcp-server/tools/marketplaceDeleteResource.ts +35 -0
- package/src/mcp-server/tools/marketplaceGetResource.ts +37 -0
- package/src/mcp-server/tools/marketplaceGetResources.ts +37 -0
- package/src/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.ts +40 -0
- package/src/models/canceldeploymentop.ts +1071 -48
- package/src/models/createdeploymentop.ts +1064 -236
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +267 -263
- package/src/models/createwebhookop.ts +2 -0
- package/src/models/deleteresourceop.ts +70 -0
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/getdeploymentop.ts +1011 -16
- package/src/models/getedgeconfigbackupop.ts +41 -24
- package/src/models/getfirewallconfigop.ts +4 -0
- package/src/models/getmemberop.ts +9 -0
- package/src/models/getprojectsop.ts +4 -0
- package/src/models/getresourceop.ts +545 -0
- package/src/models/getresourcesop.ts +604 -0
- package/src/models/getrollingreleasebillingstatusop.ts +614 -0
- package/src/models/getwebhookop.ts +1 -0
- package/src/models/getwebhooksop.ts +2 -0
- package/src/models/importresourceop.ts +27 -35
- package/src/models/putfirewallconfigop.ts +8 -0
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updatefirewallconfigop.ts +73 -0
- package/src/models/updateintegrationdeploymentactionop.ts +4 -0
- package/src/models/updateprojectdatacacheop.ts +4 -0
- package/src/models/updateprojectop.ts +267 -263
- package/src/models/updateresourcesecretsop.ts +49 -33
- package/src/models/userevent.ts +7 -0
- package/src/sdk/marketplace.ts +80 -17
- package/src/sdk/rollingrelease.ts +22 -0
- package/src/types/constdatetime.ts +1 -1
- package/vercel-spec.json +2321 -931
|
@@ -0,0 +1,293 @@
|
|
|
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 GetResourceRequest = {
|
|
6
|
+
/**
|
|
7
|
+
* The ID of the integration configuration (installation) the resource belongs to
|
|
8
|
+
*/
|
|
9
|
+
integrationConfigurationId: string;
|
|
10
|
+
/**
|
|
11
|
+
* The ID provided by the 3rd party provider for the given resource
|
|
12
|
+
*/
|
|
13
|
+
resourceId: string;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* The current status of the resource
|
|
17
|
+
*/
|
|
18
|
+
export declare const GetResourceStatus: {
|
|
19
|
+
readonly Ready: "ready";
|
|
20
|
+
readonly Pending: "pending";
|
|
21
|
+
readonly Suspended: "suspended";
|
|
22
|
+
readonly Resumed: "resumed";
|
|
23
|
+
readonly Uninstalled: "uninstalled";
|
|
24
|
+
readonly Error: "error";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* The current status of the resource
|
|
28
|
+
*/
|
|
29
|
+
export type GetResourceStatus = ClosedEnum<typeof GetResourceStatus>;
|
|
30
|
+
export type Experimentation = {
|
|
31
|
+
edgeConfigSyncingEnabled?: boolean | undefined;
|
|
32
|
+
edgeConfigId?: string | undefined;
|
|
33
|
+
edgeConfigTokenId?: string | undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Any settings provided for the resource to support its product's protocols
|
|
37
|
+
*/
|
|
38
|
+
export type ProtocolSettings = {
|
|
39
|
+
experimentation?: Experimentation | undefined;
|
|
40
|
+
};
|
|
41
|
+
export declare const GetResourceLevel: {
|
|
42
|
+
readonly Error: "error";
|
|
43
|
+
readonly Info: "info";
|
|
44
|
+
readonly Warn: "warn";
|
|
45
|
+
};
|
|
46
|
+
export type GetResourceLevel = ClosedEnum<typeof GetResourceLevel>;
|
|
47
|
+
/**
|
|
48
|
+
* The notification, if set, displayed to the user when viewing the resource in Vercel
|
|
49
|
+
*/
|
|
50
|
+
export type GetResourceNotification = {
|
|
51
|
+
level: GetResourceLevel;
|
|
52
|
+
title: string;
|
|
53
|
+
message?: string | undefined;
|
|
54
|
+
href?: string | undefined;
|
|
55
|
+
};
|
|
56
|
+
export type Metadata = string | number | boolean | Array<string> | Array<number>;
|
|
57
|
+
export type GetResourceResponseBody = {
|
|
58
|
+
/**
|
|
59
|
+
* The ID provided by the 3rd party provider for the given resource
|
|
60
|
+
*/
|
|
61
|
+
id: string;
|
|
62
|
+
/**
|
|
63
|
+
* The ID assigned by Vercel for the given resource
|
|
64
|
+
*/
|
|
65
|
+
internalId: string;
|
|
66
|
+
/**
|
|
67
|
+
* The name of the resource as it is recorded in Vercel
|
|
68
|
+
*/
|
|
69
|
+
name: string;
|
|
70
|
+
/**
|
|
71
|
+
* The current status of the resource
|
|
72
|
+
*/
|
|
73
|
+
status?: GetResourceStatus | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* The ID of the product the resource is derived from
|
|
76
|
+
*/
|
|
77
|
+
productId: string;
|
|
78
|
+
/**
|
|
79
|
+
* Any settings provided for the resource to support its product's protocols
|
|
80
|
+
*/
|
|
81
|
+
protocolSettings?: ProtocolSettings | undefined;
|
|
82
|
+
/**
|
|
83
|
+
* The notification, if set, displayed to the user when viewing the resource in Vercel
|
|
84
|
+
*/
|
|
85
|
+
notification?: GetResourceNotification | undefined;
|
|
86
|
+
/**
|
|
87
|
+
* The ID of the billing plan the resource is subscribed to, if applicable
|
|
88
|
+
*/
|
|
89
|
+
billingPlanId?: string | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* The configured metadata for the resource as defined by its product's Metadata Schema
|
|
92
|
+
*/
|
|
93
|
+
metadata?: {
|
|
94
|
+
[k: string]: string | number | boolean | Array<string> | Array<number>;
|
|
95
|
+
} | undefined;
|
|
96
|
+
};
|
|
97
|
+
/** @internal */
|
|
98
|
+
export declare const GetResourceRequest$inboundSchema: z.ZodType<GetResourceRequest, z.ZodTypeDef, unknown>;
|
|
99
|
+
/** @internal */
|
|
100
|
+
export type GetResourceRequest$Outbound = {
|
|
101
|
+
integrationConfigurationId: string;
|
|
102
|
+
resourceId: string;
|
|
103
|
+
};
|
|
104
|
+
/** @internal */
|
|
105
|
+
export declare const GetResourceRequest$outboundSchema: z.ZodType<GetResourceRequest$Outbound, z.ZodTypeDef, GetResourceRequest>;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
109
|
+
*/
|
|
110
|
+
export declare namespace GetResourceRequest$ {
|
|
111
|
+
/** @deprecated use `GetResourceRequest$inboundSchema` instead. */
|
|
112
|
+
const inboundSchema: z.ZodType<GetResourceRequest, z.ZodTypeDef, unknown>;
|
|
113
|
+
/** @deprecated use `GetResourceRequest$outboundSchema` instead. */
|
|
114
|
+
const outboundSchema: z.ZodType<GetResourceRequest$Outbound, z.ZodTypeDef, GetResourceRequest>;
|
|
115
|
+
/** @deprecated use `GetResourceRequest$Outbound` instead. */
|
|
116
|
+
type Outbound = GetResourceRequest$Outbound;
|
|
117
|
+
}
|
|
118
|
+
export declare function getResourceRequestToJSON(getResourceRequest: GetResourceRequest): string;
|
|
119
|
+
export declare function getResourceRequestFromJSON(jsonString: string): SafeParseResult<GetResourceRequest, SDKValidationError>;
|
|
120
|
+
/** @internal */
|
|
121
|
+
export declare const GetResourceStatus$inboundSchema: z.ZodNativeEnum<typeof GetResourceStatus>;
|
|
122
|
+
/** @internal */
|
|
123
|
+
export declare const GetResourceStatus$outboundSchema: z.ZodNativeEnum<typeof GetResourceStatus>;
|
|
124
|
+
/**
|
|
125
|
+
* @internal
|
|
126
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
127
|
+
*/
|
|
128
|
+
export declare namespace GetResourceStatus$ {
|
|
129
|
+
/** @deprecated use `GetResourceStatus$inboundSchema` instead. */
|
|
130
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
131
|
+
readonly Ready: "ready";
|
|
132
|
+
readonly Pending: "pending";
|
|
133
|
+
readonly Suspended: "suspended";
|
|
134
|
+
readonly Resumed: "resumed";
|
|
135
|
+
readonly Uninstalled: "uninstalled";
|
|
136
|
+
readonly Error: "error";
|
|
137
|
+
}>;
|
|
138
|
+
/** @deprecated use `GetResourceStatus$outboundSchema` instead. */
|
|
139
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
140
|
+
readonly Ready: "ready";
|
|
141
|
+
readonly Pending: "pending";
|
|
142
|
+
readonly Suspended: "suspended";
|
|
143
|
+
readonly Resumed: "resumed";
|
|
144
|
+
readonly Uninstalled: "uninstalled";
|
|
145
|
+
readonly Error: "error";
|
|
146
|
+
}>;
|
|
147
|
+
}
|
|
148
|
+
/** @internal */
|
|
149
|
+
export declare const Experimentation$inboundSchema: z.ZodType<Experimentation, z.ZodTypeDef, unknown>;
|
|
150
|
+
/** @internal */
|
|
151
|
+
export type Experimentation$Outbound = {
|
|
152
|
+
edgeConfigSyncingEnabled?: boolean | undefined;
|
|
153
|
+
edgeConfigId?: string | undefined;
|
|
154
|
+
edgeConfigTokenId?: string | undefined;
|
|
155
|
+
};
|
|
156
|
+
/** @internal */
|
|
157
|
+
export declare const Experimentation$outboundSchema: z.ZodType<Experimentation$Outbound, z.ZodTypeDef, Experimentation>;
|
|
158
|
+
/**
|
|
159
|
+
* @internal
|
|
160
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
161
|
+
*/
|
|
162
|
+
export declare namespace Experimentation$ {
|
|
163
|
+
/** @deprecated use `Experimentation$inboundSchema` instead. */
|
|
164
|
+
const inboundSchema: z.ZodType<Experimentation, z.ZodTypeDef, unknown>;
|
|
165
|
+
/** @deprecated use `Experimentation$outboundSchema` instead. */
|
|
166
|
+
const outboundSchema: z.ZodType<Experimentation$Outbound, z.ZodTypeDef, Experimentation>;
|
|
167
|
+
/** @deprecated use `Experimentation$Outbound` instead. */
|
|
168
|
+
type Outbound = Experimentation$Outbound;
|
|
169
|
+
}
|
|
170
|
+
export declare function experimentationToJSON(experimentation: Experimentation): string;
|
|
171
|
+
export declare function experimentationFromJSON(jsonString: string): SafeParseResult<Experimentation, SDKValidationError>;
|
|
172
|
+
/** @internal */
|
|
173
|
+
export declare const ProtocolSettings$inboundSchema: z.ZodType<ProtocolSettings, z.ZodTypeDef, unknown>;
|
|
174
|
+
/** @internal */
|
|
175
|
+
export type ProtocolSettings$Outbound = {
|
|
176
|
+
experimentation?: Experimentation$Outbound | undefined;
|
|
177
|
+
};
|
|
178
|
+
/** @internal */
|
|
179
|
+
export declare const ProtocolSettings$outboundSchema: z.ZodType<ProtocolSettings$Outbound, z.ZodTypeDef, ProtocolSettings>;
|
|
180
|
+
/**
|
|
181
|
+
* @internal
|
|
182
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
183
|
+
*/
|
|
184
|
+
export declare namespace ProtocolSettings$ {
|
|
185
|
+
/** @deprecated use `ProtocolSettings$inboundSchema` instead. */
|
|
186
|
+
const inboundSchema: z.ZodType<ProtocolSettings, z.ZodTypeDef, unknown>;
|
|
187
|
+
/** @deprecated use `ProtocolSettings$outboundSchema` instead. */
|
|
188
|
+
const outboundSchema: z.ZodType<ProtocolSettings$Outbound, z.ZodTypeDef, ProtocolSettings>;
|
|
189
|
+
/** @deprecated use `ProtocolSettings$Outbound` instead. */
|
|
190
|
+
type Outbound = ProtocolSettings$Outbound;
|
|
191
|
+
}
|
|
192
|
+
export declare function protocolSettingsToJSON(protocolSettings: ProtocolSettings): string;
|
|
193
|
+
export declare function protocolSettingsFromJSON(jsonString: string): SafeParseResult<ProtocolSettings, SDKValidationError>;
|
|
194
|
+
/** @internal */
|
|
195
|
+
export declare const GetResourceLevel$inboundSchema: z.ZodNativeEnum<typeof GetResourceLevel>;
|
|
196
|
+
/** @internal */
|
|
197
|
+
export declare const GetResourceLevel$outboundSchema: z.ZodNativeEnum<typeof GetResourceLevel>;
|
|
198
|
+
/**
|
|
199
|
+
* @internal
|
|
200
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
201
|
+
*/
|
|
202
|
+
export declare namespace GetResourceLevel$ {
|
|
203
|
+
/** @deprecated use `GetResourceLevel$inboundSchema` instead. */
|
|
204
|
+
const inboundSchema: z.ZodNativeEnum<{
|
|
205
|
+
readonly Error: "error";
|
|
206
|
+
readonly Info: "info";
|
|
207
|
+
readonly Warn: "warn";
|
|
208
|
+
}>;
|
|
209
|
+
/** @deprecated use `GetResourceLevel$outboundSchema` instead. */
|
|
210
|
+
const outboundSchema: z.ZodNativeEnum<{
|
|
211
|
+
readonly Error: "error";
|
|
212
|
+
readonly Info: "info";
|
|
213
|
+
readonly Warn: "warn";
|
|
214
|
+
}>;
|
|
215
|
+
}
|
|
216
|
+
/** @internal */
|
|
217
|
+
export declare const GetResourceNotification$inboundSchema: z.ZodType<GetResourceNotification, z.ZodTypeDef, unknown>;
|
|
218
|
+
/** @internal */
|
|
219
|
+
export type GetResourceNotification$Outbound = {
|
|
220
|
+
level: string;
|
|
221
|
+
title: string;
|
|
222
|
+
message?: string | undefined;
|
|
223
|
+
href?: string | undefined;
|
|
224
|
+
};
|
|
225
|
+
/** @internal */
|
|
226
|
+
export declare const GetResourceNotification$outboundSchema: z.ZodType<GetResourceNotification$Outbound, z.ZodTypeDef, GetResourceNotification>;
|
|
227
|
+
/**
|
|
228
|
+
* @internal
|
|
229
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
230
|
+
*/
|
|
231
|
+
export declare namespace GetResourceNotification$ {
|
|
232
|
+
/** @deprecated use `GetResourceNotification$inboundSchema` instead. */
|
|
233
|
+
const inboundSchema: z.ZodType<GetResourceNotification, z.ZodTypeDef, unknown>;
|
|
234
|
+
/** @deprecated use `GetResourceNotification$outboundSchema` instead. */
|
|
235
|
+
const outboundSchema: z.ZodType<GetResourceNotification$Outbound, z.ZodTypeDef, GetResourceNotification>;
|
|
236
|
+
/** @deprecated use `GetResourceNotification$Outbound` instead. */
|
|
237
|
+
type Outbound = GetResourceNotification$Outbound;
|
|
238
|
+
}
|
|
239
|
+
export declare function getResourceNotificationToJSON(getResourceNotification: GetResourceNotification): string;
|
|
240
|
+
export declare function getResourceNotificationFromJSON(jsonString: string): SafeParseResult<GetResourceNotification, SDKValidationError>;
|
|
241
|
+
/** @internal */
|
|
242
|
+
export declare const Metadata$inboundSchema: z.ZodType<Metadata, z.ZodTypeDef, unknown>;
|
|
243
|
+
/** @internal */
|
|
244
|
+
export type Metadata$Outbound = string | number | boolean | Array<string> | Array<number>;
|
|
245
|
+
/** @internal */
|
|
246
|
+
export declare const Metadata$outboundSchema: z.ZodType<Metadata$Outbound, z.ZodTypeDef, Metadata>;
|
|
247
|
+
/**
|
|
248
|
+
* @internal
|
|
249
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
250
|
+
*/
|
|
251
|
+
export declare namespace Metadata$ {
|
|
252
|
+
/** @deprecated use `Metadata$inboundSchema` instead. */
|
|
253
|
+
const inboundSchema: z.ZodType<Metadata, z.ZodTypeDef, unknown>;
|
|
254
|
+
/** @deprecated use `Metadata$outboundSchema` instead. */
|
|
255
|
+
const outboundSchema: z.ZodType<Metadata$Outbound, z.ZodTypeDef, Metadata>;
|
|
256
|
+
/** @deprecated use `Metadata$Outbound` instead. */
|
|
257
|
+
type Outbound = Metadata$Outbound;
|
|
258
|
+
}
|
|
259
|
+
export declare function metadataToJSON(metadata: Metadata): string;
|
|
260
|
+
export declare function metadataFromJSON(jsonString: string): SafeParseResult<Metadata, SDKValidationError>;
|
|
261
|
+
/** @internal */
|
|
262
|
+
export declare const GetResourceResponseBody$inboundSchema: z.ZodType<GetResourceResponseBody, z.ZodTypeDef, unknown>;
|
|
263
|
+
/** @internal */
|
|
264
|
+
export type GetResourceResponseBody$Outbound = {
|
|
265
|
+
id: string;
|
|
266
|
+
internalId: string;
|
|
267
|
+
name: string;
|
|
268
|
+
status?: string | undefined;
|
|
269
|
+
productId: string;
|
|
270
|
+
protocolSettings?: ProtocolSettings$Outbound | undefined;
|
|
271
|
+
notification?: GetResourceNotification$Outbound | undefined;
|
|
272
|
+
billingPlanId?: string | undefined;
|
|
273
|
+
metadata?: {
|
|
274
|
+
[k: string]: string | number | boolean | Array<string> | Array<number>;
|
|
275
|
+
} | undefined;
|
|
276
|
+
};
|
|
277
|
+
/** @internal */
|
|
278
|
+
export declare const GetResourceResponseBody$outboundSchema: z.ZodType<GetResourceResponseBody$Outbound, z.ZodTypeDef, GetResourceResponseBody>;
|
|
279
|
+
/**
|
|
280
|
+
* @internal
|
|
281
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
282
|
+
*/
|
|
283
|
+
export declare namespace GetResourceResponseBody$ {
|
|
284
|
+
/** @deprecated use `GetResourceResponseBody$inboundSchema` instead. */
|
|
285
|
+
const inboundSchema: z.ZodType<GetResourceResponseBody, z.ZodTypeDef, unknown>;
|
|
286
|
+
/** @deprecated use `GetResourceResponseBody$outboundSchema` instead. */
|
|
287
|
+
const outboundSchema: z.ZodType<GetResourceResponseBody$Outbound, z.ZodTypeDef, GetResourceResponseBody>;
|
|
288
|
+
/** @deprecated use `GetResourceResponseBody$Outbound` instead. */
|
|
289
|
+
type Outbound = GetResourceResponseBody$Outbound;
|
|
290
|
+
}
|
|
291
|
+
export declare function getResourceResponseBodyToJSON(getResourceResponseBody: GetResourceResponseBody): string;
|
|
292
|
+
export declare function getResourceResponseBodyFromJSON(jsonString: string): SafeParseResult<GetResourceResponseBody, SDKValidationError>;
|
|
293
|
+
//# sourceMappingURL=getresourceop.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getresourceop.d.ts","sourceRoot":"","sources":["../../src/models/getresourceop.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,250 @@
|
|
|
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 GetResourceStatus = {
|
|
10
|
+
Ready: "ready",
|
|
11
|
+
Pending: "pending",
|
|
12
|
+
Suspended: "suspended",
|
|
13
|
+
Resumed: "resumed",
|
|
14
|
+
Uninstalled: "uninstalled",
|
|
15
|
+
Error: "error",
|
|
16
|
+
};
|
|
17
|
+
export const GetResourceLevel = {
|
|
18
|
+
Error: "error",
|
|
19
|
+
Info: "info",
|
|
20
|
+
Warn: "warn",
|
|
21
|
+
};
|
|
22
|
+
/** @internal */
|
|
23
|
+
export const GetResourceRequest$inboundSchema = z.object({
|
|
24
|
+
integrationConfigurationId: z.string(),
|
|
25
|
+
resourceId: z.string(),
|
|
26
|
+
});
|
|
27
|
+
/** @internal */
|
|
28
|
+
export const GetResourceRequest$outboundSchema = z.object({
|
|
29
|
+
integrationConfigurationId: z.string(),
|
|
30
|
+
resourceId: z.string(),
|
|
31
|
+
});
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
35
|
+
*/
|
|
36
|
+
export var GetResourceRequest$;
|
|
37
|
+
(function (GetResourceRequest$) {
|
|
38
|
+
/** @deprecated use `GetResourceRequest$inboundSchema` instead. */
|
|
39
|
+
GetResourceRequest$.inboundSchema = GetResourceRequest$inboundSchema;
|
|
40
|
+
/** @deprecated use `GetResourceRequest$outboundSchema` instead. */
|
|
41
|
+
GetResourceRequest$.outboundSchema = GetResourceRequest$outboundSchema;
|
|
42
|
+
})(GetResourceRequest$ || (GetResourceRequest$ = {}));
|
|
43
|
+
export function getResourceRequestToJSON(getResourceRequest) {
|
|
44
|
+
return JSON.stringify(GetResourceRequest$outboundSchema.parse(getResourceRequest));
|
|
45
|
+
}
|
|
46
|
+
export function getResourceRequestFromJSON(jsonString) {
|
|
47
|
+
return safeParse(jsonString, (x) => GetResourceRequest$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetResourceRequest' from JSON`);
|
|
48
|
+
}
|
|
49
|
+
/** @internal */
|
|
50
|
+
export const GetResourceStatus$inboundSchema = z.nativeEnum(GetResourceStatus);
|
|
51
|
+
/** @internal */
|
|
52
|
+
export const GetResourceStatus$outboundSchema = GetResourceStatus$inboundSchema;
|
|
53
|
+
/**
|
|
54
|
+
* @internal
|
|
55
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
56
|
+
*/
|
|
57
|
+
export var GetResourceStatus$;
|
|
58
|
+
(function (GetResourceStatus$) {
|
|
59
|
+
/** @deprecated use `GetResourceStatus$inboundSchema` instead. */
|
|
60
|
+
GetResourceStatus$.inboundSchema = GetResourceStatus$inboundSchema;
|
|
61
|
+
/** @deprecated use `GetResourceStatus$outboundSchema` instead. */
|
|
62
|
+
GetResourceStatus$.outboundSchema = GetResourceStatus$outboundSchema;
|
|
63
|
+
})(GetResourceStatus$ || (GetResourceStatus$ = {}));
|
|
64
|
+
/** @internal */
|
|
65
|
+
export const Experimentation$inboundSchema = z.object({
|
|
66
|
+
edgeConfigSyncingEnabled: z.boolean().optional(),
|
|
67
|
+
edgeConfigId: z.string().optional(),
|
|
68
|
+
edgeConfigTokenId: z.string().optional(),
|
|
69
|
+
});
|
|
70
|
+
/** @internal */
|
|
71
|
+
export const Experimentation$outboundSchema = z.object({
|
|
72
|
+
edgeConfigSyncingEnabled: z.boolean().optional(),
|
|
73
|
+
edgeConfigId: z.string().optional(),
|
|
74
|
+
edgeConfigTokenId: z.string().optional(),
|
|
75
|
+
});
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
79
|
+
*/
|
|
80
|
+
export var Experimentation$;
|
|
81
|
+
(function (Experimentation$) {
|
|
82
|
+
/** @deprecated use `Experimentation$inboundSchema` instead. */
|
|
83
|
+
Experimentation$.inboundSchema = Experimentation$inboundSchema;
|
|
84
|
+
/** @deprecated use `Experimentation$outboundSchema` instead. */
|
|
85
|
+
Experimentation$.outboundSchema = Experimentation$outboundSchema;
|
|
86
|
+
})(Experimentation$ || (Experimentation$ = {}));
|
|
87
|
+
export function experimentationToJSON(experimentation) {
|
|
88
|
+
return JSON.stringify(Experimentation$outboundSchema.parse(experimentation));
|
|
89
|
+
}
|
|
90
|
+
export function experimentationFromJSON(jsonString) {
|
|
91
|
+
return safeParse(jsonString, (x) => Experimentation$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Experimentation' from JSON`);
|
|
92
|
+
}
|
|
93
|
+
/** @internal */
|
|
94
|
+
export const ProtocolSettings$inboundSchema = z.object({
|
|
95
|
+
experimentation: z.lazy(() => Experimentation$inboundSchema).optional(),
|
|
96
|
+
});
|
|
97
|
+
/** @internal */
|
|
98
|
+
export const ProtocolSettings$outboundSchema = z.object({
|
|
99
|
+
experimentation: z.lazy(() => Experimentation$outboundSchema).optional(),
|
|
100
|
+
});
|
|
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 var ProtocolSettings$;
|
|
106
|
+
(function (ProtocolSettings$) {
|
|
107
|
+
/** @deprecated use `ProtocolSettings$inboundSchema` instead. */
|
|
108
|
+
ProtocolSettings$.inboundSchema = ProtocolSettings$inboundSchema;
|
|
109
|
+
/** @deprecated use `ProtocolSettings$outboundSchema` instead. */
|
|
110
|
+
ProtocolSettings$.outboundSchema = ProtocolSettings$outboundSchema;
|
|
111
|
+
})(ProtocolSettings$ || (ProtocolSettings$ = {}));
|
|
112
|
+
export function protocolSettingsToJSON(protocolSettings) {
|
|
113
|
+
return JSON.stringify(ProtocolSettings$outboundSchema.parse(protocolSettings));
|
|
114
|
+
}
|
|
115
|
+
export function protocolSettingsFromJSON(jsonString) {
|
|
116
|
+
return safeParse(jsonString, (x) => ProtocolSettings$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'ProtocolSettings' from JSON`);
|
|
117
|
+
}
|
|
118
|
+
/** @internal */
|
|
119
|
+
export const GetResourceLevel$inboundSchema = z.nativeEnum(GetResourceLevel);
|
|
120
|
+
/** @internal */
|
|
121
|
+
export const GetResourceLevel$outboundSchema = GetResourceLevel$inboundSchema;
|
|
122
|
+
/**
|
|
123
|
+
* @internal
|
|
124
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
125
|
+
*/
|
|
126
|
+
export var GetResourceLevel$;
|
|
127
|
+
(function (GetResourceLevel$) {
|
|
128
|
+
/** @deprecated use `GetResourceLevel$inboundSchema` instead. */
|
|
129
|
+
GetResourceLevel$.inboundSchema = GetResourceLevel$inboundSchema;
|
|
130
|
+
/** @deprecated use `GetResourceLevel$outboundSchema` instead. */
|
|
131
|
+
GetResourceLevel$.outboundSchema = GetResourceLevel$outboundSchema;
|
|
132
|
+
})(GetResourceLevel$ || (GetResourceLevel$ = {}));
|
|
133
|
+
/** @internal */
|
|
134
|
+
export const GetResourceNotification$inboundSchema = z.object({
|
|
135
|
+
level: GetResourceLevel$inboundSchema,
|
|
136
|
+
title: z.string(),
|
|
137
|
+
message: z.string().optional(),
|
|
138
|
+
href: z.string().optional(),
|
|
139
|
+
});
|
|
140
|
+
/** @internal */
|
|
141
|
+
export const GetResourceNotification$outboundSchema = z.object({
|
|
142
|
+
level: GetResourceLevel$outboundSchema,
|
|
143
|
+
title: z.string(),
|
|
144
|
+
message: z.string().optional(),
|
|
145
|
+
href: z.string().optional(),
|
|
146
|
+
});
|
|
147
|
+
/**
|
|
148
|
+
* @internal
|
|
149
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
150
|
+
*/
|
|
151
|
+
export var GetResourceNotification$;
|
|
152
|
+
(function (GetResourceNotification$) {
|
|
153
|
+
/** @deprecated use `GetResourceNotification$inboundSchema` instead. */
|
|
154
|
+
GetResourceNotification$.inboundSchema = GetResourceNotification$inboundSchema;
|
|
155
|
+
/** @deprecated use `GetResourceNotification$outboundSchema` instead. */
|
|
156
|
+
GetResourceNotification$.outboundSchema = GetResourceNotification$outboundSchema;
|
|
157
|
+
})(GetResourceNotification$ || (GetResourceNotification$ = {}));
|
|
158
|
+
export function getResourceNotificationToJSON(getResourceNotification) {
|
|
159
|
+
return JSON.stringify(GetResourceNotification$outboundSchema.parse(getResourceNotification));
|
|
160
|
+
}
|
|
161
|
+
export function getResourceNotificationFromJSON(jsonString) {
|
|
162
|
+
return safeParse(jsonString, (x) => GetResourceNotification$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetResourceNotification' from JSON`);
|
|
163
|
+
}
|
|
164
|
+
/** @internal */
|
|
165
|
+
export const Metadata$inboundSchema = z.union([
|
|
166
|
+
z.string(),
|
|
167
|
+
z.number(),
|
|
168
|
+
z.boolean(),
|
|
169
|
+
z.array(z.string()),
|
|
170
|
+
z.array(z.number()),
|
|
171
|
+
]);
|
|
172
|
+
/** @internal */
|
|
173
|
+
export const Metadata$outboundSchema = z.union([
|
|
174
|
+
z.string(),
|
|
175
|
+
z.number(),
|
|
176
|
+
z.boolean(),
|
|
177
|
+
z.array(z.string()),
|
|
178
|
+
z.array(z.number()),
|
|
179
|
+
]);
|
|
180
|
+
/**
|
|
181
|
+
* @internal
|
|
182
|
+
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
183
|
+
*/
|
|
184
|
+
export var Metadata$;
|
|
185
|
+
(function (Metadata$) {
|
|
186
|
+
/** @deprecated use `Metadata$inboundSchema` instead. */
|
|
187
|
+
Metadata$.inboundSchema = Metadata$inboundSchema;
|
|
188
|
+
/** @deprecated use `Metadata$outboundSchema` instead. */
|
|
189
|
+
Metadata$.outboundSchema = Metadata$outboundSchema;
|
|
190
|
+
})(Metadata$ || (Metadata$ = {}));
|
|
191
|
+
export function metadataToJSON(metadata) {
|
|
192
|
+
return JSON.stringify(Metadata$outboundSchema.parse(metadata));
|
|
193
|
+
}
|
|
194
|
+
export function metadataFromJSON(jsonString) {
|
|
195
|
+
return safeParse(jsonString, (x) => Metadata$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'Metadata' from JSON`);
|
|
196
|
+
}
|
|
197
|
+
/** @internal */
|
|
198
|
+
export const GetResourceResponseBody$inboundSchema = z.object({
|
|
199
|
+
id: z.string(),
|
|
200
|
+
internalId: z.string(),
|
|
201
|
+
name: z.string(),
|
|
202
|
+
status: GetResourceStatus$inboundSchema.optional(),
|
|
203
|
+
productId: z.string(),
|
|
204
|
+
protocolSettings: z.lazy(() => ProtocolSettings$inboundSchema).optional(),
|
|
205
|
+
notification: z.lazy(() => GetResourceNotification$inboundSchema).optional(),
|
|
206
|
+
billingPlanId: z.string().optional(),
|
|
207
|
+
metadata: z.record(z.union([
|
|
208
|
+
z.string(),
|
|
209
|
+
z.number(),
|
|
210
|
+
z.boolean(),
|
|
211
|
+
z.array(z.string()),
|
|
212
|
+
z.array(z.number()),
|
|
213
|
+
])).optional(),
|
|
214
|
+
});
|
|
215
|
+
/** @internal */
|
|
216
|
+
export const GetResourceResponseBody$outboundSchema = z.object({
|
|
217
|
+
id: z.string(),
|
|
218
|
+
internalId: z.string(),
|
|
219
|
+
name: z.string(),
|
|
220
|
+
status: GetResourceStatus$outboundSchema.optional(),
|
|
221
|
+
productId: z.string(),
|
|
222
|
+
protocolSettings: z.lazy(() => ProtocolSettings$outboundSchema).optional(),
|
|
223
|
+
notification: z.lazy(() => GetResourceNotification$outboundSchema).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 GetResourceResponseBody$;
|
|
238
|
+
(function (GetResourceResponseBody$) {
|
|
239
|
+
/** @deprecated use `GetResourceResponseBody$inboundSchema` instead. */
|
|
240
|
+
GetResourceResponseBody$.inboundSchema = GetResourceResponseBody$inboundSchema;
|
|
241
|
+
/** @deprecated use `GetResourceResponseBody$outboundSchema` instead. */
|
|
242
|
+
GetResourceResponseBody$.outboundSchema = GetResourceResponseBody$outboundSchema;
|
|
243
|
+
})(GetResourceResponseBody$ || (GetResourceResponseBody$ = {}));
|
|
244
|
+
export function getResourceResponseBodyToJSON(getResourceResponseBody) {
|
|
245
|
+
return JSON.stringify(GetResourceResponseBody$outboundSchema.parse(getResourceResponseBody));
|
|
246
|
+
}
|
|
247
|
+
export function getResourceResponseBodyFromJSON(jsonString) {
|
|
248
|
+
return safeParse(jsonString, (x) => GetResourceResponseBody$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'GetResourceResponseBody' from JSON`);
|
|
249
|
+
}
|
|
250
|
+
//# sourceMappingURL=getresourceop.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getresourceop.js","sourceRoot":"","sources":["../../src/models/getresourceop.ts"],"names":[],"mappings":"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"}
|