@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.
- package/LICENSE +21 -0
- package/README.md +94 -0
- package/dist/app-BpcA69HT.d.cts +32 -0
- package/dist/app-BpcA69HT.d.cts.map +1 -0
- package/dist/app-CPM9G9Ak.d.ts +32 -0
- package/dist/app-CPM9G9Ak.d.ts.map +1 -0
- package/dist/app-DvahQ8xx.js +147 -0
- package/dist/app-DvahQ8xx.js.map +1 -0
- package/dist/app-mQJKUJHj.cjs +156 -0
- package/dist/approveMarketplaceSubmission-BmtuKiRw.d.ts +3328 -0
- package/dist/approveMarketplaceSubmission-BmtuKiRw.d.ts.map +1 -0
- package/dist/approveMarketplaceSubmission-Cno-7U1J.d.cts +3328 -0
- package/dist/approveMarketplaceSubmission-Cno-7U1J.d.cts.map +1 -0
- package/dist/clients/app.cjs +7 -0
- package/dist/clients/app.d.cts +2 -0
- package/dist/clients/app.d.ts +2 -0
- package/dist/clients/app.js +2 -0
- package/dist/core.cjs +29 -0
- package/dist/core.d.cts +3 -0
- package/dist/core.d.ts +3 -0
- package/dist/core.js +3 -0
- package/dist/index.cjs +218 -0
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +7 -0
- package/dist/react-DN2Q1phB.cjs +1229 -0
- package/dist/react-VeTZ8VzJ.js +764 -0
- package/dist/react-VeTZ8VzJ.js.map +1 -0
- package/dist/react.cjs +214 -0
- package/dist/react.d.cts +3 -0
- package/dist/react.d.ts +3 -0
- package/dist/react.js +4 -0
- package/dist/uninstallMarketplaceSkill-CXtlpmlt.cjs +654 -0
- package/dist/uninstallMarketplaceSkill-CYAiu4cU.js +531 -0
- package/dist/uninstallMarketplaceSkill-CYAiu4cU.js.map +1 -0
- package/dist/uninstallMarketplaceSkillSchema-Bay4cbpz.cjs +1711 -0
- package/dist/uninstallMarketplaceSkillSchema-BbGKwqP0.d.ts +1090 -0
- package/dist/uninstallMarketplaceSkillSchema-BbGKwqP0.d.ts.map +1 -0
- package/dist/uninstallMarketplaceSkillSchema-BfOp0667.d.cts +1090 -0
- package/dist/uninstallMarketplaceSkillSchema-BfOp0667.d.cts.map +1 -0
- package/dist/uninstallMarketplaceSkillSchema-Dz2r1ms-.js +1048 -0
- package/dist/uninstallMarketplaceSkillSchema-Dz2r1ms-.js.map +1 -0
- package/dist/zod.cjs +113 -0
- package/dist/zod.d.cts +2 -0
- package/dist/zod.d.ts +2 -0
- package/dist/zod.js +2 -0
- package/package.json +120 -0
|
@@ -0,0 +1,1229 @@
|
|
|
1
|
+
const require_uninstallMarketplaceSkill = require("./uninstallMarketplaceSkill-CXtlpmlt.cjs");
|
|
2
|
+
require("./uninstallMarketplaceSkillSchema-Bay4cbpz.cjs");
|
|
3
|
+
let _tanstack_react_query = require("@tanstack/react-query");
|
|
4
|
+
//#region src/generated/react/useApproveMarketplaceSubmission.ts
|
|
5
|
+
const approveMarketplaceSubmissionMutationKey = () => [{ url: "/submissions/:submissionId/approve" }];
|
|
6
|
+
/**
|
|
7
|
+
* @summary Approve marketplace submission
|
|
8
|
+
* {@link /submissions/:submissionId/approve}
|
|
9
|
+
*/
|
|
10
|
+
function useApproveMarketplaceSubmission(options = {}) {
|
|
11
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
12
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
13
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
14
|
+
mutationFn: async ({ submissionId }) => {
|
|
15
|
+
return require_uninstallMarketplaceSkill.approveMarketplaceSubmission(submissionId, config);
|
|
16
|
+
},
|
|
17
|
+
mutationKey: mutationOptions.mutationKey ?? approveMarketplaceSubmissionMutationKey(),
|
|
18
|
+
...mutationOptions
|
|
19
|
+
}, queryClient);
|
|
20
|
+
}
|
|
21
|
+
//#endregion
|
|
22
|
+
//#region src/generated/react/useCreateMarketplaceSubmission.ts
|
|
23
|
+
const createMarketplaceSubmissionMutationKey = () => [{ url: "/submissions" }];
|
|
24
|
+
/**
|
|
25
|
+
* @summary Create marketplace submission
|
|
26
|
+
* {@link /submissions}
|
|
27
|
+
*/
|
|
28
|
+
function useCreateMarketplaceSubmission(options = {}) {
|
|
29
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
30
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
31
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
32
|
+
mutationFn: async ({ data }) => {
|
|
33
|
+
return require_uninstallMarketplaceSkill.createMarketplaceSubmission(data, config);
|
|
34
|
+
},
|
|
35
|
+
mutationKey: mutationOptions.mutationKey ?? createMarketplaceSubmissionMutationKey(),
|
|
36
|
+
...mutationOptions
|
|
37
|
+
}, queryClient);
|
|
38
|
+
}
|
|
39
|
+
//#endregion
|
|
40
|
+
//#region src/generated/react/useDeleteMarketplaceSubmission.ts
|
|
41
|
+
const deleteMarketplaceSubmissionMutationKey = () => [{ url: "/submissions/:submissionId" }];
|
|
42
|
+
/**
|
|
43
|
+
* @summary Delete marketplace submission
|
|
44
|
+
* {@link /submissions/:submissionId}
|
|
45
|
+
*/
|
|
46
|
+
function useDeleteMarketplaceSubmission(options = {}) {
|
|
47
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
48
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
49
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
50
|
+
mutationFn: async ({ submissionId, params }) => {
|
|
51
|
+
return require_uninstallMarketplaceSkill.deleteMarketplaceSubmission(submissionId, params, config);
|
|
52
|
+
},
|
|
53
|
+
mutationKey: mutationOptions.mutationKey ?? deleteMarketplaceSubmissionMutationKey(),
|
|
54
|
+
...mutationOptions
|
|
55
|
+
}, queryClient);
|
|
56
|
+
}
|
|
57
|
+
//#endregion
|
|
58
|
+
//#region src/generated/react/useDownloadMarketplaceSubmissionArchive.ts
|
|
59
|
+
const downloadMarketplaceSubmissionArchiveQueryKey = (submissionId) => [{
|
|
60
|
+
url: "/submissions/:submissionId/download",
|
|
61
|
+
params: { submissionId }
|
|
62
|
+
}];
|
|
63
|
+
function downloadMarketplaceSubmissionArchiveQueryOptions(submissionId, config = {}) {
|
|
64
|
+
const queryKey = downloadMarketplaceSubmissionArchiveQueryKey(submissionId);
|
|
65
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
66
|
+
enabled: !!submissionId,
|
|
67
|
+
queryKey,
|
|
68
|
+
queryFn: async ({ signal }) => {
|
|
69
|
+
config.signal = signal;
|
|
70
|
+
return require_uninstallMarketplaceSkill.downloadMarketplaceSubmissionArchive(submissionId, config);
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
}
|
|
74
|
+
/**
|
|
75
|
+
* @summary Download a marketplace submission archive
|
|
76
|
+
* {@link /submissions/:submissionId/download}
|
|
77
|
+
*/
|
|
78
|
+
function useDownloadMarketplaceSubmissionArchive(submissionId, options = {}) {
|
|
79
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
80
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
81
|
+
const queryKey = queryOptions?.queryKey ?? downloadMarketplaceSubmissionArchiveQueryKey(submissionId);
|
|
82
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
83
|
+
...downloadMarketplaceSubmissionArchiveQueryOptions(submissionId, config),
|
|
84
|
+
queryKey,
|
|
85
|
+
...queryOptions
|
|
86
|
+
}, queryClient);
|
|
87
|
+
query.queryKey = queryKey;
|
|
88
|
+
return query;
|
|
89
|
+
}
|
|
90
|
+
//#endregion
|
|
91
|
+
//#region src/generated/react/useDownloadMarketplaceSubmissionArchiveSuspense.ts
|
|
92
|
+
const downloadMarketplaceSubmissionArchiveSuspenseQueryKey = (submissionId) => [{
|
|
93
|
+
url: "/submissions/:submissionId/download",
|
|
94
|
+
params: { submissionId }
|
|
95
|
+
}];
|
|
96
|
+
function downloadMarketplaceSubmissionArchiveSuspenseQueryOptions(submissionId, config = {}) {
|
|
97
|
+
const queryKey = downloadMarketplaceSubmissionArchiveSuspenseQueryKey(submissionId);
|
|
98
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
99
|
+
enabled: !!submissionId,
|
|
100
|
+
queryKey,
|
|
101
|
+
queryFn: async ({ signal }) => {
|
|
102
|
+
config.signal = signal;
|
|
103
|
+
return require_uninstallMarketplaceSkill.downloadMarketplaceSubmissionArchive(submissionId, config);
|
|
104
|
+
}
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* @summary Download a marketplace submission archive
|
|
109
|
+
* {@link /submissions/:submissionId/download}
|
|
110
|
+
*/
|
|
111
|
+
function useDownloadMarketplaceSubmissionArchiveSuspense(submissionId, options = {}) {
|
|
112
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
113
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
114
|
+
const queryKey = queryOptions?.queryKey ?? downloadMarketplaceSubmissionArchiveSuspenseQueryKey(submissionId);
|
|
115
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
116
|
+
...downloadMarketplaceSubmissionArchiveSuspenseQueryOptions(submissionId, config),
|
|
117
|
+
queryKey,
|
|
118
|
+
...queryOptions
|
|
119
|
+
}, queryClient);
|
|
120
|
+
query.queryKey = queryKey;
|
|
121
|
+
return query;
|
|
122
|
+
}
|
|
123
|
+
//#endregion
|
|
124
|
+
//#region src/generated/react/useDownloadMarketplaceTemplate.ts
|
|
125
|
+
const downloadMarketplaceTemplateQueryKey = (params) => [{ url: "/templates/download" }, ...params ? [params] : []];
|
|
126
|
+
function downloadMarketplaceTemplateQueryOptions(params, config = {}) {
|
|
127
|
+
const queryKey = downloadMarketplaceTemplateQueryKey(params);
|
|
128
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
129
|
+
enabled: !!params,
|
|
130
|
+
queryKey,
|
|
131
|
+
queryFn: async ({ signal }) => {
|
|
132
|
+
config.signal = signal;
|
|
133
|
+
return require_uninstallMarketplaceSkill.downloadMarketplaceTemplate(params, config);
|
|
134
|
+
}
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* @summary Download a marketplace template
|
|
139
|
+
* {@link /templates/download}
|
|
140
|
+
*/
|
|
141
|
+
function useDownloadMarketplaceTemplate(params, options = {}) {
|
|
142
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
143
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
144
|
+
const queryKey = queryOptions?.queryKey ?? downloadMarketplaceTemplateQueryKey(params);
|
|
145
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
146
|
+
...downloadMarketplaceTemplateQueryOptions(params, config),
|
|
147
|
+
queryKey,
|
|
148
|
+
...queryOptions
|
|
149
|
+
}, queryClient);
|
|
150
|
+
query.queryKey = queryKey;
|
|
151
|
+
return query;
|
|
152
|
+
}
|
|
153
|
+
//#endregion
|
|
154
|
+
//#region src/generated/react/useDownloadMarketplaceTemplateSuspense.ts
|
|
155
|
+
const downloadMarketplaceTemplateSuspenseQueryKey = (params) => [{ url: "/templates/download" }, ...params ? [params] : []];
|
|
156
|
+
function downloadMarketplaceTemplateSuspenseQueryOptions(params, config = {}) {
|
|
157
|
+
const queryKey = downloadMarketplaceTemplateSuspenseQueryKey(params);
|
|
158
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
159
|
+
enabled: !!params,
|
|
160
|
+
queryKey,
|
|
161
|
+
queryFn: async ({ signal }) => {
|
|
162
|
+
config.signal = signal;
|
|
163
|
+
return require_uninstallMarketplaceSkill.downloadMarketplaceTemplate(params, config);
|
|
164
|
+
}
|
|
165
|
+
});
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* @summary Download a marketplace template
|
|
169
|
+
* {@link /templates/download}
|
|
170
|
+
*/
|
|
171
|
+
function useDownloadMarketplaceTemplateSuspense(params, options = {}) {
|
|
172
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
173
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
174
|
+
const queryKey = queryOptions?.queryKey ?? downloadMarketplaceTemplateSuspenseQueryKey(params);
|
|
175
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
176
|
+
...downloadMarketplaceTemplateSuspenseQueryOptions(params, config),
|
|
177
|
+
queryKey,
|
|
178
|
+
...queryOptions
|
|
179
|
+
}, queryClient);
|
|
180
|
+
query.queryKey = queryKey;
|
|
181
|
+
return query;
|
|
182
|
+
}
|
|
183
|
+
//#endregion
|
|
184
|
+
//#region src/generated/react/useFinalizeMarketplaceSubmission.ts
|
|
185
|
+
const finalizeMarketplaceSubmissionMutationKey = () => [{ url: "/submissions/:submissionId/finalize" }];
|
|
186
|
+
/**
|
|
187
|
+
* @summary Finalize marketplace submission
|
|
188
|
+
* {@link /submissions/:submissionId/finalize}
|
|
189
|
+
*/
|
|
190
|
+
function useFinalizeMarketplaceSubmission(options = {}) {
|
|
191
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
192
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
193
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
194
|
+
mutationFn: async ({ submissionId, data }) => {
|
|
195
|
+
return require_uninstallMarketplaceSkill.finalizeMarketplaceSubmission(submissionId, data, config);
|
|
196
|
+
},
|
|
197
|
+
mutationKey: mutationOptions.mutationKey ?? finalizeMarketplaceSubmissionMutationKey(),
|
|
198
|
+
...mutationOptions
|
|
199
|
+
}, queryClient);
|
|
200
|
+
}
|
|
201
|
+
//#endregion
|
|
202
|
+
//#region src/generated/react/useGenerateMarketplaceTemplateContent.ts
|
|
203
|
+
const generateMarketplaceTemplateContentMutationKey = () => [{ url: "/template-content/generate" }];
|
|
204
|
+
/**
|
|
205
|
+
* @summary Generate marketplace template content
|
|
206
|
+
* {@link /template-content/generate}
|
|
207
|
+
*/
|
|
208
|
+
function useGenerateMarketplaceTemplateContent(options = {}) {
|
|
209
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
210
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
211
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
212
|
+
mutationFn: async ({ data }) => {
|
|
213
|
+
return require_uninstallMarketplaceSkill.generateMarketplaceTemplateContent(data, config);
|
|
214
|
+
},
|
|
215
|
+
mutationKey: mutationOptions.mutationKey ?? generateMarketplaceTemplateContentMutationKey(),
|
|
216
|
+
...mutationOptions
|
|
217
|
+
}, queryClient);
|
|
218
|
+
}
|
|
219
|
+
//#endregion
|
|
220
|
+
//#region src/generated/react/useGetMarketplaceSkill.ts
|
|
221
|
+
const getMarketplaceSkillQueryKey = (skillId) => [{
|
|
222
|
+
url: "/skills/:skillId",
|
|
223
|
+
params: { skillId }
|
|
224
|
+
}];
|
|
225
|
+
function getMarketplaceSkillQueryOptions(skillId, config = {}) {
|
|
226
|
+
const queryKey = getMarketplaceSkillQueryKey(skillId);
|
|
227
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
228
|
+
enabled: !!skillId,
|
|
229
|
+
queryKey,
|
|
230
|
+
queryFn: async ({ signal }) => {
|
|
231
|
+
config.signal = signal;
|
|
232
|
+
return require_uninstallMarketplaceSkill.getMarketplaceSkill(skillId, config);
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* @summary Get a marketplace skill
|
|
238
|
+
* {@link /skills/:skillId}
|
|
239
|
+
*/
|
|
240
|
+
function useGetMarketplaceSkill(skillId, options = {}) {
|
|
241
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
242
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
243
|
+
const queryKey = queryOptions?.queryKey ?? getMarketplaceSkillQueryKey(skillId);
|
|
244
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
245
|
+
...getMarketplaceSkillQueryOptions(skillId, config),
|
|
246
|
+
queryKey,
|
|
247
|
+
...queryOptions
|
|
248
|
+
}, queryClient);
|
|
249
|
+
query.queryKey = queryKey;
|
|
250
|
+
return query;
|
|
251
|
+
}
|
|
252
|
+
//#endregion
|
|
253
|
+
//#region src/generated/react/useGetMarketplaceSkillSuspense.ts
|
|
254
|
+
const getMarketplaceSkillSuspenseQueryKey = (skillId) => [{
|
|
255
|
+
url: "/skills/:skillId",
|
|
256
|
+
params: { skillId }
|
|
257
|
+
}];
|
|
258
|
+
function getMarketplaceSkillSuspenseQueryOptions(skillId, config = {}) {
|
|
259
|
+
const queryKey = getMarketplaceSkillSuspenseQueryKey(skillId);
|
|
260
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
261
|
+
enabled: !!skillId,
|
|
262
|
+
queryKey,
|
|
263
|
+
queryFn: async ({ signal }) => {
|
|
264
|
+
config.signal = signal;
|
|
265
|
+
return require_uninstallMarketplaceSkill.getMarketplaceSkill(skillId, config);
|
|
266
|
+
}
|
|
267
|
+
});
|
|
268
|
+
}
|
|
269
|
+
/**
|
|
270
|
+
* @summary Get a marketplace skill
|
|
271
|
+
* {@link /skills/:skillId}
|
|
272
|
+
*/
|
|
273
|
+
function useGetMarketplaceSkillSuspense(skillId, options = {}) {
|
|
274
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
275
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
276
|
+
const queryKey = queryOptions?.queryKey ?? getMarketplaceSkillSuspenseQueryKey(skillId);
|
|
277
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
278
|
+
...getMarketplaceSkillSuspenseQueryOptions(skillId, config),
|
|
279
|
+
queryKey,
|
|
280
|
+
...queryOptions
|
|
281
|
+
}, queryClient);
|
|
282
|
+
query.queryKey = queryKey;
|
|
283
|
+
return query;
|
|
284
|
+
}
|
|
285
|
+
//#endregion
|
|
286
|
+
//#region src/generated/react/useInstallImportedMarketplaceSkill.ts
|
|
287
|
+
const installImportedMarketplaceSkillMutationKey = () => [{ url: "/skills/import-install" }];
|
|
288
|
+
/**
|
|
289
|
+
* @summary Install a skill from URL
|
|
290
|
+
* {@link /skills/import-install}
|
|
291
|
+
*/
|
|
292
|
+
function useInstallImportedMarketplaceSkill(options = {}) {
|
|
293
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
294
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
295
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
296
|
+
mutationFn: async ({ data }) => {
|
|
297
|
+
return require_uninstallMarketplaceSkill.installImportedMarketplaceSkill(data, config);
|
|
298
|
+
},
|
|
299
|
+
mutationKey: mutationOptions.mutationKey ?? installImportedMarketplaceSkillMutationKey(),
|
|
300
|
+
...mutationOptions
|
|
301
|
+
}, queryClient);
|
|
302
|
+
}
|
|
303
|
+
//#endregion
|
|
304
|
+
//#region src/generated/react/useInstallMarketplaceSkill.ts
|
|
305
|
+
const installMarketplaceSkillMutationKey = () => [{ url: "/skills/install" }];
|
|
306
|
+
/**
|
|
307
|
+
* @summary Install a marketplace skill
|
|
308
|
+
* {@link /skills/install}
|
|
309
|
+
*/
|
|
310
|
+
function useInstallMarketplaceSkill(options = {}) {
|
|
311
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
312
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
313
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
314
|
+
mutationFn: async ({ data }) => {
|
|
315
|
+
return require_uninstallMarketplaceSkill.installMarketplaceSkill(data, config);
|
|
316
|
+
},
|
|
317
|
+
mutationKey: mutationOptions.mutationKey ?? installMarketplaceSkillMutationKey(),
|
|
318
|
+
...mutationOptions
|
|
319
|
+
}, queryClient);
|
|
320
|
+
}
|
|
321
|
+
//#endregion
|
|
322
|
+
//#region src/generated/react/useListMarketplaceAppTemplates.ts
|
|
323
|
+
const listMarketplaceAppTemplatesQueryKey = () => [{ url: "/app-templates" }];
|
|
324
|
+
function listMarketplaceAppTemplatesQueryOptions(config = {}) {
|
|
325
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
326
|
+
queryKey: listMarketplaceAppTemplatesQueryKey(),
|
|
327
|
+
queryFn: async ({ signal }) => {
|
|
328
|
+
config.signal = signal;
|
|
329
|
+
return require_uninstallMarketplaceSkill.listMarketplaceAppTemplates(config);
|
|
330
|
+
}
|
|
331
|
+
});
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* @summary List marketplace app templates
|
|
335
|
+
* {@link /app-templates}
|
|
336
|
+
*/
|
|
337
|
+
function useListMarketplaceAppTemplates(options = {}) {
|
|
338
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
339
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
340
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceAppTemplatesQueryKey();
|
|
341
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
342
|
+
...listMarketplaceAppTemplatesQueryOptions(config),
|
|
343
|
+
queryKey,
|
|
344
|
+
...queryOptions
|
|
345
|
+
}, queryClient);
|
|
346
|
+
query.queryKey = queryKey;
|
|
347
|
+
return query;
|
|
348
|
+
}
|
|
349
|
+
//#endregion
|
|
350
|
+
//#region src/generated/react/useListMarketplaceAppTemplatesSuspense.ts
|
|
351
|
+
const listMarketplaceAppTemplatesSuspenseQueryKey = () => [{ url: "/app-templates" }];
|
|
352
|
+
function listMarketplaceAppTemplatesSuspenseQueryOptions(config = {}) {
|
|
353
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
354
|
+
queryKey: listMarketplaceAppTemplatesSuspenseQueryKey(),
|
|
355
|
+
queryFn: async ({ signal }) => {
|
|
356
|
+
config.signal = signal;
|
|
357
|
+
return require_uninstallMarketplaceSkill.listMarketplaceAppTemplates(config);
|
|
358
|
+
}
|
|
359
|
+
});
|
|
360
|
+
}
|
|
361
|
+
/**
|
|
362
|
+
* @summary List marketplace app templates
|
|
363
|
+
* {@link /app-templates}
|
|
364
|
+
*/
|
|
365
|
+
function useListMarketplaceAppTemplatesSuspense(options = {}) {
|
|
366
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
367
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
368
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceAppTemplatesSuspenseQueryKey();
|
|
369
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
370
|
+
...listMarketplaceAppTemplatesSuspenseQueryOptions(config),
|
|
371
|
+
queryKey,
|
|
372
|
+
...queryOptions
|
|
373
|
+
}, queryClient);
|
|
374
|
+
query.queryKey = queryKey;
|
|
375
|
+
return query;
|
|
376
|
+
}
|
|
377
|
+
//#endregion
|
|
378
|
+
//#region src/generated/react/useListMarketplaceSkills.ts
|
|
379
|
+
const listMarketplaceSkillsQueryKey = () => [{ url: "/skills" }];
|
|
380
|
+
function listMarketplaceSkillsQueryOptions(config = {}) {
|
|
381
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
382
|
+
queryKey: listMarketplaceSkillsQueryKey(),
|
|
383
|
+
queryFn: async ({ signal }) => {
|
|
384
|
+
config.signal = signal;
|
|
385
|
+
return require_uninstallMarketplaceSkill.listMarketplaceSkills(config);
|
|
386
|
+
}
|
|
387
|
+
});
|
|
388
|
+
}
|
|
389
|
+
/**
|
|
390
|
+
* @summary List marketplace skills
|
|
391
|
+
* {@link /skills}
|
|
392
|
+
*/
|
|
393
|
+
function useListMarketplaceSkills(options = {}) {
|
|
394
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
395
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
396
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceSkillsQueryKey();
|
|
397
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
398
|
+
...listMarketplaceSkillsQueryOptions(config),
|
|
399
|
+
queryKey,
|
|
400
|
+
...queryOptions
|
|
401
|
+
}, queryClient);
|
|
402
|
+
query.queryKey = queryKey;
|
|
403
|
+
return query;
|
|
404
|
+
}
|
|
405
|
+
//#endregion
|
|
406
|
+
//#region src/generated/react/useListMarketplaceSkillsSuspense.ts
|
|
407
|
+
const listMarketplaceSkillsSuspenseQueryKey = () => [{ url: "/skills" }];
|
|
408
|
+
function listMarketplaceSkillsSuspenseQueryOptions(config = {}) {
|
|
409
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
410
|
+
queryKey: listMarketplaceSkillsSuspenseQueryKey(),
|
|
411
|
+
queryFn: async ({ signal }) => {
|
|
412
|
+
config.signal = signal;
|
|
413
|
+
return require_uninstallMarketplaceSkill.listMarketplaceSkills(config);
|
|
414
|
+
}
|
|
415
|
+
});
|
|
416
|
+
}
|
|
417
|
+
/**
|
|
418
|
+
* @summary List marketplace skills
|
|
419
|
+
* {@link /skills}
|
|
420
|
+
*/
|
|
421
|
+
function useListMarketplaceSkillsSuspense(options = {}) {
|
|
422
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
423
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
424
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceSkillsSuspenseQueryKey();
|
|
425
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
426
|
+
...listMarketplaceSkillsSuspenseQueryOptions(config),
|
|
427
|
+
queryKey,
|
|
428
|
+
...queryOptions
|
|
429
|
+
}, queryClient);
|
|
430
|
+
query.queryKey = queryKey;
|
|
431
|
+
return query;
|
|
432
|
+
}
|
|
433
|
+
//#endregion
|
|
434
|
+
//#region src/generated/react/useListMarketplaceSubmissions.ts
|
|
435
|
+
const listMarketplaceSubmissionsQueryKey = (params) => [{ url: "/submissions" }, ...params ? [params] : []];
|
|
436
|
+
function listMarketplaceSubmissionsQueryOptions(params, config = {}) {
|
|
437
|
+
const queryKey = listMarketplaceSubmissionsQueryKey(params);
|
|
438
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
439
|
+
enabled: !!params,
|
|
440
|
+
queryKey,
|
|
441
|
+
queryFn: async ({ signal }) => {
|
|
442
|
+
config.signal = signal;
|
|
443
|
+
return require_uninstallMarketplaceSkill.listMarketplaceSubmissions(params, config);
|
|
444
|
+
}
|
|
445
|
+
});
|
|
446
|
+
}
|
|
447
|
+
/**
|
|
448
|
+
* @summary List marketplace submissions
|
|
449
|
+
* {@link /submissions}
|
|
450
|
+
*/
|
|
451
|
+
function useListMarketplaceSubmissions(params, options = {}) {
|
|
452
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
453
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
454
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceSubmissionsQueryKey(params);
|
|
455
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
456
|
+
...listMarketplaceSubmissionsQueryOptions(params, config),
|
|
457
|
+
queryKey,
|
|
458
|
+
...queryOptions
|
|
459
|
+
}, queryClient);
|
|
460
|
+
query.queryKey = queryKey;
|
|
461
|
+
return query;
|
|
462
|
+
}
|
|
463
|
+
//#endregion
|
|
464
|
+
//#region src/generated/react/useListMarketplaceSubmissionsSuspense.ts
|
|
465
|
+
const listMarketplaceSubmissionsSuspenseQueryKey = (params) => [{ url: "/submissions" }, ...params ? [params] : []];
|
|
466
|
+
function listMarketplaceSubmissionsSuspenseQueryOptions(params, config = {}) {
|
|
467
|
+
const queryKey = listMarketplaceSubmissionsSuspenseQueryKey(params);
|
|
468
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
469
|
+
enabled: !!params,
|
|
470
|
+
queryKey,
|
|
471
|
+
queryFn: async ({ signal }) => {
|
|
472
|
+
config.signal = signal;
|
|
473
|
+
return require_uninstallMarketplaceSkill.listMarketplaceSubmissions(params, config);
|
|
474
|
+
}
|
|
475
|
+
});
|
|
476
|
+
}
|
|
477
|
+
/**
|
|
478
|
+
* @summary List marketplace submissions
|
|
479
|
+
* {@link /submissions}
|
|
480
|
+
*/
|
|
481
|
+
function useListMarketplaceSubmissionsSuspense(params, options = {}) {
|
|
482
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
483
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
484
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceSubmissionsSuspenseQueryKey(params);
|
|
485
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
486
|
+
...listMarketplaceSubmissionsSuspenseQueryOptions(params, config),
|
|
487
|
+
queryKey,
|
|
488
|
+
...queryOptions
|
|
489
|
+
}, queryClient);
|
|
490
|
+
query.queryKey = queryKey;
|
|
491
|
+
return query;
|
|
492
|
+
}
|
|
493
|
+
//#endregion
|
|
494
|
+
//#region src/generated/react/useListMarketplaceTemplates.ts
|
|
495
|
+
const listMarketplaceTemplatesQueryKey = () => [{ url: "/templates" }];
|
|
496
|
+
function listMarketplaceTemplatesQueryOptions(config = {}) {
|
|
497
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
498
|
+
queryKey: listMarketplaceTemplatesQueryKey(),
|
|
499
|
+
queryFn: async ({ signal }) => {
|
|
500
|
+
config.signal = signal;
|
|
501
|
+
return require_uninstallMarketplaceSkill.listMarketplaceTemplates(config);
|
|
502
|
+
}
|
|
503
|
+
});
|
|
504
|
+
}
|
|
505
|
+
/**
|
|
506
|
+
* @summary List marketplace templates
|
|
507
|
+
* {@link /templates}
|
|
508
|
+
*/
|
|
509
|
+
function useListMarketplaceTemplates(options = {}) {
|
|
510
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
511
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
512
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceTemplatesQueryKey();
|
|
513
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
514
|
+
...listMarketplaceTemplatesQueryOptions(config),
|
|
515
|
+
queryKey,
|
|
516
|
+
...queryOptions
|
|
517
|
+
}, queryClient);
|
|
518
|
+
query.queryKey = queryKey;
|
|
519
|
+
return query;
|
|
520
|
+
}
|
|
521
|
+
//#endregion
|
|
522
|
+
//#region src/generated/react/useListMarketplaceTemplatesSuspense.ts
|
|
523
|
+
const listMarketplaceTemplatesSuspenseQueryKey = () => [{ url: "/templates" }];
|
|
524
|
+
function listMarketplaceTemplatesSuspenseQueryOptions(config = {}) {
|
|
525
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
526
|
+
queryKey: listMarketplaceTemplatesSuspenseQueryKey(),
|
|
527
|
+
queryFn: async ({ signal }) => {
|
|
528
|
+
config.signal = signal;
|
|
529
|
+
return require_uninstallMarketplaceSkill.listMarketplaceTemplates(config);
|
|
530
|
+
}
|
|
531
|
+
});
|
|
532
|
+
}
|
|
533
|
+
/**
|
|
534
|
+
* @summary List marketplace templates
|
|
535
|
+
* {@link /templates}
|
|
536
|
+
*/
|
|
537
|
+
function useListMarketplaceTemplatesSuspense(options = {}) {
|
|
538
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
539
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
540
|
+
const queryKey = queryOptions?.queryKey ?? listMarketplaceTemplatesSuspenseQueryKey();
|
|
541
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
542
|
+
...listMarketplaceTemplatesSuspenseQueryOptions(config),
|
|
543
|
+
queryKey,
|
|
544
|
+
...queryOptions
|
|
545
|
+
}, queryClient);
|
|
546
|
+
query.queryKey = queryKey;
|
|
547
|
+
return query;
|
|
548
|
+
}
|
|
549
|
+
//#endregion
|
|
550
|
+
//#region src/generated/react/useListPendingMarketplaceSubmissions.ts
|
|
551
|
+
const listPendingMarketplaceSubmissionsQueryKey = () => [{ url: "/submissions/pending" }];
|
|
552
|
+
function listPendingMarketplaceSubmissionsQueryOptions(config = {}) {
|
|
553
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
554
|
+
queryKey: listPendingMarketplaceSubmissionsQueryKey(),
|
|
555
|
+
queryFn: async ({ signal }) => {
|
|
556
|
+
config.signal = signal;
|
|
557
|
+
return require_uninstallMarketplaceSkill.listPendingMarketplaceSubmissions(config);
|
|
558
|
+
}
|
|
559
|
+
});
|
|
560
|
+
}
|
|
561
|
+
/**
|
|
562
|
+
* @summary List pending marketplace submissions
|
|
563
|
+
* {@link /submissions/pending}
|
|
564
|
+
*/
|
|
565
|
+
function useListPendingMarketplaceSubmissions(options = {}) {
|
|
566
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
567
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
568
|
+
const queryKey = queryOptions?.queryKey ?? listPendingMarketplaceSubmissionsQueryKey();
|
|
569
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
570
|
+
...listPendingMarketplaceSubmissionsQueryOptions(config),
|
|
571
|
+
queryKey,
|
|
572
|
+
...queryOptions
|
|
573
|
+
}, queryClient);
|
|
574
|
+
query.queryKey = queryKey;
|
|
575
|
+
return query;
|
|
576
|
+
}
|
|
577
|
+
//#endregion
|
|
578
|
+
//#region src/generated/react/useListPendingMarketplaceSubmissionsSuspense.ts
|
|
579
|
+
const listPendingMarketplaceSubmissionsSuspenseQueryKey = () => [{ url: "/submissions/pending" }];
|
|
580
|
+
function listPendingMarketplaceSubmissionsSuspenseQueryOptions(config = {}) {
|
|
581
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
582
|
+
queryKey: listPendingMarketplaceSubmissionsSuspenseQueryKey(),
|
|
583
|
+
queryFn: async ({ signal }) => {
|
|
584
|
+
config.signal = signal;
|
|
585
|
+
return require_uninstallMarketplaceSkill.listPendingMarketplaceSubmissions(config);
|
|
586
|
+
}
|
|
587
|
+
});
|
|
588
|
+
}
|
|
589
|
+
/**
|
|
590
|
+
* @summary List pending marketplace submissions
|
|
591
|
+
* {@link /submissions/pending}
|
|
592
|
+
*/
|
|
593
|
+
function useListPendingMarketplaceSubmissionsSuspense(options = {}) {
|
|
594
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
595
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
596
|
+
const queryKey = queryOptions?.queryKey ?? listPendingMarketplaceSubmissionsSuspenseQueryKey();
|
|
597
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
598
|
+
...listPendingMarketplaceSubmissionsSuspenseQueryOptions(config),
|
|
599
|
+
queryKey,
|
|
600
|
+
...queryOptions
|
|
601
|
+
}, queryClient);
|
|
602
|
+
query.queryKey = queryKey;
|
|
603
|
+
return query;
|
|
604
|
+
}
|
|
605
|
+
//#endregion
|
|
606
|
+
//#region src/generated/react/useListWorkspaceMarketplaceSkills.ts
|
|
607
|
+
const listWorkspaceMarketplaceSkillsQueryKey = (workspaceId) => [{
|
|
608
|
+
url: "/workspaces/:workspaceId/skills",
|
|
609
|
+
params: { workspaceId }
|
|
610
|
+
}];
|
|
611
|
+
function listWorkspaceMarketplaceSkillsQueryOptions(workspaceId, config = {}) {
|
|
612
|
+
const queryKey = listWorkspaceMarketplaceSkillsQueryKey(workspaceId);
|
|
613
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
614
|
+
enabled: !!workspaceId,
|
|
615
|
+
queryKey,
|
|
616
|
+
queryFn: async ({ signal }) => {
|
|
617
|
+
config.signal = signal;
|
|
618
|
+
return require_uninstallMarketplaceSkill.listWorkspaceMarketplaceSkills(workspaceId, config);
|
|
619
|
+
}
|
|
620
|
+
});
|
|
621
|
+
}
|
|
622
|
+
/**
|
|
623
|
+
* @summary List installed skills for a workspace
|
|
624
|
+
* {@link /workspaces/:workspaceId/skills}
|
|
625
|
+
*/
|
|
626
|
+
function useListWorkspaceMarketplaceSkills(workspaceId, options = {}) {
|
|
627
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
628
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
629
|
+
const queryKey = queryOptions?.queryKey ?? listWorkspaceMarketplaceSkillsQueryKey(workspaceId);
|
|
630
|
+
const query = (0, _tanstack_react_query.useQuery)({
|
|
631
|
+
...listWorkspaceMarketplaceSkillsQueryOptions(workspaceId, config),
|
|
632
|
+
queryKey,
|
|
633
|
+
...queryOptions
|
|
634
|
+
}, queryClient);
|
|
635
|
+
query.queryKey = queryKey;
|
|
636
|
+
return query;
|
|
637
|
+
}
|
|
638
|
+
//#endregion
|
|
639
|
+
//#region src/generated/react/useListWorkspaceMarketplaceSkillsSuspense.ts
|
|
640
|
+
const listWorkspaceMarketplaceSkillsSuspenseQueryKey = (workspaceId) => [{
|
|
641
|
+
url: "/workspaces/:workspaceId/skills",
|
|
642
|
+
params: { workspaceId }
|
|
643
|
+
}];
|
|
644
|
+
function listWorkspaceMarketplaceSkillsSuspenseQueryOptions(workspaceId, config = {}) {
|
|
645
|
+
const queryKey = listWorkspaceMarketplaceSkillsSuspenseQueryKey(workspaceId);
|
|
646
|
+
return (0, _tanstack_react_query.queryOptions)({
|
|
647
|
+
enabled: !!workspaceId,
|
|
648
|
+
queryKey,
|
|
649
|
+
queryFn: async ({ signal }) => {
|
|
650
|
+
config.signal = signal;
|
|
651
|
+
return require_uninstallMarketplaceSkill.listWorkspaceMarketplaceSkills(workspaceId, config);
|
|
652
|
+
}
|
|
653
|
+
});
|
|
654
|
+
}
|
|
655
|
+
/**
|
|
656
|
+
* @summary List installed skills for a workspace
|
|
657
|
+
* {@link /workspaces/:workspaceId/skills}
|
|
658
|
+
*/
|
|
659
|
+
function useListWorkspaceMarketplaceSkillsSuspense(workspaceId, options = {}) {
|
|
660
|
+
const { query: queryConfig = {}, client: config = {} } = options ?? {};
|
|
661
|
+
const { client: queryClient, ...queryOptions } = queryConfig;
|
|
662
|
+
const queryKey = queryOptions?.queryKey ?? listWorkspaceMarketplaceSkillsSuspenseQueryKey(workspaceId);
|
|
663
|
+
const query = (0, _tanstack_react_query.useSuspenseQuery)({
|
|
664
|
+
...listWorkspaceMarketplaceSkillsSuspenseQueryOptions(workspaceId, config),
|
|
665
|
+
queryKey,
|
|
666
|
+
...queryOptions
|
|
667
|
+
}, queryClient);
|
|
668
|
+
query.queryKey = queryKey;
|
|
669
|
+
return query;
|
|
670
|
+
}
|
|
671
|
+
//#endregion
|
|
672
|
+
//#region src/generated/react/useMaterializeMarketplaceTemplate.ts
|
|
673
|
+
const materializeMarketplaceTemplateMutationKey = () => [{ url: "/templates/materialize" }];
|
|
674
|
+
/**
|
|
675
|
+
* @summary Materialize marketplace template
|
|
676
|
+
* {@link /templates/materialize}
|
|
677
|
+
*/
|
|
678
|
+
function useMaterializeMarketplaceTemplate(options = {}) {
|
|
679
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
680
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
681
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
682
|
+
mutationFn: async ({ data }) => {
|
|
683
|
+
return require_uninstallMarketplaceSkill.materializeMarketplaceTemplate(data, config);
|
|
684
|
+
},
|
|
685
|
+
mutationKey: mutationOptions.mutationKey ?? materializeMarketplaceTemplateMutationKey(),
|
|
686
|
+
...mutationOptions
|
|
687
|
+
}, queryClient);
|
|
688
|
+
}
|
|
689
|
+
//#endregion
|
|
690
|
+
//#region src/generated/react/usePreviewMarketplaceSkillImport.ts
|
|
691
|
+
const previewMarketplaceSkillImportMutationKey = () => [{ url: "/skills/import-preview" }];
|
|
692
|
+
/**
|
|
693
|
+
* @summary Preview importing a skill from URL
|
|
694
|
+
* {@link /skills/import-preview}
|
|
695
|
+
*/
|
|
696
|
+
function usePreviewMarketplaceSkillImport(options = {}) {
|
|
697
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
698
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
699
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
700
|
+
mutationFn: async ({ data }) => {
|
|
701
|
+
return require_uninstallMarketplaceSkill.previewMarketplaceSkillImport(data, config);
|
|
702
|
+
},
|
|
703
|
+
mutationKey: mutationOptions.mutationKey ?? previewMarketplaceSkillImportMutationKey(),
|
|
704
|
+
...mutationOptions
|
|
705
|
+
}, queryClient);
|
|
706
|
+
}
|
|
707
|
+
//#endregion
|
|
708
|
+
//#region src/generated/react/useRejectMarketplaceSubmission.ts
|
|
709
|
+
const rejectMarketplaceSubmissionMutationKey = () => [{ url: "/submissions/:submissionId/reject" }];
|
|
710
|
+
/**
|
|
711
|
+
* @summary Reject marketplace submission
|
|
712
|
+
* {@link /submissions/:submissionId/reject}
|
|
713
|
+
*/
|
|
714
|
+
function useRejectMarketplaceSubmission(options = {}) {
|
|
715
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
716
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
717
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
718
|
+
mutationFn: async ({ submissionId, data }) => {
|
|
719
|
+
return require_uninstallMarketplaceSkill.rejectMarketplaceSubmission(submissionId, data, config);
|
|
720
|
+
},
|
|
721
|
+
mutationKey: mutationOptions.mutationKey ?? rejectMarketplaceSubmissionMutationKey(),
|
|
722
|
+
...mutationOptions
|
|
723
|
+
}, queryClient);
|
|
724
|
+
}
|
|
725
|
+
//#endregion
|
|
726
|
+
//#region src/generated/react/useToggleMarketplaceSkill.ts
|
|
727
|
+
const toggleMarketplaceSkillMutationKey = () => [{ url: "/skills/toggle" }];
|
|
728
|
+
/**
|
|
729
|
+
* @summary Enable or disable a marketplace skill
|
|
730
|
+
* {@link /skills/toggle}
|
|
731
|
+
*/
|
|
732
|
+
function useToggleMarketplaceSkill(options = {}) {
|
|
733
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
734
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
735
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
736
|
+
mutationFn: async ({ data }) => {
|
|
737
|
+
return require_uninstallMarketplaceSkill.toggleMarketplaceSkill(data, config);
|
|
738
|
+
},
|
|
739
|
+
mutationKey: mutationOptions.mutationKey ?? toggleMarketplaceSkillMutationKey(),
|
|
740
|
+
...mutationOptions
|
|
741
|
+
}, queryClient);
|
|
742
|
+
}
|
|
743
|
+
//#endregion
|
|
744
|
+
//#region src/generated/react/useUninstallMarketplaceSkill.ts
|
|
745
|
+
const uninstallMarketplaceSkillMutationKey = () => [{ url: "/skills/uninstall" }];
|
|
746
|
+
/**
|
|
747
|
+
* @summary Uninstall a marketplace skill
|
|
748
|
+
* {@link /skills/uninstall}
|
|
749
|
+
*/
|
|
750
|
+
function useUninstallMarketplaceSkill(options = {}) {
|
|
751
|
+
const { mutation = {}, client: config = {} } = options ?? {};
|
|
752
|
+
const { client: queryClient, ...mutationOptions } = mutation;
|
|
753
|
+
return (0, _tanstack_react_query.useMutation)({
|
|
754
|
+
mutationFn: async ({ data }) => {
|
|
755
|
+
return require_uninstallMarketplaceSkill.uninstallMarketplaceSkill(data, config);
|
|
756
|
+
},
|
|
757
|
+
mutationKey: mutationOptions.mutationKey ?? uninstallMarketplaceSkillMutationKey(),
|
|
758
|
+
...mutationOptions
|
|
759
|
+
}, queryClient);
|
|
760
|
+
}
|
|
761
|
+
//#endregion
|
|
762
|
+
Object.defineProperty(exports, "approveMarketplaceSubmissionMutationKey", {
|
|
763
|
+
enumerable: true,
|
|
764
|
+
get: function() {
|
|
765
|
+
return approveMarketplaceSubmissionMutationKey;
|
|
766
|
+
}
|
|
767
|
+
});
|
|
768
|
+
Object.defineProperty(exports, "createMarketplaceSubmissionMutationKey", {
|
|
769
|
+
enumerable: true,
|
|
770
|
+
get: function() {
|
|
771
|
+
return createMarketplaceSubmissionMutationKey;
|
|
772
|
+
}
|
|
773
|
+
});
|
|
774
|
+
Object.defineProperty(exports, "deleteMarketplaceSubmissionMutationKey", {
|
|
775
|
+
enumerable: true,
|
|
776
|
+
get: function() {
|
|
777
|
+
return deleteMarketplaceSubmissionMutationKey;
|
|
778
|
+
}
|
|
779
|
+
});
|
|
780
|
+
Object.defineProperty(exports, "downloadMarketplaceSubmissionArchiveQueryKey", {
|
|
781
|
+
enumerable: true,
|
|
782
|
+
get: function() {
|
|
783
|
+
return downloadMarketplaceSubmissionArchiveQueryKey;
|
|
784
|
+
}
|
|
785
|
+
});
|
|
786
|
+
Object.defineProperty(exports, "downloadMarketplaceSubmissionArchiveQueryOptions", {
|
|
787
|
+
enumerable: true,
|
|
788
|
+
get: function() {
|
|
789
|
+
return downloadMarketplaceSubmissionArchiveQueryOptions;
|
|
790
|
+
}
|
|
791
|
+
});
|
|
792
|
+
Object.defineProperty(exports, "downloadMarketplaceSubmissionArchiveSuspenseQueryKey", {
|
|
793
|
+
enumerable: true,
|
|
794
|
+
get: function() {
|
|
795
|
+
return downloadMarketplaceSubmissionArchiveSuspenseQueryKey;
|
|
796
|
+
}
|
|
797
|
+
});
|
|
798
|
+
Object.defineProperty(exports, "downloadMarketplaceSubmissionArchiveSuspenseQueryOptions", {
|
|
799
|
+
enumerable: true,
|
|
800
|
+
get: function() {
|
|
801
|
+
return downloadMarketplaceSubmissionArchiveSuspenseQueryOptions;
|
|
802
|
+
}
|
|
803
|
+
});
|
|
804
|
+
Object.defineProperty(exports, "downloadMarketplaceTemplateQueryKey", {
|
|
805
|
+
enumerable: true,
|
|
806
|
+
get: function() {
|
|
807
|
+
return downloadMarketplaceTemplateQueryKey;
|
|
808
|
+
}
|
|
809
|
+
});
|
|
810
|
+
Object.defineProperty(exports, "downloadMarketplaceTemplateQueryOptions", {
|
|
811
|
+
enumerable: true,
|
|
812
|
+
get: function() {
|
|
813
|
+
return downloadMarketplaceTemplateQueryOptions;
|
|
814
|
+
}
|
|
815
|
+
});
|
|
816
|
+
Object.defineProperty(exports, "downloadMarketplaceTemplateSuspenseQueryKey", {
|
|
817
|
+
enumerable: true,
|
|
818
|
+
get: function() {
|
|
819
|
+
return downloadMarketplaceTemplateSuspenseQueryKey;
|
|
820
|
+
}
|
|
821
|
+
});
|
|
822
|
+
Object.defineProperty(exports, "downloadMarketplaceTemplateSuspenseQueryOptions", {
|
|
823
|
+
enumerable: true,
|
|
824
|
+
get: function() {
|
|
825
|
+
return downloadMarketplaceTemplateSuspenseQueryOptions;
|
|
826
|
+
}
|
|
827
|
+
});
|
|
828
|
+
Object.defineProperty(exports, "finalizeMarketplaceSubmissionMutationKey", {
|
|
829
|
+
enumerable: true,
|
|
830
|
+
get: function() {
|
|
831
|
+
return finalizeMarketplaceSubmissionMutationKey;
|
|
832
|
+
}
|
|
833
|
+
});
|
|
834
|
+
Object.defineProperty(exports, "generateMarketplaceTemplateContentMutationKey", {
|
|
835
|
+
enumerable: true,
|
|
836
|
+
get: function() {
|
|
837
|
+
return generateMarketplaceTemplateContentMutationKey;
|
|
838
|
+
}
|
|
839
|
+
});
|
|
840
|
+
Object.defineProperty(exports, "getMarketplaceSkillQueryKey", {
|
|
841
|
+
enumerable: true,
|
|
842
|
+
get: function() {
|
|
843
|
+
return getMarketplaceSkillQueryKey;
|
|
844
|
+
}
|
|
845
|
+
});
|
|
846
|
+
Object.defineProperty(exports, "getMarketplaceSkillQueryOptions", {
|
|
847
|
+
enumerable: true,
|
|
848
|
+
get: function() {
|
|
849
|
+
return getMarketplaceSkillQueryOptions;
|
|
850
|
+
}
|
|
851
|
+
});
|
|
852
|
+
Object.defineProperty(exports, "getMarketplaceSkillSuspenseQueryKey", {
|
|
853
|
+
enumerable: true,
|
|
854
|
+
get: function() {
|
|
855
|
+
return getMarketplaceSkillSuspenseQueryKey;
|
|
856
|
+
}
|
|
857
|
+
});
|
|
858
|
+
Object.defineProperty(exports, "getMarketplaceSkillSuspenseQueryOptions", {
|
|
859
|
+
enumerable: true,
|
|
860
|
+
get: function() {
|
|
861
|
+
return getMarketplaceSkillSuspenseQueryOptions;
|
|
862
|
+
}
|
|
863
|
+
});
|
|
864
|
+
Object.defineProperty(exports, "installImportedMarketplaceSkillMutationKey", {
|
|
865
|
+
enumerable: true,
|
|
866
|
+
get: function() {
|
|
867
|
+
return installImportedMarketplaceSkillMutationKey;
|
|
868
|
+
}
|
|
869
|
+
});
|
|
870
|
+
Object.defineProperty(exports, "installMarketplaceSkillMutationKey", {
|
|
871
|
+
enumerable: true,
|
|
872
|
+
get: function() {
|
|
873
|
+
return installMarketplaceSkillMutationKey;
|
|
874
|
+
}
|
|
875
|
+
});
|
|
876
|
+
Object.defineProperty(exports, "listMarketplaceAppTemplatesQueryKey", {
|
|
877
|
+
enumerable: true,
|
|
878
|
+
get: function() {
|
|
879
|
+
return listMarketplaceAppTemplatesQueryKey;
|
|
880
|
+
}
|
|
881
|
+
});
|
|
882
|
+
Object.defineProperty(exports, "listMarketplaceAppTemplatesQueryOptions", {
|
|
883
|
+
enumerable: true,
|
|
884
|
+
get: function() {
|
|
885
|
+
return listMarketplaceAppTemplatesQueryOptions;
|
|
886
|
+
}
|
|
887
|
+
});
|
|
888
|
+
Object.defineProperty(exports, "listMarketplaceAppTemplatesSuspenseQueryKey", {
|
|
889
|
+
enumerable: true,
|
|
890
|
+
get: function() {
|
|
891
|
+
return listMarketplaceAppTemplatesSuspenseQueryKey;
|
|
892
|
+
}
|
|
893
|
+
});
|
|
894
|
+
Object.defineProperty(exports, "listMarketplaceAppTemplatesSuspenseQueryOptions", {
|
|
895
|
+
enumerable: true,
|
|
896
|
+
get: function() {
|
|
897
|
+
return listMarketplaceAppTemplatesSuspenseQueryOptions;
|
|
898
|
+
}
|
|
899
|
+
});
|
|
900
|
+
Object.defineProperty(exports, "listMarketplaceSkillsQueryKey", {
|
|
901
|
+
enumerable: true,
|
|
902
|
+
get: function() {
|
|
903
|
+
return listMarketplaceSkillsQueryKey;
|
|
904
|
+
}
|
|
905
|
+
});
|
|
906
|
+
Object.defineProperty(exports, "listMarketplaceSkillsQueryOptions", {
|
|
907
|
+
enumerable: true,
|
|
908
|
+
get: function() {
|
|
909
|
+
return listMarketplaceSkillsQueryOptions;
|
|
910
|
+
}
|
|
911
|
+
});
|
|
912
|
+
Object.defineProperty(exports, "listMarketplaceSkillsSuspenseQueryKey", {
|
|
913
|
+
enumerable: true,
|
|
914
|
+
get: function() {
|
|
915
|
+
return listMarketplaceSkillsSuspenseQueryKey;
|
|
916
|
+
}
|
|
917
|
+
});
|
|
918
|
+
Object.defineProperty(exports, "listMarketplaceSkillsSuspenseQueryOptions", {
|
|
919
|
+
enumerable: true,
|
|
920
|
+
get: function() {
|
|
921
|
+
return listMarketplaceSkillsSuspenseQueryOptions;
|
|
922
|
+
}
|
|
923
|
+
});
|
|
924
|
+
Object.defineProperty(exports, "listMarketplaceSubmissionsQueryKey", {
|
|
925
|
+
enumerable: true,
|
|
926
|
+
get: function() {
|
|
927
|
+
return listMarketplaceSubmissionsQueryKey;
|
|
928
|
+
}
|
|
929
|
+
});
|
|
930
|
+
Object.defineProperty(exports, "listMarketplaceSubmissionsQueryOptions", {
|
|
931
|
+
enumerable: true,
|
|
932
|
+
get: function() {
|
|
933
|
+
return listMarketplaceSubmissionsQueryOptions;
|
|
934
|
+
}
|
|
935
|
+
});
|
|
936
|
+
Object.defineProperty(exports, "listMarketplaceSubmissionsSuspenseQueryKey", {
|
|
937
|
+
enumerable: true,
|
|
938
|
+
get: function() {
|
|
939
|
+
return listMarketplaceSubmissionsSuspenseQueryKey;
|
|
940
|
+
}
|
|
941
|
+
});
|
|
942
|
+
Object.defineProperty(exports, "listMarketplaceSubmissionsSuspenseQueryOptions", {
|
|
943
|
+
enumerable: true,
|
|
944
|
+
get: function() {
|
|
945
|
+
return listMarketplaceSubmissionsSuspenseQueryOptions;
|
|
946
|
+
}
|
|
947
|
+
});
|
|
948
|
+
Object.defineProperty(exports, "listMarketplaceTemplatesQueryKey", {
|
|
949
|
+
enumerable: true,
|
|
950
|
+
get: function() {
|
|
951
|
+
return listMarketplaceTemplatesQueryKey;
|
|
952
|
+
}
|
|
953
|
+
});
|
|
954
|
+
Object.defineProperty(exports, "listMarketplaceTemplatesQueryOptions", {
|
|
955
|
+
enumerable: true,
|
|
956
|
+
get: function() {
|
|
957
|
+
return listMarketplaceTemplatesQueryOptions;
|
|
958
|
+
}
|
|
959
|
+
});
|
|
960
|
+
Object.defineProperty(exports, "listMarketplaceTemplatesSuspenseQueryKey", {
|
|
961
|
+
enumerable: true,
|
|
962
|
+
get: function() {
|
|
963
|
+
return listMarketplaceTemplatesSuspenseQueryKey;
|
|
964
|
+
}
|
|
965
|
+
});
|
|
966
|
+
Object.defineProperty(exports, "listMarketplaceTemplatesSuspenseQueryOptions", {
|
|
967
|
+
enumerable: true,
|
|
968
|
+
get: function() {
|
|
969
|
+
return listMarketplaceTemplatesSuspenseQueryOptions;
|
|
970
|
+
}
|
|
971
|
+
});
|
|
972
|
+
Object.defineProperty(exports, "listPendingMarketplaceSubmissionsQueryKey", {
|
|
973
|
+
enumerable: true,
|
|
974
|
+
get: function() {
|
|
975
|
+
return listPendingMarketplaceSubmissionsQueryKey;
|
|
976
|
+
}
|
|
977
|
+
});
|
|
978
|
+
Object.defineProperty(exports, "listPendingMarketplaceSubmissionsQueryOptions", {
|
|
979
|
+
enumerable: true,
|
|
980
|
+
get: function() {
|
|
981
|
+
return listPendingMarketplaceSubmissionsQueryOptions;
|
|
982
|
+
}
|
|
983
|
+
});
|
|
984
|
+
Object.defineProperty(exports, "listPendingMarketplaceSubmissionsSuspenseQueryKey", {
|
|
985
|
+
enumerable: true,
|
|
986
|
+
get: function() {
|
|
987
|
+
return listPendingMarketplaceSubmissionsSuspenseQueryKey;
|
|
988
|
+
}
|
|
989
|
+
});
|
|
990
|
+
Object.defineProperty(exports, "listPendingMarketplaceSubmissionsSuspenseQueryOptions", {
|
|
991
|
+
enumerable: true,
|
|
992
|
+
get: function() {
|
|
993
|
+
return listPendingMarketplaceSubmissionsSuspenseQueryOptions;
|
|
994
|
+
}
|
|
995
|
+
});
|
|
996
|
+
Object.defineProperty(exports, "listWorkspaceMarketplaceSkillsQueryKey", {
|
|
997
|
+
enumerable: true,
|
|
998
|
+
get: function() {
|
|
999
|
+
return listWorkspaceMarketplaceSkillsQueryKey;
|
|
1000
|
+
}
|
|
1001
|
+
});
|
|
1002
|
+
Object.defineProperty(exports, "listWorkspaceMarketplaceSkillsQueryOptions", {
|
|
1003
|
+
enumerable: true,
|
|
1004
|
+
get: function() {
|
|
1005
|
+
return listWorkspaceMarketplaceSkillsQueryOptions;
|
|
1006
|
+
}
|
|
1007
|
+
});
|
|
1008
|
+
Object.defineProperty(exports, "listWorkspaceMarketplaceSkillsSuspenseQueryKey", {
|
|
1009
|
+
enumerable: true,
|
|
1010
|
+
get: function() {
|
|
1011
|
+
return listWorkspaceMarketplaceSkillsSuspenseQueryKey;
|
|
1012
|
+
}
|
|
1013
|
+
});
|
|
1014
|
+
Object.defineProperty(exports, "listWorkspaceMarketplaceSkillsSuspenseQueryOptions", {
|
|
1015
|
+
enumerable: true,
|
|
1016
|
+
get: function() {
|
|
1017
|
+
return listWorkspaceMarketplaceSkillsSuspenseQueryOptions;
|
|
1018
|
+
}
|
|
1019
|
+
});
|
|
1020
|
+
Object.defineProperty(exports, "materializeMarketplaceTemplateMutationKey", {
|
|
1021
|
+
enumerable: true,
|
|
1022
|
+
get: function() {
|
|
1023
|
+
return materializeMarketplaceTemplateMutationKey;
|
|
1024
|
+
}
|
|
1025
|
+
});
|
|
1026
|
+
Object.defineProperty(exports, "previewMarketplaceSkillImportMutationKey", {
|
|
1027
|
+
enumerable: true,
|
|
1028
|
+
get: function() {
|
|
1029
|
+
return previewMarketplaceSkillImportMutationKey;
|
|
1030
|
+
}
|
|
1031
|
+
});
|
|
1032
|
+
Object.defineProperty(exports, "rejectMarketplaceSubmissionMutationKey", {
|
|
1033
|
+
enumerable: true,
|
|
1034
|
+
get: function() {
|
|
1035
|
+
return rejectMarketplaceSubmissionMutationKey;
|
|
1036
|
+
}
|
|
1037
|
+
});
|
|
1038
|
+
Object.defineProperty(exports, "toggleMarketplaceSkillMutationKey", {
|
|
1039
|
+
enumerable: true,
|
|
1040
|
+
get: function() {
|
|
1041
|
+
return toggleMarketplaceSkillMutationKey;
|
|
1042
|
+
}
|
|
1043
|
+
});
|
|
1044
|
+
Object.defineProperty(exports, "uninstallMarketplaceSkillMutationKey", {
|
|
1045
|
+
enumerable: true,
|
|
1046
|
+
get: function() {
|
|
1047
|
+
return uninstallMarketplaceSkillMutationKey;
|
|
1048
|
+
}
|
|
1049
|
+
});
|
|
1050
|
+
Object.defineProperty(exports, "useApproveMarketplaceSubmission", {
|
|
1051
|
+
enumerable: true,
|
|
1052
|
+
get: function() {
|
|
1053
|
+
return useApproveMarketplaceSubmission;
|
|
1054
|
+
}
|
|
1055
|
+
});
|
|
1056
|
+
Object.defineProperty(exports, "useCreateMarketplaceSubmission", {
|
|
1057
|
+
enumerable: true,
|
|
1058
|
+
get: function() {
|
|
1059
|
+
return useCreateMarketplaceSubmission;
|
|
1060
|
+
}
|
|
1061
|
+
});
|
|
1062
|
+
Object.defineProperty(exports, "useDeleteMarketplaceSubmission", {
|
|
1063
|
+
enumerable: true,
|
|
1064
|
+
get: function() {
|
|
1065
|
+
return useDeleteMarketplaceSubmission;
|
|
1066
|
+
}
|
|
1067
|
+
});
|
|
1068
|
+
Object.defineProperty(exports, "useDownloadMarketplaceSubmissionArchive", {
|
|
1069
|
+
enumerable: true,
|
|
1070
|
+
get: function() {
|
|
1071
|
+
return useDownloadMarketplaceSubmissionArchive;
|
|
1072
|
+
}
|
|
1073
|
+
});
|
|
1074
|
+
Object.defineProperty(exports, "useDownloadMarketplaceSubmissionArchiveSuspense", {
|
|
1075
|
+
enumerable: true,
|
|
1076
|
+
get: function() {
|
|
1077
|
+
return useDownloadMarketplaceSubmissionArchiveSuspense;
|
|
1078
|
+
}
|
|
1079
|
+
});
|
|
1080
|
+
Object.defineProperty(exports, "useDownloadMarketplaceTemplate", {
|
|
1081
|
+
enumerable: true,
|
|
1082
|
+
get: function() {
|
|
1083
|
+
return useDownloadMarketplaceTemplate;
|
|
1084
|
+
}
|
|
1085
|
+
});
|
|
1086
|
+
Object.defineProperty(exports, "useDownloadMarketplaceTemplateSuspense", {
|
|
1087
|
+
enumerable: true,
|
|
1088
|
+
get: function() {
|
|
1089
|
+
return useDownloadMarketplaceTemplateSuspense;
|
|
1090
|
+
}
|
|
1091
|
+
});
|
|
1092
|
+
Object.defineProperty(exports, "useFinalizeMarketplaceSubmission", {
|
|
1093
|
+
enumerable: true,
|
|
1094
|
+
get: function() {
|
|
1095
|
+
return useFinalizeMarketplaceSubmission;
|
|
1096
|
+
}
|
|
1097
|
+
});
|
|
1098
|
+
Object.defineProperty(exports, "useGenerateMarketplaceTemplateContent", {
|
|
1099
|
+
enumerable: true,
|
|
1100
|
+
get: function() {
|
|
1101
|
+
return useGenerateMarketplaceTemplateContent;
|
|
1102
|
+
}
|
|
1103
|
+
});
|
|
1104
|
+
Object.defineProperty(exports, "useGetMarketplaceSkill", {
|
|
1105
|
+
enumerable: true,
|
|
1106
|
+
get: function() {
|
|
1107
|
+
return useGetMarketplaceSkill;
|
|
1108
|
+
}
|
|
1109
|
+
});
|
|
1110
|
+
Object.defineProperty(exports, "useGetMarketplaceSkillSuspense", {
|
|
1111
|
+
enumerable: true,
|
|
1112
|
+
get: function() {
|
|
1113
|
+
return useGetMarketplaceSkillSuspense;
|
|
1114
|
+
}
|
|
1115
|
+
});
|
|
1116
|
+
Object.defineProperty(exports, "useInstallImportedMarketplaceSkill", {
|
|
1117
|
+
enumerable: true,
|
|
1118
|
+
get: function() {
|
|
1119
|
+
return useInstallImportedMarketplaceSkill;
|
|
1120
|
+
}
|
|
1121
|
+
});
|
|
1122
|
+
Object.defineProperty(exports, "useInstallMarketplaceSkill", {
|
|
1123
|
+
enumerable: true,
|
|
1124
|
+
get: function() {
|
|
1125
|
+
return useInstallMarketplaceSkill;
|
|
1126
|
+
}
|
|
1127
|
+
});
|
|
1128
|
+
Object.defineProperty(exports, "useListMarketplaceAppTemplates", {
|
|
1129
|
+
enumerable: true,
|
|
1130
|
+
get: function() {
|
|
1131
|
+
return useListMarketplaceAppTemplates;
|
|
1132
|
+
}
|
|
1133
|
+
});
|
|
1134
|
+
Object.defineProperty(exports, "useListMarketplaceAppTemplatesSuspense", {
|
|
1135
|
+
enumerable: true,
|
|
1136
|
+
get: function() {
|
|
1137
|
+
return useListMarketplaceAppTemplatesSuspense;
|
|
1138
|
+
}
|
|
1139
|
+
});
|
|
1140
|
+
Object.defineProperty(exports, "useListMarketplaceSkills", {
|
|
1141
|
+
enumerable: true,
|
|
1142
|
+
get: function() {
|
|
1143
|
+
return useListMarketplaceSkills;
|
|
1144
|
+
}
|
|
1145
|
+
});
|
|
1146
|
+
Object.defineProperty(exports, "useListMarketplaceSkillsSuspense", {
|
|
1147
|
+
enumerable: true,
|
|
1148
|
+
get: function() {
|
|
1149
|
+
return useListMarketplaceSkillsSuspense;
|
|
1150
|
+
}
|
|
1151
|
+
});
|
|
1152
|
+
Object.defineProperty(exports, "useListMarketplaceSubmissions", {
|
|
1153
|
+
enumerable: true,
|
|
1154
|
+
get: function() {
|
|
1155
|
+
return useListMarketplaceSubmissions;
|
|
1156
|
+
}
|
|
1157
|
+
});
|
|
1158
|
+
Object.defineProperty(exports, "useListMarketplaceSubmissionsSuspense", {
|
|
1159
|
+
enumerable: true,
|
|
1160
|
+
get: function() {
|
|
1161
|
+
return useListMarketplaceSubmissionsSuspense;
|
|
1162
|
+
}
|
|
1163
|
+
});
|
|
1164
|
+
Object.defineProperty(exports, "useListMarketplaceTemplates", {
|
|
1165
|
+
enumerable: true,
|
|
1166
|
+
get: function() {
|
|
1167
|
+
return useListMarketplaceTemplates;
|
|
1168
|
+
}
|
|
1169
|
+
});
|
|
1170
|
+
Object.defineProperty(exports, "useListMarketplaceTemplatesSuspense", {
|
|
1171
|
+
enumerable: true,
|
|
1172
|
+
get: function() {
|
|
1173
|
+
return useListMarketplaceTemplatesSuspense;
|
|
1174
|
+
}
|
|
1175
|
+
});
|
|
1176
|
+
Object.defineProperty(exports, "useListPendingMarketplaceSubmissions", {
|
|
1177
|
+
enumerable: true,
|
|
1178
|
+
get: function() {
|
|
1179
|
+
return useListPendingMarketplaceSubmissions;
|
|
1180
|
+
}
|
|
1181
|
+
});
|
|
1182
|
+
Object.defineProperty(exports, "useListPendingMarketplaceSubmissionsSuspense", {
|
|
1183
|
+
enumerable: true,
|
|
1184
|
+
get: function() {
|
|
1185
|
+
return useListPendingMarketplaceSubmissionsSuspense;
|
|
1186
|
+
}
|
|
1187
|
+
});
|
|
1188
|
+
Object.defineProperty(exports, "useListWorkspaceMarketplaceSkills", {
|
|
1189
|
+
enumerable: true,
|
|
1190
|
+
get: function() {
|
|
1191
|
+
return useListWorkspaceMarketplaceSkills;
|
|
1192
|
+
}
|
|
1193
|
+
});
|
|
1194
|
+
Object.defineProperty(exports, "useListWorkspaceMarketplaceSkillsSuspense", {
|
|
1195
|
+
enumerable: true,
|
|
1196
|
+
get: function() {
|
|
1197
|
+
return useListWorkspaceMarketplaceSkillsSuspense;
|
|
1198
|
+
}
|
|
1199
|
+
});
|
|
1200
|
+
Object.defineProperty(exports, "useMaterializeMarketplaceTemplate", {
|
|
1201
|
+
enumerable: true,
|
|
1202
|
+
get: function() {
|
|
1203
|
+
return useMaterializeMarketplaceTemplate;
|
|
1204
|
+
}
|
|
1205
|
+
});
|
|
1206
|
+
Object.defineProperty(exports, "usePreviewMarketplaceSkillImport", {
|
|
1207
|
+
enumerable: true,
|
|
1208
|
+
get: function() {
|
|
1209
|
+
return usePreviewMarketplaceSkillImport;
|
|
1210
|
+
}
|
|
1211
|
+
});
|
|
1212
|
+
Object.defineProperty(exports, "useRejectMarketplaceSubmission", {
|
|
1213
|
+
enumerable: true,
|
|
1214
|
+
get: function() {
|
|
1215
|
+
return useRejectMarketplaceSubmission;
|
|
1216
|
+
}
|
|
1217
|
+
});
|
|
1218
|
+
Object.defineProperty(exports, "useToggleMarketplaceSkill", {
|
|
1219
|
+
enumerable: true,
|
|
1220
|
+
get: function() {
|
|
1221
|
+
return useToggleMarketplaceSkill;
|
|
1222
|
+
}
|
|
1223
|
+
});
|
|
1224
|
+
Object.defineProperty(exports, "useUninstallMarketplaceSkill", {
|
|
1225
|
+
enumerable: true,
|
|
1226
|
+
get: function() {
|
|
1227
|
+
return useUninstallMarketplaceSkill;
|
|
1228
|
+
}
|
|
1229
|
+
});
|