@rudderhq/shared 0.3.4-canary.8 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/constants.d.ts +2 -2
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +27 -5
- package/dist/constants.js.map +1 -1
- package/dist/index.d.ts +14 -14
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/organization-skill-reference.test.js +3 -3
- package/dist/organization-skill-reference.test.js.map +1 -1
- package/dist/project-mentions.d.ts +2 -1
- package/dist/project-mentions.d.ts.map +1 -1
- package/dist/project-mentions.js +26 -129
- package/dist/project-mentions.js.map +1 -1
- package/dist/project-mentions.test.js +54 -40
- package/dist/project-mentions.test.js.map +1 -1
- package/dist/types/agent.d.ts +1 -1
- package/dist/types/agent.d.ts.map +1 -1
- package/dist/types/heartbeat.d.ts +1 -1
- package/dist/types/index.d.ts +30 -30
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/instance.d.ts +17 -0
- package/dist/types/instance.d.ts.map +1 -1
- package/dist/types/issue.d.ts +1 -41
- package/dist/types/issue.d.ts.map +1 -1
- package/dist/types/messenger.d.ts +4 -4
- package/dist/types/messenger.d.ts.map +1 -1
- package/dist/types/organization.d.ts +1 -2
- package/dist/types/organization.d.ts.map +1 -1
- package/dist/types/plugin.d.ts +1 -1
- package/dist/types/plugin.d.ts.map +1 -1
- package/dist/types/project.d.ts +1 -1
- package/dist/types/project.d.ts.map +1 -1
- package/dist/validators/adapter-skills.d.ts +20 -20
- package/dist/validators/agent.d.ts +28 -28
- package/dist/validators/agent.js +2 -2
- package/dist/validators/agent.js.map +1 -1
- package/dist/validators/automation.d.ts +86 -4
- package/dist/validators/automation.d.ts.map +1 -1
- package/dist/validators/automation.js +16 -7
- package/dist/validators/automation.js.map +1 -1
- package/dist/validators/automation.test.js +20 -0
- package/dist/validators/automation.test.js.map +1 -1
- package/dist/validators/calendar.d.ts +32 -32
- package/dist/validators/chat.d.ts +40 -2
- package/dist/validators/chat.d.ts.map +1 -1
- package/dist/validators/chat.js +5 -1
- package/dist/validators/chat.js.map +1 -1
- package/dist/validators/chat.test.js +18 -3
- package/dist/validators/chat.test.js.map +1 -1
- package/dist/validators/finance.d.ts +4 -4
- package/dist/validators/goal.d.ts +4 -4
- package/dist/validators/index.d.ts +25 -25
- package/dist/validators/index.d.ts.map +1 -1
- package/dist/validators/index.js +25 -25
- package/dist/validators/index.js.map +1 -1
- package/dist/validators/instance.d.ts +281 -0
- package/dist/validators/instance.d.ts.map +1 -1
- package/dist/validators/instance.js +38 -0
- package/dist/validators/instance.js.map +1 -1
- package/dist/validators/instance.test.js +41 -1
- package/dist/validators/instance.test.js.map +1 -1
- package/dist/validators/issue.d.ts +0 -22
- package/dist/validators/issue.d.ts.map +1 -1
- package/dist/validators/issue.js +0 -13
- package/dist/validators/issue.js.map +1 -1
- package/dist/validators/organization-intelligence-profile.js +1 -1
- package/dist/validators/organization-intelligence-profile.js.map +1 -1
- package/dist/validators/organization-portability.d.ts +89 -89
- package/dist/validators/organization-skill.d.ts +150 -150
- package/dist/validators/organization.d.ts +12 -12
- package/dist/validators/plugin.d.ts +17 -17
- package/dist/validators/plugin.js +1 -1
- package/dist/validators/plugin.js.map +1 -1
- package/dist/validators/project.d.ts +26 -26
- package/dist/validators/project.test.js +2 -2
- package/dist/validators/project.test.js.map +1 -1
- package/dist/validators/resource.d.ts +20 -20
- package/dist/validators/secret.d.ts +2 -2
- package/package.json +1 -1
|
@@ -8,10 +8,10 @@ export declare const organizationSkillFileInventoryEntrySchema: z.ZodObject<{
|
|
|
8
8
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
path: string;
|
|
11
|
-
kind: "reference" | "
|
|
11
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
12
12
|
}, {
|
|
13
13
|
path: string;
|
|
14
|
-
kind: "reference" | "
|
|
14
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
15
15
|
}>;
|
|
16
16
|
export declare const organizationSkillSchema: z.ZodObject<{
|
|
17
17
|
id: z.ZodString;
|
|
@@ -31,53 +31,53 @@ export declare const organizationSkillSchema: z.ZodObject<{
|
|
|
31
31
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
33
|
path: string;
|
|
34
|
-
kind: "reference" | "
|
|
34
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
35
35
|
}, {
|
|
36
36
|
path: string;
|
|
37
|
-
kind: "reference" | "
|
|
37
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
38
38
|
}>, "many">>;
|
|
39
39
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
40
40
|
createdAt: z.ZodDate;
|
|
41
41
|
updatedAt: z.ZodDate;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
updatedAt: Date;
|
|
44
|
-
markdown: string;
|
|
45
|
-
description: string | null;
|
|
46
44
|
id: string;
|
|
47
45
|
orgId: string;
|
|
48
46
|
createdAt: Date;
|
|
49
47
|
name: string;
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
description: string | null;
|
|
49
|
+
markdown: string;
|
|
52
50
|
key: string;
|
|
51
|
+
metadata: Record<string, unknown> | null;
|
|
53
52
|
slug: string;
|
|
53
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
54
54
|
sourceLocator: string | null;
|
|
55
55
|
sourceRef: string | null;
|
|
56
56
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
57
57
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
58
58
|
fileInventory: {
|
|
59
59
|
path: string;
|
|
60
|
-
kind: "reference" | "
|
|
60
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
61
61
|
}[];
|
|
62
62
|
}, {
|
|
63
63
|
updatedAt: Date;
|
|
64
|
-
markdown: string;
|
|
65
|
-
description: string | null;
|
|
66
64
|
id: string;
|
|
67
65
|
orgId: string;
|
|
68
66
|
createdAt: Date;
|
|
69
67
|
name: string;
|
|
70
|
-
|
|
71
|
-
|
|
68
|
+
description: string | null;
|
|
69
|
+
markdown: string;
|
|
72
70
|
key: string;
|
|
71
|
+
metadata: Record<string, unknown> | null;
|
|
73
72
|
slug: string;
|
|
73
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
74
74
|
sourceLocator: string | null;
|
|
75
75
|
sourceRef: string | null;
|
|
76
76
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
77
77
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
78
78
|
fileInventory?: {
|
|
79
79
|
path: string;
|
|
80
|
-
kind: "reference" | "
|
|
80
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
81
81
|
}[] | undefined;
|
|
82
82
|
}>;
|
|
83
83
|
export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
@@ -98,10 +98,10 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
98
98
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
99
99
|
}, "strip", z.ZodTypeAny, {
|
|
100
100
|
path: string;
|
|
101
|
-
kind: "reference" | "
|
|
101
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
102
102
|
}, {
|
|
103
103
|
path: string;
|
|
104
|
-
kind: "reference" | "
|
|
104
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
105
105
|
}>, "many">>;
|
|
106
106
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
107
107
|
createdAt: z.ZodDate;
|
|
@@ -116,43 +116,45 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
116
116
|
workspaceEditPath: z.ZodNullable<z.ZodString>;
|
|
117
117
|
}, "strip", z.ZodTypeAny, {
|
|
118
118
|
updatedAt: Date;
|
|
119
|
-
markdown: string;
|
|
120
|
-
description: string | null;
|
|
121
119
|
id: string;
|
|
122
120
|
orgId: string;
|
|
123
121
|
createdAt: Date;
|
|
124
122
|
name: string;
|
|
125
|
-
|
|
126
|
-
|
|
123
|
+
description: string | null;
|
|
124
|
+
markdown: string;
|
|
127
125
|
key: string;
|
|
126
|
+
sourcePath: string | null;
|
|
127
|
+
workspaceEditPath: string | null;
|
|
128
|
+
metadata: Record<string, unknown> | null;
|
|
128
129
|
slug: string;
|
|
130
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
129
131
|
sourceLocator: string | null;
|
|
130
132
|
sourceRef: string | null;
|
|
131
133
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
132
134
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
133
135
|
fileInventory: {
|
|
134
136
|
path: string;
|
|
135
|
-
kind: "reference" | "
|
|
137
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
136
138
|
}[];
|
|
137
139
|
attachedAgentCount: number;
|
|
138
140
|
editable: boolean;
|
|
139
141
|
editableReason: string | null;
|
|
140
142
|
sourceLabel: string | null;
|
|
141
143
|
sourceBadge: "url" | "rudder" | "github" | "catalog" | "skills_sh" | "community" | "local";
|
|
142
|
-
sourcePath: string | null;
|
|
143
|
-
workspaceEditPath: string | null;
|
|
144
144
|
}, {
|
|
145
145
|
updatedAt: Date;
|
|
146
|
-
markdown: string;
|
|
147
|
-
description: string | null;
|
|
148
146
|
id: string;
|
|
149
147
|
orgId: string;
|
|
150
148
|
createdAt: Date;
|
|
151
149
|
name: string;
|
|
152
|
-
|
|
153
|
-
|
|
150
|
+
description: string | null;
|
|
151
|
+
markdown: string;
|
|
154
152
|
key: string;
|
|
153
|
+
sourcePath: string | null;
|
|
154
|
+
workspaceEditPath: string | null;
|
|
155
|
+
metadata: Record<string, unknown> | null;
|
|
155
156
|
slug: string;
|
|
157
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
156
158
|
sourceLocator: string | null;
|
|
157
159
|
sourceRef: string | null;
|
|
158
160
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
@@ -162,11 +164,9 @@ export declare const organizationSkillListItemSchema: z.ZodObject<{
|
|
|
162
164
|
editableReason: string | null;
|
|
163
165
|
sourceLabel: string | null;
|
|
164
166
|
sourceBadge: "url" | "rudder" | "github" | "catalog" | "skills_sh" | "community" | "local";
|
|
165
|
-
sourcePath: string | null;
|
|
166
|
-
workspaceEditPath: string | null;
|
|
167
167
|
fileInventory?: {
|
|
168
168
|
path: string;
|
|
169
|
-
kind: "reference" | "
|
|
169
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
170
170
|
}[] | undefined;
|
|
171
171
|
}>;
|
|
172
172
|
export declare const organizationSkillUsageAgentSchema: z.ZodObject<{
|
|
@@ -179,16 +179,16 @@ export declare const organizationSkillUsageAgentSchema: z.ZodObject<{
|
|
|
179
179
|
}, "strip", z.ZodTypeAny, {
|
|
180
180
|
id: string;
|
|
181
181
|
name: string;
|
|
182
|
+
desired: boolean;
|
|
182
183
|
agentRuntimeType: string;
|
|
183
184
|
urlKey: string;
|
|
184
|
-
desired: boolean;
|
|
185
185
|
actualState: string | null;
|
|
186
186
|
}, {
|
|
187
187
|
id: string;
|
|
188
188
|
name: string;
|
|
189
|
+
desired: boolean;
|
|
189
190
|
agentRuntimeType: string;
|
|
190
191
|
urlKey: string;
|
|
191
|
-
desired: boolean;
|
|
192
192
|
actualState: string | null;
|
|
193
193
|
}>;
|
|
194
194
|
export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
@@ -209,10 +209,10 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
209
209
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
210
210
|
}, "strip", z.ZodTypeAny, {
|
|
211
211
|
path: string;
|
|
212
|
-
kind: "reference" | "
|
|
212
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
213
213
|
}, {
|
|
214
214
|
path: string;
|
|
215
|
-
kind: "reference" | "
|
|
215
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
216
216
|
}>, "many">>;
|
|
217
217
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
218
218
|
createdAt: z.ZodDate;
|
|
@@ -229,16 +229,16 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
229
229
|
}, "strip", z.ZodTypeAny, {
|
|
230
230
|
id: string;
|
|
231
231
|
name: string;
|
|
232
|
+
desired: boolean;
|
|
232
233
|
agentRuntimeType: string;
|
|
233
234
|
urlKey: string;
|
|
234
|
-
desired: boolean;
|
|
235
235
|
actualState: string | null;
|
|
236
236
|
}, {
|
|
237
237
|
id: string;
|
|
238
238
|
name: string;
|
|
239
|
+
desired: boolean;
|
|
239
240
|
agentRuntimeType: string;
|
|
240
241
|
urlKey: string;
|
|
241
|
-
desired: boolean;
|
|
242
242
|
actualState: string | null;
|
|
243
243
|
}>, "many">>;
|
|
244
244
|
editable: z.ZodBoolean;
|
|
@@ -249,51 +249,53 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
249
249
|
workspaceEditPath: z.ZodNullable<z.ZodString>;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
251
|
updatedAt: Date;
|
|
252
|
-
markdown: string;
|
|
253
|
-
description: string | null;
|
|
254
252
|
id: string;
|
|
255
253
|
orgId: string;
|
|
256
254
|
createdAt: Date;
|
|
257
255
|
name: string;
|
|
258
|
-
|
|
259
|
-
|
|
256
|
+
description: string | null;
|
|
257
|
+
markdown: string;
|
|
260
258
|
key: string;
|
|
259
|
+
sourcePath: string | null;
|
|
260
|
+
workspaceEditPath: string | null;
|
|
261
|
+
metadata: Record<string, unknown> | null;
|
|
261
262
|
slug: string;
|
|
263
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
262
264
|
sourceLocator: string | null;
|
|
263
265
|
sourceRef: string | null;
|
|
264
266
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
265
267
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
266
268
|
fileInventory: {
|
|
267
269
|
path: string;
|
|
268
|
-
kind: "reference" | "
|
|
270
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
269
271
|
}[];
|
|
270
272
|
attachedAgentCount: number;
|
|
271
273
|
editable: boolean;
|
|
272
274
|
editableReason: string | null;
|
|
273
275
|
sourceLabel: string | null;
|
|
274
276
|
sourceBadge: "url" | "rudder" | "github" | "catalog" | "skills_sh" | "community" | "local";
|
|
275
|
-
sourcePath: string | null;
|
|
276
|
-
workspaceEditPath: string | null;
|
|
277
277
|
usedByAgents: {
|
|
278
278
|
id: string;
|
|
279
279
|
name: string;
|
|
280
|
+
desired: boolean;
|
|
280
281
|
agentRuntimeType: string;
|
|
281
282
|
urlKey: string;
|
|
282
|
-
desired: boolean;
|
|
283
283
|
actualState: string | null;
|
|
284
284
|
}[];
|
|
285
285
|
}, {
|
|
286
286
|
updatedAt: Date;
|
|
287
|
-
markdown: string;
|
|
288
|
-
description: string | null;
|
|
289
287
|
id: string;
|
|
290
288
|
orgId: string;
|
|
291
289
|
createdAt: Date;
|
|
292
290
|
name: string;
|
|
293
|
-
|
|
294
|
-
|
|
291
|
+
description: string | null;
|
|
292
|
+
markdown: string;
|
|
295
293
|
key: string;
|
|
294
|
+
sourcePath: string | null;
|
|
295
|
+
workspaceEditPath: string | null;
|
|
296
|
+
metadata: Record<string, unknown> | null;
|
|
296
297
|
slug: string;
|
|
298
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
297
299
|
sourceLocator: string | null;
|
|
298
300
|
sourceRef: string | null;
|
|
299
301
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
@@ -303,18 +305,16 @@ export declare const organizationSkillDetailSchema: z.ZodObject<{
|
|
|
303
305
|
editableReason: string | null;
|
|
304
306
|
sourceLabel: string | null;
|
|
305
307
|
sourceBadge: "url" | "rudder" | "github" | "catalog" | "skills_sh" | "community" | "local";
|
|
306
|
-
sourcePath: string | null;
|
|
307
|
-
workspaceEditPath: string | null;
|
|
308
308
|
fileInventory?: {
|
|
309
309
|
path: string;
|
|
310
|
-
kind: "reference" | "
|
|
310
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
311
311
|
}[] | undefined;
|
|
312
312
|
usedByAgents?: {
|
|
313
313
|
id: string;
|
|
314
314
|
name: string;
|
|
315
|
+
desired: boolean;
|
|
315
316
|
agentRuntimeType: string;
|
|
316
317
|
urlKey: string;
|
|
317
|
-
desired: boolean;
|
|
318
318
|
actualState: string | null;
|
|
319
319
|
}[] | undefined;
|
|
320
320
|
}>;
|
|
@@ -438,53 +438,53 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
438
438
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
440
|
path: string;
|
|
441
|
-
kind: "reference" | "
|
|
441
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
442
442
|
}, {
|
|
443
443
|
path: string;
|
|
444
|
-
kind: "reference" | "
|
|
444
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
445
445
|
}>, "many">>;
|
|
446
446
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
447
447
|
createdAt: z.ZodDate;
|
|
448
448
|
updatedAt: z.ZodDate;
|
|
449
449
|
}, "strip", z.ZodTypeAny, {
|
|
450
450
|
updatedAt: Date;
|
|
451
|
-
markdown: string;
|
|
452
|
-
description: string | null;
|
|
453
451
|
id: string;
|
|
454
452
|
orgId: string;
|
|
455
453
|
createdAt: Date;
|
|
456
454
|
name: string;
|
|
457
|
-
|
|
458
|
-
|
|
455
|
+
description: string | null;
|
|
456
|
+
markdown: string;
|
|
459
457
|
key: string;
|
|
458
|
+
metadata: Record<string, unknown> | null;
|
|
460
459
|
slug: string;
|
|
460
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
461
461
|
sourceLocator: string | null;
|
|
462
462
|
sourceRef: string | null;
|
|
463
463
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
464
464
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
465
465
|
fileInventory: {
|
|
466
466
|
path: string;
|
|
467
|
-
kind: "reference" | "
|
|
467
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
468
468
|
}[];
|
|
469
469
|
}, {
|
|
470
470
|
updatedAt: Date;
|
|
471
|
-
markdown: string;
|
|
472
|
-
description: string | null;
|
|
473
471
|
id: string;
|
|
474
472
|
orgId: string;
|
|
475
473
|
createdAt: Date;
|
|
476
474
|
name: string;
|
|
477
|
-
|
|
478
|
-
|
|
475
|
+
description: string | null;
|
|
476
|
+
markdown: string;
|
|
479
477
|
key: string;
|
|
478
|
+
metadata: Record<string, unknown> | null;
|
|
480
479
|
slug: string;
|
|
480
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
481
481
|
sourceLocator: string | null;
|
|
482
482
|
sourceRef: string | null;
|
|
483
483
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
484
484
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
485
485
|
fileInventory?: {
|
|
486
486
|
path: string;
|
|
487
|
-
kind: "reference" | "
|
|
487
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
488
488
|
}[] | undefined;
|
|
489
489
|
}>, "many">;
|
|
490
490
|
updated: z.ZodArray<z.ZodObject<{
|
|
@@ -505,53 +505,53 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
505
505
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
506
506
|
}, "strip", z.ZodTypeAny, {
|
|
507
507
|
path: string;
|
|
508
|
-
kind: "reference" | "
|
|
508
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
509
509
|
}, {
|
|
510
510
|
path: string;
|
|
511
|
-
kind: "reference" | "
|
|
511
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
512
512
|
}>, "many">>;
|
|
513
513
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
514
514
|
createdAt: z.ZodDate;
|
|
515
515
|
updatedAt: z.ZodDate;
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
517
|
updatedAt: Date;
|
|
518
|
-
markdown: string;
|
|
519
|
-
description: string | null;
|
|
520
518
|
id: string;
|
|
521
519
|
orgId: string;
|
|
522
520
|
createdAt: Date;
|
|
523
521
|
name: string;
|
|
524
|
-
|
|
525
|
-
|
|
522
|
+
description: string | null;
|
|
523
|
+
markdown: string;
|
|
526
524
|
key: string;
|
|
525
|
+
metadata: Record<string, unknown> | null;
|
|
527
526
|
slug: string;
|
|
527
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
528
528
|
sourceLocator: string | null;
|
|
529
529
|
sourceRef: string | null;
|
|
530
530
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
531
531
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
532
532
|
fileInventory: {
|
|
533
533
|
path: string;
|
|
534
|
-
kind: "reference" | "
|
|
534
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
535
535
|
}[];
|
|
536
536
|
}, {
|
|
537
537
|
updatedAt: Date;
|
|
538
|
-
markdown: string;
|
|
539
|
-
description: string | null;
|
|
540
538
|
id: string;
|
|
541
539
|
orgId: string;
|
|
542
540
|
createdAt: Date;
|
|
543
541
|
name: string;
|
|
544
|
-
|
|
545
|
-
|
|
542
|
+
description: string | null;
|
|
543
|
+
markdown: string;
|
|
546
544
|
key: string;
|
|
545
|
+
metadata: Record<string, unknown> | null;
|
|
547
546
|
slug: string;
|
|
547
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
548
548
|
sourceLocator: string | null;
|
|
549
549
|
sourceRef: string | null;
|
|
550
550
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
551
551
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
552
552
|
fileInventory?: {
|
|
553
553
|
path: string;
|
|
554
|
-
kind: "reference" | "
|
|
554
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
555
555
|
}[] | undefined;
|
|
556
556
|
}>, "many">;
|
|
557
557
|
skipped: z.ZodArray<z.ZodObject<{
|
|
@@ -617,23 +617,23 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
617
617
|
}, "strip", z.ZodTypeAny, {
|
|
618
618
|
imported: {
|
|
619
619
|
updatedAt: Date;
|
|
620
|
-
markdown: string;
|
|
621
|
-
description: string | null;
|
|
622
620
|
id: string;
|
|
623
621
|
orgId: string;
|
|
624
622
|
createdAt: Date;
|
|
625
623
|
name: string;
|
|
626
|
-
|
|
627
|
-
|
|
624
|
+
description: string | null;
|
|
625
|
+
markdown: string;
|
|
628
626
|
key: string;
|
|
627
|
+
metadata: Record<string, unknown> | null;
|
|
629
628
|
slug: string;
|
|
629
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
630
630
|
sourceLocator: string | null;
|
|
631
631
|
sourceRef: string | null;
|
|
632
632
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
633
633
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
634
634
|
fileInventory: {
|
|
635
635
|
path: string;
|
|
636
|
-
kind: "reference" | "
|
|
636
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
637
637
|
}[];
|
|
638
638
|
}[];
|
|
639
639
|
skipped: {
|
|
@@ -646,25 +646,26 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
646
646
|
}[];
|
|
647
647
|
updated: {
|
|
648
648
|
updatedAt: Date;
|
|
649
|
-
markdown: string;
|
|
650
|
-
description: string | null;
|
|
651
649
|
id: string;
|
|
652
650
|
orgId: string;
|
|
653
651
|
createdAt: Date;
|
|
654
652
|
name: string;
|
|
655
|
-
|
|
656
|
-
|
|
653
|
+
description: string | null;
|
|
654
|
+
markdown: string;
|
|
657
655
|
key: string;
|
|
656
|
+
metadata: Record<string, unknown> | null;
|
|
658
657
|
slug: string;
|
|
658
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
659
659
|
sourceLocator: string | null;
|
|
660
660
|
sourceRef: string | null;
|
|
661
661
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
662
662
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
663
663
|
fileInventory: {
|
|
664
664
|
path: string;
|
|
665
|
-
kind: "reference" | "
|
|
665
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
666
666
|
}[];
|
|
667
667
|
}[];
|
|
668
|
+
warnings: string[];
|
|
668
669
|
scannedProjects: number;
|
|
669
670
|
scannedWorkspaces: number;
|
|
670
671
|
discovered: number;
|
|
@@ -681,27 +682,26 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
681
682
|
existingSkillKey: string;
|
|
682
683
|
existingSourceLocator: string | null;
|
|
683
684
|
}[];
|
|
684
|
-
warnings: string[];
|
|
685
685
|
}, {
|
|
686
686
|
imported: {
|
|
687
687
|
updatedAt: Date;
|
|
688
|
-
markdown: string;
|
|
689
|
-
description: string | null;
|
|
690
688
|
id: string;
|
|
691
689
|
orgId: string;
|
|
692
690
|
createdAt: Date;
|
|
693
691
|
name: string;
|
|
694
|
-
|
|
695
|
-
|
|
692
|
+
description: string | null;
|
|
693
|
+
markdown: string;
|
|
696
694
|
key: string;
|
|
695
|
+
metadata: Record<string, unknown> | null;
|
|
697
696
|
slug: string;
|
|
697
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
698
698
|
sourceLocator: string | null;
|
|
699
699
|
sourceRef: string | null;
|
|
700
700
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
701
701
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
702
702
|
fileInventory?: {
|
|
703
703
|
path: string;
|
|
704
|
-
kind: "reference" | "
|
|
704
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
705
705
|
}[] | undefined;
|
|
706
706
|
}[];
|
|
707
707
|
skipped: {
|
|
@@ -714,25 +714,26 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
714
714
|
}[];
|
|
715
715
|
updated: {
|
|
716
716
|
updatedAt: Date;
|
|
717
|
-
markdown: string;
|
|
718
|
-
description: string | null;
|
|
719
717
|
id: string;
|
|
720
718
|
orgId: string;
|
|
721
719
|
createdAt: Date;
|
|
722
720
|
name: string;
|
|
723
|
-
|
|
724
|
-
|
|
721
|
+
description: string | null;
|
|
722
|
+
markdown: string;
|
|
725
723
|
key: string;
|
|
724
|
+
metadata: Record<string, unknown> | null;
|
|
726
725
|
slug: string;
|
|
726
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
727
727
|
sourceLocator: string | null;
|
|
728
728
|
sourceRef: string | null;
|
|
729
729
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
730
730
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
731
731
|
fileInventory?: {
|
|
732
732
|
path: string;
|
|
733
|
-
kind: "reference" | "
|
|
733
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
734
734
|
}[] | undefined;
|
|
735
735
|
}[];
|
|
736
|
+
warnings: string[];
|
|
736
737
|
scannedProjects: number;
|
|
737
738
|
scannedWorkspaces: number;
|
|
738
739
|
discovered: number;
|
|
@@ -749,7 +750,6 @@ export declare const organizationSkillProjectScanResultSchema: z.ZodObject<{
|
|
|
749
750
|
existingSkillKey: string;
|
|
750
751
|
existingSourceLocator: string | null;
|
|
751
752
|
}[];
|
|
752
|
-
warnings: string[];
|
|
753
753
|
}>;
|
|
754
754
|
export declare const organizationSkillLocalScanRequestSchema: z.ZodObject<{
|
|
755
755
|
roots: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -820,53 +820,53 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
820
820
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
821
821
|
}, "strip", z.ZodTypeAny, {
|
|
822
822
|
path: string;
|
|
823
|
-
kind: "reference" | "
|
|
823
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
824
824
|
}, {
|
|
825
825
|
path: string;
|
|
826
|
-
kind: "reference" | "
|
|
826
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
827
827
|
}>, "many">>;
|
|
828
828
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
829
829
|
createdAt: z.ZodDate;
|
|
830
830
|
updatedAt: z.ZodDate;
|
|
831
831
|
}, "strip", z.ZodTypeAny, {
|
|
832
832
|
updatedAt: Date;
|
|
833
|
-
markdown: string;
|
|
834
|
-
description: string | null;
|
|
835
833
|
id: string;
|
|
836
834
|
orgId: string;
|
|
837
835
|
createdAt: Date;
|
|
838
836
|
name: string;
|
|
839
|
-
|
|
840
|
-
|
|
837
|
+
description: string | null;
|
|
838
|
+
markdown: string;
|
|
841
839
|
key: string;
|
|
840
|
+
metadata: Record<string, unknown> | null;
|
|
842
841
|
slug: string;
|
|
842
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
843
843
|
sourceLocator: string | null;
|
|
844
844
|
sourceRef: string | null;
|
|
845
845
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
846
846
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
847
847
|
fileInventory: {
|
|
848
848
|
path: string;
|
|
849
|
-
kind: "reference" | "
|
|
849
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
850
850
|
}[];
|
|
851
851
|
}, {
|
|
852
852
|
updatedAt: Date;
|
|
853
|
-
markdown: string;
|
|
854
|
-
description: string | null;
|
|
855
853
|
id: string;
|
|
856
854
|
orgId: string;
|
|
857
855
|
createdAt: Date;
|
|
858
856
|
name: string;
|
|
859
|
-
|
|
860
|
-
|
|
857
|
+
description: string | null;
|
|
858
|
+
markdown: string;
|
|
861
859
|
key: string;
|
|
860
|
+
metadata: Record<string, unknown> | null;
|
|
862
861
|
slug: string;
|
|
862
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
863
863
|
sourceLocator: string | null;
|
|
864
864
|
sourceRef: string | null;
|
|
865
865
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
866
866
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
867
867
|
fileInventory?: {
|
|
868
868
|
path: string;
|
|
869
|
-
kind: "reference" | "
|
|
869
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
870
870
|
}[] | undefined;
|
|
871
871
|
}>, "many">;
|
|
872
872
|
updated: z.ZodArray<z.ZodObject<{
|
|
@@ -887,53 +887,53 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
887
887
|
kind: z.ZodEnum<["skill", "markdown", "reference", "script", "asset", "other"]>;
|
|
888
888
|
}, "strip", z.ZodTypeAny, {
|
|
889
889
|
path: string;
|
|
890
|
-
kind: "reference" | "
|
|
890
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
891
891
|
}, {
|
|
892
892
|
path: string;
|
|
893
|
-
kind: "reference" | "
|
|
893
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
894
894
|
}>, "many">>;
|
|
895
895
|
metadata: z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
896
896
|
createdAt: z.ZodDate;
|
|
897
897
|
updatedAt: z.ZodDate;
|
|
898
898
|
}, "strip", z.ZodTypeAny, {
|
|
899
899
|
updatedAt: Date;
|
|
900
|
-
markdown: string;
|
|
901
|
-
description: string | null;
|
|
902
900
|
id: string;
|
|
903
901
|
orgId: string;
|
|
904
902
|
createdAt: Date;
|
|
905
903
|
name: string;
|
|
906
|
-
|
|
907
|
-
|
|
904
|
+
description: string | null;
|
|
905
|
+
markdown: string;
|
|
908
906
|
key: string;
|
|
907
|
+
metadata: Record<string, unknown> | null;
|
|
909
908
|
slug: string;
|
|
909
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
910
910
|
sourceLocator: string | null;
|
|
911
911
|
sourceRef: string | null;
|
|
912
912
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
913
913
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
914
914
|
fileInventory: {
|
|
915
915
|
path: string;
|
|
916
|
-
kind: "reference" | "
|
|
916
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
917
917
|
}[];
|
|
918
918
|
}, {
|
|
919
919
|
updatedAt: Date;
|
|
920
|
-
markdown: string;
|
|
921
|
-
description: string | null;
|
|
922
920
|
id: string;
|
|
923
921
|
orgId: string;
|
|
924
922
|
createdAt: Date;
|
|
925
923
|
name: string;
|
|
926
|
-
|
|
927
|
-
|
|
924
|
+
description: string | null;
|
|
925
|
+
markdown: string;
|
|
928
926
|
key: string;
|
|
927
|
+
metadata: Record<string, unknown> | null;
|
|
929
928
|
slug: string;
|
|
929
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
930
930
|
sourceLocator: string | null;
|
|
931
931
|
sourceRef: string | null;
|
|
932
932
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
933
933
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
934
934
|
fileInventory?: {
|
|
935
935
|
path: string;
|
|
936
|
-
kind: "reference" | "
|
|
936
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
937
937
|
}[] | undefined;
|
|
938
938
|
}>, "many">;
|
|
939
939
|
skipped: z.ZodArray<z.ZodObject<{
|
|
@@ -981,23 +981,23 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
981
981
|
}, "strip", z.ZodTypeAny, {
|
|
982
982
|
imported: {
|
|
983
983
|
updatedAt: Date;
|
|
984
|
-
markdown: string;
|
|
985
|
-
description: string | null;
|
|
986
984
|
id: string;
|
|
987
985
|
orgId: string;
|
|
988
986
|
createdAt: Date;
|
|
989
987
|
name: string;
|
|
990
|
-
|
|
991
|
-
|
|
988
|
+
description: string | null;
|
|
989
|
+
markdown: string;
|
|
992
990
|
key: string;
|
|
991
|
+
metadata: Record<string, unknown> | null;
|
|
993
992
|
slug: string;
|
|
993
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
994
994
|
sourceLocator: string | null;
|
|
995
995
|
sourceRef: string | null;
|
|
996
996
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
997
997
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
998
998
|
fileInventory: {
|
|
999
999
|
path: string;
|
|
1000
|
-
kind: "reference" | "
|
|
1000
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1001
1001
|
}[];
|
|
1002
1002
|
}[];
|
|
1003
1003
|
skipped: {
|
|
@@ -1007,25 +1007,26 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1007
1007
|
}[];
|
|
1008
1008
|
updated: {
|
|
1009
1009
|
updatedAt: Date;
|
|
1010
|
-
markdown: string;
|
|
1011
|
-
description: string | null;
|
|
1012
1010
|
id: string;
|
|
1013
1011
|
orgId: string;
|
|
1014
1012
|
createdAt: Date;
|
|
1015
1013
|
name: string;
|
|
1016
|
-
|
|
1017
|
-
|
|
1014
|
+
description: string | null;
|
|
1015
|
+
markdown: string;
|
|
1018
1016
|
key: string;
|
|
1017
|
+
metadata: Record<string, unknown> | null;
|
|
1019
1018
|
slug: string;
|
|
1019
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1020
1020
|
sourceLocator: string | null;
|
|
1021
1021
|
sourceRef: string | null;
|
|
1022
1022
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
1023
1023
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
1024
1024
|
fileInventory: {
|
|
1025
1025
|
path: string;
|
|
1026
|
-
kind: "reference" | "
|
|
1026
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1027
1027
|
}[];
|
|
1028
1028
|
}[];
|
|
1029
|
+
warnings: string[];
|
|
1029
1030
|
discovered: number;
|
|
1030
1031
|
conflicts: {
|
|
1031
1032
|
path: string;
|
|
@@ -1037,28 +1038,27 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1037
1038
|
existingSourceLocator: string | null;
|
|
1038
1039
|
root: string;
|
|
1039
1040
|
}[];
|
|
1040
|
-
warnings: string[];
|
|
1041
1041
|
scannedRoots: number;
|
|
1042
1042
|
}, {
|
|
1043
1043
|
imported: {
|
|
1044
1044
|
updatedAt: Date;
|
|
1045
|
-
markdown: string;
|
|
1046
|
-
description: string | null;
|
|
1047
1045
|
id: string;
|
|
1048
1046
|
orgId: string;
|
|
1049
1047
|
createdAt: Date;
|
|
1050
1048
|
name: string;
|
|
1051
|
-
|
|
1052
|
-
|
|
1049
|
+
description: string | null;
|
|
1050
|
+
markdown: string;
|
|
1053
1051
|
key: string;
|
|
1052
|
+
metadata: Record<string, unknown> | null;
|
|
1054
1053
|
slug: string;
|
|
1054
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1055
1055
|
sourceLocator: string | null;
|
|
1056
1056
|
sourceRef: string | null;
|
|
1057
1057
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
1058
1058
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
1059
1059
|
fileInventory?: {
|
|
1060
1060
|
path: string;
|
|
1061
|
-
kind: "reference" | "
|
|
1061
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1062
1062
|
}[] | undefined;
|
|
1063
1063
|
}[];
|
|
1064
1064
|
skipped: {
|
|
@@ -1068,25 +1068,26 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1068
1068
|
}[];
|
|
1069
1069
|
updated: {
|
|
1070
1070
|
updatedAt: Date;
|
|
1071
|
-
markdown: string;
|
|
1072
|
-
description: string | null;
|
|
1073
1071
|
id: string;
|
|
1074
1072
|
orgId: string;
|
|
1075
1073
|
createdAt: Date;
|
|
1076
1074
|
name: string;
|
|
1077
|
-
|
|
1078
|
-
|
|
1075
|
+
description: string | null;
|
|
1076
|
+
markdown: string;
|
|
1079
1077
|
key: string;
|
|
1078
|
+
metadata: Record<string, unknown> | null;
|
|
1080
1079
|
slug: string;
|
|
1080
|
+
sourceType: "url" | "local_path" | "github" | "catalog" | "skills_sh";
|
|
1081
1081
|
sourceLocator: string | null;
|
|
1082
1082
|
sourceRef: string | null;
|
|
1083
1083
|
trustLevel: "markdown_only" | "assets" | "scripts_executables";
|
|
1084
1084
|
compatibility: "invalid" | "unknown" | "compatible";
|
|
1085
1085
|
fileInventory?: {
|
|
1086
1086
|
path: string;
|
|
1087
|
-
kind: "reference" | "
|
|
1087
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1088
1088
|
}[] | undefined;
|
|
1089
1089
|
}[];
|
|
1090
|
+
warnings: string[];
|
|
1090
1091
|
discovered: number;
|
|
1091
1092
|
conflicts: {
|
|
1092
1093
|
path: string;
|
|
@@ -1098,7 +1099,6 @@ export declare const organizationSkillLocalScanResultSchema: z.ZodObject<{
|
|
|
1098
1099
|
existingSourceLocator: string | null;
|
|
1099
1100
|
root: string;
|
|
1100
1101
|
}[];
|
|
1101
|
-
warnings: string[];
|
|
1102
1102
|
scannedRoots: number;
|
|
1103
1103
|
}>;
|
|
1104
1104
|
export declare const organizationSkillCreateSchema: z.ZodObject<{
|
|
@@ -1108,13 +1108,13 @@ export declare const organizationSkillCreateSchema: z.ZodObject<{
|
|
|
1108
1108
|
markdown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1109
1109
|
}, "strip", z.ZodTypeAny, {
|
|
1110
1110
|
name: string;
|
|
1111
|
-
markdown?: string | null | undefined;
|
|
1112
1111
|
description?: string | null | undefined;
|
|
1112
|
+
markdown?: string | null | undefined;
|
|
1113
1113
|
slug?: string | null | undefined;
|
|
1114
1114
|
}, {
|
|
1115
1115
|
name: string;
|
|
1116
|
-
markdown?: string | null | undefined;
|
|
1117
1116
|
description?: string | null | undefined;
|
|
1117
|
+
markdown?: string | null | undefined;
|
|
1118
1118
|
slug?: string | null | undefined;
|
|
1119
1119
|
}>;
|
|
1120
1120
|
export declare const organizationSkillFileDetailSchema: z.ZodObject<{
|
|
@@ -1127,19 +1127,19 @@ export declare const organizationSkillFileDetailSchema: z.ZodObject<{
|
|
|
1127
1127
|
editable: z.ZodBoolean;
|
|
1128
1128
|
}, "strip", z.ZodTypeAny, {
|
|
1129
1129
|
path: string;
|
|
1130
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1130
1131
|
markdown: boolean;
|
|
1131
|
-
kind: "reference" | "skill" | "markdown" | "script" | "asset" | "other";
|
|
1132
|
-
content: string;
|
|
1133
1132
|
editable: boolean;
|
|
1134
1133
|
skillId: string;
|
|
1134
|
+
content: string;
|
|
1135
1135
|
language: string | null;
|
|
1136
1136
|
}, {
|
|
1137
1137
|
path: string;
|
|
1138
|
+
kind: "reference" | "markdown" | "skill" | "other" | "script" | "asset";
|
|
1138
1139
|
markdown: boolean;
|
|
1139
|
-
kind: "reference" | "skill" | "markdown" | "script" | "asset" | "other";
|
|
1140
|
-
content: string;
|
|
1141
1140
|
editable: boolean;
|
|
1142
1141
|
skillId: string;
|
|
1142
|
+
content: string;
|
|
1143
1143
|
language: string | null;
|
|
1144
1144
|
}>;
|
|
1145
1145
|
export declare const organizationSkillFileUpdateSchema: z.ZodObject<{
|