@apollo-deploy/schemas 0.6.0 → 0.8.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/audit-log/domain.schema.d.ts +64 -64
- package/dist/definitions/audit-log/request.schema.d.ts +118 -118
- package/dist/definitions/audit-log/response.schema.d.ts +12 -12
- package/dist/definitions/deployments/domain.schema.d.ts +12 -12
- package/dist/definitions/deployments/request.schema.d.ts +12 -12
- package/dist/definitions/deployments/response.schema.d.ts +8 -8
- package/dist/definitions/integrations/api.schema.d.ts +83 -5
- package/dist/definitions/integrations/api.schema.d.ts.map +1 -1
- package/dist/definitions/integrations/api.schema.js +42 -5
- package/dist/definitions/integrations/api.schema.js.map +1 -1
- package/dist/definitions/integrations/domain.schema.d.ts +122 -0
- package/dist/definitions/integrations/domain.schema.d.ts.map +1 -0
- package/dist/definitions/integrations/domain.schema.js +85 -0
- package/dist/definitions/integrations/domain.schema.js.map +1 -0
- package/dist/definitions/integrations/index.d.ts +1 -1
- package/dist/definitions/integrations/index.d.ts.map +1 -1
- package/dist/definitions/integrations/index.js +3 -1
- package/dist/definitions/integrations/index.js.map +1 -1
- package/dist/definitions/integrations/request.schema.d.ts +141 -0
- package/dist/definitions/integrations/request.schema.d.ts.map +1 -0
- package/dist/definitions/integrations/request.schema.js +136 -0
- package/dist/definitions/integrations/request.schema.js.map +1 -0
- package/dist/definitions/integrations/response.schema.d.ts +142 -0
- package/dist/definitions/integrations/response.schema.d.ts.map +1 -0
- package/dist/definitions/integrations/response.schema.js +55 -0
- package/dist/definitions/integrations/response.schema.js.map +1 -0
- package/dist/definitions/releases/domain.schema.d.ts +26 -18
- package/dist/definitions/releases/domain.schema.d.ts.map +1 -1
- package/dist/definitions/releases/domain.schema.js +7 -6
- package/dist/definitions/releases/domain.schema.js.map +1 -1
- package/dist/definitions/releases/request.schema.d.ts +5 -3
- package/dist/definitions/releases/request.schema.d.ts.map +1 -1
- package/dist/definitions/releases/request.schema.js +1 -1
- package/dist/definitions/releases/request.schema.js.map +1 -1
- package/dist/definitions/releases/response.schema.d.ts +26 -18
- package/dist/definitions/releases/response.schema.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -12,9 +12,9 @@ export declare const CreateAwsDeploymentTargetSchema: z.ZodObject<{
|
|
|
12
12
|
name: z.ZodString;
|
|
13
13
|
provider: z.ZodLiteral<"aws">;
|
|
14
14
|
environment: z.ZodEnum<{
|
|
15
|
+
production: "production";
|
|
15
16
|
development: "development";
|
|
16
17
|
staging: "staging";
|
|
17
|
-
production: "production";
|
|
18
18
|
}>;
|
|
19
19
|
region: z.ZodOptional<z.ZodString>;
|
|
20
20
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -39,9 +39,9 @@ export declare const CreateGcpDeploymentTargetSchema: z.ZodObject<{
|
|
|
39
39
|
name: z.ZodString;
|
|
40
40
|
provider: z.ZodLiteral<"gcp">;
|
|
41
41
|
environment: z.ZodEnum<{
|
|
42
|
+
production: "production";
|
|
42
43
|
development: "development";
|
|
43
44
|
staging: "staging";
|
|
44
|
-
production: "production";
|
|
45
45
|
}>;
|
|
46
46
|
region: z.ZodOptional<z.ZodString>;
|
|
47
47
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -58,9 +58,9 @@ export declare const CreateAzureDeploymentTargetSchema: z.ZodObject<{
|
|
|
58
58
|
name: z.ZodString;
|
|
59
59
|
provider: z.ZodLiteral<"azure">;
|
|
60
60
|
environment: z.ZodEnum<{
|
|
61
|
+
production: "production";
|
|
61
62
|
development: "development";
|
|
62
63
|
staging: "staging";
|
|
63
|
-
production: "production";
|
|
64
64
|
}>;
|
|
65
65
|
region: z.ZodOptional<z.ZodString>;
|
|
66
66
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -79,9 +79,9 @@ export declare const CreateByocDeploymentTargetSchema: z.ZodObject<{
|
|
|
79
79
|
name: z.ZodString;
|
|
80
80
|
provider: z.ZodLiteral<"byoc">;
|
|
81
81
|
environment: z.ZodEnum<{
|
|
82
|
+
production: "production";
|
|
82
83
|
development: "development";
|
|
83
84
|
staging: "staging";
|
|
84
|
-
production: "production";
|
|
85
85
|
}>;
|
|
86
86
|
region: z.ZodOptional<z.ZodString>;
|
|
87
87
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -91,9 +91,9 @@ export declare const CreateDeploymentTargetSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
91
91
|
name: z.ZodString;
|
|
92
92
|
provider: z.ZodLiteral<"aws">;
|
|
93
93
|
environment: z.ZodEnum<{
|
|
94
|
+
production: "production";
|
|
94
95
|
development: "development";
|
|
95
96
|
staging: "staging";
|
|
96
|
-
production: "production";
|
|
97
97
|
}>;
|
|
98
98
|
region: z.ZodOptional<z.ZodString>;
|
|
99
99
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -117,9 +117,9 @@ export declare const CreateDeploymentTargetSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
117
117
|
name: z.ZodString;
|
|
118
118
|
provider: z.ZodLiteral<"gcp">;
|
|
119
119
|
environment: z.ZodEnum<{
|
|
120
|
+
production: "production";
|
|
120
121
|
development: "development";
|
|
121
122
|
staging: "staging";
|
|
122
|
-
production: "production";
|
|
123
123
|
}>;
|
|
124
124
|
region: z.ZodOptional<z.ZodString>;
|
|
125
125
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -135,9 +135,9 @@ export declare const CreateDeploymentTargetSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
135
135
|
name: z.ZodString;
|
|
136
136
|
provider: z.ZodLiteral<"azure">;
|
|
137
137
|
environment: z.ZodEnum<{
|
|
138
|
+
production: "production";
|
|
138
139
|
development: "development";
|
|
139
140
|
staging: "staging";
|
|
140
|
-
production: "production";
|
|
141
141
|
}>;
|
|
142
142
|
region: z.ZodOptional<z.ZodString>;
|
|
143
143
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -155,9 +155,9 @@ export declare const CreateDeploymentTargetSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
155
155
|
name: z.ZodString;
|
|
156
156
|
provider: z.ZodLiteral<"byoc">;
|
|
157
157
|
environment: z.ZodEnum<{
|
|
158
|
+
production: "production";
|
|
158
159
|
development: "development";
|
|
159
160
|
staging: "staging";
|
|
160
|
-
production: "production";
|
|
161
161
|
}>;
|
|
162
162
|
region: z.ZodOptional<z.ZodString>;
|
|
163
163
|
integrationInstallationId: z.ZodOptional<z.ZodString>;
|
|
@@ -173,9 +173,9 @@ export declare const ListDeploymentTargetsQuerySchema: z.ZodObject<{
|
|
|
173
173
|
byoc: "byoc";
|
|
174
174
|
}>>;
|
|
175
175
|
environment: z.ZodOptional<z.ZodEnum<{
|
|
176
|
+
production: "production";
|
|
176
177
|
development: "development";
|
|
177
178
|
staging: "staging";
|
|
178
|
-
production: "production";
|
|
179
179
|
}>>;
|
|
180
180
|
activeOnly: z.ZodDefault<z.ZodCoercedBoolean<unknown>>;
|
|
181
181
|
}, z.core.$strict>;
|
|
@@ -195,15 +195,15 @@ export declare const ListDeploymentsQuerySchema: z.ZodObject<{
|
|
|
195
195
|
targetId: z.ZodOptional<z.ZodString>;
|
|
196
196
|
releaseId: z.ZodOptional<z.ZodString>;
|
|
197
197
|
status: z.ZodOptional<z.ZodEnum<{
|
|
198
|
-
canceled: "canceled";
|
|
199
198
|
failed: "failed";
|
|
200
|
-
queued: "queued";
|
|
201
199
|
succeeded: "succeeded";
|
|
200
|
+
canceled: "canceled";
|
|
201
|
+
rolled_back: "rolled_back";
|
|
202
|
+
queued: "queued";
|
|
202
203
|
awaiting_approval: "awaiting_approval";
|
|
203
204
|
running: "running";
|
|
204
205
|
verifying: "verifying";
|
|
205
206
|
rollback_in_progress: "rollback_in_progress";
|
|
206
|
-
rolled_back: "rolled_back";
|
|
207
207
|
}>>;
|
|
208
208
|
}, z.core.$strict>;
|
|
209
209
|
export declare const ListDeploymentEventsQuerySchema: z.ZodObject<{
|
|
@@ -13,9 +13,9 @@ export declare const DeploymentTargetResponseSchema: z.ZodObject<{
|
|
|
13
13
|
byoc: "byoc";
|
|
14
14
|
}>;
|
|
15
15
|
environment: z.ZodEnum<{
|
|
16
|
+
production: "production";
|
|
16
17
|
development: "development";
|
|
17
18
|
staging: "staging";
|
|
18
|
-
production: "production";
|
|
19
19
|
}>;
|
|
20
20
|
region: z.ZodNullable<z.ZodString>;
|
|
21
21
|
integrationInstallationId: z.ZodNullable<z.ZodString>;
|
|
@@ -36,9 +36,9 @@ export declare const DeploymentTargetListResponseSchema: z.ZodObject<{
|
|
|
36
36
|
byoc: "byoc";
|
|
37
37
|
}>;
|
|
38
38
|
environment: z.ZodEnum<{
|
|
39
|
+
production: "production";
|
|
39
40
|
development: "development";
|
|
40
41
|
staging: "staging";
|
|
41
|
-
production: "production";
|
|
42
42
|
}>;
|
|
43
43
|
region: z.ZodNullable<z.ZodString>;
|
|
44
44
|
integrationInstallationId: z.ZodNullable<z.ZodString>;
|
|
@@ -82,15 +82,15 @@ export declare const DeploymentResponseSchema: z.ZodObject<{
|
|
|
82
82
|
byoc: "byoc";
|
|
83
83
|
}>;
|
|
84
84
|
status: z.ZodEnum<{
|
|
85
|
-
canceled: "canceled";
|
|
86
85
|
failed: "failed";
|
|
87
|
-
queued: "queued";
|
|
88
86
|
succeeded: "succeeded";
|
|
87
|
+
canceled: "canceled";
|
|
88
|
+
rolled_back: "rolled_back";
|
|
89
|
+
queued: "queued";
|
|
89
90
|
awaiting_approval: "awaiting_approval";
|
|
90
91
|
running: "running";
|
|
91
92
|
verifying: "verifying";
|
|
92
93
|
rollback_in_progress: "rollback_in_progress";
|
|
93
|
-
rolled_back: "rolled_back";
|
|
94
94
|
}>;
|
|
95
95
|
statusReason: z.ZodNullable<z.ZodString>;
|
|
96
96
|
approvalRequestId: z.ZodNullable<z.ZodString>;
|
|
@@ -123,15 +123,15 @@ export declare const DeploymentListResponseSchema: z.ZodObject<{
|
|
|
123
123
|
byoc: "byoc";
|
|
124
124
|
}>;
|
|
125
125
|
status: z.ZodEnum<{
|
|
126
|
-
canceled: "canceled";
|
|
127
126
|
failed: "failed";
|
|
128
|
-
queued: "queued";
|
|
129
127
|
succeeded: "succeeded";
|
|
128
|
+
canceled: "canceled";
|
|
129
|
+
rolled_back: "rolled_back";
|
|
130
|
+
queued: "queued";
|
|
130
131
|
awaiting_approval: "awaiting_approval";
|
|
131
132
|
running: "running";
|
|
132
133
|
verifying: "verifying";
|
|
133
134
|
rollback_in_progress: "rollback_in_progress";
|
|
134
|
-
rolled_back: "rolled_back";
|
|
135
135
|
}>;
|
|
136
136
|
statusReason: z.ZodNullable<z.ZodString>;
|
|
137
137
|
approvalRequestId: z.ZodNullable<z.ZodString>;
|
|
@@ -29,6 +29,7 @@ declare const CredentialInputFieldSchema: z.ZodObject<{
|
|
|
29
29
|
url: "url";
|
|
30
30
|
select: "select";
|
|
31
31
|
textarea: "textarea";
|
|
32
|
+
copy: "copy";
|
|
32
33
|
}>;
|
|
33
34
|
required: z.ZodBoolean;
|
|
34
35
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -40,14 +41,15 @@ declare const CredentialInputFieldSchema: z.ZodObject<{
|
|
|
40
41
|
pattern: z.ZodOptional<z.ZodString>;
|
|
41
42
|
minLength: z.ZodOptional<z.ZodNumber>;
|
|
42
43
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
44
|
+
value: z.ZodOptional<z.ZodString>;
|
|
43
45
|
}, z.core.$strip>;
|
|
44
46
|
declare const ClientAuthConfigSchema: z.ZodObject<{
|
|
45
|
-
|
|
47
|
+
setupFlows: z.ZodArray<z.ZodEnum<{
|
|
46
48
|
oauth_only: "oauth_only";
|
|
47
49
|
credential_form: "credential_form";
|
|
48
50
|
oauth_then_configure: "oauth_then_configure";
|
|
49
51
|
none: "none";
|
|
50
|
-
}
|
|
52
|
+
}>>;
|
|
51
53
|
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
52
54
|
key: z.ZodString;
|
|
53
55
|
label: z.ZodString;
|
|
@@ -57,6 +59,7 @@ declare const ClientAuthConfigSchema: z.ZodObject<{
|
|
|
57
59
|
url: "url";
|
|
58
60
|
select: "select";
|
|
59
61
|
textarea: "textarea";
|
|
62
|
+
copy: "copy";
|
|
60
63
|
}>;
|
|
61
64
|
required: z.ZodBoolean;
|
|
62
65
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -68,25 +71,48 @@ declare const ClientAuthConfigSchema: z.ZodObject<{
|
|
|
68
71
|
pattern: z.ZodOptional<z.ZodString>;
|
|
69
72
|
minLength: z.ZodOptional<z.ZodNumber>;
|
|
70
73
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
74
|
+
value: z.ZodOptional<z.ZodString>;
|
|
75
|
+
}, z.core.$strip>>>;
|
|
76
|
+
}, z.core.$strip>;
|
|
77
|
+
/** Describes a user-configurable field in integration_configs.settings. */
|
|
78
|
+
declare const ConfigFieldSchema: z.ZodObject<{
|
|
79
|
+
key: z.ZodString;
|
|
80
|
+
label: z.ZodString;
|
|
81
|
+
description: z.ZodOptional<z.ZodString>;
|
|
82
|
+
type: z.ZodEnum<{
|
|
83
|
+
number: "number";
|
|
84
|
+
boolean: "boolean";
|
|
85
|
+
text: "text";
|
|
86
|
+
select: "select";
|
|
87
|
+
}>;
|
|
88
|
+
required: z.ZodBoolean;
|
|
89
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
90
|
+
value: z.ZodString;
|
|
91
|
+
label: z.ZodString;
|
|
71
92
|
}, z.core.$strip>>>;
|
|
93
|
+
dynamic: z.ZodOptional<z.ZodBoolean>;
|
|
72
94
|
}, z.core.$strip>;
|
|
95
|
+
export type ConfigField = z.infer<typeof ConfigFieldSchema>;
|
|
73
96
|
export declare const ListAvailableResponseSchema: z.ZodObject<{
|
|
74
97
|
integrations: z.ZodArray<z.ZodObject<{
|
|
75
98
|
key: z.ZodString;
|
|
76
99
|
id: z.ZodString;
|
|
77
100
|
name: z.ZodString;
|
|
78
101
|
description: z.ZodNullable<z.ZodString>;
|
|
79
|
-
iconUrl: z.ZodNullable<z.ZodString
|
|
102
|
+
iconUrl: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
103
|
+
light: z.ZodString;
|
|
104
|
+
dark: z.ZodString;
|
|
105
|
+
}, z.core.$strip>]>>;
|
|
80
106
|
category: z.ZodNullable<z.ZodString>;
|
|
81
107
|
docsUrl: z.ZodNullable<z.ZodString>;
|
|
82
108
|
capabilities: z.ZodArray<z.ZodString>;
|
|
83
109
|
auth: z.ZodObject<{
|
|
84
|
-
|
|
110
|
+
setupFlows: z.ZodArray<z.ZodEnum<{
|
|
85
111
|
oauth_only: "oauth_only";
|
|
86
112
|
credential_form: "credential_form";
|
|
87
113
|
oauth_then_configure: "oauth_then_configure";
|
|
88
114
|
none: "none";
|
|
89
|
-
}
|
|
115
|
+
}>>;
|
|
90
116
|
fields: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
91
117
|
key: z.ZodString;
|
|
92
118
|
label: z.ZodString;
|
|
@@ -96,6 +122,7 @@ export declare const ListAvailableResponseSchema: z.ZodObject<{
|
|
|
96
122
|
url: "url";
|
|
97
123
|
select: "select";
|
|
98
124
|
textarea: "textarea";
|
|
125
|
+
copy: "copy";
|
|
99
126
|
}>;
|
|
100
127
|
required: z.ZodBoolean;
|
|
101
128
|
placeholder: z.ZodOptional<z.ZodString>;
|
|
@@ -107,12 +134,30 @@ export declare const ListAvailableResponseSchema: z.ZodObject<{
|
|
|
107
134
|
pattern: z.ZodOptional<z.ZodString>;
|
|
108
135
|
minLength: z.ZodOptional<z.ZodNumber>;
|
|
109
136
|
maxLength: z.ZodOptional<z.ZodNumber>;
|
|
137
|
+
value: z.ZodOptional<z.ZodString>;
|
|
110
138
|
}, z.core.$strip>>>;
|
|
111
139
|
}, z.core.$strip>;
|
|
112
140
|
configured: z.ZodBoolean;
|
|
113
141
|
installed: z.ZodBoolean;
|
|
114
142
|
installationId: z.ZodNullable<z.ZodString>;
|
|
115
143
|
entitled: z.ZodBoolean;
|
|
144
|
+
configSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
145
|
+
key: z.ZodString;
|
|
146
|
+
label: z.ZodString;
|
|
147
|
+
description: z.ZodOptional<z.ZodString>;
|
|
148
|
+
type: z.ZodEnum<{
|
|
149
|
+
number: "number";
|
|
150
|
+
boolean: "boolean";
|
|
151
|
+
text: "text";
|
|
152
|
+
select: "select";
|
|
153
|
+
}>;
|
|
154
|
+
required: z.ZodBoolean;
|
|
155
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
156
|
+
value: z.ZodString;
|
|
157
|
+
label: z.ZodString;
|
|
158
|
+
}, z.core.$strip>>>;
|
|
159
|
+
dynamic: z.ZodOptional<z.ZodBoolean>;
|
|
160
|
+
}, z.core.$strip>>>;
|
|
116
161
|
}, z.core.$strip>>;
|
|
117
162
|
}, z.core.$strip>;
|
|
118
163
|
export type SetupFlow = z.infer<typeof SetupFlowSchema>;
|
|
@@ -139,6 +184,7 @@ export declare const InstallResponseSchema: z.ZodObject<{
|
|
|
139
184
|
integrationKey: z.ZodString;
|
|
140
185
|
status: z.ZodString;
|
|
141
186
|
installedAt: z.ZodUnion<readonly [z.ZodDate, z.ZodString]>;
|
|
187
|
+
webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
142
188
|
}, z.core.$strip>;
|
|
143
189
|
export declare const UninstallResponseSchema: z.ZodObject<{
|
|
144
190
|
uninstalled: z.ZodLiteral<true>;
|
|
@@ -159,6 +205,7 @@ export declare const OAuthCallbackResponseSchema: z.ZodObject<{
|
|
|
159
205
|
integrationKey: z.ZodString;
|
|
160
206
|
displayName: z.ZodNullable<z.ZodString>;
|
|
161
207
|
isNew: z.ZodBoolean;
|
|
208
|
+
webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
162
209
|
}, z.core.$strip>;
|
|
163
210
|
export declare const ConnectionIdParamSchema: z.ZodObject<{
|
|
164
211
|
connectionId: z.ZodString;
|
|
@@ -192,6 +239,7 @@ export declare const CredentialSubmitResponseSchema: z.ZodObject<{
|
|
|
192
239
|
connectionId: z.ZodString;
|
|
193
240
|
integrationKey: z.ZodString;
|
|
194
241
|
displayName: z.ZodNullable<z.ZodString>;
|
|
242
|
+
webhookUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
195
243
|
}, z.core.$strip>;
|
|
196
244
|
export declare const AppIdParamSchema: z.ZodObject<{
|
|
197
245
|
appId: z.ZodString;
|
|
@@ -276,6 +324,33 @@ export declare const EntitlementListResponseSchema: z.ZodObject<{
|
|
|
276
324
|
export declare const DeleteEntitlementResponseSchema: z.ZodObject<{
|
|
277
325
|
deleted: z.ZodLiteral<true>;
|
|
278
326
|
}, z.core.$strip>;
|
|
327
|
+
export declare const SourceRepoItemSchema: z.ZodObject<{
|
|
328
|
+
id: z.ZodString;
|
|
329
|
+
name: z.ZodString;
|
|
330
|
+
fullName: z.ZodString;
|
|
331
|
+
defaultBranch: z.ZodString;
|
|
332
|
+
private: z.ZodBoolean;
|
|
333
|
+
url: z.ZodString;
|
|
334
|
+
}, z.core.$strip>;
|
|
335
|
+
export declare const ListSourceReposQuerySchema: z.ZodObject<{
|
|
336
|
+
provider: z.ZodString;
|
|
337
|
+
limit: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
338
|
+
}, z.core.$strip>;
|
|
339
|
+
export declare const ListSourceReposResponseSchema: z.ZodObject<{
|
|
340
|
+
data: z.ZodArray<z.ZodObject<{
|
|
341
|
+
id: z.ZodString;
|
|
342
|
+
name: z.ZodString;
|
|
343
|
+
fullName: z.ZodString;
|
|
344
|
+
defaultBranch: z.ZodString;
|
|
345
|
+
private: z.ZodBoolean;
|
|
346
|
+
url: z.ZodString;
|
|
347
|
+
}, z.core.$strip>>;
|
|
348
|
+
page: z.ZodObject<{
|
|
349
|
+
size: z.ZodNumber;
|
|
350
|
+
totalPages: z.ZodNumber;
|
|
351
|
+
hasMore: z.ZodBoolean;
|
|
352
|
+
}, z.core.$strip>;
|
|
353
|
+
}, z.core.$strip>;
|
|
279
354
|
export type ListAvailableQuery = z.infer<typeof ListAvailableQuerySchema>;
|
|
280
355
|
export type ApiIntegrationKeyParam = z.infer<typeof ApiIntegrationKeyParamSchema>;
|
|
281
356
|
export type InstallBody = z.infer<typeof InstallBodySchema>;
|
|
@@ -297,5 +372,8 @@ export type CreateEntitlementBody = z.infer<typeof CreateEntitlementBodySchema>;
|
|
|
297
372
|
export type DeleteEntitlementResponse = z.infer<typeof DeleteEntitlementResponseSchema>;
|
|
298
373
|
export type CredentialSubmitBody = z.infer<typeof CredentialSubmitBodySchema>;
|
|
299
374
|
export type CredentialSubmitResponse = z.infer<typeof CredentialSubmitResponseSchema>;
|
|
375
|
+
export type SourceRepoItem = z.infer<typeof SourceRepoItemSchema>;
|
|
376
|
+
export type ListSourceReposQuery = z.infer<typeof ListSourceReposQuerySchema>;
|
|
377
|
+
export type ListSourceReposResponse = z.infer<typeof ListSourceReposResponseSchema>;
|
|
300
378
|
export {};
|
|
301
379
|
//# sourceMappingURL=api.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.schema.d.ts","sourceRoot":"","sources":["../../../src/definitions/integrations/api.schema.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"api.schema.d.ts","sourceRoot":"","sources":["../../../src/definitions/integrations/api.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
* marketplace, OAuth/connections, project configs, and entitlements.
|
|
7
7
|
*/
|
|
8
8
|
import { z } from "zod";
|
|
9
|
+
import { createPaginatedResponseSchema } from "../common.js";
|
|
9
10
|
import { IdentifierSchema, UUIDSchema, TimestampSchema, NullableTimestampSchema, } from "../common.js";
|
|
10
11
|
// =============================================================================
|
|
11
12
|
// Shared
|
|
@@ -31,7 +32,7 @@ const SetupFlowSchema = z.enum([
|
|
|
31
32
|
const CredentialInputFieldSchema = z.object({
|
|
32
33
|
key: z.string(),
|
|
33
34
|
label: z.string(),
|
|
34
|
-
type: z.enum(['text', 'password', 'url', 'select', 'textarea']),
|
|
35
|
+
type: z.enum(['text', 'password', 'url', 'select', 'textarea', 'copy']),
|
|
35
36
|
required: z.boolean(),
|
|
36
37
|
placeholder: z.string().optional(),
|
|
37
38
|
helpText: z.string().optional(),
|
|
@@ -41,20 +42,35 @@ const CredentialInputFieldSchema = z.object({
|
|
|
41
42
|
pattern: z.string().optional(),
|
|
42
43
|
minLength: z.number().int().nonnegative().optional(),
|
|
43
44
|
maxLength: z.number().int().positive().optional(),
|
|
45
|
+
value: z.string().optional(),
|
|
44
46
|
});
|
|
45
47
|
const ClientAuthConfigSchema = z.object({
|
|
46
|
-
/** Tells the client which UI
|
|
47
|
-
|
|
48
|
-
/** Ordered credential fields (present
|
|
48
|
+
/** Tells the client which UI flows can be offered. */
|
|
49
|
+
setupFlows: z.array(SetupFlowSchema),
|
|
50
|
+
/** Ordered credential fields (present when credential_form is in setupFlows). */
|
|
49
51
|
fields: z.array(CredentialInputFieldSchema).optional(),
|
|
50
52
|
});
|
|
53
|
+
/** Describes a user-configurable field in integration_configs.settings. */
|
|
54
|
+
const ConfigFieldSchema = z.object({
|
|
55
|
+
key: z.string(),
|
|
56
|
+
label: z.string(),
|
|
57
|
+
description: z.string().optional(),
|
|
58
|
+
type: z.enum(['text', 'select', 'boolean', 'number']),
|
|
59
|
+
required: z.boolean(),
|
|
60
|
+
options: z.array(z.object({ value: z.string(), label: z.string() })).optional(),
|
|
61
|
+
/** If true, the client should fetch options dynamically (e.g. repo list). */
|
|
62
|
+
dynamic: z.boolean().optional(),
|
|
63
|
+
});
|
|
51
64
|
export const ListAvailableResponseSchema = z.object({
|
|
52
65
|
integrations: z.array(z.object({
|
|
53
66
|
key: IdentifierSchema,
|
|
54
67
|
id: IdentifierSchema,
|
|
55
68
|
name: z.string(),
|
|
56
69
|
description: z.string().nullable(),
|
|
57
|
-
iconUrl: z.
|
|
70
|
+
iconUrl: z.union([
|
|
71
|
+
z.string(),
|
|
72
|
+
z.object({ light: z.string(), dark: z.string() }),
|
|
73
|
+
]).nullable(),
|
|
58
74
|
category: z.string().nullable(),
|
|
59
75
|
docsUrl: z.string().url().nullable(),
|
|
60
76
|
capabilities: z.array(z.string()),
|
|
@@ -63,6 +79,8 @@ export const ListAvailableResponseSchema = z.object({
|
|
|
63
79
|
installed: z.boolean(),
|
|
64
80
|
installationId: z.string().nullable(),
|
|
65
81
|
entitled: z.boolean(),
|
|
82
|
+
/** Declares what fields are configurable in integration_configs.settings for this adapter. */
|
|
83
|
+
configSchema: z.array(ConfigFieldSchema).optional(),
|
|
66
84
|
})),
|
|
67
85
|
});
|
|
68
86
|
export const ListInstalledResponseSchema = z.object({
|
|
@@ -89,6 +107,7 @@ export const InstallResponseSchema = z.object({
|
|
|
89
107
|
integrationKey: IdentifierSchema,
|
|
90
108
|
status: z.string(),
|
|
91
109
|
installedAt: TimestampSchema,
|
|
110
|
+
webhookUrl: z.string().url().nullable().optional(),
|
|
92
111
|
});
|
|
93
112
|
export const UninstallResponseSchema = z.object({
|
|
94
113
|
uninstalled: z.literal(true),
|
|
@@ -112,6 +131,7 @@ export const OAuthCallbackResponseSchema = z.object({
|
|
|
112
131
|
integrationKey: IdentifierSchema,
|
|
113
132
|
displayName: z.string().nullable(),
|
|
114
133
|
isNew: z.boolean(),
|
|
134
|
+
webhookUrl: z.string().url().nullable().optional(),
|
|
115
135
|
});
|
|
116
136
|
export const ConnectionIdParamSchema = z.object({
|
|
117
137
|
connectionId: UUIDSchema,
|
|
@@ -148,6 +168,7 @@ export const CredentialSubmitResponseSchema = z.object({
|
|
|
148
168
|
connectionId: IdentifierSchema,
|
|
149
169
|
integrationKey: IdentifierSchema,
|
|
150
170
|
displayName: z.string().nullable(),
|
|
171
|
+
webhookUrl: z.string().url().nullable().optional(),
|
|
151
172
|
});
|
|
152
173
|
// =============================================================================
|
|
153
174
|
// App Configs
|
|
@@ -218,4 +239,20 @@ export const EntitlementListResponseSchema = z.object({
|
|
|
218
239
|
export const DeleteEntitlementResponseSchema = z.object({
|
|
219
240
|
deleted: z.literal(true),
|
|
220
241
|
});
|
|
242
|
+
// =============================================================================
|
|
243
|
+
// Source Control
|
|
244
|
+
// =============================================================================
|
|
245
|
+
export const SourceRepoItemSchema = z.object({
|
|
246
|
+
id: z.string(),
|
|
247
|
+
name: z.string(),
|
|
248
|
+
fullName: z.string(),
|
|
249
|
+
defaultBranch: z.string(),
|
|
250
|
+
private: z.boolean(),
|
|
251
|
+
url: z.string(),
|
|
252
|
+
});
|
|
253
|
+
export const ListSourceReposQuerySchema = z.object({
|
|
254
|
+
provider: z.string().min(1),
|
|
255
|
+
limit: z.coerce.number().int().min(1).max(100).optional(),
|
|
256
|
+
});
|
|
257
|
+
export const ListSourceReposResponseSchema = createPaginatedResponseSchema(SourceRepoItemSchema);
|
|
221
258
|
//# 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,EACL,gBAAgB,EAChB,UAAU,EACV,eAAe,EACf,uBAAuB,GACxB,MAAM,cAAc,CAAC;AAEtB,gFAAgF;AAChF,SAAS;AACT,gFAAgF;AAEhF,uEAAuE;AACvE,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACzB,CAAC,CAAC;AAEH,gFAAgF;AAChF,cAAc;AACd,gFAAgF;AAEhF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAC;AAEH,gFAAgF;AAEhF,MAAM,eAAe,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7B,YAAY;IACZ,iBAAiB;IACjB,sBAAsB;IACtB,MAAM;CACP,CAAC,CAAC;AAEH,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,UAAU,CAAC,CAAC;
|
|
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,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACzB,CAAC,CAAC;AAEH,gFAAgF;AAChF,cAAc;AACd,gFAAgF;AAEhF,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CAAC;AAEH,gFAAgF;AAEhF,MAAM,eAAe,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7B,YAAY;IACZ,iBAAiB;IACjB,sBAAsB;IACtB,MAAM;CACP,CAAC,CAAC;AAEH,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,CAAC,CAAC;IACvE,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE;IACrB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,OAAO,EAAE,CAAC;SACP,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;SACzD,QAAQ,EAAE;IACb,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE;IACpD,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACjD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAEH,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,sDAAsD;IACtD,UAAU,EAAE,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC;IACpC,iFAAiF;IACjF,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,0BAA0B,CAAC,CAAC,QAAQ,EAAE;CACvD,CAAC,CAAC;AAEH,2EAA2E;AAC3E,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,CAAC,CAAC;IACrD,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE;IACrB,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE;IAC/E,6EAA6E;IAC7E,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,YAAY,EAAE,CAAC,CAAC,KAAK,CACnB,CAAC,CAAC,MAAM,CAAC;QACP,GAAG,EAAE,gBAAgB;QACrB,EAAE,EAAE,gBAAgB;QACpB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;QAChB,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAClC,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC;YACf,CAAC,CAAC,MAAM,EAAE;YACV,CAAC,CAAC,MAAM,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;SAClD,CAAC,CAAC,QAAQ,EAAE;QACb,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC/B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;QACpC,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;QACjC,IAAI,EAAE,sBAAsB;QAC5B,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;QACvB,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE;QACtB,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACrC,QAAQ,EAAE,CAAC,CAAC,OAAO,EAAE;QACrB,8FAA8F;QAC9F,YAAY,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,QAAQ,EAAE;KACpD,CAAC,CACH;CACF,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,YAAY,EAAE,CAAC,CAAC,KAAK,CACnB,CAAC,CAAC,MAAM,CAAC;QACP,cAAc,EAAE,gBAAgB;QAChC,cAAc,EAAE,gBAAgB;QAChC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;QAClB,WAAW,EAAE,eAAe;QAC5B,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE;QAC3B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;KACrC,CAAC,CACH;CACF,CAAC,CAAC;AAEH,gFAAgF;AAChF,eAAe;AACf,gFAAgF;AAEhF,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IACnD,cAAc,EAAE,gBAAgB;CACjC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACxC,cAAc,EAAE,gBAAgB;CACjC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,cAAc,EAAE,gBAAgB;IAChC,cAAc,EAAE,gBAAgB;IAChC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,WAAW,EAAE,eAAe;IAC5B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,WAAW,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC7B,CAAC,CAAC;AAEH,gFAAgF;AAChF,oBAAoB;AACpB,gFAAgF;AAEhF,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,cAAc,EAAE,gBAAgB;CACjC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;CAC9B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,gBAAgB;IACtB,KAAK,EAAE,gBAAgB;CACxB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,YAAY,EAAE,gBAAgB;IAC9B,cAAc,EAAE,gBAAgB;IAChC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,KAAK,EAAE,CAAC,CAAC,OAAO,EAAE;IAClB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,YAAY,EAAE,UAAU;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,QAAQ,EAAE,gBAAgB;CAC3B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,MAAM,CAAC;IACnD,WAAW,EAAE,CAAC,CAAC,KAAK,CAClB,CAAC,CAAC,MAAM,CAAC;QACP,EAAE,EAAE,gBAAgB;QACpB,QAAQ,EAAE,gBAAgB;QAC1B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QACxC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAClC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;QAClB,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;QAC3B,WAAW,EAAE,eAAe;QAC5B,eAAe,EAAE,uBAAuB;KACzC,CAAC,CACH;CACF,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CAAC;IACrD,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACzB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACtD,SAAS,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC3B,CAAC,CAAC;AAEH,gFAAgF;AAChF,6BAA6B;AAC7B,gFAAgF;AAEhF,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,cAAc,EAAE,gBAAgB;IAChC,WAAW,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC;CAC/C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CAAC;IACrD,YAAY,EAAE,gBAAgB;IAC9B,cAAc,EAAE,gBAAgB;IAChC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAC;AAEH,gFAAgF;AAChF,cAAc;AACd,gFAAgF;AAEhF,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,KAAK,EAAE,UAAU;CAClB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,QAAQ,EAAE,UAAU;CACrB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,kBAAkB,EAAE,UAAU;IAC9B,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;IAClE,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;SACxC,QAAQ,EAAE;SACV,OAAO,CAAC,EAAE,CAAC;CACf,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7C,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC,QAAQ,EAAE;IACtD,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,CAAC;SACxC,QAAQ,EAAE;IACb,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,EAAE,EAAE,gBAAgB;IACpB,KAAK,EAAE,gBAAgB;IACvB,kBAAkB,EAAE,gBAAgB;IACpC,QAAQ,EAAE,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC;IAC3C,iBAAiB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;IACvC,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,SAAS,EAAE,eAAe;IAC1B,SAAS,EAAE,eAAe;CAC3B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC;CACvC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACzB,CAAC,CAAC;AAEH,gFAAgF;AAChF,uBAAuB;AACvB,gFAAgF;AAEhF,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,KAAK,EAAE,UAAU;CAClB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,UAAU,EAAE,UAAU;CACvB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,KAAK,EAAE,UAAU;IACjB,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChD,EAAE,EAAE,gBAAgB;IACpB,KAAK,EAAE,gBAAgB;IACvB,cAAc,EAAE,gBAAgB;IAChC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,MAAM,CAAC,CAAC;IAC/B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,SAAS,EAAE,eAAe;CAC3B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,CAAC,MAAM,CAAC;IACpD,SAAS,EAAE,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC;CAC9C,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACtD,OAAO,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CACzB,CAAC,CAAC;AAEH,gFAAgF;AAChF,iBAAiB;AACjB,gFAAgF;AAEhF,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE;IACd,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE;IACzB,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE;IACpB,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;CAChB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3B,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;CAC1D,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,6BAA6B,GAAG,6BAA6B,CAAC,oBAAoB,CAAC,CAAC"}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Integrations Domain - Domain Schemas
|
|
3
|
+
*
|
|
4
|
+
* Zod schemas for integrations domain models and enums.
|
|
5
|
+
*/
|
|
6
|
+
import { z } from 'zod';
|
|
7
|
+
/**
|
|
8
|
+
* Integration status enum
|
|
9
|
+
*
|
|
10
|
+
* - available: Integration is available for installation
|
|
11
|
+
* - beta: Integration is in beta testing
|
|
12
|
+
* - deprecated: Integration is deprecated and will be removed
|
|
13
|
+
* - unavailable: Integration is temporarily unavailable
|
|
14
|
+
*/
|
|
15
|
+
export declare const IntegrationStatusSchema: z.ZodEnum<{
|
|
16
|
+
beta: "beta";
|
|
17
|
+
available: "available";
|
|
18
|
+
deprecated: "deprecated";
|
|
19
|
+
unavailable: "unavailable";
|
|
20
|
+
}>;
|
|
21
|
+
/**
|
|
22
|
+
* Subscription tier enum
|
|
23
|
+
*
|
|
24
|
+
* - free: Available on free tier
|
|
25
|
+
* - pro: Available on pro tier and above
|
|
26
|
+
* - enterprise: Available on enterprise tier only
|
|
27
|
+
*/
|
|
28
|
+
export declare const SubscriptionTierSchema: z.ZodEnum<{
|
|
29
|
+
free: "free";
|
|
30
|
+
pro: "pro";
|
|
31
|
+
enterprise: "enterprise";
|
|
32
|
+
}>;
|
|
33
|
+
/**
|
|
34
|
+
* Integration response schema
|
|
35
|
+
*
|
|
36
|
+
* Represents a marketplace integration with all metadata.
|
|
37
|
+
*/
|
|
38
|
+
export declare const IntegrationResponseSchema: z.ZodObject<{
|
|
39
|
+
id: z.ZodString;
|
|
40
|
+
name: z.ZodString;
|
|
41
|
+
description: z.ZodNullable<z.ZodString>;
|
|
42
|
+
iconUrl: z.ZodNullable<z.ZodString>;
|
|
43
|
+
version: z.ZodString;
|
|
44
|
+
provider: z.ZodString;
|
|
45
|
+
status: z.ZodEnum<{
|
|
46
|
+
beta: "beta";
|
|
47
|
+
available: "available";
|
|
48
|
+
deprecated: "deprecated";
|
|
49
|
+
unavailable: "unavailable";
|
|
50
|
+
}>;
|
|
51
|
+
requiredSubscriptionTier: z.ZodNullable<z.ZodEnum<{
|
|
52
|
+
free: "free";
|
|
53
|
+
pro: "pro";
|
|
54
|
+
enterprise: "enterprise";
|
|
55
|
+
}>>;
|
|
56
|
+
capabilities: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
57
|
+
configurationOptions: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
58
|
+
webhookFormats: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
59
|
+
inboundWebhookProviders: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
60
|
+
createdAt: z.ZodString;
|
|
61
|
+
updatedAt: z.ZodString;
|
|
62
|
+
}, z.core.$strip>;
|
|
63
|
+
/**
|
|
64
|
+
* Installation status enum
|
|
65
|
+
*
|
|
66
|
+
* - active: Installation is active and enabled
|
|
67
|
+
* - disabled: Installation is disabled by user
|
|
68
|
+
* - pending_auth: Installation is waiting for OAuth authentication
|
|
69
|
+
* - auth_failed: Installation authentication failed
|
|
70
|
+
*/
|
|
71
|
+
export declare const InstallationStatusSchema: z.ZodEnum<{
|
|
72
|
+
active: "active";
|
|
73
|
+
disabled: "disabled";
|
|
74
|
+
pending_auth: "pending_auth";
|
|
75
|
+
auth_failed: "auth_failed";
|
|
76
|
+
}>;
|
|
77
|
+
/**
|
|
78
|
+
* Webhook configuration schema
|
|
79
|
+
*
|
|
80
|
+
* Configuration for webhooks associated with an installation.
|
|
81
|
+
*/
|
|
82
|
+
export declare const WebhookConfigurationSchema: z.ZodObject<{
|
|
83
|
+
outboundWebhooks: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
84
|
+
inboundWebhooks: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
85
|
+
eventFilters: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
86
|
+
}, z.core.$strip>;
|
|
87
|
+
/**
|
|
88
|
+
* Integration installation response schema
|
|
89
|
+
*
|
|
90
|
+
* Represents an installed integration for an organization.
|
|
91
|
+
*/
|
|
92
|
+
export declare const IntegrationInstallationResponseSchema: z.ZodObject<{
|
|
93
|
+
id: z.ZodString;
|
|
94
|
+
organizationId: z.ZodString;
|
|
95
|
+
integrationId: z.ZodString;
|
|
96
|
+
credentialId: z.ZodString;
|
|
97
|
+
status: z.ZodEnum<{
|
|
98
|
+
active: "active";
|
|
99
|
+
disabled: "disabled";
|
|
100
|
+
pending_auth: "pending_auth";
|
|
101
|
+
auth_failed: "auth_failed";
|
|
102
|
+
}>;
|
|
103
|
+
enabledAt: z.ZodNullable<z.ZodString>;
|
|
104
|
+
disabledAt: z.ZodNullable<z.ZodString>;
|
|
105
|
+
lastAuthenticatedAt: z.ZodNullable<z.ZodString>;
|
|
106
|
+
authenticationProvider: z.ZodNullable<z.ZodString>;
|
|
107
|
+
webhookConfiguration: z.ZodObject<{
|
|
108
|
+
outboundWebhooks: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
109
|
+
inboundWebhooks: z.ZodDefault<z.ZodArray<z.ZodString>>;
|
|
110
|
+
eventFilters: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
111
|
+
}, z.core.$strip>;
|
|
112
|
+
metadata: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
113
|
+
createdAt: z.ZodString;
|
|
114
|
+
updatedAt: z.ZodString;
|
|
115
|
+
}, z.core.$strip>;
|
|
116
|
+
export type IntegrationStatus = z.infer<typeof IntegrationStatusSchema>;
|
|
117
|
+
export type SubscriptionTier = z.infer<typeof SubscriptionTierSchema>;
|
|
118
|
+
export type IntegrationResponse = z.infer<typeof IntegrationResponseSchema>;
|
|
119
|
+
export type InstallationStatus = z.infer<typeof InstallationStatusSchema>;
|
|
120
|
+
export type WebhookConfiguration = z.infer<typeof WebhookConfigurationSchema>;
|
|
121
|
+
export type IntegrationInstallationResponse = z.infer<typeof IntegrationInstallationResponseSchema>;
|
|
122
|
+
//# sourceMappingURL=domain.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"domain.schema.d.ts","sourceRoot":"","sources":["../../../src/definitions/integrations/domain.schema.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB;;;;;;;GAOG;AACH,eAAO,MAAM,uBAAuB;;;;;EAEnC,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,sBAAsB;;;;EAAwC,CAAC;AAE5E;;;;GAIG;AACH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;iBAepC,CAAC;AAEH;;;;;;;GAOG;AACH,eAAO,MAAM,wBAAwB;;;;;EAEpC,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,0BAA0B;;;;iBAIrC,CAAC;AAEH;;;;GAIG;AACH,eAAO,MAAM,qCAAqC;;;;;;;;;;;;;;;;;;;;;;;iBAchD,CAAC;AAGH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AACxE,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AACtE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,yBAAyB,CAAC,CAAC;AAC5E,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC1E,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,0BAA0B,CAAC,CAAC;AAC9E,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qCAAqC,CAAC,CAAC"}
|