@apollo-deploy/schemas 1.0.0 → 1.1.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.
- package/dist/definitions/apps/index.d.ts +3 -3
- package/dist/definitions/apps/index.d.ts.map +1 -1
- package/dist/definitions/apps/index.js +3 -3
- package/dist/definitions/apps/index.js.map +1 -1
- package/dist/definitions/apps/request.schema.d.ts +0 -21
- package/dist/definitions/apps/request.schema.d.ts.map +1 -1
- package/dist/definitions/apps/request.schema.js +0 -19
- package/dist/definitions/apps/request.schema.js.map +1 -1
- package/dist/definitions/apps/response.schema.d.ts +0 -44
- package/dist/definitions/apps/response.schema.d.ts.map +1 -1
- package/dist/definitions/apps/response.schema.js +0 -24
- package/dist/definitions/apps/response.schema.js.map +1 -1
- package/dist/definitions/artifacts/request.schema.d.ts +42 -0
- package/dist/definitions/artifacts/request.schema.d.ts.map +1 -1
- package/dist/definitions/artifacts/request.schema.js +14 -0
- package/dist/definitions/artifacts/request.schema.js.map +1 -1
- package/dist/definitions/audit-log/domain.schema.d.ts +3 -3
- package/dist/definitions/audit-log/request.schema.d.ts +6 -6
- package/dist/definitions/index.d.ts +9 -2
- package/dist/definitions/index.d.ts.map +1 -1
- package/dist/definitions/index.js +15 -2
- package/dist/definitions/index.js.map +1 -1
- package/dist/definitions/integrations/api.schema.d.ts +69 -69
- package/dist/definitions/integrations/api.schema.d.ts.map +1 -1
- package/dist/definitions/integrations/api.schema.js +37 -37
- package/dist/definitions/integrations/api.schema.js.map +1 -1
- package/dist/definitions/integrations/domain.schema.d.ts +6 -6
- package/dist/definitions/integrations/response.schema.d.ts +3 -3
- package/dist/definitions/marketplace/domain.schema.d.ts +13 -13
- package/dist/definitions/marketplace/request.schema.d.ts +3 -3
- package/dist/definitions/marketplace/response.schema.d.ts +21 -21
- package/dist/definitions/signals/domain.schema.d.ts +626 -0
- package/dist/definitions/signals/domain.schema.d.ts.map +1 -0
- package/dist/definitions/signals/domain.schema.js +248 -0
- package/dist/definitions/signals/domain.schema.js.map +1 -0
- package/dist/definitions/signals/index.d.ts +9 -0
- package/dist/definitions/signals/index.d.ts.map +1 -0
- package/dist/definitions/signals/index.js +12 -0
- package/dist/definitions/signals/index.js.map +1 -0
- package/dist/definitions/signals/request.schema.d.ts +118 -0
- package/dist/definitions/signals/request.schema.d.ts.map +1 -0
- package/dist/definitions/signals/request.schema.js +80 -0
- package/dist/definitions/signals/request.schema.js.map +1 -0
- package/dist/definitions/signals/response.schema.d.ts +1073 -0
- package/dist/definitions/signals/response.schema.d.ts.map +1 -0
- package/dist/definitions/signals/response.schema.js +85 -0
- package/dist/definitions/signals/response.schema.js.map +1 -0
- package/package.json +1 -1
|
@@ -12,13 +12,13 @@ import { IdentifierSchema, UUIDSchema, TimestampSchema, NullableTimestampSchema,
|
|
|
12
12
|
// Shared
|
|
13
13
|
// =============================================================================
|
|
14
14
|
/** @deprecated Use endpoint-specific flat response schemas instead. */
|
|
15
|
-
export const
|
|
15
|
+
export const SuccessResponseSchema = z.object({
|
|
16
16
|
success: z.literal(true),
|
|
17
17
|
});
|
|
18
18
|
// =============================================================================
|
|
19
19
|
// Marketplace
|
|
20
20
|
// =============================================================================
|
|
21
|
-
export const
|
|
21
|
+
export const ListAvailableQuerySchema = z.object({
|
|
22
22
|
category: z.string().optional(),
|
|
23
23
|
capability: z.string().optional(),
|
|
24
24
|
});
|
|
@@ -61,7 +61,7 @@ const ConfigFieldSchema = z.object({
|
|
|
61
61
|
/** If true, the client should fetch options dynamically (e.g. repo list). */
|
|
62
62
|
dynamic: z.boolean().optional(),
|
|
63
63
|
});
|
|
64
|
-
export const
|
|
64
|
+
export const ListAvailableResponseSchema = z.object({
|
|
65
65
|
integrations: z.array(z.object({
|
|
66
66
|
key: IdentifierSchema,
|
|
67
67
|
id: IdentifierSchema,
|
|
@@ -83,7 +83,7 @@ export const IntegrationsListAvailableResponseSchema = z.object({
|
|
|
83
83
|
configSchema: z.array(ConfigFieldSchema).optional(),
|
|
84
84
|
})),
|
|
85
85
|
});
|
|
86
|
-
export const
|
|
86
|
+
export const ListInstalledResponseSchema = z.object({
|
|
87
87
|
integrations: z.array(z.object({
|
|
88
88
|
installationId: IdentifierSchema,
|
|
89
89
|
integrationKey: IdentifierSchema,
|
|
@@ -96,50 +96,50 @@ export const IntegrationsListInstalledResponseSchema = z.object({
|
|
|
96
96
|
// =============================================================================
|
|
97
97
|
// Installation
|
|
98
98
|
// =============================================================================
|
|
99
|
-
export const
|
|
99
|
+
export const ApiIntegrationKeyParamSchema = z.object({
|
|
100
100
|
integrationKey: IdentifierSchema,
|
|
101
101
|
});
|
|
102
|
-
export const
|
|
102
|
+
export const InstallBodySchema = z.object({
|
|
103
103
|
integrationKey: IdentifierSchema,
|
|
104
104
|
});
|
|
105
|
-
export const
|
|
105
|
+
export const InstallResponseSchema = z.object({
|
|
106
106
|
installationId: IdentifierSchema,
|
|
107
107
|
integrationKey: IdentifierSchema,
|
|
108
108
|
status: z.string(),
|
|
109
109
|
installedAt: TimestampSchema,
|
|
110
110
|
webhookUrl: z.string().url().nullable().optional(),
|
|
111
111
|
});
|
|
112
|
-
export const
|
|
112
|
+
export const UninstallResponseSchema = z.object({
|
|
113
113
|
uninstalled: z.literal(true),
|
|
114
114
|
});
|
|
115
115
|
// =============================================================================
|
|
116
116
|
// OAuth Connections
|
|
117
117
|
// =============================================================================
|
|
118
|
-
export const
|
|
118
|
+
export const OAuthInitBodySchema = z.object({
|
|
119
119
|
integrationKey: IdentifierSchema,
|
|
120
120
|
});
|
|
121
|
-
export const
|
|
121
|
+
export const OAuthInitResponseSchema = z.object({
|
|
122
122
|
redirectUrl: z.string().url(),
|
|
123
123
|
});
|
|
124
|
-
export const
|
|
124
|
+
export const OAuthCallbackBodySchema = z.object({
|
|
125
125
|
integrationKey: IdentifierSchema,
|
|
126
126
|
code: IdentifierSchema,
|
|
127
127
|
state: IdentifierSchema,
|
|
128
128
|
});
|
|
129
|
-
export const
|
|
129
|
+
export const OAuthCallbackResponseSchema = z.object({
|
|
130
130
|
connectionId: IdentifierSchema,
|
|
131
131
|
integrationKey: IdentifierSchema,
|
|
132
132
|
displayName: z.string().nullable(),
|
|
133
133
|
isNew: z.boolean(),
|
|
134
134
|
webhookUrl: z.string().url().nullable().optional(),
|
|
135
135
|
});
|
|
136
|
-
export const
|
|
136
|
+
export const ConnectionIdParamSchema = z.object({
|
|
137
137
|
connectionId: UUIDSchema,
|
|
138
138
|
});
|
|
139
|
-
export const
|
|
139
|
+
export const ProviderParamSchema = z.object({
|
|
140
140
|
provider: IdentifierSchema,
|
|
141
141
|
});
|
|
142
|
-
export const
|
|
142
|
+
export const ConnectionListResponseSchema = z.object({
|
|
143
143
|
connections: z.array(z.object({
|
|
144
144
|
id: IdentifierSchema,
|
|
145
145
|
provider: IdentifierSchema,
|
|
@@ -151,20 +151,20 @@ export const IntegrationsConnectionListResponseSchema = z.object({
|
|
|
151
151
|
lastRefreshedAt: NullableTimestampSchema,
|
|
152
152
|
})),
|
|
153
153
|
});
|
|
154
|
-
export const
|
|
154
|
+
export const RevokeConnectionResponseSchema = z.object({
|
|
155
155
|
revoked: z.literal(true),
|
|
156
156
|
});
|
|
157
|
-
export const
|
|
157
|
+
export const RefreshConnectionResponseSchema = z.object({
|
|
158
158
|
refreshed: z.literal(true),
|
|
159
159
|
});
|
|
160
160
|
// =============================================================================
|
|
161
161
|
// Credential Form Submission
|
|
162
162
|
// =============================================================================
|
|
163
|
-
export const
|
|
163
|
+
export const CredentialSubmitBodySchema = z.object({
|
|
164
164
|
integrationKey: IdentifierSchema,
|
|
165
165
|
credentials: z.record(z.string(), z.unknown()),
|
|
166
166
|
});
|
|
167
|
-
export const
|
|
167
|
+
export const CredentialSubmitResponseSchema = z.object({
|
|
168
168
|
connectionId: IdentifierSchema,
|
|
169
169
|
integrationKey: IdentifierSchema,
|
|
170
170
|
displayName: z.string().nullable(),
|
|
@@ -173,13 +173,13 @@ export const IntegrationsCredentialSubmitResponseSchema = z.object({
|
|
|
173
173
|
// =============================================================================
|
|
174
174
|
// App Configs
|
|
175
175
|
// =============================================================================
|
|
176
|
-
export const
|
|
176
|
+
export const AppIdParamSchema = z.object({
|
|
177
177
|
appId: UUIDSchema,
|
|
178
178
|
});
|
|
179
|
-
export const
|
|
179
|
+
export const ConfigIdParamSchema = z.object({
|
|
180
180
|
configId: UUIDSchema,
|
|
181
181
|
});
|
|
182
|
-
export const
|
|
182
|
+
export const CreateConfigBodySchema = z.object({
|
|
183
183
|
connectedAccountId: UUIDSchema,
|
|
184
184
|
settings: z.record(z.string(), z.unknown()).optional().default({}),
|
|
185
185
|
notificationRules: z
|
|
@@ -187,14 +187,14 @@ export const IntegrationsCreateConfigBodySchema = z.object({
|
|
|
187
187
|
.optional()
|
|
188
188
|
.default([]),
|
|
189
189
|
});
|
|
190
|
-
export const
|
|
190
|
+
export const UpdateConfigBodySchema = z.object({
|
|
191
191
|
settings: z.record(z.string(), z.unknown()).optional(),
|
|
192
192
|
notificationRules: z
|
|
193
193
|
.array(z.record(z.string(), z.unknown()))
|
|
194
194
|
.optional(),
|
|
195
195
|
enabled: z.boolean().optional(),
|
|
196
196
|
});
|
|
197
|
-
export const
|
|
197
|
+
export const ConfigResponseSchema = z.object({
|
|
198
198
|
id: IdentifierSchema,
|
|
199
199
|
appId: IdentifierSchema,
|
|
200
200
|
connectedAccountId: IdentifierSchema,
|
|
@@ -204,28 +204,28 @@ export const IntegrationsConfigResponseSchema = z.object({
|
|
|
204
204
|
createdAt: TimestampSchema,
|
|
205
205
|
updatedAt: TimestampSchema,
|
|
206
206
|
});
|
|
207
|
-
export const
|
|
208
|
-
configs: z.array(
|
|
207
|
+
export const ConfigListResponseSchema = z.object({
|
|
208
|
+
configs: z.array(ConfigResponseSchema),
|
|
209
209
|
});
|
|
210
|
-
export const
|
|
210
|
+
export const DeleteConfigResponseSchema = z.object({
|
|
211
211
|
deleted: z.literal(true),
|
|
212
212
|
});
|
|
213
213
|
// =============================================================================
|
|
214
214
|
// Entitlements (Admin)
|
|
215
215
|
// =============================================================================
|
|
216
|
-
export const
|
|
216
|
+
export const EntitlementOrgIdParamSchema = z.object({
|
|
217
217
|
orgId: UUIDSchema,
|
|
218
218
|
});
|
|
219
|
-
export const
|
|
219
|
+
export const EntitlementIdParamSchema = z.object({
|
|
220
220
|
overrideId: UUIDSchema,
|
|
221
221
|
});
|
|
222
|
-
export const
|
|
222
|
+
export const CreateEntitlementBodySchema = z.object({
|
|
223
223
|
orgId: UUIDSchema,
|
|
224
224
|
integrationKey: IdentifierSchema,
|
|
225
225
|
type: z.enum(["allow", "deny"]),
|
|
226
226
|
reason: z.string().optional(),
|
|
227
227
|
});
|
|
228
|
-
export const
|
|
228
|
+
export const EntitlementResponseSchema = z.object({
|
|
229
229
|
id: IdentifierSchema,
|
|
230
230
|
orgId: IdentifierSchema,
|
|
231
231
|
integrationKey: IdentifierSchema,
|
|
@@ -233,16 +233,16 @@ export const IntegrationsEntitlementResponseSchema = z.object({
|
|
|
233
233
|
reason: z.string().nullable(),
|
|
234
234
|
grantedAt: TimestampSchema,
|
|
235
235
|
});
|
|
236
|
-
export const
|
|
237
|
-
overrides: z.array(
|
|
236
|
+
export const EntitlementListResponseSchema = z.object({
|
|
237
|
+
overrides: z.array(EntitlementResponseSchema),
|
|
238
238
|
});
|
|
239
|
-
export const
|
|
239
|
+
export const DeleteEntitlementResponseSchema = z.object({
|
|
240
240
|
deleted: z.literal(true),
|
|
241
241
|
});
|
|
242
242
|
// =============================================================================
|
|
243
243
|
// Source Control
|
|
244
244
|
// =============================================================================
|
|
245
|
-
export const
|
|
245
|
+
export const SourceRepoItemSchema = z.object({
|
|
246
246
|
id: z.string(),
|
|
247
247
|
name: z.string(),
|
|
248
248
|
fullName: z.string(),
|
|
@@ -250,10 +250,10 @@ export const IntegrationsSourceRepoItemSchema = z.object({
|
|
|
250
250
|
private: z.boolean(),
|
|
251
251
|
url: z.string(),
|
|
252
252
|
});
|
|
253
|
-
export const
|
|
253
|
+
export const ListSourceReposQuerySchema = z.object({
|
|
254
254
|
provider: z.string().min(1),
|
|
255
255
|
limit: z.coerce.number().int().min(1).max(100).optional(),
|
|
256
256
|
});
|
|
257
|
-
export const
|
|
257
|
+
export const ListSourceReposResponseSchema = createPaginatedResponseSchema(SourceRepoItemSchema);
|
|
258
258
|
// ── Auto-registered schemas ─────────────────────────────────────────────────
|
|
259
259
|
//# sourceMappingURL=api.schema.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.schema.js","sourceRoot":"","sources":["../../../src/definitions/integrations/api.schema.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,6BAA6B,EAAE,MAAM,cAAc,CAAC;AAC7D,OAAO,EACL,gBAAgB,EAChB,UAAU,EACV,eAAe,EACf,uBAAuB,GACxB,MAAM,cAAc,CAAC;AAEtB,gFAAgF;AAChF,SAAS;AACT,gFAAgF;AAEhF,uEAAuE;AACvE,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"api.schema.js","sourceRoot":"","sources":["../../../src/definitions/integrations/api.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import { z } from "zod";
|
|
8
8
|
export declare const IntegrationsSetupFlowSchema: z.ZodEnum<{
|
|
9
|
+
none: "none";
|
|
9
10
|
oauth_only: "oauth_only";
|
|
10
11
|
credential_form: "credential_form";
|
|
11
12
|
oauth_then_configure: "oauth_then_configure";
|
|
12
|
-
none: "none";
|
|
13
13
|
}>;
|
|
14
14
|
export declare const IntegrationsCredentialInputFieldSchema: z.ZodObject<{
|
|
15
15
|
key: z.ZodString;
|
|
16
16
|
label: z.ZodString;
|
|
17
17
|
type: z.ZodEnum<{
|
|
18
|
-
text: "text";
|
|
19
|
-
password: "password";
|
|
20
18
|
url: "url";
|
|
19
|
+
password: "password";
|
|
20
|
+
text: "text";
|
|
21
21
|
select: "select";
|
|
22
22
|
textarea: "textarea";
|
|
23
23
|
copy: "copy";
|
|
@@ -36,18 +36,18 @@ export declare const IntegrationsCredentialInputFieldSchema: z.ZodObject<{
|
|
|
36
36
|
}, z.core.$strip>;
|
|
37
37
|
export declare const IntegrationsClientAuthConfigSchema: z.ZodObject<{
|
|
38
38
|
setupFlows: z.ZodArray<z.ZodEnum<{
|
|
39
|
+
none: "none";
|
|
39
40
|
oauth_only: "oauth_only";
|
|
40
41
|
credential_form: "credential_form";
|
|
41
42
|
oauth_then_configure: "oauth_then_configure";
|
|
42
|
-
none: "none";
|
|
43
43
|
}>>;
|
|
44
44
|
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
45
45
|
key: z.ZodString;
|
|
46
46
|
label: z.ZodString;
|
|
47
47
|
type: z.ZodEnum<{
|
|
48
|
-
text: "text";
|
|
49
|
-
password: "password";
|
|
50
48
|
url: "url";
|
|
49
|
+
password: "password";
|
|
50
|
+
text: "text";
|
|
51
51
|
select: "select";
|
|
52
52
|
textarea: "textarea";
|
|
53
53
|
copy: "copy";
|
|
@@ -19,18 +19,18 @@ export declare const IntegrationsListAvailableResponseSchema: z.ZodObject<{
|
|
|
19
19
|
capabilities: z.ZodArray<z.ZodString>;
|
|
20
20
|
auth: z.ZodObject<{
|
|
21
21
|
setupFlows: z.ZodArray<z.ZodEnum<{
|
|
22
|
+
none: "none";
|
|
22
23
|
oauth_only: "oauth_only";
|
|
23
24
|
credential_form: "credential_form";
|
|
24
25
|
oauth_then_configure: "oauth_then_configure";
|
|
25
|
-
none: "none";
|
|
26
26
|
}>>;
|
|
27
27
|
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28
28
|
key: z.ZodString;
|
|
29
29
|
label: z.ZodString;
|
|
30
30
|
type: z.ZodEnum<{
|
|
31
|
-
text: "text";
|
|
32
|
-
password: "password";
|
|
33
31
|
url: "url";
|
|
32
|
+
password: "password";
|
|
33
|
+
text: "text";
|
|
34
34
|
select: "select";
|
|
35
35
|
textarea: "textarea";
|
|
36
36
|
copy: "copy";
|
|
@@ -7,9 +7,9 @@
|
|
|
7
7
|
import { z } from "zod";
|
|
8
8
|
export declare const MarketplaceCategorySchema: z.ZodEnum<{
|
|
9
9
|
store: "store";
|
|
10
|
+
deployment: "deployment";
|
|
10
11
|
"source-control": "source-control";
|
|
11
12
|
monitoring: "monitoring";
|
|
12
|
-
deployment: "deployment";
|
|
13
13
|
}>;
|
|
14
14
|
export declare const MarketplacePlanSchema: z.ZodEnum<{
|
|
15
15
|
free: "free";
|
|
@@ -18,9 +18,9 @@ export declare const MarketplacePlanSchema: z.ZodEnum<{
|
|
|
18
18
|
enterprise: "enterprise";
|
|
19
19
|
}>;
|
|
20
20
|
export declare const MarketplaceInstallationStatusSchema: z.ZodEnum<{
|
|
21
|
-
installed: "installed";
|
|
22
|
-
disabled: "disabled";
|
|
23
21
|
error: "error";
|
|
22
|
+
disabled: "disabled";
|
|
23
|
+
installed: "installed";
|
|
24
24
|
}>;
|
|
25
25
|
export declare const MarketplaceOverrideTypeSchema: z.ZodEnum<{
|
|
26
26
|
allow: "allow";
|
|
@@ -46,9 +46,9 @@ export declare const MarketplaceDefinitionSchema: z.ZodObject<{
|
|
|
46
46
|
description: z.ZodString;
|
|
47
47
|
category: z.ZodEnum<{
|
|
48
48
|
store: "store";
|
|
49
|
+
deployment: "deployment";
|
|
49
50
|
"source-control": "source-control";
|
|
50
51
|
monitoring: "monitoring";
|
|
51
|
-
deployment: "deployment";
|
|
52
52
|
}>;
|
|
53
53
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
54
54
|
docsUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -71,8 +71,8 @@ export declare const MarketplaceDefinitionSchema: z.ZodObject<{
|
|
|
71
71
|
}, z.core.$strip>>;
|
|
72
72
|
}, z.core.$strip>;
|
|
73
73
|
providerType: z.ZodEnum<{
|
|
74
|
-
store: "store";
|
|
75
74
|
integration: "integration";
|
|
75
|
+
store: "store";
|
|
76
76
|
}>;
|
|
77
77
|
}, z.core.$strip>;
|
|
78
78
|
/** Marketplace integration — catalog definition augmented with org-level install state. */
|
|
@@ -82,9 +82,9 @@ export declare const MarketplaceIntegrationSchema: z.ZodObject<{
|
|
|
82
82
|
description: z.ZodString;
|
|
83
83
|
category: z.ZodEnum<{
|
|
84
84
|
store: "store";
|
|
85
|
+
deployment: "deployment";
|
|
85
86
|
"source-control": "source-control";
|
|
86
87
|
monitoring: "monitoring";
|
|
87
|
-
deployment: "deployment";
|
|
88
88
|
}>;
|
|
89
89
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
90
90
|
docsUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -107,14 +107,14 @@ export declare const MarketplaceIntegrationSchema: z.ZodObject<{
|
|
|
107
107
|
}, z.core.$strip>>;
|
|
108
108
|
}, z.core.$strip>;
|
|
109
109
|
providerType: z.ZodEnum<{
|
|
110
|
-
store: "store";
|
|
111
110
|
integration: "integration";
|
|
111
|
+
store: "store";
|
|
112
112
|
}>;
|
|
113
113
|
installed: z.ZodBoolean;
|
|
114
114
|
status: z.ZodOptional<z.ZodEnum<{
|
|
115
|
-
installed: "installed";
|
|
116
|
-
disabled: "disabled";
|
|
117
115
|
error: "error";
|
|
116
|
+
disabled: "disabled";
|
|
117
|
+
installed: "installed";
|
|
118
118
|
}>>;
|
|
119
119
|
locked: z.ZodBoolean;
|
|
120
120
|
lockReason: z.ZodOptional<z.ZodString>;
|
|
@@ -129,9 +129,9 @@ export declare const MarketplaceInstallationSchema: z.ZodObject<{
|
|
|
129
129
|
orgId: z.ZodString;
|
|
130
130
|
integrationKey: z.ZodString;
|
|
131
131
|
status: z.ZodEnum<{
|
|
132
|
-
installed: "installed";
|
|
133
|
-
disabled: "disabled";
|
|
134
132
|
error: "error";
|
|
133
|
+
disabled: "disabled";
|
|
134
|
+
installed: "installed";
|
|
135
135
|
}>;
|
|
136
136
|
installedAt: z.ZodString;
|
|
137
137
|
updatedAt: z.ZodString;
|
|
@@ -148,9 +148,9 @@ export declare const MarketplaceInstallResultSchema: z.ZodObject<{
|
|
|
148
148
|
orgId: z.ZodString;
|
|
149
149
|
integrationKey: z.ZodString;
|
|
150
150
|
status: z.ZodEnum<{
|
|
151
|
-
installed: "installed";
|
|
152
|
-
disabled: "disabled";
|
|
153
151
|
error: "error";
|
|
152
|
+
disabled: "disabled";
|
|
153
|
+
installed: "installed";
|
|
154
154
|
}>;
|
|
155
155
|
installedAt: z.ZodString;
|
|
156
156
|
updatedAt: z.ZodString;
|
|
@@ -18,9 +18,9 @@ export declare const MarketplaceCatalogListQuerySchema: z.ZodObject<{
|
|
|
18
18
|
includeHidden: z.ZodPipe<z.ZodOptional<z.ZodString>, z.ZodTransform<boolean, string | undefined>>;
|
|
19
19
|
category: z.ZodOptional<z.ZodEnum<{
|
|
20
20
|
store: "store";
|
|
21
|
+
deployment: "deployment";
|
|
21
22
|
"source-control": "source-control";
|
|
22
23
|
monitoring: "monitoring";
|
|
23
|
-
deployment: "deployment";
|
|
24
24
|
}>>;
|
|
25
25
|
requiredPlan: z.ZodOptional<z.ZodEnum<{
|
|
26
26
|
free: "free";
|
|
@@ -35,9 +35,9 @@ export declare const MarketplaceInstallationListQuerySchema: z.ZodObject<{
|
|
|
35
35
|
orgId: z.ZodOptional<z.ZodString>;
|
|
36
36
|
integrationKey: z.ZodOptional<z.ZodString>;
|
|
37
37
|
status: z.ZodOptional<z.ZodEnum<{
|
|
38
|
-
installed: "installed";
|
|
39
|
-
disabled: "disabled";
|
|
40
38
|
error: "error";
|
|
39
|
+
disabled: "disabled";
|
|
40
|
+
installed: "installed";
|
|
41
41
|
}>>;
|
|
42
42
|
errorCode: z.ZodOptional<z.ZodString>;
|
|
43
43
|
updatedAfter: z.ZodOptional<z.ZodString>;
|
|
@@ -17,9 +17,9 @@ export declare const MarketplaceCatalogListResponseSchema: z.ZodObject<{
|
|
|
17
17
|
description: z.ZodString;
|
|
18
18
|
category: z.ZodEnum<{
|
|
19
19
|
store: "store";
|
|
20
|
+
deployment: "deployment";
|
|
20
21
|
"source-control": "source-control";
|
|
21
22
|
monitoring: "monitoring";
|
|
22
|
-
deployment: "deployment";
|
|
23
23
|
}>;
|
|
24
24
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
25
25
|
docsUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -42,8 +42,8 @@ export declare const MarketplaceCatalogListResponseSchema: z.ZodObject<{
|
|
|
42
42
|
}, z.core.$strip>>;
|
|
43
43
|
}, z.core.$strip>;
|
|
44
44
|
providerType: z.ZodEnum<{
|
|
45
|
-
store: "store";
|
|
46
45
|
integration: "integration";
|
|
46
|
+
store: "store";
|
|
47
47
|
}>;
|
|
48
48
|
}, z.core.$strip>>;
|
|
49
49
|
pagination: z.ZodObject<{
|
|
@@ -61,9 +61,9 @@ export declare const MarketplaceIntegrationListResponseSchema: z.ZodObject<{
|
|
|
61
61
|
description: z.ZodString;
|
|
62
62
|
category: z.ZodEnum<{
|
|
63
63
|
store: "store";
|
|
64
|
+
deployment: "deployment";
|
|
64
65
|
"source-control": "source-control";
|
|
65
66
|
monitoring: "monitoring";
|
|
66
|
-
deployment: "deployment";
|
|
67
67
|
}>;
|
|
68
68
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
69
69
|
docsUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -86,14 +86,14 @@ export declare const MarketplaceIntegrationListResponseSchema: z.ZodObject<{
|
|
|
86
86
|
}, z.core.$strip>>;
|
|
87
87
|
}, z.core.$strip>;
|
|
88
88
|
providerType: z.ZodEnum<{
|
|
89
|
-
store: "store";
|
|
90
89
|
integration: "integration";
|
|
90
|
+
store: "store";
|
|
91
91
|
}>;
|
|
92
92
|
installed: z.ZodBoolean;
|
|
93
93
|
status: z.ZodOptional<z.ZodEnum<{
|
|
94
|
-
installed: "installed";
|
|
95
|
-
disabled: "disabled";
|
|
96
94
|
error: "error";
|
|
95
|
+
disabled: "disabled";
|
|
96
|
+
installed: "installed";
|
|
97
97
|
}>>;
|
|
98
98
|
locked: z.ZodBoolean;
|
|
99
99
|
lockReason: z.ZodOptional<z.ZodString>;
|
|
@@ -111,9 +111,9 @@ export declare const MarketplaceCatalogEntryResponseSchema: z.ZodObject<{
|
|
|
111
111
|
description: z.ZodString;
|
|
112
112
|
category: z.ZodEnum<{
|
|
113
113
|
store: "store";
|
|
114
|
+
deployment: "deployment";
|
|
114
115
|
"source-control": "source-control";
|
|
115
116
|
monitoring: "monitoring";
|
|
116
|
-
deployment: "deployment";
|
|
117
117
|
}>;
|
|
118
118
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
119
119
|
docsUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -136,8 +136,8 @@ export declare const MarketplaceCatalogEntryResponseSchema: z.ZodObject<{
|
|
|
136
136
|
}, z.core.$strip>>;
|
|
137
137
|
}, z.core.$strip>;
|
|
138
138
|
providerType: z.ZodEnum<{
|
|
139
|
-
store: "store";
|
|
140
139
|
integration: "integration";
|
|
140
|
+
store: "store";
|
|
141
141
|
}>;
|
|
142
142
|
}, z.core.$strip>;
|
|
143
143
|
export declare const MarketplaceIntegrationResponseSchema: z.ZodObject<{
|
|
@@ -146,9 +146,9 @@ export declare const MarketplaceIntegrationResponseSchema: z.ZodObject<{
|
|
|
146
146
|
description: z.ZodString;
|
|
147
147
|
category: z.ZodEnum<{
|
|
148
148
|
store: "store";
|
|
149
|
+
deployment: "deployment";
|
|
149
150
|
"source-control": "source-control";
|
|
150
151
|
monitoring: "monitoring";
|
|
151
|
-
deployment: "deployment";
|
|
152
152
|
}>;
|
|
153
153
|
iconUrl: z.ZodOptional<z.ZodString>;
|
|
154
154
|
docsUrl: z.ZodOptional<z.ZodString>;
|
|
@@ -171,14 +171,14 @@ export declare const MarketplaceIntegrationResponseSchema: z.ZodObject<{
|
|
|
171
171
|
}, z.core.$strip>>;
|
|
172
172
|
}, z.core.$strip>;
|
|
173
173
|
providerType: z.ZodEnum<{
|
|
174
|
-
store: "store";
|
|
175
174
|
integration: "integration";
|
|
175
|
+
store: "store";
|
|
176
176
|
}>;
|
|
177
177
|
installed: z.ZodBoolean;
|
|
178
178
|
status: z.ZodOptional<z.ZodEnum<{
|
|
179
|
-
installed: "installed";
|
|
180
|
-
disabled: "disabled";
|
|
181
179
|
error: "error";
|
|
180
|
+
disabled: "disabled";
|
|
181
|
+
installed: "installed";
|
|
182
182
|
}>>;
|
|
183
183
|
locked: z.ZodBoolean;
|
|
184
184
|
lockReason: z.ZodOptional<z.ZodString>;
|
|
@@ -189,9 +189,9 @@ export declare const MarketplaceInstallationListResponseSchema: z.ZodObject<{
|
|
|
189
189
|
orgId: z.ZodString;
|
|
190
190
|
integrationKey: z.ZodString;
|
|
191
191
|
status: z.ZodEnum<{
|
|
192
|
-
installed: "installed";
|
|
193
|
-
disabled: "disabled";
|
|
194
192
|
error: "error";
|
|
193
|
+
disabled: "disabled";
|
|
194
|
+
installed: "installed";
|
|
195
195
|
}>;
|
|
196
196
|
installedAt: z.ZodString;
|
|
197
197
|
updatedAt: z.ZodString;
|
|
@@ -215,9 +215,9 @@ export declare const MarketplaceInstallResultResponseSchema: z.ZodObject<{
|
|
|
215
215
|
orgId: z.ZodString;
|
|
216
216
|
integrationKey: z.ZodString;
|
|
217
217
|
status: z.ZodEnum<{
|
|
218
|
-
installed: "installed";
|
|
219
|
-
disabled: "disabled";
|
|
220
218
|
error: "error";
|
|
219
|
+
disabled: "disabled";
|
|
220
|
+
installed: "installed";
|
|
221
221
|
}>;
|
|
222
222
|
installedAt: z.ZodString;
|
|
223
223
|
updatedAt: z.ZodString;
|
|
@@ -282,9 +282,9 @@ export declare const MarketplaceRevalidationResultSchema: z.ZodObject<{
|
|
|
282
282
|
orgId: z.ZodString;
|
|
283
283
|
integrationKey: z.ZodString;
|
|
284
284
|
status: z.ZodEnum<{
|
|
285
|
-
installed: "installed";
|
|
286
|
-
disabled: "disabled";
|
|
287
285
|
error: "error";
|
|
286
|
+
disabled: "disabled";
|
|
287
|
+
installed: "installed";
|
|
288
288
|
}>;
|
|
289
289
|
installedAt: z.ZodString;
|
|
290
290
|
updatedAt: z.ZodString;
|
|
@@ -304,10 +304,10 @@ export declare const MarketplaceRevalidationResultSchema: z.ZodObject<{
|
|
|
304
304
|
export declare const MarketplaceTriggerSyncResultSchema: z.ZodObject<{
|
|
305
305
|
jobId: z.ZodString;
|
|
306
306
|
status: z.ZodEnum<{
|
|
307
|
+
failed: "failed";
|
|
307
308
|
queued: "queued";
|
|
308
309
|
running: "running";
|
|
309
310
|
completed: "completed";
|
|
310
|
-
failed: "failed";
|
|
311
311
|
}>;
|
|
312
312
|
triggeredAt: z.ZodString;
|
|
313
313
|
}, z.core.$strip>;
|
|
@@ -319,8 +319,8 @@ export declare const MarketplaceAuditEntryResponseSchema: z.ZodObject<{
|
|
|
319
319
|
id: z.ZodString;
|
|
320
320
|
timestamp: z.ZodString;
|
|
321
321
|
actorType: z.ZodEnum<{
|
|
322
|
-
user: "user";
|
|
323
322
|
admin: "admin";
|
|
323
|
+
user: "user";
|
|
324
324
|
system: "system";
|
|
325
325
|
}>;
|
|
326
326
|
actorId: z.ZodString;
|
|
@@ -339,8 +339,8 @@ export declare const MarketplaceAuditSearchResponseSchema: z.ZodObject<{
|
|
|
339
339
|
id: z.ZodString;
|
|
340
340
|
timestamp: z.ZodString;
|
|
341
341
|
actorType: z.ZodEnum<{
|
|
342
|
-
user: "user";
|
|
343
342
|
admin: "admin";
|
|
343
|
+
user: "user";
|
|
344
344
|
system: "system";
|
|
345
345
|
}>;
|
|
346
346
|
actorId: z.ZodString;
|