@cat-factory/contracts 0.47.0 → 0.49.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/documents.d.ts +7 -18
- package/dist/documents.d.ts.map +1 -1
- package/dist/documents.js +1 -11
- package/dist/documents.js.map +1 -1
- package/dist/entities.d.ts +2 -2
- package/dist/fragment-library.d.ts +3 -3
- package/dist/routes/documents.d.ts +10 -11
- package/dist/routes/documents.d.ts.map +1 -1
- package/dist/routes/fragment-library.d.ts +7 -7
- package/dist/routes/prompt-fragments.d.ts +1 -1
- package/dist/routes/runners.d.ts +689 -197
- package/dist/routes/runners.d.ts.map +1 -1
- package/dist/runners.d.ts +684 -146
- package/dist/runners.d.ts.map +1 -1
- package/dist/runners.js +87 -13
- package/dist/runners.js.map +1 -1
- package/package.json +1 -1
package/dist/documents.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
/** The external document sources cat-factory can link to. */
|
|
3
|
-
export declare const documentSourceKindSchema: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
3
|
+
export declare const documentSourceKindSchema: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
4
4
|
export type DocumentSourceKind = v.InferOutput<typeof documentSourceKindSchema>;
|
|
5
5
|
/** One credential a provider needs to connect (rendered as a form field). */
|
|
6
6
|
export declare const credentialFieldSchema: v.ObjectSchema<{
|
|
@@ -21,7 +21,7 @@ export type CredentialField = v.InferOutput<typeof credentialFieldSchema>;
|
|
|
21
21
|
* box without hard-coding any provider specifics.
|
|
22
22
|
*/
|
|
23
23
|
export declare const documentSourceDescriptorSchema: v.ObjectSchema<{
|
|
24
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
24
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
25
25
|
/** Display name, e.g. `Confluence`. */
|
|
26
26
|
readonly label: v.StringSchema<undefined>;
|
|
27
27
|
/** Lucide icon name for the source. */
|
|
@@ -49,22 +49,11 @@ export declare const documentSourceDescriptorSchema: v.ObjectSchema<{
|
|
|
49
49
|
* backward-compatibility; absent is treated as `false`.
|
|
50
50
|
*/
|
|
51
51
|
readonly searchable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
52
|
-
/**
|
|
53
|
-
* Who owns this source's stored credential. `'workspace'` (the default when
|
|
54
|
-
* absent) — a single sealed credential shared by everyone in the workspace, the
|
|
55
|
-
* model Notion/Confluence/Figma/Linear use. `'user'` — a **personal** credential
|
|
56
|
-
* each member supplies for themselves (a per-user PAT), stored keyed by user id and
|
|
57
|
-
* never shared; Claude Design uses this because the token authenticates as an
|
|
58
|
-
* individual's account. The connect/import surface is otherwise identical, so the
|
|
59
|
-
* UI just labels a `'user'` source as personal.
|
|
60
|
-
*/
|
|
61
|
-
readonly credentialScope: v.OptionalSchema<v.PicklistSchema<["workspace", "user"], undefined>, undefined>;
|
|
62
52
|
}, undefined>;
|
|
63
53
|
export type DocumentSourceDescriptor = v.InferOutput<typeof documentSourceDescriptorSchema>;
|
|
64
|
-
export type DocumentCredentialScope = NonNullable<DocumentSourceDescriptor['credentialScope']>;
|
|
65
54
|
/** A workspace's connection to a document source, as exposed to clients (never the credentials). */
|
|
66
55
|
export declare const documentConnectionSchema: v.ObjectSchema<{
|
|
67
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
56
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
68
57
|
/** A human-friendly label for what we're connected to (site URL, workspace name). */
|
|
69
58
|
readonly label: v.StringSchema<undefined>;
|
|
70
59
|
/** When the connection was established (epoch ms). */
|
|
@@ -73,7 +62,7 @@ export declare const documentConnectionSchema: v.ObjectSchema<{
|
|
|
73
62
|
export type DocumentConnection = v.InferOutput<typeof documentConnectionSchema>;
|
|
74
63
|
/** A page imported from a source, projected locally. */
|
|
75
64
|
export declare const sourceDocumentSchema: v.ObjectSchema<{
|
|
76
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
65
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
77
66
|
/** The source's stable id for the page (Confluence page id, Notion page id). */
|
|
78
67
|
readonly externalId: v.StringSchema<undefined>;
|
|
79
68
|
readonly title: v.StringSchema<undefined>;
|
|
@@ -94,7 +83,7 @@ export type SourceDocument = v.InferOutput<typeof sourceDocumentSchema>;
|
|
|
94
83
|
* locally, so it carries no `linkedBlockId`/`syncedAt`.
|
|
95
84
|
*/
|
|
96
85
|
export declare const documentSearchResultSchema: v.ObjectSchema<{
|
|
97
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
86
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
98
87
|
/** The source's stable id for the page (re-usable as an import ref). */
|
|
99
88
|
readonly externalId: v.StringSchema<undefined>;
|
|
100
89
|
readonly title: v.StringSchema<undefined>;
|
|
@@ -143,7 +132,7 @@ export type PlanFrame = v.InferOutput<typeof planFrameSchema>;
|
|
|
143
132
|
* the UI can label a preview honestly.
|
|
144
133
|
*/
|
|
145
134
|
export declare const documentBoardPlanSchema: v.ObjectSchema<{
|
|
146
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
135
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
147
136
|
readonly externalId: v.StringSchema<undefined>;
|
|
148
137
|
readonly planner: v.PicklistSchema<["llm", "headings"], undefined>;
|
|
149
138
|
readonly frames: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -200,7 +189,7 @@ export declare const spawnDocumentSchema: v.ObjectSchema<{
|
|
|
200
189
|
export type SpawnDocumentInput = v.InferOutput<typeof spawnDocumentSchema>;
|
|
201
190
|
/** Attach an imported page to a task as extra agent context. */
|
|
202
191
|
export declare const linkDocumentSchema: v.ObjectSchema<{
|
|
203
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
192
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
204
193
|
readonly externalId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
205
194
|
readonly blockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
206
195
|
}, undefined>;
|
package/dist/documents.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documents.d.ts","sourceRoot":"","sources":["../src/documents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAiB5B,6DAA6D;AAC7D,eAAO,MAAM,wBAAwB,
|
|
1
|
+
{"version":3,"file":"documents.d.ts","sourceRoot":"","sources":["../src/documents.ts"],"names":[],"mappings":"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"}
|
package/dist/documents.js
CHANGED
|
@@ -19,8 +19,8 @@ export const documentSourceKindSchema = v.picklist([
|
|
|
19
19
|
'notion',
|
|
20
20
|
'github',
|
|
21
21
|
'figma',
|
|
22
|
+
'zeplin',
|
|
22
23
|
'linear',
|
|
23
|
-
'claude-design',
|
|
24
24
|
]);
|
|
25
25
|
// ---- Provider self-description (drives the generic connect UI) ------------
|
|
26
26
|
/** One credential a provider needs to connect (rendered as a form field). */
|
|
@@ -58,16 +58,6 @@ export const documentSourceDescriptorSchema = v.object({
|
|
|
58
58
|
* backward-compatibility; absent is treated as `false`.
|
|
59
59
|
*/
|
|
60
60
|
searchable: v.optional(v.boolean()),
|
|
61
|
-
/**
|
|
62
|
-
* Who owns this source's stored credential. `'workspace'` (the default when
|
|
63
|
-
* absent) — a single sealed credential shared by everyone in the workspace, the
|
|
64
|
-
* model Notion/Confluence/Figma/Linear use. `'user'` — a **personal** credential
|
|
65
|
-
* each member supplies for themselves (a per-user PAT), stored keyed by user id and
|
|
66
|
-
* never shared; Claude Design uses this because the token authenticates as an
|
|
67
|
-
* individual's account. The connect/import surface is otherwise identical, so the
|
|
68
|
-
* UI just labels a `'user'` source as personal.
|
|
69
|
-
*/
|
|
70
|
-
credentialScope: v.optional(v.picklist(['workspace', 'user'])),
|
|
71
61
|
});
|
|
72
62
|
// ---- Connection + document projections ------------------------------------
|
|
73
63
|
/** A workspace's connection to a document source, as exposed to clients (never the credentials). */
|
package/dist/documents.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documents.js","sourceRoot":"","sources":["../src/documents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAC5B,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAEjD,8EAA8E;AAC9E,gFAAgF;AAChF,+EAA+E;AAC/E,0EAA0E;AAC1E,sDAAsD;AACtD,EAAE;AACF,6EAA6E;AAC7E,sEAAsE;AACtE,+EAA+E;AAC/E,4EAA4E;AAC5E,iFAAiF;AACjF,gDAAgD;AAChD,8EAA8E;AAE9E,6DAA6D;AAC7D,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,QAAQ,CAAC;IACjD,YAAY;IACZ,QAAQ;IACR,QAAQ;IACR,OAAO;IACP,QAAQ;IACR,
|
|
1
|
+
{"version":3,"file":"documents.js","sourceRoot":"","sources":["../src/documents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAC5B,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAEjD,8EAA8E;AAC9E,gFAAgF;AAChF,+EAA+E;AAC/E,0EAA0E;AAC1E,sDAAsD;AACtD,EAAE;AACF,6EAA6E;AAC7E,sEAAsE;AACtE,+EAA+E;AAC/E,4EAA4E;AAC5E,iFAAiF;AACjF,gDAAgD;AAChD,8EAA8E;AAE9E,6DAA6D;AAC7D,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,QAAQ,CAAC;IACjD,YAAY;IACZ,QAAQ;IACR,QAAQ;IACR,OAAO;IACP,QAAQ;IACR,QAAQ;CACT,CAAC,CAAA;AAGF,8EAA8E;AAE9E,6EAA6E;AAC7E,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,iEAAiE;IACjE,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,sCAAsC;IACtC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,kDAAkD;IAClD,IAAI,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IAC5B,kCAAkC;IAClC,WAAW,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACnC,gEAAgE;IAChE,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CAChC,CAAC,CAAA;AAGF;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,MAAM,CAAC;IACrD,MAAM,EAAE,wBAAwB;IAChC,uCAAuC;IACvC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,uCAAuC;IACvC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,yDAAyD;IACzD,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC;IAChD,2CAA2C;IAC3C,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,iDAAiD;IACjD,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE;IAC1B;;;;OAIG;IACH,UAAU,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;CACpC,CAAC,CAAA;AAGF,8EAA8E;AAE9E,oGAAoG;AACpG,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,wBAAwB;IAChC,qFAAqF;IACrF,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,sDAAsD;IACtD,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE;CACxB,CAAC,CAAA;AAGF,wDAAwD;AACxD,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,MAAM,EAAE,wBAAwB;IAChC,gFAAgF;IAChF,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,+CAA+C;IAC/C,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,2EAA2E;IAC3E,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;IACnB,uEAAuE;IACvE,aAAa,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACrC,8DAA8D;IAC9D,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;CACrB,CAAC,CAAA;AAGF;;;;;GAKG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG,CAAC,CAAC,MAAM,CAAC;IACjD,MAAM,EAAE,wBAAwB;IAChC,wEAAwE;IACxE,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,+CAA+C;IAC/C,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,oEAAoE;IACpE,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAA;AAGF,8EAA8E;AAE9E,qDAAqD;AACrD,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACpC,CAAC,CAAA;AAGF,+DAA+D;AAC/D,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC;CAC/B,CAAC,CAAA;AAGF,mFAAmF;AACnF,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,IAAI,EAAE,eAAe;IACrB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE;IACjB,WAAW,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;IACnC,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC;IAClC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC;CAC/B,CAAC,CAAA;AAGF;;;;GAIG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC9C,MAAM,EAAE,wBAAwB;IAChC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,UAAU,CAAC,CAAC;IACxC,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC;CACjC,CAAC,CAAA;AAGF,8EAA8E;AAE9E;;;;GAIG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,WAAW,EAAE,CAAC,CAAC,MAAM,CACnB,CAAC,CAAC,MAAM,EAAE,EACV,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,CAChE;CACF,CAAC,CAAA;AAGF,oEAAoE;AACpE,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,GAAG,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;CACpE,CAAC,CAAA;AAGF,gEAAgE;AAChE,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;CACtE,CAAC,CAAA;AAGF,wEAAwE;AACxE,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;CACzD,CAAC,CAAA;AAGF;;;;GAIG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;IACxD,OAAO,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC;CACxD,CAAC,CAAA;AAGF,gEAAgE;AAChE,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,MAAM,EAAE,wBAAwB;IAChC,UAAU,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;IACxD,OAAO,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;CACtD,CAAC,CAAA"}
|
package/dist/entities.d.ts
CHANGED
|
@@ -287,7 +287,7 @@ export declare const promptFragmentSchema: v.ObjectSchema<{
|
|
|
287
287
|
* sourced, and built-in fragments.
|
|
288
288
|
*/
|
|
289
289
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
290
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
290
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
291
291
|
/** The source's stable id for the page/file (a valid import ref). */
|
|
292
292
|
readonly externalId: v.StringSchema<undefined>;
|
|
293
293
|
}, undefined>, undefined>;
|
|
@@ -340,7 +340,7 @@ export declare const promptFragmentCatalogSchema: v.ArraySchema<v.ObjectSchema<{
|
|
|
340
340
|
* sourced, and built-in fragments.
|
|
341
341
|
*/
|
|
342
342
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
343
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
343
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
344
344
|
/** The source's stable id for the page/file (a valid import ref). */
|
|
345
345
|
readonly externalId: v.StringSchema<undefined>;
|
|
346
346
|
}, undefined>, undefined>;
|
|
@@ -43,7 +43,7 @@ export type UpdatePromptFragmentInput = v.InferOutput<typeof updatePromptFragmen
|
|
|
43
43
|
* document, never supplied here.
|
|
44
44
|
*/
|
|
45
45
|
export declare const createDocumentFragmentSchema: v.ObjectSchema<{
|
|
46
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
46
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
47
47
|
/** A page id or full page/file URL, resolved by the source's provider. */
|
|
48
48
|
readonly ref: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
49
49
|
readonly id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
@@ -121,7 +121,7 @@ export declare const resolvedFragmentSchema: v.ObjectSchema<{
|
|
|
121
121
|
readonly sha: v.StringSchema<undefined>;
|
|
122
122
|
}, undefined>, undefined>;
|
|
123
123
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
124
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
124
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
125
125
|
readonly externalId: v.StringSchema<undefined>;
|
|
126
126
|
}, undefined>, undefined>;
|
|
127
127
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -148,7 +148,7 @@ export declare const resolvedFragmentCatalogSchema: v.ArraySchema<v.ObjectSchema
|
|
|
148
148
|
readonly sha: v.StringSchema<undefined>;
|
|
149
149
|
}, undefined>, undefined>;
|
|
150
150
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
151
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
151
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
152
152
|
readonly externalId: v.StringSchema<undefined>;
|
|
153
153
|
}, undefined>, undefined>;
|
|
154
154
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -28,7 +28,7 @@ export declare const listDocumentSourcesContract: {
|
|
|
28
28
|
}, undefined>;
|
|
29
29
|
readonly 200: v.ObjectSchema<{
|
|
30
30
|
readonly sources: v.ArraySchema<v.ObjectSchema<{
|
|
31
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
31
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
32
32
|
readonly label: v.StringSchema<undefined>;
|
|
33
33
|
readonly icon: v.StringSchema<undefined>;
|
|
34
34
|
readonly credentialFields: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -41,7 +41,6 @@ export declare const listDocumentSourcesContract: {
|
|
|
41
41
|
readonly refLabel: v.StringSchema<undefined>;
|
|
42
42
|
readonly refPlaceholder: v.StringSchema<undefined>;
|
|
43
43
|
readonly searchable: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
44
|
-
readonly credentialScope: v.OptionalSchema<v.PicklistSchema<["workspace", "user"], undefined>, undefined>;
|
|
45
44
|
}, undefined>, undefined>;
|
|
46
45
|
}, undefined>;
|
|
47
46
|
};
|
|
@@ -74,7 +73,7 @@ export declare const listDocumentConnectionsContract: {
|
|
|
74
73
|
}, undefined>;
|
|
75
74
|
readonly 200: v.ObjectSchema<{
|
|
76
75
|
readonly connections: v.ArraySchema<v.ObjectSchema<{
|
|
77
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
76
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
78
77
|
readonly label: v.StringSchema<undefined>;
|
|
79
78
|
readonly connectedAt: v.NumberSchema<undefined>;
|
|
80
79
|
}, undefined>, undefined>;
|
|
@@ -116,7 +115,7 @@ export declare const connectDocumentSourceContract: {
|
|
|
116
115
|
}, undefined>;
|
|
117
116
|
}, undefined>;
|
|
118
117
|
readonly 201: v.ObjectSchema<{
|
|
119
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
118
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
120
119
|
readonly label: v.StringSchema<undefined>;
|
|
121
120
|
readonly connectedAt: v.NumberSchema<undefined>;
|
|
122
121
|
}, undefined>;
|
|
@@ -183,7 +182,7 @@ export declare const listDocumentsContract: {
|
|
|
183
182
|
}, undefined>;
|
|
184
183
|
}, undefined>;
|
|
185
184
|
readonly 200: v.ArraySchema<v.ObjectSchema<{
|
|
186
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
185
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
187
186
|
readonly externalId: v.StringSchema<undefined>;
|
|
188
187
|
readonly title: v.StringSchema<undefined>;
|
|
189
188
|
readonly url: v.StringSchema<undefined>;
|
|
@@ -228,7 +227,7 @@ export declare const importDocumentContract: {
|
|
|
228
227
|
}, undefined>;
|
|
229
228
|
}, undefined>;
|
|
230
229
|
readonly 201: v.ObjectSchema<{
|
|
231
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
230
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
232
231
|
readonly externalId: v.StringSchema<undefined>;
|
|
233
232
|
readonly title: v.StringSchema<undefined>;
|
|
234
233
|
readonly url: v.StringSchema<undefined>;
|
|
@@ -274,7 +273,7 @@ export declare const searchDocumentsContract: {
|
|
|
274
273
|
}, undefined>;
|
|
275
274
|
readonly 200: v.ObjectSchema<{
|
|
276
275
|
readonly results: v.ArraySchema<v.ObjectSchema<{
|
|
277
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
276
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
278
277
|
readonly externalId: v.StringSchema<undefined>;
|
|
279
278
|
readonly title: v.StringSchema<undefined>;
|
|
280
279
|
readonly url: v.StringSchema<undefined>;
|
|
@@ -318,7 +317,7 @@ export declare const planDocumentContract: {
|
|
|
318
317
|
}, undefined>;
|
|
319
318
|
}, undefined>;
|
|
320
319
|
readonly 200: v.ObjectSchema<{
|
|
321
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
320
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
322
321
|
readonly externalId: v.StringSchema<undefined>;
|
|
323
322
|
readonly planner: v.PicklistSchema<["llm", "headings"], undefined>;
|
|
324
323
|
readonly frames: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -377,7 +376,7 @@ export declare const spawnDocumentContract: {
|
|
|
377
376
|
}, undefined>;
|
|
378
377
|
readonly 201: v.ObjectSchema<{
|
|
379
378
|
readonly plan: v.ObjectSchema<{
|
|
380
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
379
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
381
380
|
readonly externalId: v.StringSchema<undefined>;
|
|
382
381
|
readonly planner: v.PicklistSchema<["llm", "headings"], undefined>;
|
|
383
382
|
readonly frames: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -409,7 +408,7 @@ export declare const linkDocumentContract: {
|
|
|
409
408
|
readonly method: "post";
|
|
410
409
|
readonly pathResolver: () => string;
|
|
411
410
|
readonly requestBodySchema: v.ObjectSchema<{
|
|
412
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
411
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
413
412
|
readonly externalId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
414
413
|
readonly blockId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>]>;
|
|
415
414
|
}, undefined>;
|
|
@@ -437,7 +436,7 @@ export declare const linkDocumentContract: {
|
|
|
437
436
|
}, undefined>;
|
|
438
437
|
}, undefined>;
|
|
439
438
|
readonly 201: v.ObjectSchema<{
|
|
440
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
439
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
441
440
|
readonly externalId: v.StringSchema<undefined>;
|
|
442
441
|
readonly title: v.StringSchema<undefined>;
|
|
443
442
|
readonly url: v.StringSchema<undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documents.d.ts","sourceRoot":"","sources":["../../src/routes/documents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAyC5B,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"documents.d.ts","sourceRoot":"","sources":["../../src/routes/documents.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAqB,MAAM,yBAAyB,CAAA;AAC3E,OAAO,KAAK,CAAC,MAAM,SAAS,CAAA;AAyC5B,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAItC,CAAA;AAEF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAI1C,CAAA;AAEF,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMxC,CAAA;AAEF,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK3C,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIhC,CAAA;AAEF,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMjC,CAAA;AAEF,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMlC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAM/B,CAAA;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAMhC,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAK/B,CAAA"}
|
|
@@ -44,7 +44,7 @@ export declare const listPromptFragmentsContract: {
|
|
|
44
44
|
readonly sha: v.StringSchema<undefined>;
|
|
45
45
|
}, undefined>, undefined>;
|
|
46
46
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
47
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
47
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
48
48
|
readonly externalId: v.StringSchema<undefined>;
|
|
49
49
|
}, undefined>, undefined>;
|
|
50
50
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -108,7 +108,7 @@ export declare const createPromptFragmentContract: {
|
|
|
108
108
|
readonly sha: v.StringSchema<undefined>;
|
|
109
109
|
}, undefined>, undefined>;
|
|
110
110
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
111
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
111
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
112
112
|
readonly externalId: v.StringSchema<undefined>;
|
|
113
113
|
}, undefined>, undefined>;
|
|
114
114
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -176,7 +176,7 @@ export declare const updatePromptFragmentContract: {
|
|
|
176
176
|
readonly sha: v.StringSchema<undefined>;
|
|
177
177
|
}, undefined>, undefined>;
|
|
178
178
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
179
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
179
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
180
180
|
readonly externalId: v.StringSchema<undefined>;
|
|
181
181
|
}, undefined>, undefined>;
|
|
182
182
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -221,7 +221,7 @@ export declare const createDocumentFragmentContract: {
|
|
|
221
221
|
readonly method: "post";
|
|
222
222
|
readonly pathResolver: () => string;
|
|
223
223
|
readonly requestBodySchema: v.ObjectSchema<{
|
|
224
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
224
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
225
225
|
readonly ref: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 500, undefined>]>;
|
|
226
226
|
readonly id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 200, undefined>]>, undefined>;
|
|
227
227
|
readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 100, undefined>]>, undefined>;
|
|
@@ -273,7 +273,7 @@ export declare const createDocumentFragmentContract: {
|
|
|
273
273
|
readonly sha: v.StringSchema<undefined>;
|
|
274
274
|
}, undefined>, undefined>;
|
|
275
275
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
276
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
276
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
277
277
|
readonly externalId: v.StringSchema<undefined>;
|
|
278
278
|
}, undefined>, undefined>;
|
|
279
279
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -333,7 +333,7 @@ export declare const refreshPromptFragmentContract: {
|
|
|
333
333
|
readonly sha: v.StringSchema<undefined>;
|
|
334
334
|
}, undefined>, undefined>;
|
|
335
335
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
336
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
336
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
337
337
|
readonly externalId: v.StringSchema<undefined>;
|
|
338
338
|
}, undefined>, undefined>;
|
|
339
339
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -583,7 +583,7 @@ export declare const resolvedFragmentsContract: {
|
|
|
583
583
|
readonly sha: v.StringSchema<undefined>;
|
|
584
584
|
}, undefined>, undefined>;
|
|
585
585
|
readonly documentRef: v.OptionalSchema<v.ObjectSchema<{
|
|
586
|
-
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
586
|
+
readonly source: v.PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
587
587
|
readonly externalId: v.StringSchema<undefined>;
|
|
588
588
|
}, undefined>, undefined>;
|
|
589
589
|
readonly resolvedAt: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
@@ -42,7 +42,7 @@ export declare const listFragmentCatalogContract: {
|
|
|
42
42
|
readonly sha: import("valibot").StringSchema<undefined>;
|
|
43
43
|
}, undefined>, undefined>;
|
|
44
44
|
readonly documentRef: import("valibot").OptionalSchema<import("valibot").ObjectSchema<{
|
|
45
|
-
readonly source: import("valibot").PicklistSchema<["confluence", "notion", "github", "figma", "
|
|
45
|
+
readonly source: import("valibot").PicklistSchema<["confluence", "notion", "github", "figma", "zeplin", "linear"], undefined>;
|
|
46
46
|
readonly externalId: import("valibot").StringSchema<undefined>;
|
|
47
47
|
}, undefined>, undefined>;
|
|
48
48
|
readonly resolvedAt: import("valibot").OptionalSchema<import("valibot").NumberSchema<undefined>, undefined>;
|