@holaboss/app-sdk 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +94 -0
  3. package/dist/app-BpcA69HT.d.cts +32 -0
  4. package/dist/app-BpcA69HT.d.cts.map +1 -0
  5. package/dist/app-CPM9G9Ak.d.ts +32 -0
  6. package/dist/app-CPM9G9Ak.d.ts.map +1 -0
  7. package/dist/app-DvahQ8xx.js +147 -0
  8. package/dist/app-DvahQ8xx.js.map +1 -0
  9. package/dist/app-mQJKUJHj.cjs +156 -0
  10. package/dist/approveMarketplaceSubmission-BmtuKiRw.d.ts +3328 -0
  11. package/dist/approveMarketplaceSubmission-BmtuKiRw.d.ts.map +1 -0
  12. package/dist/approveMarketplaceSubmission-Cno-7U1J.d.cts +3328 -0
  13. package/dist/approveMarketplaceSubmission-Cno-7U1J.d.cts.map +1 -0
  14. package/dist/clients/app.cjs +7 -0
  15. package/dist/clients/app.d.cts +2 -0
  16. package/dist/clients/app.d.ts +2 -0
  17. package/dist/clients/app.js +2 -0
  18. package/dist/core.cjs +29 -0
  19. package/dist/core.d.cts +3 -0
  20. package/dist/core.d.ts +3 -0
  21. package/dist/core.js +3 -0
  22. package/dist/index.cjs +218 -0
  23. package/dist/index.d.cts +4 -0
  24. package/dist/index.d.ts +4 -0
  25. package/dist/index.js +7 -0
  26. package/dist/react-DN2Q1phB.cjs +1229 -0
  27. package/dist/react-VeTZ8VzJ.js +764 -0
  28. package/dist/react-VeTZ8VzJ.js.map +1 -0
  29. package/dist/react.cjs +214 -0
  30. package/dist/react.d.cts +3 -0
  31. package/dist/react.d.ts +3 -0
  32. package/dist/react.js +4 -0
  33. package/dist/uninstallMarketplaceSkill-CXtlpmlt.cjs +654 -0
  34. package/dist/uninstallMarketplaceSkill-CYAiu4cU.js +531 -0
  35. package/dist/uninstallMarketplaceSkill-CYAiu4cU.js.map +1 -0
  36. package/dist/uninstallMarketplaceSkillSchema-Bay4cbpz.cjs +1711 -0
  37. package/dist/uninstallMarketplaceSkillSchema-BbGKwqP0.d.ts +1090 -0
  38. package/dist/uninstallMarketplaceSkillSchema-BbGKwqP0.d.ts.map +1 -0
  39. package/dist/uninstallMarketplaceSkillSchema-BfOp0667.d.cts +1090 -0
  40. package/dist/uninstallMarketplaceSkillSchema-BfOp0667.d.cts.map +1 -0
  41. package/dist/uninstallMarketplaceSkillSchema-Dz2r1ms-.js +1048 -0
  42. package/dist/uninstallMarketplaceSkillSchema-Dz2r1ms-.js.map +1 -0
  43. package/dist/zod.cjs +113 -0
  44. package/dist/zod.d.cts +2 -0
  45. package/dist/zod.d.ts +2 -0
  46. package/dist/zod.js +2 -0
  47. package/package.json +120 -0
@@ -0,0 +1,1090 @@
1
+ import { z } from "zod/v4";
2
+
3
+ //#region src/generated/zod/approveMarketplaceSubmissionSchema.d.ts
4
+ declare const approveMarketplaceSubmissionPathParamsSchema: z.ZodObject<{
5
+ submissionId: z.ZodString;
6
+ }, z.core.$strip>;
7
+ /**
8
+ * @description Approved submission
9
+ */
10
+ declare const approveMarketplaceSubmission200Schema: z.ZodObject<{
11
+ id: z.ZodString;
12
+ author_id: z.ZodString;
13
+ author_name: z.ZodString;
14
+ template_name: z.ZodString;
15
+ template_id: z.ZodString;
16
+ version: z.ZodString;
17
+ status: z.ZodString;
18
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
19
+ archive_size_bytes: z.ZodInt;
20
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
21
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
22
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
23
+ created_at: z.ZodString;
24
+ updated_at: z.ZodString;
25
+ }, z.core.$strip>;
26
+ /**
27
+ * @description Unauthorized
28
+ */
29
+ declare const approveMarketplaceSubmission401Schema: z.ZodObject<{
30
+ detail: z.ZodOptional<z.ZodString>;
31
+ error: z.ZodString;
32
+ message: z.ZodOptional<z.ZodString>;
33
+ }, z.core.$strip>;
34
+ /**
35
+ * @description Forbidden
36
+ */
37
+ declare const approveMarketplaceSubmission403Schema: z.ZodObject<{
38
+ detail: z.ZodOptional<z.ZodString>;
39
+ error: z.ZodString;
40
+ message: z.ZodOptional<z.ZodString>;
41
+ }, z.core.$strip>;
42
+ /**
43
+ * @description Service error
44
+ */
45
+ declare const approveMarketplaceSubmission500Schema: z.ZodObject<{
46
+ detail: z.ZodOptional<z.ZodString>;
47
+ error: z.ZodString;
48
+ message: z.ZodOptional<z.ZodString>;
49
+ }, z.core.$strip>;
50
+ declare const approveMarketplaceSubmissionMutationResponseSchema: z.ZodObject<{
51
+ id: z.ZodString;
52
+ author_id: z.ZodString;
53
+ author_name: z.ZodString;
54
+ template_name: z.ZodString;
55
+ template_id: z.ZodString;
56
+ version: z.ZodString;
57
+ status: z.ZodString;
58
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
59
+ archive_size_bytes: z.ZodInt;
60
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
61
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
62
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
63
+ created_at: z.ZodString;
64
+ updated_at: z.ZodString;
65
+ }, z.core.$strip>;
66
+ //#endregion
67
+ //#region src/generated/zod/createMarketplaceSubmissionSchema.d.ts
68
+ /**
69
+ * @description Created submission
70
+ */
71
+ declare const createMarketplaceSubmission201Schema: z.ZodObject<{
72
+ submission_id: z.ZodString;
73
+ template_id: z.ZodString;
74
+ upload_url: z.ZodString;
75
+ upload_expires_at: z.ZodString;
76
+ }, z.core.$strip>;
77
+ /**
78
+ * @description Unauthorized
79
+ */
80
+ declare const createMarketplaceSubmission401Schema: z.ZodObject<{
81
+ detail: z.ZodOptional<z.ZodString>;
82
+ error: z.ZodString;
83
+ message: z.ZodOptional<z.ZodString>;
84
+ }, z.core.$strip>;
85
+ /**
86
+ * @description Validation error
87
+ */
88
+ declare const createMarketplaceSubmission422Schema: z.ZodObject<{
89
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
90
+ }, z.core.$strip>;
91
+ /**
92
+ * @description Service error
93
+ */
94
+ declare const createMarketplaceSubmission500Schema: z.ZodObject<{
95
+ detail: z.ZodOptional<z.ZodString>;
96
+ error: z.ZodString;
97
+ message: z.ZodOptional<z.ZodString>;
98
+ }, z.core.$strip>;
99
+ declare const createMarketplaceSubmissionMutationRequestSchema: z.ZodObject<{
100
+ workspace_id: z.ZodString;
101
+ holaboss_user_id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
102
+ name: z.ZodString;
103
+ description: z.ZodString;
104
+ category: z.ZodDefault<z.ZodString>;
105
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
106
+ apps: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
107
+ name: z.ZodString;
108
+ required: z.ZodDefault<z.ZodBoolean>;
109
+ }, z.core.$strip>]>>>;
110
+ onboarding_md: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
111
+ readme_md: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
112
+ }, z.core.$strip>;
113
+ declare const createMarketplaceSubmissionMutationResponseSchema: z.ZodObject<{
114
+ submission_id: z.ZodString;
115
+ template_id: z.ZodString;
116
+ upload_url: z.ZodString;
117
+ upload_expires_at: z.ZodString;
118
+ }, z.core.$strip>;
119
+ //#endregion
120
+ //#region src/generated/zod/deleteMarketplaceSubmissionSchema.d.ts
121
+ declare const deleteMarketplaceSubmissionPathParamsSchema: z.ZodObject<{
122
+ submissionId: z.ZodString;
123
+ }, z.core.$strip>;
124
+ declare const deleteMarketplaceSubmissionQueryParamsSchema: z.ZodObject<{
125
+ author_id: z.ZodString;
126
+ }, z.core.$strip>;
127
+ /**
128
+ * @description Deletion result
129
+ */
130
+ declare const deleteMarketplaceSubmission200Schema: z.ZodObject<{}, z.core.$catchall<z.ZodBoolean>>;
131
+ /**
132
+ * @description Unauthorized
133
+ */
134
+ declare const deleteMarketplaceSubmission401Schema: z.ZodObject<{
135
+ detail: z.ZodOptional<z.ZodString>;
136
+ error: z.ZodString;
137
+ message: z.ZodOptional<z.ZodString>;
138
+ }, z.core.$strip>;
139
+ /**
140
+ * @description Validation error
141
+ */
142
+ declare const deleteMarketplaceSubmission422Schema: z.ZodObject<{
143
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
144
+ }, z.core.$strip>;
145
+ /**
146
+ * @description Service error
147
+ */
148
+ declare const deleteMarketplaceSubmission500Schema: z.ZodObject<{
149
+ detail: z.ZodOptional<z.ZodString>;
150
+ error: z.ZodString;
151
+ message: z.ZodOptional<z.ZodString>;
152
+ }, z.core.$strip>;
153
+ declare const deleteMarketplaceSubmissionMutationResponseSchema: z.ZodObject<{}, z.core.$catchall<z.ZodBoolean>>;
154
+ //#endregion
155
+ //#region src/generated/zod/downloadMarketplaceSubmissionArchiveSchema.d.ts
156
+ declare const downloadMarketplaceSubmissionArchivePathParamsSchema: z.ZodObject<{
157
+ submissionId: z.ZodString;
158
+ }, z.core.$strip>;
159
+ /**
160
+ * @description Submission archive
161
+ */
162
+ declare const downloadMarketplaceSubmissionArchive200Schema: z.ZodAny;
163
+ declare const downloadMarketplaceSubmissionArchiveQueryResponseSchema: z.ZodAny;
164
+ //#endregion
165
+ //#region src/generated/zod/downloadMarketplaceTemplateSchema.d.ts
166
+ declare const downloadMarketplaceTemplateQueryParamsSchema: z.ZodObject<{
167
+ name: z.ZodString;
168
+ }, z.core.$strip>;
169
+ /**
170
+ * @description Template archive
171
+ */
172
+ declare const downloadMarketplaceTemplate200Schema: z.ZodAny;
173
+ /**
174
+ * @description Bad request
175
+ */
176
+ declare const downloadMarketplaceTemplate400Schema: z.ZodObject<{
177
+ detail: z.ZodOptional<z.ZodString>;
178
+ error: z.ZodString;
179
+ message: z.ZodOptional<z.ZodString>;
180
+ }, z.core.$strip>;
181
+ declare const downloadMarketplaceTemplateQueryResponseSchema: z.ZodAny;
182
+ //#endregion
183
+ //#region src/generated/zod/finalizeMarketplaceSubmissionSchema.d.ts
184
+ declare const finalizeMarketplaceSubmissionPathParamsSchema: z.ZodObject<{
185
+ submissionId: z.ZodString;
186
+ }, z.core.$strip>;
187
+ /**
188
+ * @description Finalized submission
189
+ */
190
+ declare const finalizeMarketplaceSubmission200Schema: z.ZodObject<{
191
+ submission_id: z.ZodString;
192
+ status: z.ZodString;
193
+ template_name: z.ZodString;
194
+ }, z.core.$strip>;
195
+ /**
196
+ * @description Unauthorized
197
+ */
198
+ declare const finalizeMarketplaceSubmission401Schema: z.ZodObject<{
199
+ detail: z.ZodOptional<z.ZodString>;
200
+ error: z.ZodString;
201
+ message: z.ZodOptional<z.ZodString>;
202
+ }, z.core.$strip>;
203
+ /**
204
+ * @description Validation error
205
+ */
206
+ declare const finalizeMarketplaceSubmission422Schema: z.ZodObject<{
207
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
208
+ }, z.core.$strip>;
209
+ /**
210
+ * @description Service error
211
+ */
212
+ declare const finalizeMarketplaceSubmission500Schema: z.ZodObject<{
213
+ detail: z.ZodOptional<z.ZodString>;
214
+ error: z.ZodString;
215
+ message: z.ZodOptional<z.ZodString>;
216
+ }, z.core.$strip>;
217
+ declare const finalizeMarketplaceSubmissionMutationRequestSchema: z.ZodObject<{
218
+ holaboss_user_id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
219
+ }, z.core.$strip>;
220
+ declare const finalizeMarketplaceSubmissionMutationResponseSchema: z.ZodObject<{
221
+ submission_id: z.ZodString;
222
+ status: z.ZodString;
223
+ template_name: z.ZodString;
224
+ }, z.core.$strip>;
225
+ //#endregion
226
+ //#region src/generated/zod/generateMarketplaceTemplateContentSchema.d.ts
227
+ /**
228
+ * @description Generated template content
229
+ */
230
+ declare const generateMarketplaceTemplateContent200Schema: z.ZodObject<{
231
+ content: z.ZodString;
232
+ }, z.core.$strip>;
233
+ /**
234
+ * @description Unauthorized
235
+ */
236
+ declare const generateMarketplaceTemplateContent401Schema: z.ZodObject<{
237
+ detail: z.ZodOptional<z.ZodString>;
238
+ error: z.ZodString;
239
+ message: z.ZodOptional<z.ZodString>;
240
+ }, z.core.$strip>;
241
+ /**
242
+ * @description Validation error
243
+ */
244
+ declare const generateMarketplaceTemplateContent422Schema: z.ZodObject<{
245
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
246
+ }, z.core.$strip>;
247
+ /**
248
+ * @description Service error
249
+ */
250
+ declare const generateMarketplaceTemplateContent500Schema: z.ZodObject<{
251
+ detail: z.ZodOptional<z.ZodString>;
252
+ error: z.ZodString;
253
+ message: z.ZodOptional<z.ZodString>;
254
+ }, z.core.$strip>;
255
+ declare const generateMarketplaceTemplateContentMutationRequestSchema: z.ZodObject<{
256
+ content_type: z.ZodString;
257
+ name: z.ZodString;
258
+ description: z.ZodString;
259
+ category: z.ZodDefault<z.ZodString>;
260
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
261
+ apps: z.ZodOptional<z.ZodArray<z.ZodString>>;
262
+ }, z.core.$strip>;
263
+ declare const generateMarketplaceTemplateContentMutationResponseSchema: z.ZodObject<{
264
+ content: z.ZodString;
265
+ }, z.core.$strip>;
266
+ //#endregion
267
+ //#region src/generated/zod/getMarketplaceSkillSchema.d.ts
268
+ declare const getMarketplaceSkillPathParamsSchema: z.ZodObject<{
269
+ skillId: z.ZodString;
270
+ }, z.core.$strip>;
271
+ /**
272
+ * @description Marketplace skill detail
273
+ */
274
+ declare const getMarketplaceSkill200Schema: z.ZodObject<{
275
+ id: z.ZodString;
276
+ name: z.ZodString;
277
+ description: z.ZodString;
278
+ category: z.ZodString;
279
+ icon: z.ZodString;
280
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
281
+ long_description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
282
+ author: z.ZodDefault<z.ZodString>;
283
+ source: z.ZodDefault<z.ZodString>;
284
+ verified: z.ZodDefault<z.ZodBoolean>;
285
+ install_count: z.ZodDefault<z.ZodInt>;
286
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
287
+ is_popular: z.ZodDefault<z.ZodBoolean>;
288
+ system_prompt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
289
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodString>>;
290
+ settings_schema: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$catchall<z.ZodAny>>, z.ZodNull, z.ZodNull]>>;
291
+ }, z.core.$strip>;
292
+ /**
293
+ * @description Service error
294
+ */
295
+ declare const getMarketplaceSkill500Schema: z.ZodObject<{
296
+ detail: z.ZodOptional<z.ZodString>;
297
+ error: z.ZodString;
298
+ message: z.ZodOptional<z.ZodString>;
299
+ }, z.core.$strip>;
300
+ declare const getMarketplaceSkillQueryResponseSchema: z.ZodObject<{
301
+ id: z.ZodString;
302
+ name: z.ZodString;
303
+ description: z.ZodString;
304
+ category: z.ZodString;
305
+ icon: z.ZodString;
306
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
307
+ long_description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
308
+ author: z.ZodDefault<z.ZodString>;
309
+ source: z.ZodDefault<z.ZodString>;
310
+ verified: z.ZodDefault<z.ZodBoolean>;
311
+ install_count: z.ZodDefault<z.ZodInt>;
312
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
313
+ is_popular: z.ZodDefault<z.ZodBoolean>;
314
+ system_prompt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
315
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodString>>;
316
+ settings_schema: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$catchall<z.ZodAny>>, z.ZodNull, z.ZodNull]>>;
317
+ }, z.core.$strip>;
318
+ //#endregion
319
+ //#region src/generated/zod/installImportedMarketplaceSkillSchema.d.ts
320
+ /**
321
+ * @description Installed imported skill metadata
322
+ */
323
+ declare const installImportedMarketplaceSkill200Schema: z.ZodObject<{
324
+ id: z.ZodString;
325
+ workspace_id: z.ZodString;
326
+ skill_id: z.ZodString;
327
+ enabled: z.ZodDefault<z.ZodBoolean>;
328
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
329
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
330
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
331
+ installed_at: z.ZodDefault<z.ZodString>;
332
+ updated_at: z.ZodDefault<z.ZodString>;
333
+ imported_name: z.ZodString;
334
+ imported_description: z.ZodString;
335
+ }, z.core.$strip>;
336
+ /**
337
+ * @description Unauthorized
338
+ */
339
+ declare const installImportedMarketplaceSkill401Schema: z.ZodObject<{
340
+ detail: z.ZodOptional<z.ZodString>;
341
+ error: z.ZodString;
342
+ message: z.ZodOptional<z.ZodString>;
343
+ }, z.core.$strip>;
344
+ /**
345
+ * @description Validation error
346
+ */
347
+ declare const installImportedMarketplaceSkill422Schema: z.ZodObject<{
348
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
349
+ }, z.core.$strip>;
350
+ /**
351
+ * @description Service error
352
+ */
353
+ declare const installImportedMarketplaceSkill500Schema: z.ZodObject<{
354
+ detail: z.ZodOptional<z.ZodString>;
355
+ error: z.ZodString;
356
+ message: z.ZodOptional<z.ZodString>;
357
+ }, z.core.$strip>;
358
+ declare const installImportedMarketplaceSkillMutationRequestSchema: z.ZodObject<{
359
+ workspace_id: z.ZodString;
360
+ url: z.ZodString;
361
+ }, z.core.$strip>;
362
+ declare const installImportedMarketplaceSkillMutationResponseSchema: z.ZodObject<{
363
+ id: z.ZodString;
364
+ workspace_id: z.ZodString;
365
+ skill_id: z.ZodString;
366
+ enabled: z.ZodDefault<z.ZodBoolean>;
367
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
368
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
369
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
370
+ installed_at: z.ZodDefault<z.ZodString>;
371
+ updated_at: z.ZodDefault<z.ZodString>;
372
+ imported_name: z.ZodString;
373
+ imported_description: z.ZodString;
374
+ }, z.core.$strip>;
375
+ //#endregion
376
+ //#region src/generated/zod/installMarketplaceSkillSchema.d.ts
377
+ /**
378
+ * @description Installed skill metadata
379
+ */
380
+ declare const installMarketplaceSkill200Schema: z.ZodObject<{
381
+ id: z.ZodString;
382
+ workspace_id: z.ZodString;
383
+ skill_id: z.ZodString;
384
+ enabled: z.ZodDefault<z.ZodBoolean>;
385
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
386
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
387
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
388
+ installed_at: z.ZodDefault<z.ZodString>;
389
+ updated_at: z.ZodDefault<z.ZodString>;
390
+ }, z.core.$strip>;
391
+ /**
392
+ * @description Unauthorized
393
+ */
394
+ declare const installMarketplaceSkill401Schema: z.ZodObject<{
395
+ detail: z.ZodOptional<z.ZodString>;
396
+ error: z.ZodString;
397
+ message: z.ZodOptional<z.ZodString>;
398
+ }, z.core.$strip>;
399
+ /**
400
+ * @description Validation error
401
+ */
402
+ declare const installMarketplaceSkill422Schema: z.ZodObject<{
403
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
404
+ }, z.core.$strip>;
405
+ /**
406
+ * @description Service error
407
+ */
408
+ declare const installMarketplaceSkill500Schema: z.ZodObject<{
409
+ detail: z.ZodOptional<z.ZodString>;
410
+ error: z.ZodString;
411
+ message: z.ZodOptional<z.ZodString>;
412
+ }, z.core.$strip>;
413
+ declare const installMarketplaceSkillMutationRequestSchema: z.ZodObject<{
414
+ workspace_id: z.ZodString;
415
+ skill_id: z.ZodString;
416
+ }, z.core.$strip>;
417
+ declare const installMarketplaceSkillMutationResponseSchema: z.ZodObject<{
418
+ id: z.ZodString;
419
+ workspace_id: z.ZodString;
420
+ skill_id: z.ZodString;
421
+ enabled: z.ZodDefault<z.ZodBoolean>;
422
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
423
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
424
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
425
+ installed_at: z.ZodDefault<z.ZodString>;
426
+ updated_at: z.ZodDefault<z.ZodString>;
427
+ }, z.core.$strip>;
428
+ //#endregion
429
+ //#region src/generated/zod/listMarketplaceAppTemplatesSchema.d.ts
430
+ /**
431
+ * @description Marketplace app templates
432
+ */
433
+ declare const listMarketplaceAppTemplates200Schema: z.ZodObject<{
434
+ templates: z.ZodArray<z.ZodObject<{
435
+ name: z.ZodString;
436
+ repo: z.ZodString;
437
+ path: z.ZodDefault<z.ZodString>;
438
+ default_ref: z.ZodDefault<z.ZodString>;
439
+ description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
440
+ readme: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
441
+ is_hidden: z.ZodDefault<z.ZodBoolean>;
442
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
443
+ allowed_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
444
+ icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
445
+ category: z.ZodDefault<z.ZodString>;
446
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
447
+ archive_url_template: z.ZodDefault<z.ZodString>;
448
+ archive_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
449
+ version: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
450
+ archives: z.ZodOptional<z.ZodArray<z.ZodObject<{
451
+ target: z.ZodString;
452
+ url: z.ZodString;
453
+ }, z.core.$strip>>>;
454
+ }, z.core.$strip>>;
455
+ }, z.core.$strip>;
456
+ /**
457
+ * @description Service error
458
+ */
459
+ declare const listMarketplaceAppTemplates500Schema: z.ZodObject<{
460
+ detail: z.ZodOptional<z.ZodString>;
461
+ error: z.ZodString;
462
+ message: z.ZodOptional<z.ZodString>;
463
+ }, z.core.$strip>;
464
+ declare const listMarketplaceAppTemplatesQueryResponseSchema: z.ZodObject<{
465
+ templates: z.ZodArray<z.ZodObject<{
466
+ name: z.ZodString;
467
+ repo: z.ZodString;
468
+ path: z.ZodDefault<z.ZodString>;
469
+ default_ref: z.ZodDefault<z.ZodString>;
470
+ description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
471
+ readme: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
472
+ is_hidden: z.ZodDefault<z.ZodBoolean>;
473
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
474
+ allowed_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
475
+ icon: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
476
+ category: z.ZodDefault<z.ZodString>;
477
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
478
+ archive_url_template: z.ZodDefault<z.ZodString>;
479
+ archive_version: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
480
+ version: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
481
+ archives: z.ZodOptional<z.ZodArray<z.ZodObject<{
482
+ target: z.ZodString;
483
+ url: z.ZodString;
484
+ }, z.core.$strip>>>;
485
+ }, z.core.$strip>>;
486
+ }, z.core.$strip>;
487
+ //#endregion
488
+ //#region src/generated/zod/listMarketplaceSkillsSchema.d.ts
489
+ /**
490
+ * @description Marketplace skills
491
+ */
492
+ declare const listMarketplaceSkills200Schema: z.ZodObject<{
493
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
494
+ id: z.ZodString;
495
+ name: z.ZodString;
496
+ description: z.ZodString;
497
+ category: z.ZodString;
498
+ icon: z.ZodString;
499
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
500
+ long_description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
501
+ author: z.ZodDefault<z.ZodString>;
502
+ source: z.ZodDefault<z.ZodString>;
503
+ verified: z.ZodDefault<z.ZodBoolean>;
504
+ install_count: z.ZodDefault<z.ZodInt>;
505
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
506
+ is_popular: z.ZodDefault<z.ZodBoolean>;
507
+ system_prompt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
508
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodString>>;
509
+ settings_schema: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$catchall<z.ZodAny>>, z.ZodNull, z.ZodNull]>>;
510
+ }, z.core.$strip>>>;
511
+ }, z.core.$strip>;
512
+ /**
513
+ * @description Service error
514
+ */
515
+ declare const listMarketplaceSkills500Schema: z.ZodObject<{
516
+ detail: z.ZodOptional<z.ZodString>;
517
+ error: z.ZodString;
518
+ message: z.ZodOptional<z.ZodString>;
519
+ }, z.core.$strip>;
520
+ declare const listMarketplaceSkillsQueryResponseSchema: z.ZodObject<{
521
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
522
+ id: z.ZodString;
523
+ name: z.ZodString;
524
+ description: z.ZodString;
525
+ category: z.ZodString;
526
+ icon: z.ZodString;
527
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
528
+ long_description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
529
+ author: z.ZodDefault<z.ZodString>;
530
+ source: z.ZodDefault<z.ZodString>;
531
+ verified: z.ZodDefault<z.ZodBoolean>;
532
+ install_count: z.ZodDefault<z.ZodInt>;
533
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
534
+ is_popular: z.ZodDefault<z.ZodBoolean>;
535
+ system_prompt: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
536
+ capabilities: z.ZodOptional<z.ZodArray<z.ZodString>>;
537
+ settings_schema: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{}, z.core.$catchall<z.ZodAny>>, z.ZodNull, z.ZodNull]>>;
538
+ }, z.core.$strip>>>;
539
+ }, z.core.$strip>;
540
+ //#endregion
541
+ //#region src/generated/zod/listMarketplaceSubmissionsSchema.d.ts
542
+ declare const listMarketplaceSubmissionsQueryParamsSchema: z.ZodObject<{
543
+ author_id: z.ZodString;
544
+ }, z.core.$strip>;
545
+ /**
546
+ * @description Submission list
547
+ */
548
+ declare const listMarketplaceSubmissions200Schema: z.ZodObject<{
549
+ submissions: z.ZodArray<z.ZodObject<{
550
+ id: z.ZodString;
551
+ author_id: z.ZodString;
552
+ author_name: z.ZodString;
553
+ template_name: z.ZodString;
554
+ template_id: z.ZodString;
555
+ version: z.ZodString;
556
+ status: z.ZodString;
557
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
558
+ archive_size_bytes: z.ZodInt;
559
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
560
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
561
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
562
+ created_at: z.ZodString;
563
+ updated_at: z.ZodString;
564
+ }, z.core.$strip>>;
565
+ count: z.ZodInt;
566
+ }, z.core.$strip>;
567
+ /**
568
+ * @description Unauthorized
569
+ */
570
+ declare const listMarketplaceSubmissions401Schema: z.ZodObject<{
571
+ detail: z.ZodOptional<z.ZodString>;
572
+ error: z.ZodString;
573
+ message: z.ZodOptional<z.ZodString>;
574
+ }, z.core.$strip>;
575
+ /**
576
+ * @description Service error
577
+ */
578
+ declare const listMarketplaceSubmissions500Schema: z.ZodObject<{
579
+ detail: z.ZodOptional<z.ZodString>;
580
+ error: z.ZodString;
581
+ message: z.ZodOptional<z.ZodString>;
582
+ }, z.core.$strip>;
583
+ declare const listMarketplaceSubmissionsQueryResponseSchema: z.ZodObject<{
584
+ submissions: z.ZodArray<z.ZodObject<{
585
+ id: z.ZodString;
586
+ author_id: z.ZodString;
587
+ author_name: z.ZodString;
588
+ template_name: z.ZodString;
589
+ template_id: z.ZodString;
590
+ version: z.ZodString;
591
+ status: z.ZodString;
592
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
593
+ archive_size_bytes: z.ZodInt;
594
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
595
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
596
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
597
+ created_at: z.ZodString;
598
+ updated_at: z.ZodString;
599
+ }, z.core.$strip>>;
600
+ count: z.ZodInt;
601
+ }, z.core.$strip>;
602
+ //#endregion
603
+ //#region src/generated/zod/listMarketplaceTemplatesSchema.d.ts
604
+ /**
605
+ * @description Marketplace templates
606
+ */
607
+ declare const listMarketplaceTemplates200Schema: z.ZodObject<{
608
+ templates: z.ZodArray<z.ZodObject<{
609
+ name: z.ZodString;
610
+ repo: z.ZodString;
611
+ path: z.ZodString;
612
+ default_ref: z.ZodDefault<z.ZodString>;
613
+ description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
614
+ readme: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
615
+ is_hidden: z.ZodDefault<z.ZodBoolean>;
616
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
617
+ allowed_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
618
+ icon: z.ZodDefault<z.ZodString>;
619
+ emoji: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
620
+ apps: z.ZodOptional<z.ZodArray<z.ZodObject<{
621
+ name: z.ZodString;
622
+ required: z.ZodDefault<z.ZodBoolean>;
623
+ }, z.core.$strip>>>;
624
+ min_optional_apps: z.ZodDefault<z.ZodInt>;
625
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
626
+ category: z.ZodDefault<z.ZodString>;
627
+ long_description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
628
+ views: z.ZodOptional<z.ZodArray<z.ZodObject<{
629
+ name: z.ZodString;
630
+ description: z.ZodString;
631
+ }, z.core.$strip>>>;
632
+ install_count: z.ZodDefault<z.ZodInt>;
633
+ source: z.ZodDefault<z.ZodString>;
634
+ verified: z.ZodDefault<z.ZodBoolean>;
635
+ display_name: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
636
+ author_name: z.ZodDefault<z.ZodString>;
637
+ author_id: z.ZodDefault<z.ZodString>;
638
+ }, z.core.$strip>>;
639
+ spotlight: z.ZodOptional<z.ZodArray<z.ZodObject<{
640
+ label: z.ZodString;
641
+ title: z.ZodString;
642
+ description: z.ZodString;
643
+ template_name: z.ZodString;
644
+ }, z.core.$strip>>>;
645
+ }, z.core.$strip>;
646
+ /**
647
+ * @description Service error
648
+ */
649
+ declare const listMarketplaceTemplates500Schema: z.ZodObject<{
650
+ detail: z.ZodOptional<z.ZodString>;
651
+ error: z.ZodString;
652
+ message: z.ZodOptional<z.ZodString>;
653
+ }, z.core.$strip>;
654
+ declare const listMarketplaceTemplatesQueryResponseSchema: z.ZodObject<{
655
+ templates: z.ZodArray<z.ZodObject<{
656
+ name: z.ZodString;
657
+ repo: z.ZodString;
658
+ path: z.ZodString;
659
+ default_ref: z.ZodDefault<z.ZodString>;
660
+ description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
661
+ readme: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
662
+ is_hidden: z.ZodDefault<z.ZodBoolean>;
663
+ is_coming_soon: z.ZodDefault<z.ZodBoolean>;
664
+ allowed_user_ids: z.ZodOptional<z.ZodArray<z.ZodString>>;
665
+ icon: z.ZodDefault<z.ZodString>;
666
+ emoji: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
667
+ apps: z.ZodOptional<z.ZodArray<z.ZodObject<{
668
+ name: z.ZodString;
669
+ required: z.ZodDefault<z.ZodBoolean>;
670
+ }, z.core.$strip>>>;
671
+ min_optional_apps: z.ZodDefault<z.ZodInt>;
672
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
673
+ category: z.ZodDefault<z.ZodString>;
674
+ long_description: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
675
+ views: z.ZodOptional<z.ZodArray<z.ZodObject<{
676
+ name: z.ZodString;
677
+ description: z.ZodString;
678
+ }, z.core.$strip>>>;
679
+ install_count: z.ZodDefault<z.ZodInt>;
680
+ source: z.ZodDefault<z.ZodString>;
681
+ verified: z.ZodDefault<z.ZodBoolean>;
682
+ display_name: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
683
+ author_name: z.ZodDefault<z.ZodString>;
684
+ author_id: z.ZodDefault<z.ZodString>;
685
+ }, z.core.$strip>>;
686
+ spotlight: z.ZodOptional<z.ZodArray<z.ZodObject<{
687
+ label: z.ZodString;
688
+ title: z.ZodString;
689
+ description: z.ZodString;
690
+ template_name: z.ZodString;
691
+ }, z.core.$strip>>>;
692
+ }, z.core.$strip>;
693
+ //#endregion
694
+ //#region src/generated/zod/listPendingMarketplaceSubmissionsSchema.d.ts
695
+ /**
696
+ * @description Pending submission list
697
+ */
698
+ declare const listPendingMarketplaceSubmissions200Schema: z.ZodObject<{
699
+ submissions: z.ZodArray<z.ZodObject<{
700
+ id: z.ZodString;
701
+ author_id: z.ZodString;
702
+ author_name: z.ZodString;
703
+ template_name: z.ZodString;
704
+ template_id: z.ZodString;
705
+ version: z.ZodString;
706
+ status: z.ZodString;
707
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
708
+ archive_size_bytes: z.ZodInt;
709
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
710
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
711
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
712
+ created_at: z.ZodString;
713
+ updated_at: z.ZodString;
714
+ }, z.core.$strip>>;
715
+ count: z.ZodInt;
716
+ }, z.core.$strip>;
717
+ /**
718
+ * @description Unauthorized
719
+ */
720
+ declare const listPendingMarketplaceSubmissions401Schema: z.ZodObject<{
721
+ detail: z.ZodOptional<z.ZodString>;
722
+ error: z.ZodString;
723
+ message: z.ZodOptional<z.ZodString>;
724
+ }, z.core.$strip>;
725
+ /**
726
+ * @description Forbidden
727
+ */
728
+ declare const listPendingMarketplaceSubmissions403Schema: z.ZodObject<{
729
+ detail: z.ZodOptional<z.ZodString>;
730
+ error: z.ZodString;
731
+ message: z.ZodOptional<z.ZodString>;
732
+ }, z.core.$strip>;
733
+ /**
734
+ * @description Service error
735
+ */
736
+ declare const listPendingMarketplaceSubmissions500Schema: z.ZodObject<{
737
+ detail: z.ZodOptional<z.ZodString>;
738
+ error: z.ZodString;
739
+ message: z.ZodOptional<z.ZodString>;
740
+ }, z.core.$strip>;
741
+ declare const listPendingMarketplaceSubmissionsQueryResponseSchema: z.ZodObject<{
742
+ submissions: z.ZodArray<z.ZodObject<{
743
+ id: z.ZodString;
744
+ author_id: z.ZodString;
745
+ author_name: z.ZodString;
746
+ template_name: z.ZodString;
747
+ template_id: z.ZodString;
748
+ version: z.ZodString;
749
+ status: z.ZodString;
750
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
751
+ archive_size_bytes: z.ZodInt;
752
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
753
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
754
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
755
+ created_at: z.ZodString;
756
+ updated_at: z.ZodString;
757
+ }, z.core.$strip>>;
758
+ count: z.ZodInt;
759
+ }, z.core.$strip>;
760
+ //#endregion
761
+ //#region src/generated/zod/listWorkspaceMarketplaceSkillsSchema.d.ts
762
+ declare const listWorkspaceMarketplaceSkillsPathParamsSchema: z.ZodObject<{
763
+ workspaceId: z.ZodString;
764
+ }, z.core.$strip>;
765
+ /**
766
+ * @description Workspace skills
767
+ */
768
+ declare const listWorkspaceMarketplaceSkills200Schema: z.ZodObject<{
769
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
770
+ id: z.ZodString;
771
+ workspace_id: z.ZodString;
772
+ skill_id: z.ZodString;
773
+ enabled: z.ZodDefault<z.ZodBoolean>;
774
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
775
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
776
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
777
+ installed_at: z.ZodDefault<z.ZodString>;
778
+ updated_at: z.ZodDefault<z.ZodString>;
779
+ }, z.core.$strip>>>;
780
+ }, z.core.$strip>;
781
+ /**
782
+ * @description Unauthorized
783
+ */
784
+ declare const listWorkspaceMarketplaceSkills401Schema: z.ZodObject<{
785
+ detail: z.ZodOptional<z.ZodString>;
786
+ error: z.ZodString;
787
+ message: z.ZodOptional<z.ZodString>;
788
+ }, z.core.$strip>;
789
+ /**
790
+ * @description Service error
791
+ */
792
+ declare const listWorkspaceMarketplaceSkills500Schema: z.ZodObject<{
793
+ detail: z.ZodOptional<z.ZodString>;
794
+ error: z.ZodString;
795
+ message: z.ZodOptional<z.ZodString>;
796
+ }, z.core.$strip>;
797
+ declare const listWorkspaceMarketplaceSkillsQueryResponseSchema: z.ZodObject<{
798
+ skills: z.ZodOptional<z.ZodArray<z.ZodObject<{
799
+ id: z.ZodString;
800
+ workspace_id: z.ZodString;
801
+ skill_id: z.ZodString;
802
+ enabled: z.ZodDefault<z.ZodBoolean>;
803
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
804
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
805
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
806
+ installed_at: z.ZodDefault<z.ZodString>;
807
+ updated_at: z.ZodDefault<z.ZodString>;
808
+ }, z.core.$strip>>>;
809
+ }, z.core.$strip>;
810
+ //#endregion
811
+ //#region src/generated/zod/materializeMarketplaceTemplateSchema.d.ts
812
+ /**
813
+ * @description Materialized template
814
+ */
815
+ declare const materializeMarketplaceTemplate200Schema: z.ZodObject<{
816
+ template: z.ZodObject<{
817
+ name: z.ZodString;
818
+ repo: z.ZodString;
819
+ path: z.ZodString;
820
+ effective_ref: z.ZodString;
821
+ effective_commit: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
822
+ source: z.ZodDefault<z.ZodString>;
823
+ }, z.core.$strip>;
824
+ files: z.ZodArray<z.ZodObject<{
825
+ path: z.ZodString;
826
+ content_base64: z.ZodString;
827
+ executable: z.ZodDefault<z.ZodBoolean>;
828
+ }, z.core.$strip>>;
829
+ file_count: z.ZodInt;
830
+ total_bytes: z.ZodInt;
831
+ }, z.core.$strip>;
832
+ /**
833
+ * @description Unauthorized
834
+ */
835
+ declare const materializeMarketplaceTemplate401Schema: z.ZodObject<{
836
+ detail: z.ZodOptional<z.ZodString>;
837
+ error: z.ZodString;
838
+ message: z.ZodOptional<z.ZodString>;
839
+ }, z.core.$strip>;
840
+ /**
841
+ * @description Validation error
842
+ */
843
+ declare const materializeMarketplaceTemplate422Schema: z.ZodObject<{
844
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
845
+ }, z.core.$strip>;
846
+ /**
847
+ * @description Service error
848
+ */
849
+ declare const materializeMarketplaceTemplate500Schema: z.ZodObject<{
850
+ detail: z.ZodOptional<z.ZodString>;
851
+ error: z.ZodString;
852
+ message: z.ZodOptional<z.ZodString>;
853
+ }, z.core.$strip>;
854
+ declare const materializeMarketplaceTemplateMutationRequestSchema: z.ZodObject<{
855
+ holaboss_user_id: z.ZodString;
856
+ template_name: z.ZodString;
857
+ template_ref: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
858
+ template_commit: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
859
+ }, z.core.$strip>;
860
+ declare const materializeMarketplaceTemplateMutationResponseSchema: z.ZodObject<{
861
+ template: z.ZodObject<{
862
+ name: z.ZodString;
863
+ repo: z.ZodString;
864
+ path: z.ZodString;
865
+ effective_ref: z.ZodString;
866
+ effective_commit: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
867
+ source: z.ZodDefault<z.ZodString>;
868
+ }, z.core.$strip>;
869
+ files: z.ZodArray<z.ZodObject<{
870
+ path: z.ZodString;
871
+ content_base64: z.ZodString;
872
+ executable: z.ZodDefault<z.ZodBoolean>;
873
+ }, z.core.$strip>>;
874
+ file_count: z.ZodInt;
875
+ total_bytes: z.ZodInt;
876
+ }, z.core.$strip>;
877
+ //#endregion
878
+ //#region src/generated/zod/previewMarketplaceSkillImportSchema.d.ts
879
+ /**
880
+ * @description Import preview
881
+ */
882
+ declare const previewMarketplaceSkillImport200Schema: z.ZodObject<{
883
+ name: z.ZodString;
884
+ description: z.ZodString;
885
+ body_preview: z.ZodString;
886
+ source_url: z.ZodString;
887
+ raw_url: z.ZodString;
888
+ size_bytes: z.ZodInt;
889
+ }, z.core.$strip>;
890
+ /**
891
+ * @description Unauthorized
892
+ */
893
+ declare const previewMarketplaceSkillImport401Schema: z.ZodObject<{
894
+ detail: z.ZodOptional<z.ZodString>;
895
+ error: z.ZodString;
896
+ message: z.ZodOptional<z.ZodString>;
897
+ }, z.core.$strip>;
898
+ /**
899
+ * @description Validation error
900
+ */
901
+ declare const previewMarketplaceSkillImport422Schema: z.ZodObject<{
902
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
903
+ }, z.core.$strip>;
904
+ /**
905
+ * @description Service error
906
+ */
907
+ declare const previewMarketplaceSkillImport500Schema: z.ZodObject<{
908
+ detail: z.ZodOptional<z.ZodString>;
909
+ error: z.ZodString;
910
+ message: z.ZodOptional<z.ZodString>;
911
+ }, z.core.$strip>;
912
+ declare const previewMarketplaceSkillImportMutationRequestSchema: z.ZodObject<{
913
+ url: z.ZodString;
914
+ }, z.core.$strip>;
915
+ declare const previewMarketplaceSkillImportMutationResponseSchema: z.ZodObject<{
916
+ name: z.ZodString;
917
+ description: z.ZodString;
918
+ body_preview: z.ZodString;
919
+ source_url: z.ZodString;
920
+ raw_url: z.ZodString;
921
+ size_bytes: z.ZodInt;
922
+ }, z.core.$strip>;
923
+ //#endregion
924
+ //#region src/generated/zod/rejectMarketplaceSubmissionSchema.d.ts
925
+ declare const rejectMarketplaceSubmissionPathParamsSchema: z.ZodObject<{
926
+ submissionId: z.ZodString;
927
+ }, z.core.$strip>;
928
+ /**
929
+ * @description Rejected submission
930
+ */
931
+ declare const rejectMarketplaceSubmission200Schema: z.ZodObject<{
932
+ id: z.ZodString;
933
+ author_id: z.ZodString;
934
+ author_name: z.ZodString;
935
+ template_name: z.ZodString;
936
+ template_id: z.ZodString;
937
+ version: z.ZodString;
938
+ status: z.ZodString;
939
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
940
+ archive_size_bytes: z.ZodInt;
941
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
942
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
943
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
944
+ created_at: z.ZodString;
945
+ updated_at: z.ZodString;
946
+ }, z.core.$strip>;
947
+ /**
948
+ * @description Unauthorized
949
+ */
950
+ declare const rejectMarketplaceSubmission401Schema: z.ZodObject<{
951
+ detail: z.ZodOptional<z.ZodString>;
952
+ error: z.ZodString;
953
+ message: z.ZodOptional<z.ZodString>;
954
+ }, z.core.$strip>;
955
+ /**
956
+ * @description Forbidden
957
+ */
958
+ declare const rejectMarketplaceSubmission403Schema: z.ZodObject<{
959
+ detail: z.ZodOptional<z.ZodString>;
960
+ error: z.ZodString;
961
+ message: z.ZodOptional<z.ZodString>;
962
+ }, z.core.$strip>;
963
+ /**
964
+ * @description Validation error
965
+ */
966
+ declare const rejectMarketplaceSubmission422Schema: z.ZodObject<{
967
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
968
+ }, z.core.$strip>;
969
+ /**
970
+ * @description Service error
971
+ */
972
+ declare const rejectMarketplaceSubmission500Schema: z.ZodObject<{
973
+ detail: z.ZodOptional<z.ZodString>;
974
+ error: z.ZodString;
975
+ message: z.ZodOptional<z.ZodString>;
976
+ }, z.core.$strip>;
977
+ declare const rejectMarketplaceSubmissionMutationRequestSchema: z.ZodObject<{
978
+ notes: z.ZodDefault<z.ZodString>;
979
+ reviewed_by: z.ZodDefault<z.ZodString>;
980
+ }, z.core.$strip>;
981
+ declare const rejectMarketplaceSubmissionMutationResponseSchema: z.ZodObject<{
982
+ id: z.ZodString;
983
+ author_id: z.ZodString;
984
+ author_name: z.ZodString;
985
+ template_name: z.ZodString;
986
+ template_id: z.ZodString;
987
+ version: z.ZodString;
988
+ status: z.ZodString;
989
+ manifest: z.ZodObject<{}, z.core.$catchall<z.ZodAny>>;
990
+ archive_size_bytes: z.ZodInt;
991
+ review_notes: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
992
+ reviewed_by: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
993
+ reviewed_at: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
994
+ created_at: z.ZodString;
995
+ updated_at: z.ZodString;
996
+ }, z.core.$strip>;
997
+ //#endregion
998
+ //#region src/generated/zod/toggleMarketplaceSkillSchema.d.ts
999
+ /**
1000
+ * @description Toggled skill metadata
1001
+ */
1002
+ declare const toggleMarketplaceSkill200Schema: z.ZodObject<{
1003
+ id: z.ZodString;
1004
+ workspace_id: z.ZodString;
1005
+ skill_id: z.ZodString;
1006
+ enabled: z.ZodDefault<z.ZodBoolean>;
1007
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
1008
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
1009
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
1010
+ installed_at: z.ZodDefault<z.ZodString>;
1011
+ updated_at: z.ZodDefault<z.ZodString>;
1012
+ }, z.core.$strip>;
1013
+ /**
1014
+ * @description Unauthorized
1015
+ */
1016
+ declare const toggleMarketplaceSkill401Schema: z.ZodObject<{
1017
+ detail: z.ZodOptional<z.ZodString>;
1018
+ error: z.ZodString;
1019
+ message: z.ZodOptional<z.ZodString>;
1020
+ }, z.core.$strip>;
1021
+ /**
1022
+ * @description Validation error
1023
+ */
1024
+ declare const toggleMarketplaceSkill422Schema: z.ZodObject<{
1025
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
1026
+ }, z.core.$strip>;
1027
+ /**
1028
+ * @description Service error
1029
+ */
1030
+ declare const toggleMarketplaceSkill500Schema: z.ZodObject<{
1031
+ detail: z.ZodOptional<z.ZodString>;
1032
+ error: z.ZodString;
1033
+ message: z.ZodOptional<z.ZodString>;
1034
+ }, z.core.$strip>;
1035
+ declare const toggleMarketplaceSkillMutationRequestSchema: z.ZodObject<{
1036
+ workspace_id: z.ZodString;
1037
+ skill_id: z.ZodString;
1038
+ enabled: z.ZodBoolean;
1039
+ }, z.core.$strip>;
1040
+ declare const toggleMarketplaceSkillMutationResponseSchema: z.ZodObject<{
1041
+ id: z.ZodString;
1042
+ workspace_id: z.ZodString;
1043
+ skill_id: z.ZodString;
1044
+ enabled: z.ZodDefault<z.ZodBoolean>;
1045
+ settings: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodAny>>>;
1046
+ content: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
1047
+ source_url: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNull, z.ZodNull]>>;
1048
+ installed_at: z.ZodDefault<z.ZodString>;
1049
+ updated_at: z.ZodDefault<z.ZodString>;
1050
+ }, z.core.$strip>;
1051
+ //#endregion
1052
+ //#region src/generated/zod/uninstallMarketplaceSkillSchema.d.ts
1053
+ /**
1054
+ * @description Uninstalled skill metadata
1055
+ */
1056
+ declare const uninstallMarketplaceSkill200Schema: z.ZodObject<{
1057
+ success: z.ZodBoolean;
1058
+ }, z.core.$strip>;
1059
+ /**
1060
+ * @description Unauthorized
1061
+ */
1062
+ declare const uninstallMarketplaceSkill401Schema: z.ZodObject<{
1063
+ detail: z.ZodOptional<z.ZodString>;
1064
+ error: z.ZodString;
1065
+ message: z.ZodOptional<z.ZodString>;
1066
+ }, z.core.$strip>;
1067
+ /**
1068
+ * @description Validation error
1069
+ */
1070
+ declare const uninstallMarketplaceSkill422Schema: z.ZodObject<{
1071
+ detail: z.ZodOptional<z.ZodArray<z.ZodAny>>;
1072
+ }, z.core.$strip>;
1073
+ /**
1074
+ * @description Service error
1075
+ */
1076
+ declare const uninstallMarketplaceSkill500Schema: z.ZodObject<{
1077
+ detail: z.ZodOptional<z.ZodString>;
1078
+ error: z.ZodString;
1079
+ message: z.ZodOptional<z.ZodString>;
1080
+ }, z.core.$strip>;
1081
+ declare const uninstallMarketplaceSkillMutationRequestSchema: z.ZodObject<{
1082
+ workspace_id: z.ZodString;
1083
+ skill_id: z.ZodString;
1084
+ }, z.core.$strip>;
1085
+ declare const uninstallMarketplaceSkillMutationResponseSchema: z.ZodObject<{
1086
+ success: z.ZodBoolean;
1087
+ }, z.core.$strip>;
1088
+ //#endregion
1089
+ export { listMarketplaceSkillsQueryResponseSchema as $, approveMarketplaceSubmission401Schema as $t, materializeMarketplaceTemplate500Schema as A, finalizeMarketplaceSubmissionMutationResponseSchema as At, listPendingMarketplaceSubmissions403Schema as B, deleteMarketplaceSubmission401Schema as Bt, previewMarketplaceSkillImport422Schema as C, generateMarketplaceTemplateContentMutationRequestSchema as Ct, materializeMarketplaceTemplate200Schema as D, finalizeMarketplaceSubmission422Schema as Dt, previewMarketplaceSkillImportMutationResponseSchema as E, finalizeMarketplaceSubmission401Schema as Et, listWorkspaceMarketplaceSkills500Schema as F, downloadMarketplaceTemplateQueryResponseSchema as Ft, listMarketplaceTemplatesQueryResponseSchema as G, deleteMarketplaceSubmissionQueryParamsSchema as Gt, listPendingMarketplaceSubmissionsQueryResponseSchema as H, deleteMarketplaceSubmission500Schema as Ht, listWorkspaceMarketplaceSkillsPathParamsSchema as I, downloadMarketplaceSubmissionArchive200Schema as It, listMarketplaceSubmissions500Schema as J, createMarketplaceSubmission422Schema as Jt, listMarketplaceSubmissions200Schema as K, createMarketplaceSubmission201Schema as Kt, listWorkspaceMarketplaceSkillsQueryResponseSchema as L, downloadMarketplaceSubmissionArchivePathParamsSchema as Lt, materializeMarketplaceTemplateMutationResponseSchema as M, downloadMarketplaceTemplate200Schema as Mt, listWorkspaceMarketplaceSkills200Schema as N, downloadMarketplaceTemplate400Schema as Nt, materializeMarketplaceTemplate401Schema as O, finalizeMarketplaceSubmission500Schema as Ot, listWorkspaceMarketplaceSkills401Schema as P, downloadMarketplaceTemplateQueryParamsSchema as Pt, listMarketplaceSkills500Schema as Q, approveMarketplaceSubmission200Schema as Qt, listPendingMarketplaceSubmissions200Schema as R, downloadMarketplaceSubmissionArchiveQueryResponseSchema as Rt, previewMarketplaceSkillImport401Schema as S, generateMarketplaceTemplateContent500Schema as St, previewMarketplaceSkillImportMutationRequestSchema as T, finalizeMarketplaceSubmission200Schema as Tt, listMarketplaceTemplates200Schema as U, deleteMarketplaceSubmissionMutationResponseSchema as Ut, listPendingMarketplaceSubmissions500Schema as V, deleteMarketplaceSubmission422Schema as Vt, listMarketplaceTemplates500Schema as W, deleteMarketplaceSubmissionPathParamsSchema as Wt, listMarketplaceSubmissionsQueryResponseSchema as X, createMarketplaceSubmissionMutationRequestSchema as Xt, listMarketplaceSubmissionsQueryParamsSchema as Y, createMarketplaceSubmission500Schema as Yt, listMarketplaceSkills200Schema as Z, createMarketplaceSubmissionMutationResponseSchema as Zt, rejectMarketplaceSubmission500Schema as _, getMarketplaceSkillPathParamsSchema as _t, uninstallMarketplaceSkillMutationRequestSchema as a, installMarketplaceSkill422Schema as at, rejectMarketplaceSubmissionPathParamsSchema as b, generateMarketplaceTemplateContent401Schema as bt, toggleMarketplaceSkill401Schema as c, installMarketplaceSkillMutationResponseSchema as ct, toggleMarketplaceSkillMutationRequestSchema as d, installImportedMarketplaceSkill422Schema as dt, approveMarketplaceSubmission403Schema as en, listMarketplaceAppTemplates200Schema as et, toggleMarketplaceSkillMutationResponseSchema as f, installImportedMarketplaceSkill500Schema as ft, rejectMarketplaceSubmission422Schema as g, getMarketplaceSkill500Schema as gt, rejectMarketplaceSubmission403Schema as h, getMarketplaceSkill200Schema as ht, uninstallMarketplaceSkill500Schema as i, installMarketplaceSkill401Schema as it, materializeMarketplaceTemplateMutationRequestSchema as j, finalizeMarketplaceSubmissionPathParamsSchema as jt, materializeMarketplaceTemplate422Schema as k, finalizeMarketplaceSubmissionMutationRequestSchema as kt, toggleMarketplaceSkill422Schema as l, installImportedMarketplaceSkill200Schema as lt, rejectMarketplaceSubmission401Schema as m, installImportedMarketplaceSkillMutationResponseSchema as mt, uninstallMarketplaceSkill401Schema as n, approveMarketplaceSubmissionMutationResponseSchema as nn, listMarketplaceAppTemplatesQueryResponseSchema as nt, uninstallMarketplaceSkillMutationResponseSchema as o, installMarketplaceSkill500Schema as ot, rejectMarketplaceSubmission200Schema as p, installImportedMarketplaceSkillMutationRequestSchema as pt, listMarketplaceSubmissions401Schema as q, createMarketplaceSubmission401Schema as qt, uninstallMarketplaceSkill422Schema as r, approveMarketplaceSubmissionPathParamsSchema as rn, installMarketplaceSkill200Schema as rt, toggleMarketplaceSkill200Schema as s, installMarketplaceSkillMutationRequestSchema as st, uninstallMarketplaceSkill200Schema as t, approveMarketplaceSubmission500Schema as tn, listMarketplaceAppTemplates500Schema as tt, toggleMarketplaceSkill500Schema as u, installImportedMarketplaceSkill401Schema as ut, rejectMarketplaceSubmissionMutationRequestSchema as v, getMarketplaceSkillQueryResponseSchema as vt, previewMarketplaceSkillImport500Schema as w, generateMarketplaceTemplateContentMutationResponseSchema as wt, previewMarketplaceSkillImport200Schema as x, generateMarketplaceTemplateContent422Schema as xt, rejectMarketplaceSubmissionMutationResponseSchema as y, generateMarketplaceTemplateContent200Schema as yt, listPendingMarketplaceSubmissions401Schema as z, deleteMarketplaceSubmission200Schema as zt };
1090
+ //# sourceMappingURL=uninstallMarketplaceSkillSchema-BfOp0667.d.cts.map